From eeb7641793be06941c078fd46ddc91cab18f6edf Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 6 Jan 2020 21:28:05 +0100
Subject: [PATCH 01/49] Fix screenshot links
---
data/org.pwmt.zathura.appdata.xml.in | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/org.pwmt.zathura.appdata.xml.in b/data/org.pwmt.zathura.appdata.xml.in
index ecc2991..a3b9440 100644
--- a/data/org.pwmt.zathura.appdata.xml.in
+++ b/data/org.pwmt.zathura.appdata.xml.in
@@ -29,16 +29,16 @@
https://bugs.pwmt.org/project/zathura
- https://pwmt.org/projects/zathura/img/zathura-cover.png
+ https://pwmt.org/static/img/zathura-cover.png
- https://pwmt.org/projects/zathura/img/zathura-completion.png
+ https://pwmt.org/static/img/zathura-completion.png
- https://pwmt.org/projects/zathura/img/zathura-follow.png
+ https://pwmt.org/static/img/zathura-follow.png
- https://pwmt.org/projects/zathura/img/zathura-bookmarks.png
+ https://pwmt.org/static/img/zathura-bookmarks.png
zathura@lists.pwmt.org
From 1d002effd0ac6c00a031b0a2abf4ce05f23a1808 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 6 Jan 2020 21:32:00 +0100
Subject: [PATCH 02/49] Fix formatting of description
---
data/org.pwmt.zathura.appdata.xml.in | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/data/org.pwmt.zathura.appdata.xml.in b/data/org.pwmt.zathura.appdata.xml.in
index a3b9440..1a7a756 100644
--- a/data/org.pwmt.zathura.appdata.xml.in
+++ b/data/org.pwmt.zathura.appdata.xml.in
@@ -17,12 +17,12 @@
Zathura can be extended to support multiple document formats using
plugins. Other features include:
-
- - SyncTeX forward and backward synchronization support.
- - Quickmarks and bookmarks.
- - Automatic document reloading.
-
+
+ - SyncTeX forward and backward synchronization support.
+ - Quickmarks and bookmarks.
+ - Automatic document reloading.
+
org.pwmt.zathura.desktop
https://pwmt.org/projects/zathura
From 99a49838f22a571c69976729dbc7c56b0a10a355 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 6 Jan 2020 21:32:04 +0100
Subject: [PATCH 03/49] Add content_rating
---
data/org.pwmt.zathura.appdata.xml.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/data/org.pwmt.zathura.appdata.xml.in b/data/org.pwmt.zathura.appdata.xml.in
index 1a7a756..7aa0c49 100644
--- a/data/org.pwmt.zathura.appdata.xml.in
+++ b/data/org.pwmt.zathura.appdata.xml.in
@@ -46,4 +46,5 @@
zathura
+
From bf46e4de707f364082570f4818846f2944b0ccfa Mon Sep 17 00:00:00 2001
From: Eli Schwartz
Date: Tue, 21 Jan 2020 21:39:00 -0500
Subject: [PATCH 04/49] Fix installation of bash/fish completions using
pkg-config
Both shells provide pkg-config files which declare their designated
completionsdir. Use this as the primary source of truth.
---
data/meson.build | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/data/meson.build b/data/meson.build
index c1e9231..557b630 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -70,6 +70,20 @@ fish_completion = configure_file(
configuration: conf_data
)
-install_data(bash_completion, install_dir: join_paths(datadir, 'bash-completion', 'completions'))
+bash_comp = dependency('bash-completion', required: false)
+if bash_comp.found()
+ bash_compdir = bash_comp.get_pkgconfig_variable('completionsdir')
+else
+ bash_compdir = join_paths(datadir, 'bash-completion', 'completions')
+endif
+
+fish_comp = dependency('fish', required: false)
+if fish_comp.found()
+ fish_compdir = fish_comp.get_pkgconfig_variable('completionsdir')
+else
+ fish_compdir = join_paths(datadir, 'fish', 'completions')
+endif
+
+install_data(bash_completion, install_dir: bash_compdir)
install_data(zsh_completion, install_dir: join_paths(datadir, 'zsh', 'site-functions'))
-install_data(fish_completion, install_dir: join_paths(datadir, 'fish', 'completions'))
+install_data(fish_completion, install_dir: fish_compdir)
From d21d0406630eaf5e20d180524e6d396611e7243a Mon Sep 17 00:00:00 2001
From: Eli Schwartz
Date: Tue, 21 Jan 2020 21:39:26 -0500
Subject: [PATCH 05/49] fish-completion: use the correct fallback directory
fish completions should never be installed to share/fish/completions/ as
that directory is reserved exclusively for completions shipped as part
of the fish source code.
Use the same vendor_completions.d/ directory which the default fish
configuration uses.
---
data/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/meson.build b/data/meson.build
index 557b630..4649160 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -81,7 +81,7 @@ fish_comp = dependency('fish', required: false)
if fish_comp.found()
fish_compdir = fish_comp.get_pkgconfig_variable('completionsdir')
else
- fish_compdir = join_paths(datadir, 'fish', 'completions')
+ fish_compdir = join_paths(datadir, 'fish', 'vendor_completions.d')
endif
install_data(bash_completion, install_dir: bash_compdir)
From f04dc0062fea870da84710616ba6a297b26fb5c6 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Wed, 5 Feb 2020 16:44:18 +0100
Subject: [PATCH 06/49] Increase min difference to 2
Apparently this works around issue #94 for some people. Thanks to Consus
for the workaround.
---
zathura/zathura.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/zathura/zathura.c b/zathura/zathura.c
index ce6da7e..574d9c2 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -1692,9 +1692,14 @@ adjust_view(zathura_t* zathura)
unsigned int new_cell_height = 0, new_cell_width = 0;
zathura_document_get_cell_size(zathura->document, &new_cell_height, &new_cell_width);
- /* if the change in zoom changes page cell dimensions by at least one pixel, render */
- if (abs((int)new_cell_width - (int)cell_width) > 1 ||
- abs((int)new_cell_height - (int)cell_height) > 1) {
+ /*
+ * XXX requiring a larger difference apparently circumvents #94 for some users; this is not a
+ * proper fix
+ */
+ static const unsigned int min_change = 2;
+ /* if the change in zoom changes page cell dimensions, render */
+ if (abs((int)new_cell_width - (int)cell_width) > min_change ||
+ abs((int)new_cell_height - (int)cell_height) > min_change) {
render_all(zathura);
refresh_view(zathura);
} else {
From 338986283e17efc6432808b0d166ac391990f414 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Wed, 5 Feb 2020 16:52:24 +0100
Subject: [PATCH 07/49] Fix type
---
zathura/zathura.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zathura/zathura.c b/zathura/zathura.c
index 574d9c2..c3599f5 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -1696,7 +1696,7 @@ adjust_view(zathura_t* zathura)
* XXX requiring a larger difference apparently circumvents #94 for some users; this is not a
* proper fix
*/
- static const unsigned int min_change = 2;
+ static const int min_change = 2;
/* if the change in zoom changes page cell dimensions, render */
if (abs((int)new_cell_width - (int)cell_width) > min_change ||
abs((int)new_cell_height - (int)cell_height) > min_change) {
From e586178a184f0c311db9a05c85c1a7ce07068ab4 Mon Sep 17 00:00:00 2001
From: Miseran
Date: Sat, 8 Feb 2020 19:28:48 +0100
Subject: [PATCH 08/49] Support recolor with transparency
---
zathura/page-widget.c | 2 +-
zathura/render.c | 67 ++++++++++++++++++++++++++++++++++++++-----
2 files changed, 61 insertions(+), 8 deletions(-)
diff --git a/zathura/page-widget.c b/zathura/page-widget.c
index 1132920..373afeb 100644
--- a/zathura/page-widget.c
+++ b/zathura/page-widget.c
@@ -629,7 +629,7 @@ zathura_page_widget_draw(GtkWidget* widget, cairo_t* cairo)
if (zathura_renderer_recolor_enabled(priv->zathura->sync.render_thread) == true) {
GdkRGBA color;
zathura_renderer_get_recolor_colors(priv->zathura->sync.render_thread, &color, NULL);
- cairo_set_source_rgb(cairo, color.red, color.green, color.blue);
+ cairo_set_source_rgba(cairo, color.red, color.green, color.blue, color.alpha);
} else {
const GdkRGBA color = priv->zathura->ui.colors.render_loading_bg;
cairo_set_source_rgb(cairo, color.red, color.green, color.blue);
diff --git a/zathura/render.c b/zathura/render.c
index 9d67c63..b5a1041 100644
--- a/zathura/render.c
+++ b/zathura/render.c
@@ -594,6 +594,8 @@ recolor(ZathuraRendererPrivate* priv, zathura_page_t* page, unsigned int page_wi
const double l1 = a[0]*rgb1.red + a[1]*rgb1.green + a[2]*rgb1.blue;
const double l2 = a[0]*rgb2.red + a[1]*rgb2.green + a[2]*rgb2.blue;
+ const double negalph1 = 1. - rgb1.alpha;
+ const double negalph2 = 1. - rgb2.alpha;
const double rgb_diff[] = {
rgb2.red - rgb1.red,
@@ -601,6 +603,24 @@ recolor(ZathuraRendererPrivate* priv, zathura_page_t* page, unsigned int page_wi
rgb2.blue - rgb1.blue
};
+ const double h1[3] = {
+ rgb1.red*rgb1.alpha - l1,
+ rgb1.green*rgb1.alpha - l1,
+ rgb1.blue*rgb1.alpha - l1,
+ };
+
+ const double h2[3] = {
+ rgb2.red*rgb2.alpha - l2,
+ rgb2.green*rgb2.alpha - l2,
+ rgb2.blue*rgb2.alpha - l2,
+ };
+
+ /* Decide if we can use the older, faster formulas */
+ const bool fast_formula = (!priv->recolor.hue || (
+ fabs(rgb1.red - rgb1.blue) < DBL_EPSILON && fabs(rgb1.red - rgb1.green) < DBL_EPSILON &&
+ fabs(rgb2.red - rgb2.blue) < DBL_EPSILON && fabs(rgb2.red - rgb2.green) < DBL_EPSILON
+ )) && (rgb1.alpha >= 1. - DBL_EPSILON && rgb2.alpha >= 1. - DBL_EPSILON);
+
girara_list_t* images = NULL;
girara_list_t* rectangles = NULL;
bool found_images = false;
@@ -645,6 +665,8 @@ recolor(ZathuraRendererPrivate* priv, zathura_page_t* page, unsigned int page_wi
);
/* If it's inside and image don't recolor */
if (inside_image == true) {
+ /* It is not guaranteed that the pixel is already opaque. */
+ data[3] = 255;
continue;
}
}
@@ -678,15 +700,38 @@ recolor(ZathuraRendererPrivate* priv, zathura_page_t* page, unsigned int page_wi
l = l * (l2 - l1) + l1;
const double su = s * colorumax(h, l, l1, l2);
- data[2] = (unsigned char)round(255.*(l + su * h[0]));
- data[1] = (unsigned char)round(255.*(l + su * h[1]));
- data[0] = (unsigned char)round(255.*(l + su * h[2]));
+
+ if (fast_formula) {
+ data[3] = 255;
+ data[2] = (unsigned char)round(255.*(l + su * h[0]));
+ data[1] = (unsigned char)round(255.*(l + su * h[1]));
+ data[0] = (unsigned char)round(255.*(l + su * h[2]));
+ } else {
+ /* Mix lightcolor, darkcolor and the original color, according to the
+ * minimal and maximal channel of the original color */
+ const double tr1 = (1. - fmax(fmax(rgb[0], rgb[1]), rgb[2]));
+ const double tr2 = fmin(fmin(rgb[0], rgb[1]), rgb[2]);
+ data[3] = (unsigned char)round(255.*(1. - tr1*negalph1 - tr2*negalph2));
+ data[2] = (unsigned char)round(255.*fmin(1, fmax(0, tr1*h1[0] + tr2*h2[0] + (l + su * h[0]))));
+ data[1] = (unsigned char)round(255.*fmin(1, fmax(0, tr1*h1[1] + tr2*h2[1] + (l + su * h[1]))));
+ data[0] = (unsigned char)round(255.*fmin(1, fmax(0, tr1*h1[2] + tr2*h2[2] + (l + su * h[2]))));
+ }
} else {
/* linear interpolation between dark and light with color ligtness as
* a parameter */
- data[2] = (unsigned char)round(255.*(l * rgb_diff[0] + rgb1.red));
- data[1] = (unsigned char)round(255.*(l * rgb_diff[1] + rgb1.green));
- data[0] = (unsigned char)round(255.*(l * rgb_diff[2] + rgb1.blue));
+ if (fast_formula) {
+ data[3] = 255;
+ data[2] = (unsigned char)round(255.*(l * rgb_diff[0] + rgb1.red));
+ data[1] = (unsigned char)round(255.*(l * rgb_diff[1] + rgb1.green));
+ data[0] = (unsigned char)round(255.*(l * rgb_diff[2] + rgb1.blue));
+ } else {
+ const double f1 = 1. - (1. - fmax(fmax(rgb[0], rgb[1]), rgb[2]))*negalph1;
+ const double f2 = fmin(fmin(rgb[0], rgb[1]), rgb[2])*negalph2;
+ data[3] = (unsigned char)round(255.*(f1 - f2));
+ data[2] = (unsigned char)round(255.*(l * rgb_diff[0] - f2*rgb2.red + f1*rgb1.red));
+ data[1] = (unsigned char)round(255.*(l * rgb_diff[1] - f2*rgb2.green + f1*rgb1.green));
+ data[0] = (unsigned char)round(255.*(l * rgb_diff[2] - f2*rgb2.blue + f1*rgb1.blue));
+ }
}
}
}
@@ -778,8 +823,16 @@ render(render_job_t* job, ZathuraRenderRequest* request, ZathuraRenderer* render
page_height = height;
}
- cairo_surface_t* surface = cairo_image_surface_create(CAIRO_FORMAT_RGB24,
+ cairo_format_t format;
+ if (priv->recolor.enabled) {
+ format = CAIRO_FORMAT_ARGB32;
+ }
+ else {
+ format = CAIRO_FORMAT_RGB24;
+ }
+ cairo_surface_t* surface = cairo_image_surface_create(format,
page_width, page_height);
+
if (surface == NULL) {
return false;
}
From 155e538d2650411ebbc18bd73b625a24ce24b40f Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 9 Mar 2020 13:24:14 +0100
Subject: [PATCH 09/49] Remove empty statement
---
zathura/completion.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zathura/completion.c b/zathura/completion.c
index 20bf81f..029ccca 100644
--- a/zathura/completion.c
+++ b/zathura/completion.c
@@ -78,7 +78,7 @@ list_files(zathura_t* zathura, const char* current_path, const char* current_fil
char* tmp = "/";
if (is_dir == true || g_strcmp0(current_path, "/") == 0) {
tmp = "";
- };
+ }
char* full_path = g_strdup_printf("%s%s%s", current_path, tmp, e_name);
g_free(e_name);
From d80c654b8b1079b89d4c3909ede7f85292842f4c Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 9 Mar 2020 13:25:56 +0100
Subject: [PATCH 10/49] Merge two ifs
---
zathura/database-plain.c | 11 ++++-------
zathura/database-sqlite.c | 9 ++++-----
2 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/zathura/database-plain.c b/zathura/database-plain.c
index bba4175..8b28383 100644
--- a/zathura/database-plain.c
+++ b/zathura/database-plain.c
@@ -463,14 +463,11 @@ plain_remove_bookmark(zathura_database_t* db, const char* file, const char* id)
}
char* name = prepare_filename(file);
- if (g_key_file_has_group(priv->bookmarks, name) == TRUE) {
- if (g_key_file_remove_key(priv->bookmarks, name, id, NULL) == TRUE) {
+ if (g_key_file_has_group(priv->bookmarks, name) == TRUE && g_key_file_remove_key(priv->bookmarks, name, id, NULL) == TRUE) {
+ zathura_db_write_key_file_to_file(priv->bookmark_path, priv->bookmarks);
+ g_free(name);
- zathura_db_write_key_file_to_file(priv->bookmark_path, priv->bookmarks);
- g_free(name);
-
- return true;
- }
+ return true;
}
g_free(name);
diff --git a/zathura/database-sqlite.c b/zathura/database-sqlite.c
index 212cce6..411ffec 100644
--- a/zathura/database-sqlite.c
+++ b/zathura/database-sqlite.c
@@ -155,11 +155,10 @@ check_column_type(sqlite3* session, const char* table, const char* col, const ch
*res = false;
while (sqlite3_step(stmt) == SQLITE_ROW) {
- if (strcmp((const char*) sqlite3_column_text(stmt, 1), col) == 0) {
- if (strcmp((const char*) sqlite3_column_text(stmt, 2), type) == 0) {
- *res = true;
- break;
- }
+ if (strcmp((const char*) sqlite3_column_text(stmt, 1), col) == 0 &&
+ strcmp((const char*) sqlite3_column_text(stmt, 2), type) == 0) {
+ *res = true;
+ break;
}
}
From cf69a2b79bc609f058f974a0db6f4c68964fa8ee Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 9 Mar 2020 13:31:53 +0100
Subject: [PATCH 11/49] Clear handle
---
zathura/file-monitor-signal.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/zathura/file-monitor-signal.c b/zathura/file-monitor-signal.c
index 319856a..c776668 100644
--- a/zathura/file-monitor-signal.c
+++ b/zathura/file-monitor-signal.c
@@ -52,6 +52,7 @@ stop(ZathuraFileMonitor* file_monitor)
if (signal_file_monitor->handle > 0) {
g_source_remove(signal_file_monitor->handle);
+ signal_file_monitor->handle = 0;
}
#endif
}
From 9a783fe20220a168fb588a433992b96900fcf19f Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 9 Mar 2020 18:31:14 +0100
Subject: [PATCH 12/49] Fix for condition
---
zathura/shortcuts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c
index a2786d6..2097032 100644
--- a/zathura/shortcuts.c
+++ b/zathura/shortcuts.c
@@ -909,7 +909,7 @@ sc_search(girara_session_t* session, girara_argument_t* argument,
/* the next result is on a different page */
g_object_set(G_OBJECT(page_widget), "search-current", -1, NULL);
- for (int npage_id = 1; page_id < num_pages; ++npage_id) {
+ for (unsigned int npage_id = 1; npage_id < num_pages; ++npage_id) {
int ntmp = cur_page + diff * (page_id + npage_id);
zathura_page_t* npage = zathura_document_get_page(zathura->document, (ntmp + 2*num_pages) % num_pages);
GtkWidget* npage_page_widget = zathura_page_get_widget(zathura, npage);
From 76bc4638b81b03724d2bc74ac0b8752c35f0235b Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 9 Mar 2020 18:38:14 +0100
Subject: [PATCH 13/49] Mark functions as static
---
zathura/marks.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/zathura/marks.c b/zathura/marks.c
index 7b94bbd..66f3ff7 100644
--- a/zathura/marks.c
+++ b/zathura/marks.c
@@ -57,7 +57,7 @@ sc_mark_evaluate(girara_session_t* session, girara_argument_t* UNUSED(argument),
return true;
}
-bool
+static bool
cb_marks_view_key_press_event_add(GtkWidget* UNUSED(widget), GdkEventKey* event,
girara_session_t* session)
{
@@ -84,8 +84,9 @@ cb_marks_view_key_press_event_add(GtkWidget* UNUSED(widget), GdkEventKey* event,
return true;
}
-bool cb_marks_view_key_press_event_evaluate(GtkWidget* UNUSED(widget), GdkEventKey*
- event, girara_session_t* session)
+static bool
+cb_marks_view_key_press_event_evaluate(GtkWidget* UNUSED(widget), GdkEventKey*
+ event, girara_session_t* session)
{
g_return_val_if_fail(session != NULL, FALSE);
g_return_val_if_fail(session->gtk.view != NULL, FALSE);
@@ -191,7 +192,7 @@ cmd_marks_delete(girara_session_t* session, girara_list_t* argument_list)
return true;
}
-void
+static void
mark_add(zathura_t* zathura, int key)
{
if (zathura == NULL || zathura->document == NULL || zathura->global.marks == NULL) {
@@ -231,7 +232,7 @@ mark_add(zathura_t* zathura, int key)
girara_list_append(zathura->global.marks, mark);
}
-void
+static void
mark_evaluate(zathura_t* zathura, int key)
{
if (zathura == NULL || zathura->global.marks == NULL) {
From 88e7c7afe81f6c4344b1e4674e2296ee28ccc442 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 9 Mar 2020 21:15:27 +0100
Subject: [PATCH 14/49] Simplify
---
zathura/marks.c | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/zathura/marks.c b/zathura/marks.c
index 66f3ff7..b8ea482 100644
--- a/zathura/marks.c
+++ b/zathura/marks.c
@@ -122,20 +122,15 @@ cmd_marks_add(girara_session_t* session, girara_list_t* argument_list)
return false;
}
- char* key_string = girara_list_nth(argument_list, 0);
+ const char* key_string = girara_list_nth(argument_list, 0);
- if (key_string == NULL) {
+ if (key_string == NULL || strlen(key_string) != 1) {
return false;
}
- if (strlen(key_string) != 1) {
- return false;
- }
-
- char key = key_string[0];
-
- if (((key >= 0x41 && key <= 0x5A) || (key >=
- 0x61 && key <= 0x7A)) == false) {
+ const char key = key_string[0];
+ if (((key >= 0x41 && key <= 0x5A) ||
+ (key >= 0x61 && key <= 0x7A)) == false) {
return false;
}
From d63b7048089188e525a32fddb13f628dcaa4cf71 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 9 Mar 2020 21:30:35 +0100
Subject: [PATCH 15/49] Simplify
---
zathura/callbacks.c | 40 +++++++++++++++++++++-------------------
1 file changed, 21 insertions(+), 19 deletions(-)
diff --git a/zathura/callbacks.c b/zathura/callbacks.c
index abdf4f5..4f32c45 100644
--- a/zathura/callbacks.c
+++ b/zathura/callbacks.c
@@ -373,7 +373,7 @@ typedef enum zathura_link_action_e
ZATHURA_LINK_ACTION_DISPLAY
} zathura_link_action_t;
-static bool
+static gboolean
handle_link(GtkEntry* entry, girara_session_t* session,
zathura_link_action_t action)
{
@@ -381,19 +381,19 @@ handle_link(GtkEntry* entry, girara_session_t* session,
g_return_val_if_fail(session->global.data != NULL, FALSE);
zathura_t* zathura = session->global.data;
- bool eval = true;
+ gboolean eval = TRUE;
char* input = gtk_editable_get_chars(GTK_EDITABLE(entry), 0, -1);
if (input == NULL || strlen(input) == 0) {
- eval = false;
+ eval = FALSE;
}
int index = 0;
- if (eval == true) {
+ if (eval == TRUE) {
index = atoi(input);
if (index == 0 && g_strcmp0(input, "0") != 0) {
girara_notify(session, GIRARA_WARNING, _("Invalid input '%s' given."), input);
- eval = false;
+ eval = FALSE;
}
index = index - 1;
}
@@ -410,30 +410,32 @@ handle_link(GtkEntry* entry, girara_session_t* session,
GtkWidget* page_widget = zathura_page_get_widget(zathura, page);
g_object_set(G_OBJECT(page_widget), "draw-links", FALSE, NULL);
- if (eval == true) {
- zathura_link_t* link = zathura_page_widget_link_get(ZATHURA_PAGE(page_widget), index);
+ if (eval == FALSE) {
+ /* nothing to evaluate */
+ continue;
+ }
- if (link != NULL) {
- invalid_index = false;
- switch (action) {
- case ZATHURA_LINK_ACTION_FOLLOW:
- zathura_link_evaluate(zathura, link);
- break;
- case ZATHURA_LINK_ACTION_DISPLAY:
- zathura_link_display(zathura, link);
- break;
- }
+ zathura_link_t* link = zathura_page_widget_link_get(ZATHURA_PAGE(page_widget), index);
+ if (link != NULL) {
+ invalid_index = false;
+ switch (action) {
+ case ZATHURA_LINK_ACTION_FOLLOW:
+ zathura_link_evaluate(zathura, link);
+ break;
+ case ZATHURA_LINK_ACTION_DISPLAY:
+ zathura_link_display(zathura, link);
+ break;
}
}
}
- if (eval == true && invalid_index == true) {
+ if (eval == TRUE && invalid_index == true) {
girara_notify(session, GIRARA_WARNING, _("Invalid index '%s' given."), input);
}
g_free(input);
- return (eval == TRUE) ? TRUE : FALSE;
+ return eval;
}
gboolean
From 62a682d35e75b4193b4561444ffc0869296521c1 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Tue, 10 Mar 2020 20:41:09 +0100
Subject: [PATCH 16/49] Add some consts and bail out early
---
zathura/callbacks.c | 46 ++++++++++++++++++++++-----------------------
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/zathura/callbacks.c b/zathura/callbacks.c
index 4f32c45..9d483d9 100644
--- a/zathura/callbacks.c
+++ b/zathura/callbacks.c
@@ -103,8 +103,8 @@ cb_view_hadjustment_value_changed(GtkAdjustment* adjustment, gpointer data)
update_visible_pages(zathura);
- double position_x = zathura_adjustment_get_ratio(adjustment);
- double position_y = zathura_document_get_position_y(zathura->document);
+ const double position_x = zathura_adjustment_get_ratio(adjustment);
+ const double position_y = zathura_document_get_position_y(zathura->document);
unsigned int page_id = position_to_page_number(zathura->document, position_x, position_y);
zathura_document_set_position_x(zathura->document, position_x);
@@ -129,8 +129,8 @@ cb_view_vadjustment_value_changed(GtkAdjustment* adjustment, gpointer data)
update_visible_pages(zathura);
- double position_x = zathura_document_get_position_x(zathura->document);
- double position_y = zathura_adjustment_get_ratio(adjustment);
+ const double position_x = zathura_document_get_position_x(zathura->document);
+ const double position_y = zathura_adjustment_get_ratio(adjustment);
unsigned int page_id = position_to_page_number(zathura->document, position_x, position_y);
zathura_document_set_position_x(zathura->document, position_x);
@@ -158,7 +158,7 @@ cb_view_adjustment_changed(GtkAdjustment* adjustment, zathura_t* zathura,
}
/* Save the viewport size */
- unsigned int size = (unsigned int)floor(gtk_adjustment_get_page_size(adjustment));
+ const unsigned int size = floor(gtk_adjustment_get_page_size(adjustment));
if (width == true) {
zathura_document_set_viewport_width(zathura->document, size);
} else {
@@ -207,8 +207,8 @@ cb_refresh_view(GtkWidget* GIRARA_UNUSED(view), gpointer data)
GtkAdjustment* vadj = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(zathura->ui.session->gtk.view));
GtkAdjustment* hadj = gtk_scrolled_window_get_hadjustment(GTK_SCROLLED_WINDOW(zathura->ui.session->gtk.view));
- double position_x = zathura_document_get_position_x(zathura->document);
- double position_y = zathura_document_get_position_y(zathura->document);
+ const double position_x = zathura_document_get_position_x(zathura->document);
+ const double position_y = zathura_document_get_position_y(zathura->document);
zathura_adjustment_set_value_from_ratio(vadj, position_y);
zathura_adjustment_set_value_from_ratio(hadj, position_x);
@@ -655,27 +655,28 @@ cb_page_widget_text_selected(ZathuraPage* page, const char* text, void* data)
}
GdkAtom* selection = get_selection(zathura);
+ if (selection == NULL) {
+ return;
+ }
/* copy to clipboard */
- if (selection != NULL) {
- gtk_clipboard_set_text(gtk_clipboard_get(*selection), text, -1);
+ gtk_clipboard_set_text(gtk_clipboard_get(*selection), text, -1);
- bool notification = true;
- girara_setting_get(zathura->ui.session, "selection-notification", ¬ification);
+ bool notification = true;
+ girara_setting_get(zathura->ui.session, "selection-notification", ¬ification);
- if (notification == true) {
- char* target = NULL;
- girara_setting_get(zathura->ui.session, "selection-clipboard", &target);
+ if (notification == true) {
+ char* target = NULL;
+ girara_setting_get(zathura->ui.session, "selection-clipboard", &target);
- char* stripped_text = g_strdelimit(g_strdup(text), "\n\t\r\n", ' ');
- char* escaped_text = g_markup_printf_escaped(
- _("Copied selected text to selection %s: %s"), target, stripped_text);
- g_free(target);
- g_free(stripped_text);
+ char* stripped_text = g_strdelimit(g_strdup(text), "\n\t\r\n", ' ');
+ char* escaped_text = g_markup_printf_escaped(
+ _("Copied selected text to selection %s: %s"), target, stripped_text);
+ g_free(target);
+ g_free(stripped_text);
- girara_notify(zathura->ui.session, GIRARA_INFO, "%s", escaped_text);
- g_free(escaped_text);
- }
+ girara_notify(zathura->ui.session, GIRARA_INFO, "%s", escaped_text);
+ g_free(escaped_text);
}
g_free(selection);
@@ -731,7 +732,6 @@ cb_page_widget_scaled_button_release(ZathuraPage* page_widget, GdkEventButton* e
void* data)
{
zathura_t* zathura = data;
-
zathura_page_t* page = zathura_page_widget_get_page(page_widget);
/* set page number (but don't scroll there. it was clicked on, so it's visible) */
From b8e82e8f91c0a872bc0039e6b4e83071b42d4178 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Tue, 10 Mar 2020 21:19:46 +0100
Subject: [PATCH 17/49] Add missing return
---
zathura/callbacks.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/zathura/callbacks.c b/zathura/callbacks.c
index 9d483d9..42a9f59 100644
--- a/zathura/callbacks.c
+++ b/zathura/callbacks.c
@@ -775,6 +775,7 @@ cb_window_update_icon(ZathuraRenderRequest* GIRARA_UNUSED(request), cairo_surfac
GdkPixbuf* pixbuf = gdk_pixbuf_get_from_surface(surface, 0, 0, cairo_image_surface_get_width(surface), cairo_image_surface_get_height(surface));
if (pixbuf == NULL) {
girara_error("Unable to convert cairo surface to Gdk Pixbuf.");
+ return;
}
gtk_window_set_icon(GTK_WINDOW(zathura->ui.session->gtk.window), pixbuf);
From eab2479172b012ba2c48426c3d1877fc102369e1 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Tue, 10 Mar 2020 21:33:38 +0100
Subject: [PATCH 18/49] Some more clean up
---
zathura/callbacks.c | 2 +-
zathura/zathura.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/zathura/callbacks.c b/zathura/callbacks.c
index 42a9f59..9fa18c2 100644
--- a/zathura/callbacks.c
+++ b/zathura/callbacks.c
@@ -131,7 +131,7 @@ cb_view_vadjustment_value_changed(GtkAdjustment* adjustment, gpointer data)
const double position_x = zathura_document_get_position_x(zathura->document);
const double position_y = zathura_adjustment_get_ratio(adjustment);
- unsigned int page_id = position_to_page_number(zathura->document, position_x, position_y);
+ const unsigned int page_id = position_to_page_number(zathura->document, position_x, position_y);
zathura_document_set_position_x(zathura->document, position_x);
zathura_document_set_position_y(zathura->document, position_y);
diff --git a/zathura/zathura.c b/zathura/zathura.c
index c3599f5..44aabc7 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -1124,9 +1124,9 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char*
GtkAdjustment* vadjustment = gtk_scrolled_window_get_vadjustment(
GTK_SCROLLED_WINDOW(zathura->ui.session->gtk.view));
- const unsigned int view_width = (unsigned int)floor(gtk_adjustment_get_page_size(hadjustment));
+ const unsigned int view_width = floor(gtk_adjustment_get_page_size(hadjustment));
zathura_document_set_viewport_width(zathura->document, view_width);
- const unsigned int view_height = (unsigned int)floor(gtk_adjustment_get_page_size(vadjustment));
+ const unsigned int view_height = floor(gtk_adjustment_get_page_size(vadjustment));
zathura_document_set_viewport_height(zathura->document, view_height);
zathura_update_view_ppi(zathura);
@@ -1135,7 +1135,7 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char*
cb_widget_screen_changed(zathura->ui.session->gtk.view, NULL, zathura);
/* get initial device scale */
- int device_factor = gtk_widget_get_scale_factor(zathura->ui.session->gtk.view);
+ const int device_factor = gtk_widget_get_scale_factor(zathura->ui.session->gtk.view);
zathura_document_set_device_factors(zathura->document, device_factor, device_factor);
/* create blank pages */
From 9a7d1d1c4773a75e3e50dce413ce358fe0260765 Mon Sep 17 00:00:00 2001
From: Lucas Franceschino
Date: Wed, 11 Mar 2020 17:22:12 +0100
Subject: [PATCH 19/49] fix synctex rectangles overlapping
---
zathura/synctex.c | 5 +-
zathura/utils.c | 118 ++++++++++++++++++++++++++++++++++++++++++++++
zathura/utils.h | 2 +
3 files changed, 124 insertions(+), 1 deletion(-)
diff --git a/zathura/synctex.c b/zathura/synctex.c
index 1fd4ac6..511a118 100644
--- a/zathura/synctex.c
+++ b/zathura/synctex.c
@@ -202,7 +202,10 @@ synctex_rectangles_from_position(const char* filename, const char* input_file,
girara_list_free(other_rects);
}
- return hitlist;
+ girara_list_t* hitlist_flat = flatten_rectangles(hitlist);
+ /* girara_list_free(hitlist); */
+
+ return hitlist_flat;
}
#else
bool
diff --git a/zathura/utils.c b/zathura/utils.c
index 4a66728..44a74db 100644
--- a/zathura/utils.c
+++ b/zathura/utils.c
@@ -310,3 +310,121 @@ running_under_wsl(void)
free(content);
return result;
}
+
+
+
+
+
+typedef struct zathura_point_s
+{
+ double x;
+ double y;
+} zathura_point_t;
+
+int cmp_point(const zathura_point_t* a, const zathura_point_t* b){
+ return a->x == b->x && a->y == b->y ? 0 : -1;
+}
+int cmp_double(const double* x, const double* y){
+ return *x == *y ? 0 : (*x > *y ? 1 : -1);
+}
+int cmp_rectangle(const zathura_rectangle_t* r1, const zathura_rectangle_t* r2){
+ return
+ (r1->x1 == r2->x1 &&
+ r1->x2 == r2->x2 &&
+ r1->y1 == r2->y1 &&
+ r1->y2 == r2->y2
+ ) ? 0 : -1;
+}
+girara_compare_function_t gcmp_double = (girara_compare_function_t)cmp_double;
+girara_compare_function_t gcmp_point = (girara_compare_function_t)cmp_point;
+girara_compare_function_t gcmp_rectangle = (girara_compare_function_t)cmp_rectangle;
+
+bool girara_list_append_unique(girara_list_t* l, girara_compare_function_t cmp, void* item){
+ if(girara_list_find(l, cmp, item))
+ return false;
+ girara_list_append(l, item);
+ return true;
+}
+
+void rectangle_to_points(const zathura_rectangle_t* rect, girara_list_t* list){
+ zathura_point_t* p1 = g_try_malloc0(sizeof(zathura_point_t));
+ zathura_point_t* p2 = g_try_malloc0(sizeof(zathura_point_t));
+ zathura_point_t* p3 = g_try_malloc0(sizeof(zathura_point_t));
+ zathura_point_t* p4 = g_try_malloc0(sizeof(zathura_point_t));
+ if(p1==NULL || p2==NULL || p3==NULL || p4==NULL)
+ return;
+ *p1 = (zathura_point_t) { rect->x1, rect->y1 };
+ *p2 = (zathura_point_t) { rect->x1, rect->y2 };
+ *p3 = (zathura_point_t) { rect->x2, rect->y1 };
+ *p4 = (zathura_point_t) { rect->x2, rect->y2 };
+ if(!girara_list_append_unique(list, gcmp_point, (void*) p1))
+ g_free(p1);
+ if(!girara_list_append_unique(list, gcmp_point, (void*) p2))
+ g_free(p2);
+ if(!girara_list_append_unique(list, gcmp_point, (void*) p3))
+ g_free(p3);
+ if(!girara_list_append_unique(list, gcmp_point, (void*) p4))
+ g_free(p4);
+}
+
+// transform a rectangle into multiple new ones according a grid of points
+void cut_rectangle(const zathura_rectangle_t* rect, girara_list_t* points,
+ girara_list_t* rectangles){
+ // Lists of ordred relevant points
+ girara_list_t* xs = girara_sorted_list_new2(gcmp_double, g_free);
+ girara_list_t* ys = girara_sorted_list_new2(gcmp_double, g_free);
+
+ double* rX2 = g_try_malloc(sizeof(double));
+ double* rY2 = g_try_malloc(sizeof(double));
+ if(rX2 == NULL || rY2 == NULL)
+ return;
+
+ *rX2 = (double)rect->x2;
+ *rY2 = (double)rect->y2;
+ girara_list_append(xs, rX2);
+ girara_list_append(ys, rY2);
+
+ GIRARA_LIST_FOREACH(points, zathura_point_t*, i_pt, pt)
+ if(pt->x > rect->x1 && pt->x < rect->x2){
+ double* v = g_try_malloc(sizeof(double));
+ if(v == NULL) return;
+ *v = (double) pt->x;
+ if(!girara_list_append_unique(xs, gcmp_double, v))
+ g_free(v);
+ }
+ if(pt->y > rect->y1 && pt->y < rect->y2){
+ double* v = g_try_malloc(sizeof(double));
+ if(v == NULL) return;
+ *v = (double) pt->y;
+ if(!girara_list_append_unique(ys, gcmp_double, v))
+ g_free(v);
+ }
+ GIRARA_LIST_FOREACH_END(points, zathura_point_t*, i_pt, pt);
+
+ double x = rect->x1;
+ GIRARA_LIST_FOREACH(xs, double*, ix, cx)
+ double y = rect->y1;
+ GIRARA_LIST_FOREACH(ys, double*, iy, cy)
+ zathura_rectangle_t* r = g_try_malloc(sizeof(zathura_rectangle_t));
+ *r = (zathura_rectangle_t) {x, y, *cx, *cy};
+ y = *cy;
+ girara_list_append_unique(rectangles, gcmp_rectangle, r);
+ GIRARA_LIST_FOREACH_END(ys, double*, iy, cy);
+ x = *cx;
+ GIRARA_LIST_FOREACH_END(xs, double*, ix, cx);
+
+ girara_list_free(xs);
+ girara_list_free(ys);
+}
+
+girara_list_t* flatten_rectangles(girara_list_t* rectangles){
+ girara_list_t* new_rectangles = girara_list_new2(g_free);
+ girara_list_t* points = girara_list_new2(g_free);
+ girara_list_foreach(rectangles, (girara_list_callback_t) rectangle_to_points, points);
+
+ GIRARA_LIST_FOREACH(rectangles, zathura_rectangle_t*, i, r)
+ cut_rectangle(r, points, new_rectangles);
+ GIRARA_LIST_FOREACH_END(rectangles, zathura_rectangle_t*, i, r);
+ girara_list_free(points);
+ return new_rectangles;
+}
diff --git a/zathura/utils.h b/zathura/utils.h
index eb0a52b..d8df39a 100644
--- a/zathura/utils.h
+++ b/zathura/utils.h
@@ -138,3 +138,5 @@ bool parse_color(GdkRGBA* color, const char* str);
bool running_under_wsl(void);
#endif // UTILS_H
+
+girara_list_t* flatten_rectangles(girara_list_t* rectangles);
From 776e3e6b650bbb29c96179ee37ba3fdaf7c3810c Mon Sep 17 00:00:00 2001
From: Lucas Franceschino
Date: Thu, 12 Mar 2020 09:09:22 +0100
Subject: [PATCH 20/49] free hitlist
---
zathura/synctex.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zathura/synctex.c b/zathura/synctex.c
index 511a118..fb442ed 100644
--- a/zathura/synctex.c
+++ b/zathura/synctex.c
@@ -203,7 +203,7 @@ synctex_rectangles_from_position(const char* filename, const char* input_file,
}
girara_list_t* hitlist_flat = flatten_rectangles(hitlist);
- /* girara_list_free(hitlist); */
+ girara_list_free(hitlist);
return hitlist_flat;
}
From 68da777920b736119f640934b90e0b618226b47e Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Thu, 12 Mar 2020 21:38:03 +0100
Subject: [PATCH 21/49] Add documentation
---
zathura/utils.h | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/zathura/utils.h b/zathura/utils.h
index d8df39a..e1da74b 100644
--- a/zathura/utils.h
+++ b/zathura/utils.h
@@ -107,7 +107,6 @@ GdkAtom* get_selection(zathura_t* zathura);
double zathura_correct_zoom_value(girara_session_t* session, const double
zoom);
-
/**
* Extracts the column the first page should be rendered in from the specified
* list of settings corresponding to the specified pages per row
@@ -137,6 +136,13 @@ bool parse_color(GdkRGBA* color, const char* str);
*/
bool running_under_wsl(void);
-#endif // UTILS_H
-
+/**
+ * Flatten list of overlapping rectangles.
+ *
+ * @param[in] rectangles A list of rectangles
+ *
+ * @return List of rectangles
+ */
girara_list_t* flatten_rectangles(girara_list_t* rectangles);
+
+#endif // UTILS_H
From 031bb6d9ee1bb700060573e23e0336b322344514 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Thu, 12 Mar 2020 21:53:50 +0100
Subject: [PATCH 22/49] Fix some memory leaks on error and CS
---
zathura/utils.c | 153 +++++++++++++++++++++++++++++-------------------
1 file changed, 93 insertions(+), 60 deletions(-)
diff --git a/zathura/utils.c b/zathura/utils.c
index 44a74db..8352d7f 100644
--- a/zathura/utils.c
+++ b/zathura/utils.c
@@ -311,117 +311,150 @@ running_under_wsl(void)
return result;
}
-
-
-
-
typedef struct zathura_point_s
{
double x;
double y;
} zathura_point_t;
-int cmp_point(const zathura_point_t* a, const zathura_point_t* b){
+static int
+cmp_point(const void* va, const void* vb) {
+ const zathura_point_t* a = va;
+ const zathura_point_t* b = vb;
+
return a->x == b->x && a->y == b->y ? 0 : -1;
}
-int cmp_double(const double* x, const double* y){
+
+static int
+cmp_double(const void* vx, const void* vy) {
+ const double* x = vx;
+ const double* y = vy;
+
return *x == *y ? 0 : (*x > *y ? 1 : -1);
}
-int cmp_rectangle(const zathura_rectangle_t* r1, const zathura_rectangle_t* r2){
- return
- (r1->x1 == r2->x1 &&
- r1->x2 == r2->x2 &&
- r1->y1 == r2->y1 &&
- r1->y2 == r2->y2
- ) ? 0 : -1;
-}
-girara_compare_function_t gcmp_double = (girara_compare_function_t)cmp_double;
-girara_compare_function_t gcmp_point = (girara_compare_function_t)cmp_point;
-girara_compare_function_t gcmp_rectangle = (girara_compare_function_t)cmp_rectangle;
-bool girara_list_append_unique(girara_list_t* l, girara_compare_function_t cmp, void* item){
- if(girara_list_find(l, cmp, item))
+static int
+cmp_rectangle(const void* vr1, const void* vr2) {
+ const zathura_rectangle_t* r1 = vr1;
+ const zathura_rectangle_t* r2 = vr2;
+
+ return (r1->x1 == r2->x1 && r1->x2 == r2->x2 && r1->y1 == r2->y1 &&
+ r1->y2 == r2->y2)
+ ? 0
+ : -1;
+}
+
+
+static bool
+girara_list_append_unique(girara_list_t* l, girara_compare_function_t cmp, void* item) {
+ if (girara_list_find(l, cmp, item) != NULL) {
return false;
+ }
+
girara_list_append(l, item);
return true;
}
-void rectangle_to_points(const zathura_rectangle_t* rect, girara_list_t* list){
+static void
+rectangle_to_points(void* vrect, void* vlist) {
+ const zathura_rectangle_t* rect = vrect;
+ girara_list_t* list = vlist;
+
zathura_point_t* p1 = g_try_malloc0(sizeof(zathura_point_t));
zathura_point_t* p2 = g_try_malloc0(sizeof(zathura_point_t));
zathura_point_t* p3 = g_try_malloc0(sizeof(zathura_point_t));
zathura_point_t* p4 = g_try_malloc0(sizeof(zathura_point_t));
- if(p1==NULL || p2==NULL || p3==NULL || p4==NULL)
+ if (p1 == NULL || p2 == NULL || p3 == NULL || p4 == NULL) {
+ g_free(p4);
+ g_free(p3);
+ g_free(p2);
+ g_free(p1);
return;
+ }
+
*p1 = (zathura_point_t) { rect->x1, rect->y1 };
*p2 = (zathura_point_t) { rect->x1, rect->y2 };
*p3 = (zathura_point_t) { rect->x2, rect->y1 };
*p4 = (zathura_point_t) { rect->x2, rect->y2 };
- if(!girara_list_append_unique(list, gcmp_point, (void*) p1))
+
+ if (!girara_list_append_unique(list, cmp_point, p1)) {
g_free(p1);
- if(!girara_list_append_unique(list, gcmp_point, (void*) p2))
+ }
+ if (!girara_list_append_unique(list, cmp_point, p2)) {
g_free(p2);
- if(!girara_list_append_unique(list, gcmp_point, (void*) p3))
+ }
+ if (!girara_list_append_unique(list, cmp_point, p3)) {
g_free(p3);
- if(!girara_list_append_unique(list, gcmp_point, (void*) p4))
+ }
+ if (!girara_list_append_unique(list, cmp_point, p4)) {
g_free(p4);
+ }
}
// transform a rectangle into multiple new ones according a grid of points
-void cut_rectangle(const zathura_rectangle_t* rect, girara_list_t* points,
- girara_list_t* rectangles){
+static void
+cut_rectangle(const zathura_rectangle_t* rect, girara_list_t* points, girara_list_t* rectangles) {
// Lists of ordred relevant points
- girara_list_t* xs = girara_sorted_list_new2(gcmp_double, g_free);
- girara_list_t* ys = girara_sorted_list_new2(gcmp_double, g_free);
-
+ girara_list_t* xs = girara_sorted_list_new2(cmp_double, g_free);
+ girara_list_t* ys = girara_sorted_list_new2(cmp_double, g_free);
+
double* rX2 = g_try_malloc(sizeof(double));
double* rY2 = g_try_malloc(sizeof(double));
- if(rX2 == NULL || rY2 == NULL)
- return;
+ if (rX2 == NULL || rY2 == NULL) {
- *rX2 = (double)rect->x2;
- *rY2 = (double)rect->y2;
+ return;
+ }
+
+ *rX2 = rect->x2;
+ *rY2 = rect->y2;
girara_list_append(xs, rX2);
girara_list_append(ys, rY2);
GIRARA_LIST_FOREACH(points, zathura_point_t*, i_pt, pt)
- if(pt->x > rect->x1 && pt->x < rect->x2){
- double* v = g_try_malloc(sizeof(double));
- if(v == NULL) return;
- *v = (double) pt->x;
- if(!girara_list_append_unique(xs, gcmp_double, v))
- g_free(v);
- }
- if(pt->y > rect->y1 && pt->y < rect->y2){
- double* v = g_try_malloc(sizeof(double));
- if(v == NULL) return;
- *v = (double) pt->y;
- if(!girara_list_append_unique(ys, gcmp_double, v))
- g_free(v);
- }
+ if (pt->x > rect->x1 && pt->x < rect->x2) {
+ double* v = g_try_malloc(sizeof(double));
+ if (v == NULL) {
+ return;
+ }
+ *v = pt->x;
+ if (!girara_list_append_unique(xs, cmp_double, v)) {
+ g_free(v);
+ }
+ }
+ if (pt->y > rect->y1 && pt->y < rect->y2) {
+ double* v = g_try_malloc(sizeof(double));
+ if (v == NULL) {
+ return;
+ }
+ *v = pt->y;
+ if (!girara_list_append_unique(ys, cmp_double, v)) {
+ g_free(v);
+ }
+ }
GIRARA_LIST_FOREACH_END(points, zathura_point_t*, i_pt, pt);
-
+
double x = rect->x1;
GIRARA_LIST_FOREACH(xs, double*, ix, cx)
- double y = rect->y1;
- GIRARA_LIST_FOREACH(ys, double*, iy, cy)
- zathura_rectangle_t* r = g_try_malloc(sizeof(zathura_rectangle_t));
- *r = (zathura_rectangle_t) {x, y, *cx, *cy};
- y = *cy;
- girara_list_append_unique(rectangles, gcmp_rectangle, r);
- GIRARA_LIST_FOREACH_END(ys, double*, iy, cy);
- x = *cx;
+ double y = rect->y1;
+ GIRARA_LIST_FOREACH(ys, double*, iy, cy)
+ zathura_rectangle_t* r = g_try_malloc(sizeof(zathura_rectangle_t));
+ *r = (zathura_rectangle_t) {x, y, *cx, *cy};
+ y = *cy;
+ girara_list_append_unique(rectangles, cmp_rectangle, r);
+ GIRARA_LIST_FOREACH_END(ys, double*, iy, cy);
+ x = *cx;
GIRARA_LIST_FOREACH_END(xs, double*, ix, cx);
girara_list_free(xs);
girara_list_free(ys);
}
-girara_list_t* flatten_rectangles(girara_list_t* rectangles){
+girara_list_t*
+flatten_rectangles(girara_list_t* rectangles) {
girara_list_t* new_rectangles = girara_list_new2(g_free);
girara_list_t* points = girara_list_new2(g_free);
- girara_list_foreach(rectangles, (girara_list_callback_t) rectangle_to_points, points);
-
+ girara_list_foreach(rectangles, rectangle_to_points, points);
+
GIRARA_LIST_FOREACH(rectangles, zathura_rectangle_t*, i, r)
cut_rectangle(r, points, new_rectangles);
GIRARA_LIST_FOREACH_END(rectangles, zathura_rectangle_t*, i, r);
From a3ffbe80b3acae44a68e8ba6d2c0a28a396825de Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Thu, 12 Mar 2020 22:13:43 +0100
Subject: [PATCH 23/49] Add some helper functions to reduce code duplication
---
zathura/utils.c | 95 ++++++++++++++++++++-----------------------------
1 file changed, 38 insertions(+), 57 deletions(-)
diff --git a/zathura/utils.c b/zathura/utils.c
index 8352d7f..5ceecaa 100644
--- a/zathura/utils.c
+++ b/zathura/utils.c
@@ -355,39 +355,43 @@ girara_list_append_unique(girara_list_t* l, girara_compare_function_t cmp, void*
return true;
}
+static void
+append_unique_point(girara_list_t* list, const double x, const double y) {
+ zathura_point_t* p = g_try_malloc(sizeof(zathura_point_t));
+ if (p == NULL) {
+ return;
+ }
+
+ p->x = x;
+ p->y = y;
+
+ if (girara_list_append_unique(list, cmp_point, p) == false) {
+ g_free(p);
+ }
+}
+
static void
rectangle_to_points(void* vrect, void* vlist) {
const zathura_rectangle_t* rect = vrect;
girara_list_t* list = vlist;
- zathura_point_t* p1 = g_try_malloc0(sizeof(zathura_point_t));
- zathura_point_t* p2 = g_try_malloc0(sizeof(zathura_point_t));
- zathura_point_t* p3 = g_try_malloc0(sizeof(zathura_point_t));
- zathura_point_t* p4 = g_try_malloc0(sizeof(zathura_point_t));
- if (p1 == NULL || p2 == NULL || p3 == NULL || p4 == NULL) {
- g_free(p4);
- g_free(p3);
- g_free(p2);
- g_free(p1);
+ append_unique_point(list, rect->x1, rect->y1);
+ append_unique_point(list, rect->x1, rect->y2);
+ append_unique_point(list, rect->x2, rect->y1);
+ append_unique_point(list, rect->x2, rect->y2);
+}
+
+static void
+append_unique_double(girara_list_t* list, const double v) {
+ double* p = g_try_malloc(sizeof(double));
+ if (p == NULL) {
return;
}
- *p1 = (zathura_point_t) { rect->x1, rect->y1 };
- *p2 = (zathura_point_t) { rect->x1, rect->y2 };
- *p3 = (zathura_point_t) { rect->x2, rect->y1 };
- *p4 = (zathura_point_t) { rect->x2, rect->y2 };
+ *p = v;
- if (!girara_list_append_unique(list, cmp_point, p1)) {
- g_free(p1);
- }
- if (!girara_list_append_unique(list, cmp_point, p2)) {
- g_free(p2);
- }
- if (!girara_list_append_unique(list, cmp_point, p3)) {
- g_free(p3);
- }
- if (!girara_list_append_unique(list, cmp_point, p4)) {
- g_free(p4);
+ if (girara_list_append_unique(list, cmp_double, p) == false) {
+ g_free(p);
}
}
@@ -398,52 +402,29 @@ cut_rectangle(const zathura_rectangle_t* rect, girara_list_t* points, girara_lis
girara_list_t* xs = girara_sorted_list_new2(cmp_double, g_free);
girara_list_t* ys = girara_sorted_list_new2(cmp_double, g_free);
- double* rX2 = g_try_malloc(sizeof(double));
- double* rY2 = g_try_malloc(sizeof(double));
- if (rX2 == NULL || rY2 == NULL) {
-
- return;
- }
-
- *rX2 = rect->x2;
- *rY2 = rect->y2;
- girara_list_append(xs, rX2);
- girara_list_append(ys, rY2);
+ append_unique_double(xs, rect->x2);
+ append_unique_double(ys, rect->y2);
GIRARA_LIST_FOREACH(points, zathura_point_t*, i_pt, pt)
if (pt->x > rect->x1 && pt->x < rect->x2) {
- double* v = g_try_malloc(sizeof(double));
- if (v == NULL) {
- return;
- }
- *v = pt->x;
- if (!girara_list_append_unique(xs, cmp_double, v)) {
- g_free(v);
- }
+ append_unique_double(xs, pt->x);
}
if (pt->y > rect->y1 && pt->y < rect->y2) {
- double* v = g_try_malloc(sizeof(double));
- if (v == NULL) {
- return;
- }
- *v = pt->y;
- if (!girara_list_append_unique(ys, cmp_double, v)) {
- g_free(v);
- }
+ append_unique_double(ys, pt->y);
}
GIRARA_LIST_FOREACH_END(points, zathura_point_t*, i_pt, pt);
double x = rect->x1;
- GIRARA_LIST_FOREACH(xs, double*, ix, cx)
+ GIRARA_LIST_FOREACH(xs, const double*, ix, cx)
double y = rect->y1;
- GIRARA_LIST_FOREACH(ys, double*, iy, cy)
+ GIRARA_LIST_FOREACH(ys, const double*, iy, cy)
zathura_rectangle_t* r = g_try_malloc(sizeof(zathura_rectangle_t));
*r = (zathura_rectangle_t) {x, y, *cx, *cy};
y = *cy;
girara_list_append_unique(rectangles, cmp_rectangle, r);
- GIRARA_LIST_FOREACH_END(ys, double*, iy, cy);
+ GIRARA_LIST_FOREACH_END(ys, const double*, iy, cy);
x = *cx;
- GIRARA_LIST_FOREACH_END(xs, double*, ix, cx);
+ GIRARA_LIST_FOREACH_END(xs, const double*, ix, cx);
girara_list_free(xs);
girara_list_free(ys);
@@ -455,9 +436,9 @@ flatten_rectangles(girara_list_t* rectangles) {
girara_list_t* points = girara_list_new2(g_free);
girara_list_foreach(rectangles, rectangle_to_points, points);
- GIRARA_LIST_FOREACH(rectangles, zathura_rectangle_t*, i, r)
+ GIRARA_LIST_FOREACH(rectangles, const zathura_rectangle_t*, i, r)
cut_rectangle(r, points, new_rectangles);
- GIRARA_LIST_FOREACH_END(rectangles, zathura_rectangle_t*, i, r);
+ GIRARA_LIST_FOREACH_END(rectangles, const zathura_rectangle_t*, i, r);
girara_list_free(points);
return new_rectangles;
}
From de0368812499662bacca9429cad92a9d3fe16f07 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Thu, 12 Mar 2020 22:16:44 +0100
Subject: [PATCH 24/49] Remove redundant condition
---
zathura/shortcuts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c
index 2097032..eef6b76 100644
--- a/zathura/shortcuts.c
+++ b/zathura/shortcuts.c
@@ -969,7 +969,7 @@ sc_search(girara_session_t* session, girara_argument_t* argument,
zathura_jumplist_add(zathura);
position_set(zathura, pos_x, pos_y);
zathura_jumplist_add(zathura);
- } else if (target_page == NULL && argument->data != NULL) {
+ } else if (argument->data != NULL) {
const char* input = argument->data;
girara_notify(session, GIRARA_ERROR, _("Pattern not found: %s"), input);
}
From 3b4540fee195d5c3cc8a32315fee6cdf04b66c20 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Sun, 22 Mar 2020 23:44:32 +0100
Subject: [PATCH 25/49] Update translations
---
po/ar.po | 20 +++++++++++++-------
po/ca.po | 20 +++++++++++++-------
po/cs.po | 20 +++++++++++++-------
po/de.po | 24 ++++++++++++++++--------
po/el.po | 20 +++++++++++++-------
po/eo.po | 20 +++++++++++++-------
po/es.po | 20 +++++++++++++-------
po/es_CL.po | 20 +++++++++++++-------
po/et.po | 20 +++++++++++++-------
po/fr.po | 20 +++++++++++++-------
po/he.po | 20 +++++++++++++-------
po/hr.po | 20 +++++++++++++-------
po/id_ID.po | 20 +++++++++++++-------
po/it.po | 28 +++++++++++++++++-----------
po/lt.po | 20 +++++++++++++-------
po/nl.po | 20 +++++++++++++-------
po/no.po | 20 +++++++++++++-------
po/pl.po | 20 +++++++++++++-------
po/pt_BR.po | 22 ++++++++++++++--------
po/ru.po | 20 +++++++++++++-------
po/sv.po | 26 ++++++++++++++++----------
po/ta_IN.po | 20 +++++++++++++-------
po/tr.po | 20 +++++++++++++-------
po/uk_UA.po | 20 +++++++++++++-------
24 files changed, 323 insertions(+), 177 deletions(-)
diff --git a/po/ar.po b/po/ar.po
index 306755f..4a268f6 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: abouzakaria kov \n"
"Language-Team: Arabic (http://www.transifex.com/pwmt/zathura/language/ar/)\n"
@@ -37,15 +37,21 @@ msgstr ""
"للمساحة بالإضافة إلى استخدام سهل يركز بشكل أساسي على تفاعل لوحة المفاتيح. "
"يتيح Zathura إمكانية عرض المستندات والتنقل خلالها بدون استخدام الماوس."
-#: data/org.pwmt.zathura.appdata.xml.in:21
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
msgstr "SyncTeX دعم المزامنة الأمامية والخلفية."
-#: data/org.pwmt.zathura.appdata.xml.in:22
+#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
msgstr "سرعة العلامات والإشارات المرجعية."
-#: data/org.pwmt.zathura.appdata.xml.in:23
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr "إعادة تحميل المستندات تلقائيًا."
@@ -70,17 +76,17 @@ msgstr "'%s' يجب ألا يكون 0. حدد 1."
msgid "Invalid input '%s' given."
msgstr "إدخال غير صالح '%s'."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "الفهرس غير صالح '%s'."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr "نسخ النص المحدد للاختيار %s: %s"
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr "نسخ الصورة المحددة للاختيار %s"
diff --git a/po/ca.po b/po/ca.po
index 1045f2b..591c5c9 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Catalan (http://www.transifex.com/pwmt/zathura/language/ca/)\n"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Entrada invàlida '%s'."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Índex invàlid '%s'."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 4bef915..990959a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Czech (http://www.transifex.com/pwmt/zathura/language/cs/)\n"
@@ -38,15 +38,21 @@ msgstr ""
"používáním s důrazným zaměřením na používání klávesnice Zathura umožňuje "
"plné zobrazení a pohyb v dokumentech bez použití myšího zařízení \"myšítka\"."
-#: data/org.pwmt.zathura.appdata.xml.in:21
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
msgstr "Podpora pro dopředné a zpětné seřízení SyncTeX."
-#: data/org.pwmt.zathura.appdata.xml.in:22
+#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
msgstr "Rychlé značky a záložky."
-#: data/org.pwmt.zathura.appdata.xml.in:23
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr "Automatické znovunahrání dokumentu."
@@ -71,17 +77,17 @@ msgstr "'%s' nesmí být 0. Nastaveno na 1."
msgid "Invalid input '%s' given."
msgstr "Neplatný vstup: %s"
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Neplatný rejstřík: %s"
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr "Vybraný text zkopírován do výběru %s: %s"
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr "Vybraný text zkopírován do výběru %s"
diff --git a/po/de.po b/po/de.po
index cb36754..358263d 100644
--- a/po/de.po
+++ b/po/de.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
+"PO-Revision-Date: 2020-03-22 23:48+0100\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: German (http://www.transifex.com/pwmt/zathura/language/de/)\n"
"Language: de\n"
@@ -38,15 +38,23 @@ msgstr ""
"Tastaturinteraktionen fokussiert. Zathura ermöglicht es ein Dokument "
"gänzlich ohne der Verwendung einer Maus zu betrachten."
-#: data/org.pwmt.zathura.appdata.xml.in:21
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
+msgstr ""
+"Zathura kann durch Plug-ins um die Unterstützung von verschiedenen "
+"Dokumentformaten erwetert werden. Weitere Funktionen umfassen:"
+
+#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
msgstr "Unterstützung für SyncTeX-Synchronisation."
-#: data/org.pwmt.zathura.appdata.xml.in:22
+#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
msgstr "Markierungen und Lesezeichen."
-#: data/org.pwmt.zathura.appdata.xml.in:23
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr "Automatisches Neuladen von Dokumenten."
@@ -71,17 +79,17 @@ msgstr "'%s' darf nicht 0 sein. Auf 1 gesetzt."
msgid "Invalid input '%s' given."
msgstr "Ungültige Eingabe '%s' angegeben."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Ungültiger Index '%s' angegeben."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr "Der gewählte Text wurde in die Zwischenablage %s kopiert: %s"
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr "Das gewählte Bild wurde in die Zwischenablage %s kopiert"
diff --git a/po/el.po b/po/el.po
index 99d5f4b..80b6583 100644
--- a/po/el.po
+++ b/po/el.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Greek (http://www.transifex.com/pwmt/zathura/language/el/)\n"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Η είσοδος '%s' είναι άκυρη."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Ο δείκτης '%s' είναι άκυρος."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/eo.po b/po/eo.po
index a5c7984..002419d 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Esperanto (http://www.transifex.com/pwmt/zathura/language/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Nevalida enigo '%s' uzata."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Nevalida indekso '%s' uzata."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/es.po b/po/es.po
index ad048a0..73b5ad4 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (http://www.transifex.com/pwmt/zathura/language/es/)\n"
@@ -32,15 +32,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -65,17 +71,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Entrada inválida: '%s'."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Índice invalido: '%s'."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/es_CL.po b/po/es_CL.po
index f11840c..2366448 100644
--- a/po/es_CL.po
+++ b/po/es_CL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/pwmt/zathura/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Entrada inválida: '%s'."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Índice invalido: '%s'."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/et.po b/po/et.po
index cefaa83..2964be4 100644
--- a/po/et.po
+++ b/po/et.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Estonian (http://www.transifex.com/pwmt/zathura/language/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr ""
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr ""
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 1558b58..e5a4a92 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: French (http://www.transifex.com/pwmt/zathura/language/fr/)\n"
@@ -37,15 +37,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -70,17 +76,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Entrée invalide : '%s'"
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Index invalide : '%s'"
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/he.po b/po/he.po
index 2704388..d595d68 100644
--- a/po/he.po
+++ b/po/he.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Hebrew (http://www.transifex.com/pwmt/zathura/language/he/)\n"
@@ -33,15 +33,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -66,17 +72,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr ""
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr ""
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 8c277ff..dd7a34a 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Croatian (http://www.transifex.com/pwmt/zathura/language/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr ""
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr ""
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/id_ID.po b/po/id_ID.po
index 6fced4b..81b24f5 100644
--- a/po/id_ID.po
+++ b/po/id_ID.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/pwmt/zathura/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr "'%s' tidak boleh 0. Diatur ke 1."
msgid "Invalid input '%s' given."
msgstr "Masukan '%s' tidak valid"
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Index '%s' tidak valid"
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 0c3d65b..5a6ea4c 100644
--- a/po/it.po
+++ b/po/it.po
@@ -4,15 +4,15 @@
# Translators:
# TheLemonMan , 2015
# TheLemonMan , 2012
-# Simone Dotto , 2019
+# Simone Dotto , 2019-2020
# Simone Guercio , 2015
# TheLemonMan , 2012,2015
msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
+"PO-Revision-Date: 2020-01-06 11:44+0000\n"
"Last-Translator: Simone Dotto \n"
"Language-Team: Italian (http://www.transifex.com/pwmt/zathura/language/it/)\n"
"Language: it\n"
@@ -42,15 +42,21 @@ msgstr ""
"Zathura rende possibile visualizzare e navigare completamente tra i "
"documenti senza usare il mouse."
-#: data/org.pwmt.zathura.appdata.xml.in:21
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
msgstr "Supporto SyncTeX per la sincronizzazione in avanti e all'indietro."
-#: data/org.pwmt.zathura.appdata.xml.in:22
+#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
msgstr "Quickmark e bookmark."
-#: data/org.pwmt.zathura.appdata.xml.in:23
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr "Ricarica automatica del documento."
@@ -75,17 +81,17 @@ msgstr "'%s' non può essere 0. Imposta ad 1."
msgid "Invalid input '%s' given."
msgstr "Input inserito '%s' non valido."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Indice inserito '%s' non valido."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr "Copiato il testo selezionato alla selezione %s: %s"
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr "Copiata l'immagine selezionata alla selezione %s"
@@ -179,7 +185,7 @@ msgstr ""
#: zathura/commands.c:184
msgid "Other"
-msgstr ""
+msgstr "Altro"
#: zathura/commands.c:189 zathura/commands.c:209
msgid "No information available."
@@ -386,7 +392,7 @@ msgstr "Scorrimento pagina per pagina"
#: zathura/config.c:239
msgid "Advance number of pages per row"
-msgstr ""
+msgstr "Avanza di un numero di pagine per riga"
#: zathura/config.c:241
msgid "Horizontally centered zoom"
diff --git a/po/lt.po b/po/lt.po
index 9afd93b..2a31291 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Lithuanian (http://www.transifex.com/pwmt/zathura/language/"
@@ -36,15 +36,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -69,17 +75,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Netinkama įvestis: „%s“."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Duotas netinkamas indeksas: „%s“."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 83c4aa0..ff67c7c 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-12 09:52+0000\n"
"Last-Translator: Heimen Stoffels \n"
"Language-Team: Dutch (http://www.transifex.com/pwmt/zathura/language/nl/)\n"
@@ -38,15 +38,21 @@ msgstr ""
"gefocust op eenvoudig navigeren middels het toetsenbord. Zathura maakt het "
"mogelijk om volledig zonder muis door documenten te kunnen bladeren."
-#: data/org.pwmt.zathura.appdata.xml.in:21
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
msgstr "SyncTeX vooruit- en achteruitsynchronisatie."
-#: data/org.pwmt.zathura.appdata.xml.in:22
+#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
msgstr "Verwijzingen en bladwijzers."
-#: data/org.pwmt.zathura.appdata.xml.in:23
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr "Automatische documentherlading."
@@ -71,17 +77,17 @@ msgstr "'%s' mag niet op 0 worden ingesteld. Stel in op 1."
msgid "Invalid input '%s' given."
msgstr "Ongeldige invoer, '%s', opgegeven."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Ongeldige index, '%s', opgegeven."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr "Tekst gekopieerd naar selectie %s: %s"
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr "Afbeelding gekopieerd naar selectie %s"
diff --git a/po/no.po b/po/no.po
index c29d4f3..740b9b9 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Norwegian (http://www.transifex.com/pwmt/zathura/language/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Ugyldig inndata '%s' gitt."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Ugyldig index '%s' gitt."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 3b0f5eb..6324a3c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Polish (http://www.transifex.com/pwmt/zathura/language/pl/)\n"
@@ -36,15 +36,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -69,17 +75,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Nieprawidłowy argument: %s"
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Nieprawidłowy indeks: %s"
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 0655211..4151cb4 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -2,12 +2,12 @@
# SPDX-License-Identifier: Zlib
#
# Translators:
-# salmora8 , 2012-2014
+# Alexandro Casanova , 2013-2014
msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/pwmt/zathura/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr "'%s' não deve ser 0. Defina para 1."
msgid "Invalid input '%s' given."
msgstr "Dados de entrada inválida '%s' ."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Dados de índice invalido '%s'."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index cd08584..3444186 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-11-28 12:40+0000\n"
"Last-Translator: Alexander Filev\n"
"Language-Team: Russian (http://www.transifex.com/pwmt/zathura/language/ru/)\n"
@@ -44,15 +44,21 @@ msgstr ""
"клавиатурой. Zathura позволяет полностью просматривать и перемещаться по "
"документам без использования мыши."
-#: data/org.pwmt.zathura.appdata.xml.in:21
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
msgstr "SyncTeX поддержка прямой и обратной синхронизации."
-#: data/org.pwmt.zathura.appdata.xml.in:22
+#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
msgstr "Быстрые заметки и закладки."
-#: data/org.pwmt.zathura.appdata.xml.in:23
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr "Автоматическая перезагрузка документов."
@@ -77,17 +83,17 @@ msgstr "«%s» не может быть 0, установлен как 1."
msgid "Invalid input '%s' given."
msgstr "Неправильный ввод: %s."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Получен неверный индекс: %s."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr "Выделенный текст скопирован в выделение %s: %s"
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr "Скопировано выбранное изображение в выделение %s"
diff --git a/po/sv.po b/po/sv.po
index e9de966..d30e78a 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
+"PO-Revision-Date: 2020-02-03 08:48+0000\n"
"Last-Translator: Sebastian Rasmussen \n"
"Language-Team: Swedish (http://www.transifex.com/pwmt/zathura/language/sv/)\n"
"Language: sv\n"
@@ -38,15 +38,21 @@ msgstr ""
"Zathur gör det möjligt att helt visa och navigera genom dokument utan att "
"använda en mus."
-#: data/org.pwmt.zathura.appdata.xml.in:21
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
msgstr "Stöd för SyncTeX-framåt- och -bakåtsynkronisering."
-#: data/org.pwmt.zathura.appdata.xml.in:22
+#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
msgstr "Snabbmärken och bokmärken."
-#: data/org.pwmt.zathura.appdata.xml.in:23
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr "Läs automatisk om dokument."
@@ -71,17 +77,17 @@ msgstr "”%s” får inte vara 0. Satt till 1."
msgid "Invalid input '%s' given."
msgstr "Ogiltig indata ”%s” angiven."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Ogiltigt index ”%s” angivet."
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr "Kopiera markerad text till marking %s: %s"
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr "Kopiera markerad bild till markering %s"
@@ -171,11 +177,11 @@ msgstr "Modifikationsdatum"
#: zathura/commands.c:183
msgid "Format"
-msgstr ""
+msgstr "Format"
#: zathura/commands.c:184
msgid "Other"
-msgstr ""
+msgstr "Annat"
#: zathura/commands.c:189 zathura/commands.c:209
msgid "No information available."
diff --git a/po/ta_IN.po b/po/ta_IN.po
index bdbba5a..7174d93 100644
--- a/po/ta_IN.po
+++ b/po/ta_IN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Tamil (India) (http://www.transifex.com/pwmt/zathura/language/"
@@ -34,15 +34,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -67,17 +73,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "கொடுக்கப்பட்ட உள்ளீடு(input) '%s' தவறு"
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "கொடுக்கப்பட்ட index '%s' தவறு"
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 87ca041..18e1efa 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: spero\n"
"Language-Team: Turkish (http://www.transifex.com/pwmt/zathura/language/tr/)\n"
@@ -35,15 +35,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -68,17 +74,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Hatalı girdi '%s'"
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Hatalı dizin '%s'"
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 09344a5..4be8bec 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 10:17+0100\n"
+"POT-Creation-Date: 2020-03-22 23:44+0100\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/pwmt/zathura/"
@@ -37,15 +37,21 @@ msgid ""
"completely view and navigate through documents without using a mouse."
msgstr ""
-#: data/org.pwmt.zathura.appdata.xml.in:21
-msgid "SyncTeX forward and backward synchronization support."
+#: data/org.pwmt.zathura.appdata.xml.in:17
+msgid ""
+"Zathura can be extended to support multiple document formats using plugins. "
+"Other features include:"
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:22
-msgid "Quickmarks and bookmarks."
+msgid "SyncTeX forward and backward synchronization support."
msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:23
+msgid "Quickmarks and bookmarks."
+msgstr ""
+
+#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
msgstr ""
@@ -70,17 +76,17 @@ msgstr ""
msgid "Invalid input '%s' given."
msgstr "Вказано невірний аргумент: %s."
-#: zathura/callbacks.c:431
+#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
msgstr "Вказано невірний індекс: %s"
-#: zathura/callbacks.c:670
+#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
msgstr ""
-#: zathura/callbacks.c:703
+#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
msgstr ""
From 2d53f77233e261e8aa717fa9c6d0e11e6b9a01cb Mon Sep 17 00:00:00 2001
From: Jonathan Waldrep
Date: Sat, 28 Mar 2020 23:39:00 +0100
Subject: [PATCH 26/49] Fix spelling (fixes #129)
---
doc/man/zathurarc.5.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/man/zathurarc.5.rst b/doc/man/zathurarc.5.rst
index 2796ff8..de5c4a0 100644
--- a/doc/man/zathurarc.5.rst
+++ b/doc/man/zathurarc.5.rst
@@ -728,8 +728,8 @@ zathura
value in the list will be used for all other number of pages per row if not set
explicitly.
- Per default, the first column is set to 2 for double-page layout, i.e. the faule
- is set to 1:2. A value of 1:1:3 would put the first page in dual-page layour in
+ Per default, the first column is set to 2 for double-page layout, i.e. the value
+ is set to 1:2. A value of 1:1:3 would put the first page in dual-page layout in
the first column, and for layouts with more columns the first page would be put
in the 3rd column.
From 82783770dcd7c1c62352cba6db804e6354ac6e34 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Sun, 12 Apr 2020 17:56:14 +0200
Subject: [PATCH 27/49] Update translations
---
po/ar.po | 4 ++--
po/ca.po | 4 ++--
po/cs.po | 4 ++--
po/de.po | 4 ++--
po/el.po | 4 ++--
po/eo.po | 4 ++--
po/es.po | 4 ++--
po/es_CL.po | 4 ++--
po/et.po | 4 ++--
po/fr.po | 4 ++--
po/he.po | 4 ++--
po/hr.po | 4 ++--
po/id_ID.po | 5 +++--
po/it.po | 4 ++--
po/lt.po | 4 ++--
po/nl.po | 9 ++++-----
po/no.po | 4 ++--
po/pl.po | 4 ++--
po/pt_BR.po | 4 ++--
po/ru.po | 4 ++--
po/sv.po | 4 ++--
po/ta_IN.po | 4 ++--
po/tr.po | 12 ++++++------
po/uk_UA.po | 5 +++--
24 files changed, 56 insertions(+), 55 deletions(-)
diff --git a/po/ar.po b/po/ar.po
index 4a268f6..6a7016b 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: abouzakaria kov \n"
"Language-Team: Arabic (http://www.transifex.com/pwmt/zathura/language/ar/)\n"
"Language: ar\n"
diff --git a/po/ca.po b/po/ca.po
index 591c5c9..cc50f7f 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Catalan (http://www.transifex.com/pwmt/zathura/language/ca/)\n"
"Language: ca\n"
diff --git a/po/cs.po b/po/cs.po
index 990959a..4fa8e9e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Czech (http://www.transifex.com/pwmt/zathura/language/cs/)\n"
"Language: cs\n"
diff --git a/po/de.po b/po/de.po
index 358263d..e46982a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2020-03-22 23:48+0100\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:49+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: German (http://www.transifex.com/pwmt/zathura/language/de/)\n"
"Language: de\n"
diff --git a/po/el.po b/po/el.po
index 80b6583..ef74544 100644
--- a/po/el.po
+++ b/po/el.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Greek (http://www.transifex.com/pwmt/zathura/language/el/)\n"
"Language: el\n"
diff --git a/po/eo.po b/po/eo.po
index 002419d..8ed8cfd 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Esperanto (http://www.transifex.com/pwmt/zathura/language/"
"eo/)\n"
diff --git a/po/es.po b/po/es.po
index 73b5ad4..12fdc8b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (http://www.transifex.com/pwmt/zathura/language/es/)\n"
"Language: es\n"
diff --git a/po/es_CL.po b/po/es_CL.po
index 2366448..fb56c42 100644
--- a/po/es_CL.po
+++ b/po/es_CL.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/pwmt/zathura/"
"language/es_CL/)\n"
diff --git a/po/et.po b/po/et.po
index 2964be4..f6cb9ca 100644
--- a/po/et.po
+++ b/po/et.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Estonian (http://www.transifex.com/pwmt/zathura/language/"
"et/)\n"
diff --git a/po/fr.po b/po/fr.po
index e5a4a92..4e8a21a 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: French (http://www.transifex.com/pwmt/zathura/language/fr/)\n"
"Language: fr\n"
diff --git a/po/he.po b/po/he.po
index d595d68..73f78bf 100644
--- a/po/he.po
+++ b/po/he.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Hebrew (http://www.transifex.com/pwmt/zathura/language/he/)\n"
"Language: he\n"
diff --git a/po/hr.po b/po/hr.po
index dd7a34a..d5fd2ac 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Croatian (http://www.transifex.com/pwmt/zathura/language/"
"hr/)\n"
diff --git a/po/id_ID.po b/po/id_ID.po
index 81b24f5..7e57c8f 100644
--- a/po/id_ID.po
+++ b/po/id_ID.po
@@ -3,12 +3,13 @@
#
# Translators:
# andjeng , 2013
+# Ibnu Daru Aji, 2013-2014
msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/pwmt/zathura/"
"language/id_ID/)\n"
diff --git a/po/it.po b/po/it.po
index 5a6ea4c..5f5c8ca 100644
--- a/po/it.po
+++ b/po/it.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2020-01-06 11:44+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Simone Dotto \n"
"Language-Team: Italian (http://www.transifex.com/pwmt/zathura/language/it/)\n"
"Language: it\n"
diff --git a/po/lt.po b/po/lt.po
index 2a31291..129a372 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Lithuanian (http://www.transifex.com/pwmt/zathura/language/"
"lt/)\n"
diff --git a/po/nl.po b/po/nl.po
index ff67c7c..e84445a 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,6 +1,5 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the zathura package.
+# zathura - language file (Dutch)
+# SPDX-License-Identifier: Zlib
#
# Translators:
# Heimen Stoffels , 2017-2019
@@ -8,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-12 09:52+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-04-12 17:56+0200\n"
"Last-Translator: Heimen Stoffels \n"
"Language-Team: Dutch (http://www.transifex.com/pwmt/zathura/language/nl/)\n"
"Language: nl\n"
diff --git a/po/no.po b/po/no.po
index 740b9b9..1abc8a5 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Norwegian (http://www.transifex.com/pwmt/zathura/language/"
"no/)\n"
diff --git a/po/pl.po b/po/pl.po
index 6324a3c..77c6725 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Polish (http://www.transifex.com/pwmt/zathura/language/pl/)\n"
"Language: pl\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 4151cb4..d1d5524 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/pwmt/zathura/"
"language/pt_BR/)\n"
diff --git a/po/ru.po b/po/ru.po
index 3444186..b51c4b2 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-11-28 12:40+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Alexander Filev\n"
"Language-Team: Russian (http://www.transifex.com/pwmt/zathura/language/ru/)\n"
"Language: ru\n"
diff --git a/po/sv.po b/po/sv.po
index d30e78a..84d70f2 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2020-02-03 08:48+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Rasmussen \n"
"Language-Team: Swedish (http://www.transifex.com/pwmt/zathura/language/sv/)\n"
"Language: sv\n"
diff --git a/po/ta_IN.po b/po/ta_IN.po
index 7174d93..4c403f8 100644
--- a/po/ta_IN.po
+++ b/po/ta_IN.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Tamil (India) (http://www.transifex.com/pwmt/zathura/language/"
"ta_IN/)\n"
diff --git a/po/tr.po b/po/tr.po
index 18e1efa..20c9dd3 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
-"Last-Translator: spero\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-30 00:26+0000\n"
+"Last-Translator: abc Def \n"
"Language-Team: Turkish (http://www.transifex.com/pwmt/zathura/language/tr/)\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
@@ -51,7 +51,7 @@ msgstr ""
#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
-msgstr ""
+msgstr "Otomatik belge yeniden yükleme."
#. Translators: Icon of the desktop entry.
#: data/org.pwmt.zathura.desktop.in:9
@@ -174,11 +174,11 @@ msgstr "Düzenleme tarihi"
#: zathura/commands.c:183
msgid "Format"
-msgstr ""
+msgstr "Biçim"
#: zathura/commands.c:184
msgid "Other"
-msgstr ""
+msgstr "Diğer"
#: zathura/commands.c:189 zathura/commands.c:209
msgid "No information available."
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 4be8bec..767dd0d 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -2,13 +2,14 @@
# SPDX-License-Identifier: Zlib
#
# Translators:
+# Ivan Kovnatsky , 2012
# sevenfourk , 2012
msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-22 23:44+0100\n"
-"PO-Revision-Date: 2019-08-11 19:46+0000\n"
+"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/pwmt/zathura/"
"language/uk_UA/)\n"
From b0fc5016d449e5f4d06d50ca0a3bf1b036e7aa05 Mon Sep 17 00:00:00 2001
From: zsugabubus
Date: Sun, 19 Apr 2020 13:35:44 +0200
Subject: [PATCH 28/49] Fix seccomp filters in strict mode
---
zathura/seccomp-filters.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c
index 509a71f..7eccedf 100644
--- a/zathura/seccomp-filters.c
+++ b/zathura/seccomp-filters.c
@@ -163,6 +163,7 @@ seccomp_enable_strict_filter(void)
ALLOW_RULE(getgid);
ALLOW_RULE(getuid);
ALLOW_RULE(getpid);
+ ALLOW_RULE(gettid);
/* ALLOW_RULE (getpeername); */
ALLOW_RULE(getresgid);
ALLOW_RULE(getresuid);
@@ -219,6 +220,9 @@ seccomp_enable_strict_filter(void)
ALLOW_RULE(writev);
ALLOW_RULE(wait4); /* trying to open links should not crash the app */
+ ADD_RULE("errno", SCMP_ACT_ERRNO(EPERM), sched_setattr, 0);
+ ADD_RULE("errno", SCMP_ACT_ERRNO(EPERM), sched_getattr, 0);
+
/* Special requirements for ioctl, allowed on stdout/stderr */
ADD_RULE("allow", SCMP_ACT_ALLOW, ioctl, 1, SCMP_CMP(0, SCMP_CMP_EQ, 1));
ADD_RULE("allow", SCMP_ACT_ALLOW, ioctl, 1, SCMP_CMP(0, SCMP_CMP_EQ, 2));
From f545992aeb6fe8fa4d4bc36098f62da61535d313 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Sun, 26 Apr 2020 16:25:57 +0200
Subject: [PATCH 29/49] Set meson warning_level
---
meson.build | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/meson.build b/meson.build
index 5aa78a1..a42dcf3 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project('zathura', 'c',
version: '0.4.5',
meson_version: '>=0.47',
- default_options: 'c_std=c11',
+ default_options: ['c_std=c11', 'warning_level=3'],
)
version = meson.project_version()
@@ -57,9 +57,6 @@ defines = [
# compile flags
flags = [
- '-Wall',
- '-Wextra',
- '-pedantic',
'-Werror=implicit-function-declaration',
'-Werror=vla',
'-fvisibility=hidden'
From 1c42ec5de1ffbc66c5f3bf3bba7eb2787108e853 Mon Sep 17 00:00:00 2001
From: Louai Misto
Date: Mon, 20 Apr 2020 14:18:41 +0300
Subject: [PATCH 30/49] Rename README to README.md
---
README => README.md | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename README => README.md (100%)
diff --git a/README b/README.md
similarity index 100%
rename from README
rename to README.md
From d5698845f5d13734254ebeab034a894877eaced2 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Thu, 28 May 2020 17:51:09 +0200
Subject: [PATCH 31/49] Nicer markdown
---
README.md | 60 +++++++++++++++++++++++++++----------------------------
1 file changed, 30 insertions(+), 30 deletions(-)
diff --git a/README.md b/README.md
index 948673f..a20493d 100644
--- a/README.md
+++ b/README.md
@@ -9,57 +9,57 @@ Requirements
The following dependencies are required:
-* gtk3 (>= 3.22)
-* glib (>= 2.50)
-* girara (>= 0.3.2)
+* `gtk3` (>= 3.22)
+* `glib` (>= 2.50)
+* `girara` (>= 0.3.2)
The following dependencies are optional:
-* sqlite3 (>= 3.6.23): splite3 database backend
-* libmagic from file(1): for mime-type detection
-* libsynctex from TeXLive (>= 1.19): SyncTeX support
-* libseccomp: sandbox support
+* `sqlite3` (>= 3.6.23): splite3 database backend
+* `libmagic` from file(1): for mime-type detection
+* `libsynctex` from TeXLive (>= 1.19): SyncTeX support
+* `libseccomp`: sandbox support
For building zathura, the following dependencies are also required:
-* meson (>= 0.47)
-* gettext
+* `meson` (>= 0.47)
+* `gettext`
The following dependencies are optional build-time only dependencies:
-* check: for tests
-* librvsg-bin: PNG icons
-* Sphinx: manpages and HTML documentation
-* doxygen: HTML documentation
-* breathe: for HTML documentation
-* sphinx_rtd_theme: for HTML documentation
+* `check`: for tests
+* `librvsg-bin`: PNG icons
+* `Sphinx`: manpages and HTML documentation
+* `doxygen`: HTML documentation
+* `breathe`: for HTML documentation
+* `sphinx_rtd_theme`: for HTML documentation
-Note that Sphinx is needed to build the manpages. If it is not installed, the
-man pages won't be built. For building the HTML documentation, doxygen, breathe
-and sphinx_rtd_theme are needed in addition to Sphinx.
+Note that `Sphinx` is needed to build the manpages. If it is not installed, the
+man pages won't be built. For building the HTML documentation, `doxygen`,
+`breathe` and `sphinx_rtd_theme` are needed in addition to `Sphinx`.
If you don't want to build with support for sqlite databases, you can configure
-the build system with -Dsqlite=disabled and sqlite support won't be available.
+the build system with `-Dsqlite=disabled` and sqlite support won't be available.
The use of magic to detect mime types is optional and can be disabled by
-configuring the build system with -Dmagic=disabled.
+configuring the build system with `-Dmagic=disabled`.
-The use of seccomp to create a sandboxed environment is optional and can be
-disabled by configure the build system with -Dseccomp=disabled. The sandbox
-will by default be set to "normal" mode, which should not interfere with the
-normal operation of zathura. For strict sandbox mode set "sandbox strict" in
-zathurarc. Strict sandbox mode will reduce the available functionality of
-zathura and provide a read only document viewer.
+The use of `libseccomp` to create a sandboxed environment is optional and can
+be disabled by configure the build system with `-Dseccomp=disabled`. The
+sandbox will by default be set to "normal" mode, which should not interfere
+with the normal operation of zathura. For strict sandbox mode set `sandbox
+strict` in zathurarc. Strict sandbox mode will reduce the available
+functionality of zathura and provide a read only document viewer.
Installation
------------
To build and install zathura using meson's ninja backend:
- meson build
- cd build
- ninja
- ninja install
+ meson build
+ cd build
+ ninja
+ ninja install
Note that the default backend for meson might vary based on the platform. Please
refer to the meson documentation for platform specific dependencies.
From b02c73fcb11722e1afdc536166fe51095c174a33 Mon Sep 17 00:00:00 2001
From: valoq
Date: Sat, 30 May 2020 13:52:31 +0200
Subject: [PATCH 32/49] allow pipe2 syscall
---
zathura/seccomp-filters.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c
index 7eccedf..909ec7d 100644
--- a/zathura/seccomp-filters.c
+++ b/zathura/seccomp-filters.c
@@ -187,6 +187,7 @@ seccomp_enable_strict_filter(void)
//ALLOW_RULE (open); /* (zathura needs to open for writing) TODO: avoid needing this somehow */
//ALLOW_RULE (openat);
ALLOW_RULE(pipe);
+ ALLOW_RULE(pipe2);
ALLOW_RULE(poll);
ALLOW_RULE(pwrite64); /* TODO: build detailed filter */
ALLOW_RULE(pread64);
From a3050539af43f6d233044e1f6ead3c13ebc64c98 Mon Sep 17 00:00:00 2001
From: valoq
Date: Sat, 30 May 2020 21:36:14 +0200
Subject: [PATCH 33/49] add test for sandbox
---
tests/meson.build | 9 +++++++++
tests/test_sandbox.c | 33 +++++++++++++++++++++++++++++++++
zathura/seccomp-filters.c | 8 +++++++-
zathura/seccomp-filters.h | 4 +++-
zathura/zathura.c | 19 ++++++++++++++++---
zathura/zathura.h | 3 ++-
6 files changed, 70 insertions(+), 6 deletions(-)
create mode 100644 tests/test_sandbox.c
diff --git a/tests/meson.build b/tests/meson.build
index c99a5ab..4000bf6 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -24,6 +24,15 @@ if check.found()
test('session', session,
timeout: 60*60
)
+
+ sandbox = executable('test_sandbox', ['test_sandbox.c', 'tests.c'],
+ dependencies: build_dependencies + test_dependencies,
+ include_directories: include_directories,
+ c_args: defines + flags
+ )
+ test('sandbox', sandbox,
+ timeout: 60*60
+ )
utils = executable('test_utils', ['test_utils.c', 'tests.c'],
dependencies: build_dependencies + test_dependencies,
diff --git a/tests/test_sandbox.c b/tests/test_sandbox.c
new file mode 100644
index 0000000..0dc458f
--- /dev/null
+++ b/tests/test_sandbox.c
@@ -0,0 +1,33 @@
+/* SPDX-License-Identifier: Zlib */
+
+#include
+
+#include "zathura.h"
+#include "tests.h"
+
+START_TEST(test_create) {
+ zathura_t* zathura = zathura_create();
+ zathura->global.sandbox = ZATHURA_SANDBOX_TEST;
+ fail_unless(zathura != NULL, "Could not create strictly sandboxed session", NULL);
+ fail_unless(zathura_init(zathura) == true, "Could not initialize strictly sandboxed session", NULL);
+ zathura_free(zathura);
+} END_TEST
+
+static Suite* suite_sandbox(void)
+{
+ TCase* tcase = NULL;
+ Suite* suite = suite_create("Sandbox");
+
+ /* basic */
+ tcase = tcase_create("basic");
+ tcase_add_checked_fixture(tcase, setup, NULL);
+ tcase_add_test(tcase, test_create);
+ suite_add_tcase(suite, tcase);
+
+ return suite;
+}
+
+int main()
+{
+ return run_suite(suite_sandbox());
+}
diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c
index 909ec7d..044ac1c 100644
--- a/zathura/seccomp-filters.c
+++ b/zathura/seccomp-filters.c
@@ -117,7 +117,7 @@ out:
}
int
-seccomp_enable_strict_filter(void)
+seccomp_enable_strict_filter(bool test)
{
/* prevent child processes from getting more priv e.g. via setuid, capabilities, ... */
if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
@@ -224,6 +224,12 @@ seccomp_enable_strict_filter(void)
ADD_RULE("errno", SCMP_ACT_ERRNO(EPERM), sched_setattr, 0);
ADD_RULE("errno", SCMP_ACT_ERRNO(EPERM), sched_getattr, 0);
+/* check test flag, allow additional syscalls for test mode */
+ if (test){
+ ALLOW_RULE(timer_create);
+ ALLOW_RULE(timer_delete);
+ }
+
/* Special requirements for ioctl, allowed on stdout/stderr */
ADD_RULE("allow", SCMP_ACT_ALLOW, ioctl, 1, SCMP_CMP(0, SCMP_CMP_EQ, 1));
ADD_RULE("allow", SCMP_ACT_ALLOW, ioctl, 1, SCMP_CMP(0, SCMP_CMP_EQ, 2));
diff --git a/zathura/seccomp-filters.h b/zathura/seccomp-filters.h
index 57bfbb1..2e0b3a4 100644
--- a/zathura/seccomp-filters.h
+++ b/zathura/seccomp-filters.h
@@ -3,6 +3,8 @@
#ifndef ZATHURA_SECCOMP_FILTERS_H
#define ZATHURA_SECCOMP_FILTERS_H
+#include
+
/* basic filter */
/* this mode allows normal use */
/* only dangerous syscalls are blacklisted */
@@ -10,6 +12,6 @@ int seccomp_enable_basic_filter(void);
/* strict filter before document parsing */
/* this filter is to be enabled after most of the initialisation of zathura has finished */
-int seccomp_enable_strict_filter(void);
+int seccomp_enable_strict_filter(bool test);
#endif
diff --git a/zathura/zathura.c b/zathura/zathura.c
index 44aabc7..0df1d69 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -448,13 +448,22 @@ zathura_init(zathura_t* zathura)
break;
case ZATHURA_SANDBOX_STRICT:
girara_debug("Strict sandbox preventing write and network access.");
- if (seccomp_enable_strict_filter() != 0) {
+ if (seccomp_enable_strict_filter(0) != 0) {
girara_error("Failed to initialize strict seccomp filter.");
goto error_free;
}
/* unset the input method to avoid communication with external services */
unsetenv("GTK_IM_MODULE");
break;
+ case ZATHURA_SANDBOX_TEST:
+ girara_debug("Strict sandbox preventing write and network access, testmode.");
+ if (seccomp_enable_strict_filter(1) != 0) {
+ girara_error("Failed to initialize test seccomp filter.");
+ goto error_free;
+ }
+ /* unset the input method to avoid communication with external services */
+ unsetenv("GTK_IM_MODULE");
+ break;
}
#endif
@@ -464,8 +473,12 @@ zathura_init(zathura_t* zathura)
goto error_free;
}
- /* database */
- init_database(zathura);
+ /* disable unsupported features in strict sandbox mode */
+ if (zathura->global.sandbox != ZATHURA_SANDBOX_STRICT){
+
+ /* database */
+ init_database(zathura);
+ }
/* bookmarks */
zathura->bookmarks.bookmarks = girara_sorted_list_new2(
diff --git a/zathura/zathura.h b/zathura/zathura.h
index 77fa751..9ddb2b9 100644
--- a/zathura/zathura.h
+++ b/zathura/zathura.h
@@ -85,7 +85,8 @@ enum {
typedef enum {
ZATHURA_SANDBOX_NONE,
ZATHURA_SANDBOX_NORMAL,
- ZATHURA_SANDBOX_STRICT
+ ZATHURA_SANDBOX_STRICT,
+ ZATHURA_SANDBOX_TEST
} zathura_sandbox_t;
/* forward declaration for types from database.h */
From 55473743348b2ff16c872bfb04c70181f434c6e7 Mon Sep 17 00:00:00 2001
From: valoq
Date: Mon, 1 Jun 2020 19:23:36 +0200
Subject: [PATCH 34/49] fix coding style
---
zathura/seccomp-filters.c | 2 +-
zathura/zathura.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c
index 044ac1c..96d5a01 100644
--- a/zathura/seccomp-filters.c
+++ b/zathura/seccomp-filters.c
@@ -225,7 +225,7 @@ seccomp_enable_strict_filter(bool test)
ADD_RULE("errno", SCMP_ACT_ERRNO(EPERM), sched_getattr, 0);
/* check test flag, allow additional syscalls for test mode */
- if (test){
+ if (test) {
ALLOW_RULE(timer_create);
ALLOW_RULE(timer_delete);
}
diff --git a/zathura/zathura.c b/zathura/zathura.c
index 0df1d69..39fddb2 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -448,7 +448,7 @@ zathura_init(zathura_t* zathura)
break;
case ZATHURA_SANDBOX_STRICT:
girara_debug("Strict sandbox preventing write and network access.");
- if (seccomp_enable_strict_filter(0) != 0) {
+ if (seccomp_enable_strict_filter(false) != 0) {
girara_error("Failed to initialize strict seccomp filter.");
goto error_free;
}
@@ -457,7 +457,7 @@ zathura_init(zathura_t* zathura)
break;
case ZATHURA_SANDBOX_TEST:
girara_debug("Strict sandbox preventing write and network access, testmode.");
- if (seccomp_enable_strict_filter(1) != 0) {
+ if (seccomp_enable_strict_filter(true) != 0) {
girara_error("Failed to initialize test seccomp filter.");
goto error_free;
}
From aa2bc80f51c6d69bd46eeaed7d03fc76db005988 Mon Sep 17 00:00:00 2001
From: valoq
Date: Mon, 1 Jun 2020 19:32:21 +0200
Subject: [PATCH 35/49] simplify sandbox test
---
tests/test_sandbox.c | 2 +-
zathura/seccomp-filters.c | 11 +++++------
zathura/seccomp-filters.h | 4 +---
zathura/zathura.c | 11 +----------
zathura/zathura.h | 1 -
5 files changed, 8 insertions(+), 21 deletions(-)
diff --git a/tests/test_sandbox.c b/tests/test_sandbox.c
index 0dc458f..efc8781 100644
--- a/tests/test_sandbox.c
+++ b/tests/test_sandbox.c
@@ -7,7 +7,7 @@
START_TEST(test_create) {
zathura_t* zathura = zathura_create();
- zathura->global.sandbox = ZATHURA_SANDBOX_TEST;
+ zathura->global.sandbox = ZATHURA_SANDBOX_STRICT;
fail_unless(zathura != NULL, "Could not create strictly sandboxed session", NULL);
fail_unless(zathura_init(zathura) == true, "Could not initialize strictly sandboxed session", NULL);
zathura_free(zathura);
diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c
index 96d5a01..03ccc8f 100644
--- a/zathura/seccomp-filters.c
+++ b/zathura/seccomp-filters.c
@@ -117,7 +117,7 @@ out:
}
int
-seccomp_enable_strict_filter(bool test)
+seccomp_enable_strict_filter(void)
{
/* prevent child processes from getting more priv e.g. via setuid, capabilities, ... */
if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
@@ -224,11 +224,10 @@ seccomp_enable_strict_filter(bool test)
ADD_RULE("errno", SCMP_ACT_ERRNO(EPERM), sched_setattr, 0);
ADD_RULE("errno", SCMP_ACT_ERRNO(EPERM), sched_getattr, 0);
-/* check test flag, allow additional syscalls for test mode */
- if (test) {
- ALLOW_RULE(timer_create);
- ALLOW_RULE(timer_delete);
- }
+ /* required for testing only */
+ ALLOW_RULE(timer_create);
+ ALLOW_RULE(timer_delete);
+
/* Special requirements for ioctl, allowed on stdout/stderr */
ADD_RULE("allow", SCMP_ACT_ALLOW, ioctl, 1, SCMP_CMP(0, SCMP_CMP_EQ, 1));
diff --git a/zathura/seccomp-filters.h b/zathura/seccomp-filters.h
index 2e0b3a4..57bfbb1 100644
--- a/zathura/seccomp-filters.h
+++ b/zathura/seccomp-filters.h
@@ -3,8 +3,6 @@
#ifndef ZATHURA_SECCOMP_FILTERS_H
#define ZATHURA_SECCOMP_FILTERS_H
-#include
-
/* basic filter */
/* this mode allows normal use */
/* only dangerous syscalls are blacklisted */
@@ -12,6 +10,6 @@ int seccomp_enable_basic_filter(void);
/* strict filter before document parsing */
/* this filter is to be enabled after most of the initialisation of zathura has finished */
-int seccomp_enable_strict_filter(bool test);
+int seccomp_enable_strict_filter(void);
#endif
diff --git a/zathura/zathura.c b/zathura/zathura.c
index 39fddb2..f17409d 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -448,22 +448,13 @@ zathura_init(zathura_t* zathura)
break;
case ZATHURA_SANDBOX_STRICT:
girara_debug("Strict sandbox preventing write and network access.");
- if (seccomp_enable_strict_filter(false) != 0) {
+ if (seccomp_enable_strict_filter() != 0) {
girara_error("Failed to initialize strict seccomp filter.");
goto error_free;
}
/* unset the input method to avoid communication with external services */
unsetenv("GTK_IM_MODULE");
break;
- case ZATHURA_SANDBOX_TEST:
- girara_debug("Strict sandbox preventing write and network access, testmode.");
- if (seccomp_enable_strict_filter(true) != 0) {
- girara_error("Failed to initialize test seccomp filter.");
- goto error_free;
- }
- /* unset the input method to avoid communication with external services */
- unsetenv("GTK_IM_MODULE");
- break;
}
#endif
diff --git a/zathura/zathura.h b/zathura/zathura.h
index 9ddb2b9..53d3a4d 100644
--- a/zathura/zathura.h
+++ b/zathura/zathura.h
@@ -86,7 +86,6 @@ typedef enum {
ZATHURA_SANDBOX_NONE,
ZATHURA_SANDBOX_NORMAL,
ZATHURA_SANDBOX_STRICT,
- ZATHURA_SANDBOX_TEST
} zathura_sandbox_t;
/* forward declaration for types from database.h */
From 575585f1f26ff0ea5cecf920267873b075ccf15e Mon Sep 17 00:00:00 2001
From: valoq
Date: Mon, 1 Jun 2020 19:36:54 +0200
Subject: [PATCH 36/49] fix enum
---
zathura/zathura.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zathura/zathura.h b/zathura/zathura.h
index 53d3a4d..77fa751 100644
--- a/zathura/zathura.h
+++ b/zathura/zathura.h
@@ -85,7 +85,7 @@ enum {
typedef enum {
ZATHURA_SANDBOX_NONE,
ZATHURA_SANDBOX_NORMAL,
- ZATHURA_SANDBOX_STRICT,
+ ZATHURA_SANDBOX_STRICT
} zathura_sandbox_t;
/* forward declaration for types from database.h */
From 2ec99e9f9eca8d5bdbf10b6aa167995bf1a92cb1 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Tue, 16 Jun 2020 21:07:47 +0200
Subject: [PATCH 37/49] CS
---
zathura/seccomp-filters.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c
index 03ccc8f..ecb7fae 100644
--- a/zathura/seccomp-filters.c
+++ b/zathura/seccomp-filters.c
@@ -227,7 +227,6 @@ seccomp_enable_strict_filter(void)
/* required for testing only */
ALLOW_RULE(timer_create);
ALLOW_RULE(timer_delete);
-
/* Special requirements for ioctl, allowed on stdout/stderr */
ADD_RULE("allow", SCMP_ACT_ALLOW, ioctl, 1, SCMP_CMP(0, SCMP_CMP_EQ, 1));
From edea6a5403c1dbcb4b12bafd0891ad053132f151 Mon Sep 17 00:00:00 2001
From: Jona Ackerschott
Date: Sun, 14 Jun 2020 23:00:21 +0200
Subject: [PATCH 38/49] Fix screen freeze in some cases
Partially fixes #94
---
zathura/zathura.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/zathura/zathura.c b/zathura/zathura.c
index f17409d..d4f9377 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -200,6 +200,7 @@ zathura_update_view_ppi(zathura_t* zathura)
if (fabs(ppi - current_ppi) > DBL_EPSILON) {
girara_debug("monitor width: %d mm, pixels: %d, ppi: %0.2f", width_mm, monitor_geom.width, ppi);
zathura_document_set_viewport_ppi(zathura->document, ppi);
+ adjust_view(zathura);
render_all(zathura);
refresh_view(zathura);
}
From 931fd9f6cf5fcb8a6fca25955f7455243839fab6 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Tue, 16 Jun 2020 23:41:28 +0200
Subject: [PATCH 39/49] Only create data directory if not available
---
zathura/zathura.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/zathura/zathura.c b/zathura/zathura.c
index d4f9377..d65ed1c 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -131,11 +131,6 @@ create_directories(zathura_t* zathura)
{
static const unsigned int mode = 0700;
- if (g_mkdir_with_parents(zathura->config.config_dir, mode) == -1) {
- girara_error("Could not create '%s': %s", zathura->config.config_dir,
- strerror(errno));
- }
-
if (g_mkdir_with_parents(zathura->config.data_dir, mode) == -1) {
girara_error("Could not create '%s': %s", zathura->config.data_dir,
strerror(errno));
@@ -424,7 +419,7 @@ zathura_init(zathura_t* zathura)
/* Set application ID */
g_set_prgname("org.pwmt.zathura");
- /* create zathura (config/data) directory */
+ /* create zathura data directory */
create_directories(zathura);
/* load plugins */
@@ -467,7 +462,6 @@ zathura_init(zathura_t* zathura)
/* disable unsupported features in strict sandbox mode */
if (zathura->global.sandbox != ZATHURA_SANDBOX_STRICT){
-
/* database */
init_database(zathura);
}
From bfcffc3e8c3d318d867c59cd3f9a51a4cee3f0f8 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Tue, 16 Jun 2020 23:51:34 +0200
Subject: [PATCH 40/49] Create data directory only if database is enabled
(fixes #158)
---
zathura/zathura.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/zathura/zathura.c b/zathura/zathura.c
index d65ed1c..df7970a 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -358,6 +358,11 @@ init_database(zathura_t* zathura)
char* database = NULL;
girara_setting_get(zathura->ui.session, "database", &database);
+ /* create zathura data directory if database enabled */
+ if (g_strcmp0(database, "null") != 0) {
+ create_directories(zathura);
+ }
+
if (g_strcmp0(database, "plain") == 0) {
girara_debug("Using plain database backend.");
zathura->database = zathura_plaindatabase_new(zathura->config.data_dir);
@@ -419,9 +424,6 @@ zathura_init(zathura_t* zathura)
/* Set application ID */
g_set_prgname("org.pwmt.zathura");
- /* create zathura data directory */
- create_directories(zathura);
-
/* load plugins */
zathura_plugin_manager_load(zathura->plugins.manager);
From 13119854c7cd4b8aa096dafb2436669135fb0a40 Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Wed, 17 Jun 2020 00:01:30 +0200
Subject: [PATCH 41/49] Update translations
---
po/ar.po | 14 +--
po/ca.po | 14 +--
po/cs.po | 14 +--
po/de.po | 14 +--
po/el.po | 14 +--
po/eo.po | 14 +--
po/es.po | 14 +--
po/es_CL.po | 14 +--
po/et.po | 14 +--
po/fr.po | 14 +--
po/he.po | 14 +--
po/hr.po | 14 +--
po/id_ID.po | 14 +--
po/it.po | 14 +--
po/lt.po | 14 +--
po/nl.po | 16 +--
po/no.po | 14 +--
po/pl.po | 14 +--
po/pt_BR.po | 25 +++--
po/ru.po | 21 ++--
po/sv.po | 14 +--
po/ta_IN.po | 12 +-
po/tr.po | 14 +--
po/uk_UA.po | 316 +++++++++++++++++++++++++++-------------------------
24 files changed, 337 insertions(+), 319 deletions(-)
diff --git a/po/ar.po b/po/ar.po
index 6a7016b..e81415c 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: abouzakaria kov \n"
"Language-Team: Arabic (http://www.transifex.com/pwmt/zathura/language/ar/)\n"
@@ -693,26 +693,26 @@ msgstr "النمط غير موجود: %s"
msgid "This document does not contain any index"
msgstr "لا يحتوي هذا المستند على أي فهرس"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[لا اسم]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "لا يمكن قراءة الملف من المصدر وكتابته إلى ملف مؤقت."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "تعذرت قراءة الملف من GIO ونسخه إلى ملف مؤقت."
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "أدخل كلمة المرور:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "نوع ملف غير مدعوم. الرجاء تثبيت المكون الإضافي اللازم."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "لا يحتوي المستند على أي صفحات"
diff --git a/po/ca.po b/po/ca.po
index cc50f7f..543719b 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Catalan (http://www.transifex.com/pwmt/zathura/language/ca/)\n"
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Aquest document no conté cap índex"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Sense nom]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 4fa8e9e..3d536fb 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Czech (http://www.transifex.com/pwmt/zathura/language/cs/)\n"
@@ -693,29 +693,29 @@ 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:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Nepojmenovaný]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
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:851
+#: zathura/zathura.c:852
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:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "Zadat heslo:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Nepodporovaný typ souboru. Nainstalujte, prosím, nezbytný přídavný modul."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Dokument neobsahuje žádné strany"
diff --git a/po/de.po b/po/de.po
index e46982a..5f03458 100644
--- a/po/de.po
+++ b/po/de.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:49+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: German (http://www.transifex.com/pwmt/zathura/language/de/)\n"
@@ -699,26 +699,26 @@ 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:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Kein Name]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
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:851
+#: zathura/zathura.c:852
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:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "Passwort:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Dateityp ist nicht unterstützt. Installiere das benötigete Plugin."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Dieses Dokument beinhaltet keine Seiten"
diff --git a/po/el.po b/po/el.po
index ef74544..e907aa4 100644
--- a/po/el.po
+++ b/po/el.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Greek (http://www.transifex.com/pwmt/zathura/language/el/)\n"
@@ -691,26 +691,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Το αρχείο δεν περιέχει κανένα δείκτη"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Χωρίς όνομα]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/eo.po b/po/eo.po
index 8ed8cfd..8cb0fa0 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Esperanto (http://www.transifex.com/pwmt/zathura/language/"
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Ĉi-tiu dokumento enhavas neniam indekson."
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Neniu nomo]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/es.po b/po/es.po
index 12fdc8b..161b20a 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (http://www.transifex.com/pwmt/zathura/language/es/)\n"
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Este documento no contiene ningún índice"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Sin nombre]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/es_CL.po b/po/es_CL.po
index fb56c42..55d9e62 100644
--- a/po/es_CL.po
+++ b/po/es_CL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/pwmt/zathura/"
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Este document no contiene índice"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Sin nombre]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/et.po b/po/et.po
index f6cb9ca..d4a98b4 100644
--- a/po/et.po
+++ b/po/et.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Estonian (http://www.transifex.com/pwmt/zathura/language/"
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr ""
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Nime pole]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 4e8a21a..36a6923 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: French (http://www.transifex.com/pwmt/zathura/language/fr/)\n"
@@ -694,29 +694,29 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Ce document ne contient pas d'index"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Sans nom]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Impossible de lire le fichier depuis stdin et de le sauvegarder dans un "
"fichier temporaire."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Type de fichier non supporté. Veuillez installer l'extension nécessaire."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Ce document ne contient aucune page"
diff --git a/po/he.po b/po/he.po
index 73f78bf..7f7056a 100644
--- a/po/he.po
+++ b/po/he.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Hebrew (http://www.transifex.com/pwmt/zathura/language/he/)\n"
@@ -688,26 +688,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr ""
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr ""
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index d5fd2ac..5c4b290 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Croatian (http://www.transifex.com/pwmt/zathura/language/"
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr ""
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr ""
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/id_ID.po b/po/id_ID.po
index 7e57c8f..9da0bbe 100644
--- a/po/id_ID.po
+++ b/po/id_ID.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/pwmt/zathura/"
@@ -691,27 +691,27 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Dokumen ini tidak mempunyai indeks"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Tidak berjudul]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Tidak dapat membaca berkas dari stdin dan menulisnya ke berkas sementar"
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Tipe berkas tidak didukung. Silakan memasang plugin yang dibutuhkan."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Dokumen tidak mempunyai laman apapun"
diff --git a/po/it.po b/po/it.po
index 5f5c8ca..3dc677c 100644
--- a/po/it.po
+++ b/po/it.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Simone Dotto \n"
"Language-Team: Italian (http://www.transifex.com/pwmt/zathura/language/it/)\n"
@@ -701,28 +701,28 @@ msgstr "Pattern non trovato: %s"
msgid "This document does not contain any index"
msgstr "Questo documento non contiene l' indice"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Nessun nome]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Impossibile leggere il file dall' stdin e scriverlo in un file temporaneo."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "Impossibile leggere file da GIO e copiarlo su un file temporaneo"
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "Inserisci password"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Tipo di file non supportato. Per favore, installa il plugin necessario."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Il documento non contiene alcuna pagina"
diff --git a/po/lt.po b/po/lt.po
index 129a372..92dfb5c 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Lithuanian (http://www.transifex.com/pwmt/zathura/language/"
@@ -691,26 +691,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Šit dokumentas neturi turinio"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Bevardis]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Bylos tipas nepalaikomas. Įdiekite tam skirtus įskiepius."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Dokumente puslapių nėra"
diff --git a/po/nl.po b/po/nl.po
index e84445a..241c1bd 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
-"PO-Revision-Date: 2020-04-12 17:56+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Heimen Stoffels \n"
"Language-Team: Dutch (http://www.transifex.com/pwmt/zathura/language/nl/)\n"
"Language: nl\n"
@@ -700,30 +700,30 @@ msgstr "Patroon niet gevonden: %s"
msgid "This document does not contain any index"
msgstr "Dit document bevat geen index"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Naamloos]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Bestand kan niet worden gelezen uit stdin en worden weggeschreven naar een "
"tijdelijk bestand."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
"Bestand kan niet worden gelezen uit GIO en worden gekopieerd naar een "
"tijdelijk bestand."
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "Wachtwoord invoeren:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Niet-ondersteund bestandstype. Installeer de benodigde plug-in."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Document bevat geen pagina's"
diff --git a/po/no.po b/po/no.po
index 1abc8a5..1331d23 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Norwegian (http://www.transifex.com/pwmt/zathura/language/"
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Dette dokumenetet inneholder ikke noen index"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Inget navn]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "Kunne ikke lese fil fra stdin og skrive til temporærfil."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Usupportert filtype. Vennligst innstaller den nødvendige pluginen."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Dokumentet inneholder ingen sider"
diff --git a/po/pl.po b/po/pl.po
index 77c6725..fad224e 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Polish (http://www.transifex.com/pwmt/zathura/language/pl/)\n"
@@ -691,26 +691,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Dokument nie zawiera indeksu"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[bez nazwy]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Niewspierany rodzaj pliku. Zainstaluj wymagane wtyczki"
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Dokument nie zawiera żadnej strony"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index d1d5524..95a8aeb 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,13 +3,14 @@
#
# Translators:
# Alexandro Casanova , 2013-2014
+# Fernando Henrique , 2020
msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
-"PO-Revision-Date: 2020-03-22 22:48+0000\n"
-"Last-Translator: Sebastian Ramacher \n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"PO-Revision-Date: 2020-04-27 01:40+0000\n"
+"Last-Translator: Fernando Henrique \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/pwmt/zathura/"
"language/pt_BR/)\n"
"Language: pt_BR\n"
@@ -33,12 +34,18 @@ msgid ""
"mainly focuses on keyboard interaction. Zathura makes it possible to "
"completely view and navigate through documents without using a mouse."
msgstr ""
+"Zathura é um visualizador de documentos funcional e customizável. Ele "
+"oferece uma interface minimalista, fácil de usar e focada na interação por "
+"teclado. Zathura torna possível visualizar e navegar por documentos "
+"completamente sem o uso do mouse."
#: data/org.pwmt.zathura.appdata.xml.in:17
msgid ""
"Zathura can be extended to support multiple document formats using plugins. "
"Other features include:"
msgstr ""
+"Zathura pode ser estendido para suportar múltiplos formatos de documentos "
+"usando plugins. Outros recursos incluem "
#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
@@ -692,29 +699,29 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Este documento não contem qualquer índice"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Sem nome]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Não foi possível ler o arquivo a partir de stdin e gravá-lo em um arquivo "
"temporário."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Formato de arquivo não suportado. Por favor, instale o plugin necessário."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Documento não contém quaisquer páginas"
diff --git a/po/ru.po b/po/ru.po
index b51c4b2..e6d9f29 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -5,15 +5,16 @@
# Alexander Filev , 2019
# AlexanderR , 2013
# Alissa , 2013
+# crt0r citrus, 2020
# Mikhail Krutov <>, 2012
# Vladimir Lomov , 2013-2016
msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
-"PO-Revision-Date: 2020-03-22 22:48+0000\n"
-"Last-Translator: Alexander Filev\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"PO-Revision-Date: 2020-04-28 19:42+0000\n"
+"Last-Translator: crt0r citrus\n"
"Language-Team: Russian (http://www.transifex.com/pwmt/zathura/language/ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
@@ -49,6 +50,8 @@ msgid ""
"Zathura can be extended to support multiple document formats using plugins. "
"Other features include:"
msgstr ""
+"Zathura может быть расширена для использования нескольких форматов "
+"документов при помощи плагинов."
#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
@@ -699,29 +702,29 @@ msgstr "Шаблон не найден: %s"
msgid "This document does not contain any index"
msgstr "В документе нет индекса"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Без названия]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Не удалось прочитать файл со стандартного входа и записать его во временный "
"файл."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
"Не удалось прочитать файл через GIO и скопировать его во временный файл."
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "Введите пароль:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Тип файла не поддерживается. Установите соответствующий плагин."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "В документе нет страниц"
diff --git a/po/sv.po b/po/sv.po
index 84d70f2..f45f418 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Rasmussen \n"
"Language-Team: Swedish (http://www.transifex.com/pwmt/zathura/language/sv/)\n"
@@ -693,26 +693,26 @@ msgstr "Mönster hittades inte: %s"
msgid "This document does not contain any index"
msgstr "Detta dokument innehåller inget index"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[Namnlös]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "Kunde inte läsa fil från stdin och skriva den till en temporärfil."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "Kunde inte läsa fil från GIO och kopiera den till en temporärfil."
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "Ange lösenord:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Filtyp stöds ej. Installera det nödvändiga insticket."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr "Dokument innehåller inga sidor"
diff --git a/po/ta_IN.po b/po/ta_IN.po
index 4c403f8..9a83292 100644
--- a/po/ta_IN.po
+++ b/po/ta_IN.po
@@ -689,26 +689,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "இந்த ஆவணத்தில் எந்த index-ம் இல்லை"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "பெயரற்ற ஆவணம்"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 20c9dd3..4bec2e3 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
"PO-Revision-Date: 2020-03-30 00:26+0000\n"
"Last-Translator: abc Def \n"
"Language-Team: Turkish (http://www.transifex.com/pwmt/zathura/language/tr/)\n"
@@ -690,26 +690,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Bu belge fihrist içermiyor"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
msgstr "[İsimsiz]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
msgstr "Şifre girin:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Desteklenmeyen dosya türü. Lütfen gerekli eklentileri yükleyin."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 767dd0d..0df9352 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
-"PO-Revision-Date: 2020-03-22 22:48+0000\n"
-"Last-Translator: Sebastian Ramacher \n"
+"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"PO-Revision-Date: 2020-05-06 14:51+0000\n"
+"Last-Translator: Юрій Яновський \n"
"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/pwmt/zathura/"
"language/uk_UA/)\n"
"Language: uk_UA\n"
@@ -28,7 +28,7 @@ msgstr "Zathura"
#: data/org.pwmt.zathura.appdata.xml.in:8 data/org.pwmt.zathura.desktop.in:6
msgid "A minimalistic document viewer"
-msgstr "Легкий переглядач документів"
+msgstr "Простий переглядач документів"
#: data/org.pwmt.zathura.appdata.xml.in:10
msgid ""
@@ -37,60 +37,66 @@ msgid ""
"mainly focuses on keyboard interaction. Zathura makes it possible to "
"completely view and navigate through documents without using a mouse."
msgstr ""
+"Zathura - це дуже гнучкий та функціональний переглядач документів. Він "
+"забезпечує простий та компактний інтерфейс, а також просте використання, яке "
+"в основному фокусується на взаємодії з клавіатурою. Zathura дає можливість "
+"повністю переглядати та переміщатися по документах без використання миші."
#: data/org.pwmt.zathura.appdata.xml.in:17
msgid ""
"Zathura can be extended to support multiple document formats using plugins. "
"Other features include:"
msgstr ""
+"Zathura може бути розширений для підтримки декількох форматів документів за "
+"допомогою плаґінів. Інші можливості включають:"
#: data/org.pwmt.zathura.appdata.xml.in:22
msgid "SyncTeX forward and backward synchronization support."
-msgstr ""
+msgstr "Підтримка Synctex синхронізації вперед та назад ."
#: data/org.pwmt.zathura.appdata.xml.in:23
msgid "Quickmarks and bookmarks."
-msgstr ""
+msgstr "Швидкі закладки та закладки."
#: data/org.pwmt.zathura.appdata.xml.in:24
msgid "Automatic document reloading."
-msgstr ""
+msgstr "Автоматичне перезавантаження документів."
#. Translators: Icon of the desktop entry.
#: data/org.pwmt.zathura.desktop.in:9
msgid "org.pwmt.zathura"
-msgstr ""
+msgstr "org.pwmt.zathura"
#. Translators: Search terms to find this application. Do not translate or
#. localize the semicolons. The list must also end with a semicolon.
#: data/org.pwmt.zathura.desktop.in:14
msgid "PDF;PS;PostScript;DjVU;document;presentation;viewer;"
-msgstr ""
+msgstr "PDF;PS;PostScript;DjVU;документ;презентація;переглядач;"
#: zathura/callbacks.c:310
#, c-format
msgid "'%s' must not be 0. Set to 1."
-msgstr ""
+msgstr "'%s' не має дорівнювати 0. Встановити значення 1."
#: zathura/callbacks.c:395
#, c-format
msgid "Invalid input '%s' given."
-msgstr "Вказано невірний аргумент: %s."
+msgstr "Введено неправильні дані '%s'."
#: zathura/callbacks.c:433
#, c-format
msgid "Invalid index '%s' given."
-msgstr "Вказано невірний індекс: %s"
+msgstr "Вказано невірний покажчик %s."
#: zathura/callbacks.c:674
#, c-format
msgid "Copied selected text to selection %s: %s"
-msgstr ""
+msgstr "Скопійовано вибраний текст у вибірку %s: %s"
#: zathura/callbacks.c:706
#, c-format
msgid "Copied selected image to selection %s"
-msgstr ""
+msgstr "Скопійовано вибране зображення у вибірку %s"
#: zathura/commands.c:36 zathura/commands.c:76 zathura/commands.c:103
#: zathura/commands.c:165 zathura/commands.c:281 zathura/commands.c:311
@@ -98,45 +104,45 @@ msgstr ""
#: zathura/shortcuts.c:413 zathura/shortcuts.c:1222 zathura/shortcuts.c:1257
#: zathura/shortcuts.c:1284
msgid "No document opened."
-msgstr "Документ не відкрито."
+msgstr "Жодного документа не відкрито."
#: zathura/commands.c:42 zathura/commands.c:82 zathura/commands.c:442
msgid "Invalid number of arguments given."
-msgstr "Вказана невірна кількість аргументів."
+msgstr "Неправильна кількість наведених аргументів."
#: zathura/commands.c:53
#, c-format
msgid "Could not update bookmark: %s"
-msgstr "Не можу створити закладку: %s"
+msgstr "Не вдалося оновити закладку: %s"
#: zathura/commands.c:55
#, c-format
msgid "Could not create bookmark: %s"
-msgstr "Не можу створити закладку: %s"
+msgstr "Не вдалося створити закладку: %s"
#: zathura/commands.c:60
#, c-format
msgid "Bookmark successfully updated: %s"
-msgstr "Закладку вдало поновлено: %s"
+msgstr "Закладка успішно оновлена: %s"
#: zathura/commands.c:62
#, c-format
msgid "Bookmark successfully created: %s"
-msgstr "Закладку створено вдало: %s"
+msgstr "Закладка успішно створена: %s"
#: zathura/commands.c:88
#, c-format
msgid "Removed bookmark: %s"
-msgstr "Закладку видалено: %s"
+msgstr "Закладку вилучено: %s"
#: zathura/commands.c:90
#, c-format
msgid "Failed to remove bookmark: %s"
-msgstr "Видалення закладки невдалося: %s"
+msgstr "Не вдалося вилучити закладку: %s"
#: zathura/commands.c:119
msgid "No bookmarks available."
-msgstr ""
+msgstr "Закладки не доступні."
#: zathura/commands.c:129
#, c-format
@@ -145,59 +151,59 @@ msgstr "Такої закладки немає: %s"
#: zathura/commands.c:175
msgid "Title"
-msgstr ""
+msgstr "Заголовок"
#: zathura/commands.c:176
msgid "Subject"
-msgstr ""
+msgstr "Тема"
#: zathura/commands.c:177
msgid "Keywords"
-msgstr ""
+msgstr "Ключові слова"
#: zathura/commands.c:178
msgid "Author"
-msgstr ""
+msgstr "Автор"
#: zathura/commands.c:179
msgid "Creator"
-msgstr ""
+msgstr "Творець"
#: zathura/commands.c:180
msgid "Producer"
-msgstr ""
+msgstr "Виробник"
#: zathura/commands.c:181
msgid "Creation date"
-msgstr ""
+msgstr "Дата створення"
#: zathura/commands.c:182
msgid "Modification date"
-msgstr ""
+msgstr "Дата зміни"
#: zathura/commands.c:183
msgid "Format"
-msgstr ""
+msgstr "Формат"
#: zathura/commands.c:184
msgid "Other"
-msgstr ""
+msgstr "Інше"
#: zathura/commands.c:189 zathura/commands.c:209
msgid "No information available."
-msgstr "Інформація недоступна."
+msgstr "Інформація відсутня."
#: zathura/commands.c:247
msgid "Too many arguments."
-msgstr "Забагато аргументів."
+msgstr "Занадто багато аргументів."
#: zathura/commands.c:258
msgid "No arguments given."
-msgstr "Жодного аргументу не вказано."
+msgstr "Жодного аргументу не наведено."
#: zathura/commands.c:286
msgid "Printing is not permitted in strict sandbox mode"
-msgstr ""
+msgstr "Друк заборонено в режимі суворої пісочниці"
#: zathura/commands.c:317 zathura/commands.c:343
msgid "Document saved."
@@ -205,76 +211,76 @@ msgstr "Документ збережено."
#: zathura/commands.c:319 zathura/commands.c:345
msgid "Failed to save document."
-msgstr "Документ не вдалося зберегти."
+msgstr "Не вдалося зберегти документ."
#: zathura/commands.c:322 zathura/commands.c:348
msgid "Invalid number of arguments."
-msgstr "Невірна кількість аргументів."
+msgstr "Неправильна кількість аргументів."
#: zathura/commands.c:461
#, c-format
msgid "Couldn't write attachment '%s' to '%s'."
-msgstr "Неможливо записати прикріплення '%s' до '%s'."
+msgstr "Неможливо записати вкладення '%s' у '%s'."
#: zathura/commands.c:463
#, c-format
msgid "Wrote attachment '%s' to '%s'."
-msgstr "Прикріплення записано %s до %s."
+msgstr "Записано вкладення %s у %s."
#: zathura/commands.c:507
#, c-format
msgid "Wrote image '%s' to '%s'."
-msgstr ""
+msgstr "Зображення записано '% s' до '% s'."
#: zathura/commands.c:509
#, c-format
msgid "Couldn't write image '%s' to '%s'."
-msgstr ""
+msgstr "Не вдалося записати зображення \"%s\" у \"%s\"."
#: zathura/commands.c:516
#, c-format
msgid "Unknown image '%s'."
-msgstr ""
+msgstr "Невідоме зображення '%s'."
#: zathura/commands.c:520
#, c-format
msgid "Unknown attachment or image '%s'."
-msgstr ""
+msgstr "Невідоме вкладення або зображення \"%s\"."
#: zathura/commands.c:538
msgid "Exec is not permitted in strict sandbox mode"
-msgstr ""
+msgstr "Запуск у суворому режимі пісочниці заборонено"
#: zathura/commands.c:582
msgid "Argument must be a number."
-msgstr "Аргумент повинен бути цифрою."
+msgstr "Аргумент повинен бути числом."
#: zathura/completion.c:287
#, c-format
msgid "Page %d"
-msgstr ""
+msgstr "Сторінка %d"
#: zathura/completion.c:330
msgid "Attachments"
-msgstr ""
+msgstr "Вкладення"
#. add images
#: zathura/completion.c:361
msgid "Images"
-msgstr ""
+msgstr "Зображення"
#. zathura settings
#: zathura/config.c:183
msgid "Database backend"
-msgstr "Буфер бази"
+msgstr "Бекенд бази даних"
#: zathura/config.c:184
msgid "File monitor backend"
-msgstr ""
+msgstr "Бекенд файлового монітора"
#: zathura/config.c:186
msgid "Zoom step"
-msgstr "Збільшення"
+msgstr "Крок масштабування"
#: zathura/config.c:188
msgid "Padding between pages"
@@ -282,47 +288,47 @@ msgstr "Заповнення між сторінками"
#: zathura/config.c:190
msgid "Number of pages per row"
-msgstr "Кількість сторінок в одному рядку"
+msgstr "Кількість сторінок у рядку"
#: zathura/config.c:192
msgid "Column of the first page"
-msgstr ""
+msgstr "Колонка першої сторінки"
#: zathura/config.c:194
msgid "Render pages from right to left"
-msgstr ""
+msgstr "Відображати сторінки справа наліво"
#: zathura/config.c:196
msgid "Scroll step"
-msgstr "Прокручування"
+msgstr "Крок прокрутки"
#: zathura/config.c:198
msgid "Horizontal scroll step"
-msgstr ""
+msgstr "Крок горизонтальної прокрутки"
#: zathura/config.c:200
msgid "Full page scroll overlap"
-msgstr ""
+msgstr "Перекривання сторінки при прокрутці"
#: zathura/config.c:202
msgid "Zoom minimum"
-msgstr "Максимальне зменшення"
+msgstr "Мінімальний масштаб"
#: zathura/config.c:204
msgid "Zoom maximum"
-msgstr "Максимальне збільшення"
+msgstr "Максимальний масштаб"
#: zathura/config.c:206
msgid "Maximum number of pages to keep in the cache"
-msgstr ""
+msgstr "Максимальна кількість сторінок, що зберігаються в кеші"
#: zathura/config.c:208
msgid "Maximum size in pixels of thumbnails to keep in the cache"
-msgstr ""
+msgstr "Максимальний розмір у пікселях ескізів, що зберігаються в кеші"
#: zathura/config.c:210
msgid "Number of positions to remember in the jumplist"
-msgstr ""
+msgstr "Довжина історії переходів"
#: zathura/config.c:212
msgid "Recoloring (dark color)"
@@ -342,71 +348,73 @@ msgstr "Колір для виділення (активний)"
#: zathura/config.c:218
msgid "'Loading ...' background color"
-msgstr ""
+msgstr "'Завантаження ...' колір тла"
#: zathura/config.c:220
msgid "'Loading ...' foreground color"
-msgstr ""
+msgstr "'Завантаження ...' колір переднього плану"
#: zathura/config.c:223
msgid "Index mode foreground color"
-msgstr ""
+msgstr "Колір переднього плану в режимі покажчика"
#: zathura/config.c:224
msgid "Index mode background color"
-msgstr ""
+msgstr "Колір тла у режимі покажчика"
#: zathura/config.c:225
msgid "Index mode foreground color (active element)"
-msgstr ""
+msgstr "Колір переднього плану в режимі покажчика (активний елемент)"
#: zathura/config.c:226
msgid "Index mode background color (active element)"
-msgstr ""
+msgstr "Колір тла у режимі покажчика (активний елемент)"
#: zathura/config.c:229
msgid "Recolor pages"
-msgstr "Змінити кольори"
+msgstr "Перефарбувати сторінки"
#: zathura/config.c:231
msgid "When recoloring keep original hue and adjust lightness only"
msgstr ""
+"Під час перефарбовування зберігати початковий відтінок і регулювати лише "
+"освітленість"
#: zathura/config.c:233
msgid "When recoloring keep original image colors"
-msgstr ""
+msgstr "Під час перефарбовування зберігати початкові кольори зображення"
#: zathura/config.c:235
msgid "Wrap scrolling"
-msgstr "Плавне прокручування"
+msgstr "Плавна прокрутка"
#: zathura/config.c:237
msgid "Page aware scrolling"
-msgstr ""
+msgstr "Прокрутка по сторінкам"
#: zathura/config.c:239
msgid "Advance number of pages per row"
-msgstr ""
+msgstr "Збільшити кількість сторінок на рядок"
#: zathura/config.c:241
msgid "Horizontally centered zoom"
-msgstr ""
+msgstr "Горизонтально вирівняний масштаб"
#: zathura/config.c:243
msgid "Vertically center pages"
-msgstr ""
+msgstr "Вертикально вирівнювати сторінки"
#: zathura/config.c:245
msgid "Align link target to the left"
-msgstr ""
+msgstr "Вирівнювати ціль посилання ліворуч"
#: zathura/config.c:247
msgid "Let zoom be changed when following links"
-msgstr ""
+msgstr "Нехай масштабується при переході за посиланнями"
#: zathura/config.c:249
msgid "Center result horizontally"
-msgstr ""
+msgstr "Вирівнювати результат по горизонталі"
#: zathura/config.c:251
msgid "Transparency for highlighting"
@@ -414,23 +422,23 @@ msgstr "Прозорість для виділення"
#: zathura/config.c:253
msgid "Render 'Loading ...'"
-msgstr "Рендер 'Завантажується ...'"
+msgstr "Візуалізація 'Завантаження ...'"
#: zathura/config.c:254
msgid "Adjust to when opening file"
-msgstr "Підлаштовутись при відкритті файлу"
+msgstr "Підлаштовуватись при відкритті файлу"
#: zathura/config.c:256
msgid "Show hidden files and directories"
-msgstr "Показати приховані файли та директорії"
+msgstr "Показати приховані файли та каталоги"
#: zathura/config.c:258
msgid "Show directories"
-msgstr "Показати диреторії"
+msgstr "Показати каталоги"
#: zathura/config.c:260
msgid "Show recent files"
-msgstr ""
+msgstr "Показати нещодавні файли"
#: zathura/config.c:262
msgid "Always open on first page"
@@ -438,67 +446,67 @@ msgstr "Завжди відкривати на першій сторінці"
#: zathura/config.c:264
msgid "Highlight search results"
-msgstr ""
+msgstr "Виділяти результати пошуку"
#: zathura/config.c:267
msgid "Enable incremental search"
-msgstr ""
+msgstr "Увімкнути поступовий пошук"
#: zathura/config.c:269
msgid "Clear search results on abort"
-msgstr ""
+msgstr "Очистити результати пошуку при скасуванні"
#: zathura/config.c:271
msgid "Use basename of the file in the window title"
-msgstr ""
+msgstr "Використовувати базове ім'я файлу у заголовку вікна"
#: zathura/config.c:273
msgid "Use ~ instead of $HOME in the filename in the window title"
-msgstr ""
+msgstr "Використовати ~ замість $HOME у назві файла у заголовку вікна"
#: zathura/config.c:275
msgid "Display the page number in the window title"
-msgstr ""
+msgstr "Відображати номер сторінки у назві вікна"
#: zathura/config.c:277
msgid "Use first page of a document as window icon"
-msgstr ""
+msgstr "Використовувати першу сторінку документа як піктограму вікна"
#: zathura/config.c:279
msgid "Use basename of the file in the statusbar"
-msgstr ""
+msgstr "Використовувати базове ім'я файлу на панелі стану"
#: zathura/config.c:281
msgid "Use ~ instead of $HOME in the filename in the statusbar"
-msgstr ""
+msgstr "Використовувати ~ замість $HOME у назві файлу на панелі стану"
#: zathura/config.c:283
msgid "Enable synctex support"
-msgstr ""
+msgstr "Увімкнути підтримку Synctex"
#: zathura/config.c:284
msgid "Synctex editor command"
-msgstr ""
+msgstr "Команда редактора Synctex"
#: zathura/config.c:286
msgid "Enable D-Bus service"
-msgstr ""
+msgstr "Увімкнути службу D-Bus"
#: zathura/config.c:288
msgid "Save history at each page change"
-msgstr ""
+msgstr "Зберігати історію при кожній зміні сторінки"
#: zathura/config.c:289
msgid "The clipboard into which mouse-selected data will be written"
-msgstr ""
+msgstr "Буфер обміну, в який будуть записані дані, вибрані мишею"
#: zathura/config.c:291
msgid "Enable notification after selecting text"
-msgstr ""
+msgstr "Увімкніть сповіщення після вибору тексту"
#: zathura/config.c:294
msgid "Sandbox level"
-msgstr ""
+msgstr "Рівень пісочниці"
#. define default inputbar commands
#: zathura/config.c:483
@@ -511,24 +519,24 @@ msgstr "Вилучити закладку"
#: zathura/config.c:485
msgid "List all bookmarks"
-msgstr "Дивитись усі закладки"
+msgstr "Список усіх закладок"
#: zathura/config.c:486
msgid "Close current file"
-msgstr "Закрити документ"
+msgstr "Закрити поточний файл"
#: zathura/config.c:487
msgid "Show file information"
-msgstr "Показати інформацію файлу"
+msgstr "Показати інформацію про файл"
#: zathura/config.c:488 zathura/config.c:489
msgid "Execute a command"
-msgstr ""
+msgstr "Виконати команду"
#. like vim
#: zathura/config.c:490
msgid "Show help"
-msgstr "Показати довідку"
+msgstr "Покажіть довідку"
#: zathura/config.c:491
msgid "Open document"
@@ -536,11 +544,11 @@ msgstr "Відкрити документ"
#: zathura/config.c:492
msgid "Close zathura"
-msgstr "Вийти із zathura"
+msgstr "Закрити zathura"
#: zathura/config.c:493
msgid "Print document"
-msgstr "Друкувати документ"
+msgstr "Надрукувати документ"
#: zathura/config.c:494
msgid "Save document"
@@ -548,11 +556,11 @@ msgstr "Зберегти документ"
#: zathura/config.c:495
msgid "Save document (and force overwriting)"
-msgstr "Зберегти документ (форсувати перезапис)"
+msgstr "Зберегти документ (і примусово перезаписати)"
#: zathura/config.c:496
msgid "Save attachments"
-msgstr "Зберегти прикріплення"
+msgstr "Зберегти вкладення"
#: zathura/config.c:497
msgid "Set page offset"
@@ -560,159 +568,159 @@ msgstr "Встановити зміщення сторінки"
#: zathura/config.c:498
msgid "Mark current location within the document"
-msgstr ""
+msgstr "Позначити поточне розташування в документі"
#: zathura/config.c:499
msgid "Delete the specified marks"
-msgstr ""
+msgstr "Вилучити зазначені позначки"
#: zathura/config.c:500
msgid "Don't highlight current search results"
-msgstr ""
+msgstr "Не виділяти поточні результати пошуку"
#: zathura/config.c:501
msgid "Highlight current search results"
-msgstr ""
+msgstr "Виділити поточні результати пошуку"
#: zathura/config.c:502
msgid "Show version information"
-msgstr ""
+msgstr "Показати інформацію про версію"
#: zathura/links.c:233
msgid "Failed to run xdg-open."
-msgstr "Запуск xdg-open не вдався."
+msgstr "Не вдалося запустити xdg-open."
#: zathura/links.c:247
msgid "Opening external applications in strict sandbox mode is not permitted"
-msgstr ""
+msgstr "Відкривати зовнішні програми в режимі суворої пісочниці не дозволено"
#: zathura/links.c:280
#, c-format
msgid "Link: page %d"
-msgstr ""
+msgstr "Посилання: сторінка %d"
#: zathura/links.c:287
#, c-format
msgid "Link: %s"
-msgstr ""
+msgstr "Посилання: %s"
#: zathura/links.c:291
msgid "Link: Invalid"
-msgstr ""
+msgstr "Посилання: Недійсне"
#: zathura/main.c:145
msgid "Reparents to window specified by xid (X11)"
-msgstr "Вертатися до вікна, вказаного xid (X11)"
+msgstr "Повертатися до вікна, вказаного за допомогою xid (X11)"
#: zathura/main.c:146
msgid "Path to the config directory"
-msgstr "Шлях до теки конфігурації"
+msgstr "Шлях до каталогу конфігурації"
#: zathura/main.c:147
msgid "Path to the data directory"
-msgstr "Шлях до теки з даними"
+msgstr "Шлях до каталогу з даними"
#: zathura/main.c:148
msgid "Path to the cache directory"
-msgstr ""
+msgstr "Шлях до каталогу кеша"
#: zathura/main.c:149
msgid "Path to the directories containing plugins"
-msgstr "Шлях до теки з плаґінами"
+msgstr "Шлях до каталогів, які містять плаґіни"
#: zathura/main.c:150
msgid "Fork into the background"
-msgstr "Працювати у фоні"
+msgstr "Запустити у фоні"
#: zathura/main.c:151
msgid "Document password"
-msgstr ""
+msgstr "Пароль документа"
#: zathura/main.c:152
msgid "Page number to go to"
-msgstr ""
+msgstr "Номер сторінки, на який потрібно перейти"
#: zathura/main.c:153
msgid "Log level (debug, info, warning, error)"
-msgstr "Рівень логування (налагодження, інфо, застереження, помилка)"
+msgstr "Рівень журналювання (налагодження, інформація, попередження, помилка)"
#: zathura/main.c:154
msgid "Print version information"
-msgstr "Показати інформацію файлу"
+msgstr "Інформація про версію для друку"
#: zathura/main.c:155
msgid "Synctex editor (forwarded to the synctex command)"
-msgstr ""
+msgstr "Редактор Synctex (перенаправляється до команди Synctex)"
#: zathura/main.c:156
msgid "Move to given synctex position"
-msgstr ""
+msgstr "Перейдіть до заданої позиції Synctex"
#: zathura/main.c:157
msgid "Highlight given position in the given process"
-msgstr ""
+msgstr "Виділити задану позицію в даному процесі"
#: zathura/main.c:158
msgid "Start in a non-default mode"
-msgstr ""
+msgstr "Запуск в режимі, що не використовується за замовчуванням"
#: zathura/page-widget.c:654
msgid "Loading..."
-msgstr ""
+msgstr "Завантаження..."
#: zathura/page-widget.c:1113
msgid "Copy image"
-msgstr "Копіювати картинку"
+msgstr "Скопіювати зображення"
#: zathura/page-widget.c:1114
msgid "Save image as"
-msgstr ""
+msgstr "Зберегти зображення як"
#. Update statusbar.
#: zathura/print.c:110
#, c-format
msgid "Printing page %d ..."
-msgstr ""
+msgstr "Друк сторінки %d..."
#: zathura/print.c:192
#, c-format
msgid "Printing failed: %s"
-msgstr ""
+msgstr "Не вдалося надрукувати: %s"
#: zathura/shortcuts.c:105
#, c-format
msgid "Invalid adjust mode: %d"
-msgstr ""
+msgstr "Недійсний режим коригування: %d"
#: zathura/shortcuts.c:974
#, c-format
msgid "Pattern not found: %s"
-msgstr ""
+msgstr "Шаблон не знайдено: %s"
#: zathura/shortcuts.c:1132
msgid "This document does not contain any index"
-msgstr "Індекс відсутній в цьому документі"
+msgstr "Цей документ не містить покажчика"
-#: zathura/zathura.c:304 zathura/zathura.c:1466
+#: zathura/zathura.c:300 zathura/zathura.c:1467
msgid "[No name]"
-msgstr "[Без назви]"
+msgstr "[Без імені]"
-#: zathura/zathura.c:831
+#: zathura/zathura.c:832
msgid "Could not read file from stdin and write it to a temporary file."
-msgstr ""
+msgstr "Не вдалося прочитати файл із stdin та записати його у тимчасовий файл."
-#: zathura/zathura.c:851
+#: zathura/zathura.c:852
msgid "Could not read file from GIO and copy it to a temporary file."
-msgstr ""
+msgstr "Не вдалося прочитати файл із GIO та скопіювати його у тимчасовий файл."
-#: zathura/zathura.c:940
+#: zathura/zathura.c:941
msgid "Enter password:"
-msgstr ""
+msgstr "Введіть пароль:"
-#: zathura/zathura.c:979
+#: zathura/zathura.c:980
msgid "Unsupported file type. Please install the necessary plugin."
-msgstr ""
+msgstr "Непідтримуваний тип файлу. Установіть необхідне розширення."
-#: zathura/zathura.c:989
+#: zathura/zathura.c:990
msgid "Document does not contain any pages"
-msgstr ""
+msgstr "Документ не містить жодної сторінки"
From 0cf5be08cdd7b2717b5d40615658e8bf9007c36f Mon Sep 17 00:00:00 2001
From: Faye
Date: Mon, 6 Jul 2020 16:45:55 -0500
Subject: [PATCH 42/49] Add a snap_to_page command
---
doc/man/zathurarc.5.rst | 4 ++++
zathura/config.c | 3 +++
zathura/shortcuts.c | 13 +++++++++++++
zathura/shortcuts.h | 10 ++++++++++
4 files changed, 30 insertions(+)
diff --git a/doc/man/zathurarc.5.rst b/doc/man/zathurarc.5.rst
index de5c4a0..d2b2d96 100644
--- a/doc/man/zathurarc.5.rst
+++ b/doc/man/zathurarc.5.rst
@@ -289,6 +289,10 @@ They can also be combined with modifiers:
Set an option.
+ * ``snap_to_page``
+
+ Snaps to the current page. Equivalent to ``goto ``
+
* ``toggle_fullscreen``
Toggle fullscreen.
diff --git a/zathura/config.c b/zathura/config.c
index 8ab2950..2a5d7b4 100644
--- a/zathura/config.c
+++ b/zathura/config.c
@@ -358,6 +358,8 @@ config_load_default(zathura_t* zathura)
\
girara_shortcut_add(gsession, 0, GDK_KEY_n, NULL, sc_search, (mode), FORWARD, NULL); \
girara_shortcut_add(gsession, 0, GDK_KEY_N, NULL, sc_search, (mode), BACKWARD, NULL); \
+\
+ girara_shortcut_add(gsession, 0, GDK_KEY_P, NULL, sc_snap_to_page, (mode), 0, NULL); \
\
girara_shortcut_add(gsession, 0, GDK_KEY_Tab, NULL, sc_toggle_index, (mode), 0, NULL); \
girara_shortcut_add(gsession, GDK_CONTROL_MASK, GDK_KEY_n, NULL, girara_sc_toggle_statusbar, (mode), 0, NULL); \
@@ -527,6 +529,7 @@ config_load_default(zathura_t* zathura)
girara_shortcut_mapping_add(gsession, "rotate", sc_rotate);
girara_shortcut_mapping_add(gsession, "scroll", sc_scroll);
girara_shortcut_mapping_add(gsession, "search", sc_search);
+ girara_shortcut_mapping_add(gsession, "snap_to_page", sc_snap_to_page);
girara_shortcut_mapping_add(gsession, "toggle_fullscreen", sc_toggle_fullscreen);
girara_shortcut_mapping_add(gsession, "toggle_index", sc_toggle_index);
girara_shortcut_mapping_add(gsession, "toggle_page_mode", sc_toggle_page_mode);
diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c
index eef6b76..d53dacd 100644
--- a/zathura/shortcuts.c
+++ b/zathura/shortcuts.c
@@ -1469,3 +1469,16 @@ sc_nohlsearch(girara_session_t* session, girara_argument_t* UNUSED(argument), gi
return false;
}
+
+bool sc_snap_to_page(girara_session_t *session,
+ girara_argument_t *UNUSED(argument),
+ girara_event_t *UNUSED(event), unsigned int UNUSED(t)) {
+ g_return_val_if_fail(session != NULL, false);
+ g_return_val_if_fail(session->global.data != NULL, false);
+ zathura_t *zathura = session->global.data;
+ g_return_val_if_fail(zathura->document != NULL, false);
+ zathura_document_t *document = zathura->document;
+
+ int page = zathura_document_get_current_page_number(document);
+ return page_set(zathura, page);
+}
diff --git a/zathura/shortcuts.h b/zathura/shortcuts.h
index 182303f..f198880 100644
--- a/zathura/shortcuts.h
+++ b/zathura/shortcuts.h
@@ -303,5 +303,15 @@ bool sc_exec(girara_session_t* session, girara_argument_t* argument, girara_even
*/
bool sc_nohlsearch(girara_session_t* session, girara_argument_t* argument, girara_event_t* event, unsigned int t);
+/**
+ * Snaps the current view to the current page
+ *
+ * @param session The used girara session
+ * @param argument The used argument
+ * @param event Girara event
+ * @param t Number of executions
+ * @return true if no error occurred otherwise false
+ */
+bool sc_snap_to_page(girara_session_t *session, girara_argument_t *argument, girara_event_t *event, unsigned int t);
#endif // SHORTCUTS_H
From 7591238e0cec04cb088dda47c3a172640178a9e2 Mon Sep 17 00:00:00 2001
From: Faye
Date: Mon, 6 Jul 2020 17:02:03 -0500
Subject: [PATCH 43/49] Add documentation for the default keybinding
---
doc/man/_bindings.txt | 2 ++
1 file changed, 2 insertions(+)
diff --git a/doc/man/_bindings.txt b/doc/man/_bindings.txt
index 3fe3141..84489d4 100644
--- a/doc/man/_bindings.txt
+++ b/doc/man/_bindings.txt
@@ -14,6 +14,8 @@ General
Scroll a full page left, down, up or right
gg, G, nG
Goto to the first, the last or to the nth page
+ P
+ Snaps to the current page
H, L
Goto top or bottom of the current page
^o, ^i
From 3afc3a3e75316a3546b3b13158eb6ed54de6706d Mon Sep 17 00:00:00 2001
From: valoq
Date: Wed, 1 Jul 2020 21:22:13 +0200
Subject: [PATCH 44/49] add missing syscalls
---
zathura/seccomp-filters.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/zathura/seccomp-filters.c b/zathura/seccomp-filters.c
index ecb7fae..45786ca 100644
--- a/zathura/seccomp-filters.c
+++ b/zathura/seccomp-filters.c
@@ -163,8 +163,10 @@ seccomp_enable_strict_filter(void)
ALLOW_RULE(getgid);
ALLOW_RULE(getuid);
ALLOW_RULE(getpid);
+ ALLOW_RULE(getppid);
ALLOW_RULE(gettid);
/* ALLOW_RULE (getpeername); */
+ ALLOW_RULE(getrandom);
ALLOW_RULE(getresgid);
ALLOW_RULE(getresuid);
ALLOW_RULE(getrlimit);
From fde4abeac531ceda94efd8d8578ea312e35cda10 Mon Sep 17 00:00:00 2001
From: Lennard Hofmann
Date: Sun, 19 Jul 2020 08:37:03 +0000
Subject: [PATCH 45/49] Fix SVG icon install path
https://specifications.freedesktop.org/icon-theme-spec/latest/ar01s07.html
---
data/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/meson.build b/data/meson.build
index 4649160..3a1b0b3 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -7,7 +7,7 @@ zathura_resources = gnome.compile_resources(
)
install_data('org.pwmt.zathura.xml', install_dir: dbusinterfacesdir)
-install_data('org.pwmt.zathura.svg', install_dir: join_paths(datadir, 'icons', 'scalable', 'apps'))
+install_data('org.pwmt.zathura.svg', install_dir: join_paths(datadir, 'icons', 'hicolor', 'scalable', 'apps'))
rsvg_convert = find_program('rsvg-convert', required: get_option('convert-icon'), native: true)
if rsvg_convert.found()
From 4e46cafc98ed733f21d70607d57d4244b6766d05 Mon Sep 17 00:00:00 2001
From: Christoph Stelz
Date: Sat, 13 Jun 2020 19:54:55 +0200
Subject: [PATCH 46/49] Add --find option to CLI
---
doc/man/_options.txt | 3 +++
doc/man/_synopsis.txt | 1 +
zathura/commands.c | 2 +-
zathura/dbus-interface.c | 2 +-
zathura/main.c | 10 +++++++++-
zathura/zathura.c | 17 ++++++++++++++++-
zathura/zathura.h | 3 ++-
7 files changed, 33 insertions(+), 5 deletions(-)
diff --git a/doc/man/_options.txt b/doc/man/_options.txt
index d3c728e..11a1629 100644
--- a/doc/man/_options.txt
+++ b/doc/man/_options.txt
@@ -20,6 +20,9 @@
with 1, and negative numbers indicate page numbers starting from the end
of the document, -1 being the last page.
+-f, --find=string
+ Opens the document and searches for the given string.
+
-l, --log-level=level
Set log level (debug, info, warning, error)
diff --git a/doc/man/_synopsis.txt b/doc/man/_synopsis.txt
index 9311e9d..e802966 100644
--- a/doc/man/_synopsis.txt
+++ b/doc/man/_synopsis.txt
@@ -1,3 +1,4 @@
zathura [-e XID] [-c PATH] [-d PATH] [-p PATH] [-w PASSWORD] [-P NUMBER]
[--fork] [-l LEVEL] [-s] [-x CMD] [--synctex-forward INPUT] [--synctex-pid PID]
+[-f STRING]
diff --git a/zathura/commands.c b/zathura/commands.c
index 715b164..70ecfa9 100644
--- a/zathura/commands.c
+++ b/zathura/commands.c
@@ -253,7 +253,7 @@ cmd_open(girara_session_t* session, girara_list_t* argument_list)
document_open_idle(zathura, girara_list_nth(argument_list, 0),
(argc == 2) ? girara_list_nth(argument_list, 1) : NULL,
- ZATHURA_PAGE_NUMBER_UNSPECIFIED, NULL, NULL);
+ ZATHURA_PAGE_NUMBER_UNSPECIFIED, NULL, NULL, NULL);
} else {
girara_notify(session, GIRARA_ERROR, _("No arguments given."));
return false;
diff --git a/zathura/dbus-interface.c b/zathura/dbus-interface.c
index 43ad66a..c788aa1 100644
--- a/zathura/dbus-interface.c
+++ b/zathura/dbus-interface.c
@@ -221,7 +221,7 @@ handle_open_document(zathura_t* zathura, GVariant* parameters,
document_open_idle(zathura, filename,
strlen(password) > 0 ? password : NULL,
page,
- NULL, NULL);
+ NULL, NULL, NULL);
g_free(filename);
g_free(password);
diff --git a/zathura/main.c b/zathura/main.c
index 024d3a9..690d88e 100644
--- a/zathura/main.c
+++ b/zathura/main.c
@@ -135,6 +135,7 @@ main(int argc, char* argv[])
gchar* synctex_editor = NULL;
gchar* synctex_fwd = NULL;
gchar* mode = NULL;
+ gchar* search_string = NULL;
bool forkback = false;
bool print_version = false;
int page_number = ZATHURA_PAGE_NUMBER_UNSPECIFIED;
@@ -156,6 +157,7 @@ main(int argc, char* argv[])
{ "synctex-forward", '\0', 0, G_OPTION_ARG_STRING, &synctex_fwd, _("Move to given synctex position"), "position" },
{ "synctex-pid", '\0', 0, G_OPTION_ARG_INT, &synctex_pid, _("Highlight given position in the given process"), "pid" },
{ "mode", '\0', 0, G_OPTION_ARG_STRING, &mode, _("Start in a non-default mode"), "mode" },
+ { "find", 'f', 0, G_OPTION_ARG_STRING, &search_string, _("Search for the given phrase and display results"), "string" },
{ NULL, '\0', 0, 0, NULL, NULL, NULL }
};
@@ -297,7 +299,12 @@ main(int argc, char* argv[])
--page_number;
}
document_open_idle(zathura, argv[file_idx], password, page_number, mode,
- synctex_fwd);
+ synctex_fwd, search_string);
+ } else if (search_string != NULL) {
+ girara_error("Can not use find argument when no file is given");
+ ret = -1;
+ zathura_free(zathura);
+ goto free_and_ret;
}
/* run zathura */
@@ -316,6 +323,7 @@ free_and_ret:
g_free(synctex_editor);
g_free(synctex_fwd);
g_free(mode);
+ g_free(search_string);
return ret;
}
diff --git a/zathura/zathura.c b/zathura/zathura.c
index df7970a..6a4d475 100644
--- a/zathura/zathura.c
+++ b/zathura/zathura.c
@@ -27,6 +27,7 @@
#include "bookmarks.h"
#include "callbacks.h"
#include "config.h"
+#include "commands.h"
#ifdef WITH_SQLITE
#include "database-sqlite.h"
#endif
@@ -56,6 +57,7 @@ typedef struct zathura_document_info_s {
int page_number;
char* mode;
char* synctex;
+ char* search_string;
} zathura_document_info_t;
@@ -76,6 +78,7 @@ free_document_info(zathura_document_info_t* document_info)
g_free(document_info->password);
g_free(document_info->mode);
g_free(document_info->synctex);
+ g_free(document_info->search_string);
g_free(document_info);
}
@@ -879,6 +882,14 @@ document_info_open(gpointer data)
girara_error("Unknown mode: %s", document_info->mode);
}
}
+
+ if (document_info->search_string != NULL) {
+ girara_argument_t search_arg;
+ search_arg.n = 1; // Forward search
+ search_arg.data = NULL;
+ cmd_search(document_info->zathura->ui.session, document_info->search_string,
+ &search_arg);
+ }
}
}
@@ -1297,7 +1308,8 @@ document_open_synctex(zathura_t* zathura, const char* path, const char* uri,
void
document_open_idle(zathura_t* zathura, const char* path, const char* password,
- int page_number, const char* mode, const char* synctex)
+ int page_number, const char* mode, const char* synctex,
+ const char *search_string)
{
g_return_if_fail(zathura != NULL);
g_return_if_fail(path != NULL);
@@ -1319,6 +1331,9 @@ document_open_idle(zathura_t* zathura, const char* path, const char* password,
if (synctex != NULL) {
document_info->synctex = g_strdup(synctex);
}
+ if (search_string != NULL) {
+ document_info->search_string = g_strdup(search_string);
+ }
gdk_threads_add_idle(document_info_open, document_info);
}
diff --git a/zathura/zathura.h b/zathura/zathura.h
index 77fa751..566a77a 100644
--- a/zathura/zathura.h
+++ b/zathura/zathura.h
@@ -342,7 +342,8 @@ bool document_open_synctex(zathura_t* zathura, const char* path, const char* uri
*/
void document_open_idle(zathura_t* zathura, const char* path,
const char* password, int page_number,
- const char* mode, const char* synctex);
+ const char* mode, const char* synctex,
+ const char* search_string);
/**
* Save a open file
From 3388cfd6c1ab48e674b363048113b368534febde Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Fri, 24 Jul 2020 11:03:45 +0200
Subject: [PATCH 47/49] Refactor manpages
---
doc/man/_bindings.txt | 131 ------------------
doc/man/_bugs.txt | 4 -
doc/man/_commands.txt | 35 -----
doc/man/_configuration.txt | 4 -
doc/man/_description.txt | 3 -
doc/man/_env.txt | 3 -
doc/man/_options.txt | 52 -------
doc/man/_synctex.txt | 32 -----
doc/man/_synopsis.txt | 4 -
doc/man/conf.py | 1 -
doc/man/zathura.1.rst | 276 +++++++++++++++++++++++++++++++++++--
doc/meson.build | 8 --
12 files changed, 267 insertions(+), 286 deletions(-)
delete mode 100644 doc/man/_bindings.txt
delete mode 100644 doc/man/_bugs.txt
delete mode 100644 doc/man/_commands.txt
delete mode 100644 doc/man/_configuration.txt
delete mode 100644 doc/man/_description.txt
delete mode 100644 doc/man/_env.txt
delete mode 100644 doc/man/_options.txt
delete mode 100644 doc/man/_synctex.txt
delete mode 100644 doc/man/_synopsis.txt
diff --git a/doc/man/_bindings.txt b/doc/man/_bindings.txt
deleted file mode 100644
index 84489d4..0000000
--- a/doc/man/_bindings.txt
+++ /dev/null
@@ -1,131 +0,0 @@
-General
-
- J, PgDn
- Go to the next page
- K, PgUp
- Go to the previous page
- h, k, j, l
- Scroll to the left, down, up or right direction
- Left, Down, Up, Right
- Scroll to the left, down, up or right direction
- ^t, ^d, ^u, ^y
- Scroll a half page left, down, up or right
- t, ^f, ^b, space, , y
- Scroll a full page left, down, up or right
- gg, G, nG
- Goto to the first, the last or to the nth page
- P
- Snaps to the current page
- H, L
- Goto top or bottom of the current page
- ^o, ^i
- Move backward and forward through the jump list
- ^j, ^k
- Bisect forward and backward between the last two jump points
- ^c, Escape
- Abort
- a, s
- Adjust window in best-fit or width mode
- /, ?
- Search for text
- n, N
- Search for the next or previous result
- o, O
- Open document
- f
- Follow links
- F
- Display link target
- \:
- Enter command
- r
- Rotate by 90 degrees
- ^r
- Recolor (grayscale and invert colors)
- R
- Reload document
- Tab
- Show index and switch to **Index mode**
- d
- Toggle dual page view
- F5
- Switch to presentation mode
- F11
- Switch to fullscreen mode
- ^m
- Toggle inputbar
- ^n
- Toggle statusbar
- +, -, =
- Zoom in, out or to the original size
- zI, zO, z0
- Zoom in, out or to the original size
- n=
- Zoom to size n
- mX
- Set a quickmark to a letter or number X
- 'X
- Goto quickmark saved at letter or number X
- q
- Quit
-
-
-Fullscreen mode
-
- J, K
- Go to the next or previous page
- space, ,
- Scroll a full page down or up
- gg, G, nG
- Goto to the first, the last or to the nth page
- ^c, Escape
- Abort
- F11
- Switch to normal mode
- +, -, =
- Zoom in, out or to the original size
- zI, zO, z0
- Zoom in, out or to the original size
- n=
- Zoom to size n
- q
- Quit
-
-Presentation mode
-
- space, ,
- Scroll a full page down or up
- ^c, Escape
- Abort
- F5
- Switch to normal mode
- q
- Quit
-
-Index mode
-
- k, j
- Move to upper or lower entry
- l
- Expand entry
- L
- Expand all entries
- h
- Collapse entry
- H
- Collapse all entries
- space, Return
- Select and open entry
-
-
-Mouse bindings
-
- Scroll
- Scroll up or down
- ^Scroll
- Zoom in or out
- Hold Button2
- Pan the document
- Button1
- Follow link
-
diff --git a/doc/man/_bugs.txt b/doc/man/_bugs.txt
deleted file mode 100644
index f664492..0000000
--- a/doc/man/_bugs.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-If GDK_NATIVE_WINDOWS is enabled you will experience problems with large
-documents. In this case zathura might crash or pages cannot be rendered
-properly. Disabling GDK_NATIVE_WINDOWS fixes this issue. The same issue may
-appear, if overlay-scrollbar is enabled in GTK_MODULES.
diff --git a/doc/man/_commands.txt b/doc/man/_commands.txt
deleted file mode 100644
index 114ef2a..0000000
--- a/doc/man/_commands.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-bmark
- Save a bookmark
-
-bdelete
- Delete a bookmark
-
-blist
- List bookmarks
-
-close
- Close document
-
-exec
- Execute an external command
-
-info
- Show document information
-
-open
- Open a document
-
-offset
- Set page offset
-
-print
- Print document
-
-write(!)
- Save document (and force overwriting)
-
-export
- Export attachments
-
-dump
- Write values, descriptions, etc. of all current settings to a file.
diff --git a/doc/man/_configuration.txt b/doc/man/_configuration.txt
deleted file mode 100644
index 0f0ba96..0000000
--- a/doc/man/_configuration.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-The default appearance and behaviour of zathura can be overwritten by modifying
-the *zathurarc* file (default path: ~/.config/zathura/zathurarc). For a detailed
-description please consult zathurarc(5).
-
diff --git a/doc/man/_description.txt b/doc/man/_description.txt
deleted file mode 100644
index 2a08ac5..0000000
--- a/doc/man/_description.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-**zathura** displays the given files. If a single hyphen-minus (-) is given as
-file name, the content will be read from the standard input. If no files are
-given, an empty **zathura** instance launches.
diff --git a/doc/man/_env.txt b/doc/man/_env.txt
deleted file mode 100644
index 4d3325a..0000000
--- a/doc/man/_env.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-ZATHURA_PLUGINS_PATH
- Path to the directory containing plugins. This directory is only considered if
- no other directory was specified using --plugins-dir.
diff --git a/doc/man/_options.txt b/doc/man/_options.txt
deleted file mode 100644
index 11a1629..0000000
--- a/doc/man/_options.txt
+++ /dev/null
@@ -1,52 +0,0 @@
--e, --reparent=xid
- Reparents to window specified by xid
-
--c, --config-dir=path
- Path to the config directory
-
--d, --data-dir=path
- Path to the data directory
-
--p, --plugins-dir=path
- Path to the directory containing plugins
-
--w, --password=password
- The documents password. If multiple documents are opened at once, the
- password will be used for the first one and zathura will ask for the
- passwords of the remaining files if needed.
-
--P, --page=number
- Opens the document at the given page number. Pages are numbered starting
- with 1, and negative numbers indicate page numbers starting from the end
- of the document, -1 being the last page.
-
--f, --find=string
- Opens the document and searches for the given string.
-
--l, --log-level=level
- Set log level (debug, info, warning, error)
-
--x, --synctex-editor-command=command
- Set the synctex editor command. Overrides the synctex-editor-command setting.
-
---synctex-forward=input
- Jump to the given position. The switch expects the same format as specified
- for synctex's view -i. If no instance is running for the specified document,
- a new instance will be launched (only if --synctex-pid is not specified).
-
---synctex-pid=pid
- Instead of looking for an instance having the correct file opened, try only
- the instance with the given PID. Note that if the given PID does not have the
- correct file open or does not exist, no new instance will be spanned.
-
---mode=mode
- Start in a non-default mode
-
---fork
- Fork into background
-
---version
- Display version string and exit
-
---help
- Display help and exit
diff --git a/doc/man/_synctex.txt b/doc/man/_synctex.txt
deleted file mode 100644
index 377fb4c..0000000
--- a/doc/man/_synctex.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-Both synctex forward and backwards synchronization are supported by zathura, To
-enable synctex forward synchronization, please look at the *--synctex-forward*
-and *--synctex-editor* options. zathura will also emit a signal via the D-Bus
-interface. To support synctex backwards synchronization, zathura provides a
-D-Bus interface that can be called by the editor. For convince zathura also
-knows how to parse the output of the *synctex view* command. It is enough to
-pass the arguments to *synctex view*'s *-i* option to zathura via
-*--synctex-forward* and zathura will pass the information to the correct
-instance.
-
-For gvim forward and backwards synchronization support can be set up as follows:
-First add the following to the vim configuration:
-
-::
-
- function! Synctex()
- execute "silent !zathura --synctex-forward " . line('.') . ":" . col('.') . ":" . bufname('%') . " " . g:syncpdf
- redraw!
- endfunction
- map :call Synctex()
-
-Then launch *zathura* with
-
-::
-
- zathura -x "gvim --servername vim -c \"let g:syncpdf='$1'\" --remote +%{line} %{input}" $file
-
-Some editors support zathura as viewer out of the box:
-
-* LaTeXTools for SublimeText
- (https://latextools.readthedocs.io/en/latest/available-viewers/#zathura)
-* LaTeX for Atom (https://atom.io/packages/latex)
diff --git a/doc/man/_synopsis.txt b/doc/man/_synopsis.txt
deleted file mode 100644
index e802966..0000000
--- a/doc/man/_synopsis.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-zathura [-e XID] [-c PATH] [-d PATH] [-p PATH] [-w PASSWORD] [-P NUMBER]
-[--fork] [-l LEVEL] [-s] [-x CMD] [--synctex-forward INPUT] [--synctex-pid PID]
-[-f STRING]
-
diff --git a/doc/man/conf.py b/doc/man/conf.py
index 3b57273..2aad25f 100644
--- a/doc/man/conf.py
+++ b/doc/man/conf.py
@@ -8,7 +8,6 @@ import time
dirname = os.path.dirname(__file__)
files = glob.glob(os.path.join(dirname, '*.rst'))
-files.extend(glob.glob(os.path.join(dirname, '*.txt')))
maxdate = 0
for path in files:
diff --git a/doc/man/zathura.1.rst b/doc/man/zathura.1.rst
index 694296c..fe2e67d 100644
--- a/doc/man/zathura.1.rst
+++ b/doc/man/zathura.1.rst
@@ -4,47 +4,305 @@ Manpage
Synopsis
--------
-.. include:: _synopsis.txt
+zathura [-e XID] [-c PATH] [-d PATH] [-p PATH] [-w PASSWORD] [-P NUMBER]
+[--fork] [-l LEVEL] [-s] [-x CMD] [--synctex-forward INPUT] [--synctex-pid PID]
+[-find STRING]
+
Description
-----------
-.. include:: _description.txt
+**zathura** displays the given files. If a single hyphen-minus (-) is given as
+file name, the content will be read from the standard input. If no files are
+given, an empty **zathura** instance launches.
Options
-------
-.. include:: _options.txt
+-e, --reparent=xid
+ Reparents to window specified by xid
+
+-c, --config-dir=path
+ Path to the config directory
+
+-d, --data-dir=path
+ Path to the data directory
+
+-p, --plugins-dir=path
+ Path to the directory containing plugins
+
+-w, --password=password
+ The documents password. If multiple documents are opened at once, the
+ password will be used for the first one and zathura will ask for the
+ passwords of the remaining files if needed.
+
+-P, --page=number
+ Opens the document at the given page number. Pages are numbered starting
+ with 1, and negative numbers indicate page numbers starting from the end
+ of the document, -1 being the last page.
+
+-f, --find=string
+ Opens the document and searches for the given string.
+
+-l, --log-level=level
+ Set log level (debug, info, warning, error)
+
+-x, --synctex-editor-command=command
+ Set the synctex editor command. Overrides the synctex-editor-command setting.
+
+--synctex-forward=input
+ Jump to the given position. The switch expects the same format as specified
+ for synctex's view -i. If no instance is running for the specified document,
+ a new instance will be launched (only if --synctex-pid is not specified).
+
+--synctex-pid=pid
+ Instead of looking for an instance having the correct file opened, try only
+ the instance with the given PID. Note that if the given PID does not have the
+ correct file open or does not exist, no new instance will be spanned.
+
+--mode=mode
+ Start in a non-default mode
+
+--fork
+ Fork into background
+
+--version
+ Display version string and exit
+
+--help
+ Display help and exit
Mouse and key bindings
----------------------
-.. include:: _bindings.txt
+General
+
+ J, PgDn
+ Go to the next page
+ K, PgUp
+ Go to the previous page
+ h, k, j, l
+ Scroll to the left, down, up or right direction
+ Left, Down, Up, Right
+ Scroll to the left, down, up or right direction
+ ^t, ^d, ^u, ^y
+ Scroll a half page left, down, up or right
+ t, ^f, ^b, space, , y
+ Scroll a full page left, down, up or right
+ gg, G, nG
+ Goto to the first, the last or to the nth page
+ P
+ Snaps to the current page
+ H, L
+ Goto top or bottom of the current page
+ ^o, ^i
+ Move backward and forward through the jump list
+ ^j, ^k
+ Bisect forward and backward between the last two jump points
+ ^c, Escape
+ Abort
+ a, s
+ Adjust window in best-fit or width mode
+ /, ?
+ Search for text
+ n, N
+ Search for the next or previous result
+ o, O
+ Open document
+ f
+ Follow links
+ F
+ Display link target
+ \:
+ Enter command
+ r
+ Rotate by 90 degrees
+ ^r
+ Recolor (grayscale and invert colors)
+ R
+ Reload document
+ Tab
+ Show index and switch to **Index mode**
+ d
+ Toggle dual page view
+ F5
+ Switch to presentation mode
+ F11
+ Switch to fullscreen mode
+ ^m
+ Toggle inputbar
+ ^n
+ Toggle statusbar
+ +, -, =
+ Zoom in, out or to the original size
+ zI, zO, z0
+ Zoom in, out or to the original size
+ n=
+ Zoom to size n
+ mX
+ Set a quickmark to a letter or number X
+ 'X
+ Goto quickmark saved at letter or number X
+ q
+ Quit
+
+
+Fullscreen mode
+
+ J, K
+ Go to the next or previous page
+ space, ,
+ Scroll a full page down or up
+ gg, G, nG
+ Goto to the first, the last or to the nth page
+ ^c, Escape
+ Abort
+ F11
+ Switch to normal mode
+ +, -, =
+ Zoom in, out or to the original size
+ zI, zO, z0
+ Zoom in, out or to the original size
+ n=
+ Zoom to size n
+ q
+ Quit
+
+Presentation mode
+
+ space, ,
+ Scroll a full page down or up
+ ^c, Escape
+ Abort
+ F5
+ Switch to normal mode
+ q
+ Quit
+
+Index mode
+
+ k, j
+ Move to upper or lower entry
+ l
+ Expand entry
+ L
+ Expand all entries
+ h
+ Collapse entry
+ H
+ Collapse all entries
+ space, Return
+ Select and open entry
+
+
+Mouse bindings
+
+ Scroll
+ Scroll up or down
+ ^Scroll
+ Zoom in or out
+ Hold Button2
+ Pan the document
+ Button1
+ Follow link
+
Commands
---------
-.. include:: _commands.txt
+bmark
+ Save a bookmark
+
+bdelete
+ Delete a bookmark
+
+blist
+ List bookmarks
+
+close
+ Close document
+
+exec
+ Execute an external command
+
+info
+ Show document information
+
+open
+ Open a document
+
+offset
+ Set page offset
+
+print
+ Print document
+
+write(!)
+ Save document (and force overwriting)
+
+export
+ Export attachments
+
+dump
+ Write values, descriptions, etc. of all current settings to a file.
Configuration
-------------
-.. include:: _configuration.txt
+The default appearance and behaviour of zathura can be overwritten by modifying
+the *zathurarc* file (default path: ~/.config/zathura/zathurarc). For a detailed
+description please consult zathurarc(5).
Synctex support
---------------
-.. include:: _synctex.txt
+Both synctex forward and backwards synchronization are supported by zathura, To
+enable synctex forward synchronization, please look at the *--synctex-forward*
+and *--synctex-editor* options. zathura will also emit a signal via the D-Bus
+interface. To support synctex backwards synchronization, zathura provides a
+D-Bus interface that can be called by the editor. For convince zathura also
+knows how to parse the output of the *synctex view* command. It is enough to
+pass the arguments to *synctex view*'s *-i* option to zathura via
+*--synctex-forward* and zathura will pass the information to the correct
+instance.
+
+For gvim forward and backwards synchronization support can be set up as follows:
+First add the following to the vim configuration:
+
+::
+
+ function! Synctex()
+ execute "silent !zathura --synctex-forward " . line('.') . ":" . col('.') . ":" . bufname('%') . " " . g:syncpdf
+ redraw!
+ endfunction
+ map :call Synctex()
+
+Then launch *zathura* with
+
+::
+
+ zathura -x "gvim --servername vim -c \"let g:syncpdf='$1'\" --remote +%{line} %{input}" $file
+
+Some editors support zathura as viewer out of the box:
+
+* LaTeXTools for SublimeText
+ (https://latextools.readthedocs.io/en/latest/available-viewers/#zathura)
+* LaTeX for Atom (https://atom.io/packages/latex)
Environment variables
---------------------
-.. include:: _env.txt
+ZATHURA_PLUGINS_PATH
+ Path to the directory containing plugins. This directory is only considered if
+ no other directory was specified using --plugins-dir.
Known bugs
----------
-.. include:: _bugs.txt
+If GDK_NATIVE_WINDOWS is enabled you will experience problems with large
+documents. In this case zathura might crash or pages cannot be rendered
+properly. Disabling GDK_NATIVE_WINDOWS fixes this issue. The same issue may
+appear, if overlay-scrollbar is enabled in GTK_MODULES.
See Also
--------
diff --git a/doc/meson.build b/doc/meson.build
index d178322..b67c8ab 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -11,15 +11,7 @@ if sphinx.found()
output: ['zathura.1', 'zathurarc.5'],
input: [
'man/conf.py',
- 'man/_bindings.txt',
- 'man/_commands.txt',
- 'man/_options.txt',
- 'man/_synopsis.txt',
'man/zathurarc.5.rst',
- 'man/_bugs.txt',
- 'man/_configuration.txt',
- 'man/_description.txt',
- 'man/_synctex.txt',
'man/zathura.1.rst'
],
build_by_default: true,
From f014cb186bc4476072d72b54e4ea5fda8ff20f2b Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 27 Jul 2020 10:11:44 +0200
Subject: [PATCH 48/49] Update translations
---
po/ar.po | 84 ++++++++++++++++++++++++++-------------------------
po/ca.po | 84 ++++++++++++++++++++++++++-------------------------
po/cs.po | 84 ++++++++++++++++++++++++++-------------------------
po/de.po | 86 ++++++++++++++++++++++++++++-------------------------
po/el.po | 84 ++++++++++++++++++++++++++-------------------------
po/eo.po | 84 ++++++++++++++++++++++++++-------------------------
po/es.po | 84 ++++++++++++++++++++++++++-------------------------
po/es_CL.po | 84 ++++++++++++++++++++++++++-------------------------
po/et.po | 84 ++++++++++++++++++++++++++-------------------------
po/fr.po | 84 ++++++++++++++++++++++++++-------------------------
po/he.po | 84 ++++++++++++++++++++++++++-------------------------
po/hr.po | 84 ++++++++++++++++++++++++++-------------------------
po/id_ID.po | 84 ++++++++++++++++++++++++++-------------------------
po/it.po | 84 ++++++++++++++++++++++++++-------------------------
po/lt.po | 84 ++++++++++++++++++++++++++-------------------------
po/nl.po | 85 +++++++++++++++++++++++++++-------------------------
po/no.po | 84 ++++++++++++++++++++++++++-------------------------
po/pl.po | 84 ++++++++++++++++++++++++++-------------------------
po/pt_BR.po | 84 ++++++++++++++++++++++++++-------------------------
po/ru.po | 84 ++++++++++++++++++++++++++-------------------------
po/sv.po | 84 ++++++++++++++++++++++++++-------------------------
po/ta_IN.po | 84 ++++++++++++++++++++++++++-------------------------
po/tr.po | 84 ++++++++++++++++++++++++++-------------------------
po/uk_UA.po | 84 ++++++++++++++++++++++++++-------------------------
24 files changed, 1057 insertions(+), 962 deletions(-)
diff --git a/po/ar.po b/po/ar.po
index e81415c..6c8f6f7 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: abouzakaria kov \n"
"Language-Team: Arabic (http://www.transifex.com/pwmt/zathura/language/ar/)\n"
@@ -501,80 +501,80 @@ msgid "Sandbox level"
msgstr "مستوى الحماية"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "أضف إشارة مرجعية"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "حذف إشارة مرجعية"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "قائمة جميع الإشارات المرجعية"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "إغلاق الملف الحالي"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "عرض معلومات الملف"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "تنفيذ أمر"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "عرض المساعدة"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "فتح وثيقة"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "أغلق zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "طباعة المستند"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "احفظ المستند"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "حفظ المستند (وفرض الكتابة فوق)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "احفظ المرفقات"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "تعيين إزاحة الصفحة"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "اجعل الموقع الحالي داخل المستند"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "احذف العلامات المحددة"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "لا تبرز نتائج البحث الحالية"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "تمييز نتائج البحث الحالية"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "عرض معلومات الإصدار"
@@ -600,62 +600,66 @@ msgstr "الرابط: : %s"
msgid "Link: Invalid"
msgstr "الرابط: غير صالح"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "المسار إلى دليل التكوين"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "المسار إلى دليل البيانات"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "المسار إلى دليل ذاكرة التخزين المؤقت"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "الطريق إلى الأدلة التي تحتوي على الإضافات"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "كلمة مرور المستند"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "الذهاب إلى رقم الصفحة "
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "مستوى السجل (تصحيح ، معلومات ، تحذير ، خطأ)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "طباعة معلومات إلاصدار "
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "محرر Synctex (تم إعادة توجيهه إلى أمر synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "الانتقال إلى موضع synctex المحدد"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "تمييز على موضع معين في عملية معينة"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "البدء في وضع غير افتراضي"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "جارٍ التحميل ..."
@@ -693,26 +697,26 @@ msgstr "النمط غير موجود: %s"
msgid "This document does not contain any index"
msgstr "لا يحتوي هذا المستند على أي فهرس"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[لا اسم]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "لا يمكن قراءة الملف من المصدر وكتابته إلى ملف مؤقت."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "تعذرت قراءة الملف من GIO ونسخه إلى ملف مؤقت."
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "أدخل كلمة المرور:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "نوع ملف غير مدعوم. الرجاء تثبيت المكون الإضافي اللازم."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "لا يحتوي المستند على أي صفحات"
diff --git a/po/ca.po b/po/ca.po
index 543719b..20f6d8a 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Catalan (http://www.transifex.com/pwmt/zathura/language/ca/)\n"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Afegir un marcador"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Esborrar un marcador"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Llista tots els marcadors"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Tancar el fitxer actual"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Mostra informació sobre el fitxer"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Executar una comanda"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Mostrar l'ajuda"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Obrir document"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Tancar Zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Imprimir document"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Desar document"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Desar document (i forçar la sobreescritura)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Desa els fitxers adjunts"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Assigna el desplaçament de pàgina"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Marca la posició actual dins el document"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Esborrar les marques especificades"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "No realcis els resultats de la recerca actual"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Realça els resultats de recerca actual"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Mostra informació sobre la versió"
@@ -596,62 +596,66 @@ msgstr "Enllaç: %s"
msgid "Link: Invalid"
msgstr "Enllaç: Invàlid"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Reassigna a la finestra especificada per xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Ruta al directori de configuració"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Camí al directori de dades"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Camí al directori que conté els plugins"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Bifurca en segon pla"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Contrasenya del document"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Nivell de registre (depuració, informació, advertiments, errors)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Imprimeix informació sobre la versió"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Editor synctex (reenviat a l'ordre synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Carregant..."
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Aquest document no conté cap índex"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Sense nom]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 3d536fb..35e7e50 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Czech (http://www.transifex.com/pwmt/zathura/language/cs/)\n"
@@ -501,80 +501,80 @@ msgid "Sandbox level"
msgstr "Úroveň pískoviště"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Přidat záložku"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Smazat záložku"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Vypsat všechny záložky"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Zavřít nynější soubor"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Ukázat informace o souboru"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Spustit příkaz"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Ukázat nápovědu"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Otevřít dokument"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Zavřít zathuru"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Vytisknout dokument"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Uložit dokument"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Uložit dokument a vynutit jeho přepsání"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Uložit přílohy"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Nastavit posun strany"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Označit současnou polohu v dokumentu"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Smazat vybrané značky"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Nezvýrazňovat výsledky tohoto hledání"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Zvýrazňovat výsledky tohoto hledání"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Ukázat údaj o verzi"
@@ -600,62 +600,66 @@ msgstr "Odkaz: %s"
msgid "Link: Invalid"
msgstr "Odkaz: Neplatný"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Propojí s oknem udaným xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Cesta k adresáři se souborem s nastavením"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Cesta k adresáři s daty"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Cesta k adresáři s vyrovnávací pamětí"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Cesta k adresářům s přídavnými moduly"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Forknout se na pozadí"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Heslo k dokumentu"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Číslo strany, na kterou jít"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Úroveň logování (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Zobrazit údaje o verzi"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Editor Synctex (předáno příkazu synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Přesunout se na udanou polohu synctex"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Zvýraznit zadanou polohu v daném procesu"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Spustit v ne-výchozím režimu"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Nahrává se..."
@@ -693,29 +697,29 @@ msgstr "Vzor nenalezen: %s"
msgid "This document does not contain any index"
msgstr "Tento dokument neobsahuje žádný rejstřík"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Nepojmenovaný]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
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:852
+#: zathura/zathura.c:855
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:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Zadat heslo:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Nepodporovaný typ souboru. Nainstalujte, prosím, nezbytný přídavný modul."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Dokument neobsahuje žádné strany"
diff --git a/po/de.po b/po/de.po
index 5f03458..eb5a8ee 100644
--- a/po/de.po
+++ b/po/de.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
-"PO-Revision-Date: 2020-03-22 22:49+0000\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
+"PO-Revision-Date: 2020-07-27 10:09+0200\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: German (http://www.transifex.com/pwmt/zathura/language/de/)\n"
"Language: de\n"
@@ -506,80 +506,80 @@ msgid "Sandbox level"
msgstr "Sandkasten-Niveau"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Füge Lesezeichen hinzu"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Lösche ein Lesezeichen"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Liste all Lesezeichen auf"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Schließe das aktuelle Dokument"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Zeige Dokumentinformationen an"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Führe einen Befehl aus"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Zeige Hilfe an"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Öffne Dokument"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Beende zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Drucke Dokument"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Speichere Dokument"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Speichere Dokument (und überschreibe bestehende)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Speichere Anhänge"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Setze den Seitenabstand"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Markiere aktuelle Position im Doukument"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Lösche angegebene Markierung"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Hebe aktuelle Suchergebnisse nicht hervor"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Hebe aktuelle Suchergebnisse hervor"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Zeige Versionsinformationen an"
@@ -606,62 +606,66 @@ msgstr "Verknüpfung: %s"
msgid "Link: Invalid"
msgstr "Verknüpfung: ungültig"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Reparentiert zathura an das Fenster mit der xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Pfad zum Konfigurationsverzeichnis"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Pfad zum Datenverzeichnis"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Pfad zum Cacheverzeichnis"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Pfad zum Pluginverzeichnis"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Forkt den Prozess in den Hintergrund"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Dokument Passwort"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Zur Seite springen"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Log-Stufe (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Zeige Versionsinformationen an"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Synctex Editor (wird an synctex weitergeleitet)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Zur gewählten SyncTeX-Position springen"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Gewählte Position im Prozess hervorheben"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "In einem Nicht-Standardmodus starten"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+ msgstr "Suche nach der gegeben Phrase und anzeigen der Ergebnisse"
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Lädt..."
@@ -699,26 +703,26 @@ msgstr "Suchausdruck nicht gefunden: %s"
msgid "This document does not contain any index"
msgstr "Dieses Dokument beinhaltet kein Inhaltsverzeichnis"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Kein Name]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
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:852
+#: zathura/zathura.c:855
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:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Passwort:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Dateityp ist nicht unterstützt. Installiere das benötigete Plugin."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Dieses Dokument beinhaltet keine Seiten"
diff --git a/po/el.po b/po/el.po
index e907aa4..b62be2c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Greek (http://www.transifex.com/pwmt/zathura/language/el/)\n"
@@ -499,80 +499,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Προσθήκη σελιδοδείκτη"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Διαγραφή σελιδοδείκτη"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Εμφάνιση όλων των σελιδοδεικτών"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Κλείσιμο αρχείου"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Προβολή πληροφοριών αρχείου"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Εκτέλεση εντολής"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Εμφάνιση βοήθειας"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Άνοιγμα αρχείου"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Κλείσιμο"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Εκτύπωση αρχείου"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Αποθήκευση αρχείου"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Αποθήκευση αρχείου (και αντικατάσταση)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Αποθήκευση προσαρτήσεων. "
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Ρύθμιση αντιστάθμισης σελίδας"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Επισήμανση τρέχουσας θέσης στο κείμενο"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Διαγραφή επιλεγμένων σημείων"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Χωρίς τονισμό τα τρέχοντα αποτελέσματα της αναζήτησης"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Τονισμός στα τρέχοντα αποτελέσματα της αναζήτησης"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Εμφάνιση πληροφοριών έκδοσης"
@@ -598,62 +598,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Διαδρομή του αρχείου ρυθμίσεων"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Διαδρομή του φακέλου δεδομένων"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Διαδρομή φακέλου που περιέχει τα πρόσθετα"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Διακλάδωση στο παρασκήνιο"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Κωδικός αρχείου"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Επίπεδο καταγραφής (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Εκτύπωση πληροφοριών έκδοσης"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Synctex editor (Προώθηση στην εντολή synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Φορτώνει ..."
@@ -691,26 +695,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Το αρχείο δεν περιέχει κανένα δείκτη"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Χωρίς όνομα]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/eo.po b/po/eo.po
index 8cb0fa0..865e820 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Esperanto (http://www.transifex.com/pwmt/zathura/language/"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Aldonu paĝosignon"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Forigu paĝosignon"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Listigu ĉiujn paĝosignojn"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Fermu nunan dosieron"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Montru dosiera informacio"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr ""
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Montru helpon"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Malfermu dokumenton"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Fermu zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Presu dokumenton"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Konservu dokumenton"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Konservu dokumenton (deviga anstataŭo)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Konservu kunsendaĵojn"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Agordu paĝdelokado"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr ""
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr ""
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr ""
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr ""
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr ""
@@ -596,62 +596,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Vojo al la agorda dosierujo"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Vojo al la datuma dosierujo"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Vojoj al dosierujoj enhavantaj kromaĵojn"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr ""
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Nivelo de ĵurnalo (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Montru dosiera informacio"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Ŝargado ..."
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Ĉi-tiu dokumento enhavas neniam indekson."
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Neniu nomo]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/es.po b/po/es.po
index 161b20a..2b96fc6 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (http://www.transifex.com/pwmt/zathura/language/es/)\n"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Añadir Favorito"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Eliminar Favorito"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Listar favoritos"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Cerrar fichero actual"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Mostrar información del fichero"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Ejecutar un comando"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Mostrar ayuda"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Abrir documento"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Salir de zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Imprimir documento"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Guardar documento"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Guardar documento (y sobreescribir)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Guardar ficheros adjuntos"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Asignar el desplazamiento de página"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Marcar la posición actual en el documento"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Borrar las marcas especificadas"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "No destacar los resultados de la búsqueda actual"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Destacar los resultados de la búsqueda actual"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Mostrar versión"
@@ -596,62 +596,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Reasignar a la ventana especificada por xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Ruta al directorio de configuración"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Ruta para el directorio de datos"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Ruta a los directorios que contienen los plugins"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Fork, ejecutándose en background"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Contraseña del documento"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Nivel de log (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Mostrar información del fichero"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Editor de Synctex (reenvíado al commando synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Cargando ..."
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Este documento no contiene ningún índice"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Sin nombre]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/es_CL.po b/po/es_CL.po
index 55d9e62..18b2731 100644
--- a/po/es_CL.po
+++ b/po/es_CL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/pwmt/zathura/"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Agregar un marcador"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Eliminar un marcador"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Listar todos los marcadores"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Cerrar archivo actual"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Mostrar información del archivo"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr ""
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Mostrar ayuda"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Abrir documento"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Cerrar zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Imprimir documento"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Guardar documento"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Guardar documento (y forzar sobreescritura)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Guardar archivos adjuntos"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Asignar desplazamiento de la página"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr ""
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr ""
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr ""
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr ""
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr ""
@@ -596,62 +596,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Reasignar a la ventana especificada por xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Ruta al directorio de configuración"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Ruta al directorio de datos"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Ruta al directorio que contiene plugins"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Ejecución en background"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr ""
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Nivel de log (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Mostrar información del archivo"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Cargando..."
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Este document no contiene índice"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Sin nombre]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/et.po b/po/et.po
index d4a98b4..05debac 100644
--- a/po/et.po
+++ b/po/et.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Estonian (http://www.transifex.com/pwmt/zathura/language/"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Lisa järjehoidja"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Kustuta järjehoidja"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Näita kõiki järjehoidjaid"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Sulge praegune fail"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Näita faili infot"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr ""
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Näita abiinfot"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Ava dokument"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Sule zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Prindi dokument"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Salvesta dokument"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr ""
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Salvesta manused"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr ""
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr ""
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr ""
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr ""
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr ""
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr ""
@@ -596,62 +596,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr ""
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr ""
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr ""
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr ""
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr ""
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Näita faili infot"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr ""
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr ""
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Nime pole]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 36a6923..7cb1de2 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: French (http://www.transifex.com/pwmt/zathura/language/fr/)\n"
@@ -502,80 +502,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Ajouter un marque-page"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Supprimer un marque-page"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Lister tous les marque-pages"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Fermer le fichier actuel"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Montrer les informations sur le fichier"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Exécuter une commande"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Afficher l'aide"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Ouvrir un document"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Quitter zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Imprimer le document"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Sauver le document"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Sauver le document (et forcer l'écrasement)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Enregistrer les pièces jointes"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Définir le décalage de page"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Marquer l'emplacement actuel dans le document"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Supprimer les marques indiquées"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Ne pas surligner les résultats de la recherche en cours"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Surligner les résultats de la recherche en cours"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Afficher les informations de version"
@@ -601,62 +601,66 @@ msgstr "Lien : %s"
msgid "Link: Invalid"
msgstr "Lien : Invalide"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Rattacher à la fenêtre spécifiée par xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Chemin vers le dossier de configuration"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Chemin vers le dossier de données"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Chemin vers le dossier de plugins"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Détacher en arrière-plan"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Mot de passe du document"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Numéro de page où aller"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Niveau de journalisation (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Afficher les informations de version"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Éditeur synctex (transféré à la commande synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Démarrer dans un mode non-défaut"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Chargement..."
@@ -694,29 +698,29 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Ce document ne contient pas d'index"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Sans nom]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Impossible de lire le fichier depuis stdin et de le sauvegarder dans un "
"fichier temporaire."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Type de fichier non supporté. Veuillez installer l'extension nécessaire."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Ce document ne contient aucune page"
diff --git a/po/he.po b/po/he.po
index 7f7056a..a9a21d2 100644
--- a/po/he.po
+++ b/po/he.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Hebrew (http://www.transifex.com/pwmt/zathura/language/he/)\n"
@@ -496,80 +496,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr ""
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr ""
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr ""
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr ""
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr ""
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr ""
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr ""
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr ""
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr ""
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr ""
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr ""
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr ""
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr ""
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr ""
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr ""
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr ""
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr ""
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr ""
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr ""
@@ -595,62 +595,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr ""
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr ""
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr ""
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr ""
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr ""
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr ""
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr ""
@@ -688,26 +692,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr ""
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr ""
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 5c4b290..467610d 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Croatian (http://www.transifex.com/pwmt/zathura/language/"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr ""
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr ""
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr ""
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr ""
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr ""
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr ""
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr ""
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr ""
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr ""
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr ""
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr ""
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr ""
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr ""
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr ""
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr ""
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr ""
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr ""
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr ""
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr ""
@@ -596,62 +596,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr ""
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr ""
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr ""
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr ""
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr ""
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr ""
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr ""
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr ""
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr ""
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/id_ID.po b/po/id_ID.po
index 9da0bbe..aed46a5 100644
--- a/po/id_ID.po
+++ b/po/id_ID.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/pwmt/zathura/"
@@ -499,80 +499,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Tambahkan pada bookmark"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Hapus bookmark"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Perlihatkan semua bookmark"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Tutup file ini"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Informasi file"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Jalankan perintah"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Bantuan"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Buka dokumen"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Tutup zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Cetak dokumen"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Simpan dokumen"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Simpan dokumen (dan menimpa berkas)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Simpan lampiran"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Set offset halaman"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Tandai lokasi sekarang dalam dokumen"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Hapus tanda terpilih"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Jangan menyorot hasil cari sekarang"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Sorot hasil pencarian sekarang"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Tunjukan informasi versi"
@@ -598,62 +598,66 @@ msgstr "Link: %s"
msgid "Link: Invalid"
msgstr "Link: Tidak valid"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Mengembalikan jendela sesuai dengan xid yang ditentukan (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Path ke direktori konfigurasi"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Path ke direktori data"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Path ke direktori tembolok"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Path ke direktori plugin"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Jalankan pada latar"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Kata sandi dokumen"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Nomor halaman tujuan"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Tingkat log (debug, info, peringatan, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Cetak informasi versi"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Synctex editor (diteruskan ke perintah synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Pindahkan ke posisi synctex yang diberikan"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Sorot posisi pada proses yang diberikan"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Mulai pada mode non-bawaan"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Memuat....."
@@ -691,27 +695,27 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Dokumen ini tidak mempunyai indeks"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Tidak berjudul]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Tidak dapat membaca berkas dari stdin dan menulisnya ke berkas sementar"
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Tipe berkas tidak didukung. Silakan memasang plugin yang dibutuhkan."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Dokumen tidak mempunyai laman apapun"
diff --git a/po/it.po b/po/it.po
index 3dc677c..3718962 100644
--- a/po/it.po
+++ b/po/it.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Simone Dotto \n"
"Language-Team: Italian (http://www.transifex.com/pwmt/zathura/language/it/)\n"
@@ -507,80 +507,80 @@ msgid "Sandbox level"
msgstr "Livello di sandbox"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Aggiungi un segnalibro"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Elimina un segnalibro"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Mostra i segnalibri"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Chiudi il file corrente"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Mostra le informazioni sul file"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Esegui un comando"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Mostra l' aiuto"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Apri un documento"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Chiudi zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Stampa il documento"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Salva il documento"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Salva il documento (e sovrascrivi)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Salva allegati"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Imposta l' offset della pagina"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Segna la posizione attuale all'interno del documento"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Elimina i segni specificati"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Non evidenziare i risultati della ricerca in corso"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Evidenzia i risultati della ricerca in corso"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Mostra informazioni sulla versione"
@@ -608,62 +608,66 @@ msgstr "Link: %s"
msgid "Link: Invalid"
msgstr "Link: non valido"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Sposta nellla finestra specificata da xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Percorso della directory della configurazione"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Percorso della directory dei dati"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Percorso della cartella di cache"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Percorso della directory contenente i plugin"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Crea un processo separato"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Password del documento"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Numero di pagina da andare"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Livello di log (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Mostra le informazioni sul file"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Editor synctex (inoltrato al comando synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Sposta alla posizione synctex specificata"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Evidenzia data posizione nel processo dato"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Avvia in una modalità non standard"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Caricamento..."
@@ -701,28 +705,28 @@ msgstr "Pattern non trovato: %s"
msgid "This document does not contain any index"
msgstr "Questo documento non contiene l' indice"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Nessun nome]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Impossibile leggere il file dall' stdin e scriverlo in un file temporaneo."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "Impossibile leggere file da GIO e copiarlo su un file temporaneo"
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Inserisci password"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Tipo di file non supportato. Per favore, installa il plugin necessario."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Il documento non contiene alcuna pagina"
diff --git a/po/lt.po b/po/lt.po
index 92dfb5c..01777e1 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Lithuanian (http://www.transifex.com/pwmt/zathura/language/"
@@ -499,80 +499,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Pridėti žymę"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Ištrinti žymę"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Žymių sąrašas"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Uždaryti dabartinę bylą"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Rodyti bylos informaciją"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr ""
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Rodyti pagalbą"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Atidryti dokumentą"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Uždaryti zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Atspausdinti dokumentą"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Išsaugoti dokumentą"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Išsaugoti dokumentą (ir priverstinai perašyti)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Išsaugoti priedus"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Nustatyti puslapio poslinkį"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Pažymėti dabartinę dokumento vietą"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Ištrinti šias žymes"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Nežymėti dabartinės paieškos rezultatų"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Pažymėti dabartinės paieškos rezultatus"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Rodyti versijos informaciją"
@@ -598,62 +598,66 @@ msgstr "Nuoroda: %s"
msgid "Link: Invalid"
msgstr "Neteisinga nuoroda"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Konfigūracinių failų aplanko adresas"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Duomenų aplanko adresas"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Įskiepių aplanko adresas"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Dokumento slaptažodis"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Pereiti į puslapį"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Registravimo lygis (derinimas, informacija, įspėjimai, klaidos)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Spausdinti versijos informaciją"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Synctex redaktorius (naudojama synctex komandoje)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Kraunama..."
@@ -691,26 +695,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Šit dokumentas neturi turinio"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Bevardis]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Bylos tipas nepalaikomas. Įdiekite tam skirtus įskiepius."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Dokumente puslapių nėra"
diff --git a/po/nl.po b/po/nl.po
index 241c1bd..155c583 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,4 +1,3 @@
-# zathura - language file (Dutch)
# SPDX-License-Identifier: Zlib
#
# Translators:
@@ -7,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Heimen Stoffels \n"
"Language-Team: Dutch (http://www.transifex.com/pwmt/zathura/language/nl/)\n"
@@ -506,80 +505,80 @@ msgid "Sandbox level"
msgstr "Sandbox-niveau"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Bladwijzer toevoegen"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Bladwijzer verwijderen"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Alle bladwijzers tonen"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Huidig bestand sluiten"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Bestandsinformatie tonen"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Opdracht uitvoeren"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Hulp tonen"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Document openen"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Zathura sluiten"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Document afdrukken"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Document opslaan"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Document opslaan (en overschrijven forceren)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Bijlagen opslaan"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Pagina-afwijking instellen"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Huidige locatie in document markeren"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Opgegeven markeringen verwijderen"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Huidige zoekresultaten niet markeren"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Huidige zoekresultaten markeren"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Versie-informatie tonen"
@@ -607,62 +606,66 @@ msgstr "Link: %s"
msgid "Link: Invalid"
msgstr "Link: ongeldig"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Wordt bij bovenliggend, door xid (X11) opgegeven venster gevoegd"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Pad naar de configuratiemap"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Pad naar de gegevensmap"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Pad naar de cachemap"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Pad naar de mappen die plug-ins bevatten"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Naar achtergrond verplaatsen"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Documentwachtwoord"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Paginanummer om naartoe te gaan"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Logniveau (foutopsporing, informatie, waarschuwing, fout)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Versie-informatie tonen"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Synctex-bewerker (wordt doorgestuurd naar de synctex-opdracht)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Verplaatsen naar opgegeven synctex-positie"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Opgegeven positie markeren in het opgegeven proces"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Starten in een niet-standaardmodus"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Bezig met laden..."
@@ -700,30 +703,30 @@ msgstr "Patroon niet gevonden: %s"
msgid "This document does not contain any index"
msgstr "Dit document bevat geen index"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Naamloos]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Bestand kan niet worden gelezen uit stdin en worden weggeschreven naar een "
"tijdelijk bestand."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
"Bestand kan niet worden gelezen uit GIO en worden gekopieerd naar een "
"tijdelijk bestand."
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Wachtwoord invoeren:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Niet-ondersteund bestandstype. Installeer de benodigde plug-in."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Document bevat geen pagina's"
diff --git a/po/no.po b/po/no.po
index 1331d23..eed7fda 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Norwegian (http://www.transifex.com/pwmt/zathura/language/"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Legg til bokmerke"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Slett bokmerke"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "List alle bokmerker"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Lukk den gjeldende filen"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Vis filinformasjon"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Kjør en kommando"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Vis hjelp"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Åpne dokument"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Lukk zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Skriv ut dokument"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Lagre dokument"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Lagre dokument (og tving til å skrive over)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Lagre vedlegg"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr ""
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Marker nåværende lokalasjon i dokumentet"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Slett spesifiserte merker"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Ikke uthev gjeldende søkeresultater"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Uthev følgende søkeresultater"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Vis versjonsinformasjon"
@@ -596,62 +596,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr "Link: Ugyldig"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Sti til konfigureringsmappe"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Sti til data-mappe"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Sti til mapper som inneholder plugins"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Dokument passord"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Sidetall å gå til"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Logg nivå (diagnostisering, info, advarsler, feil)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Skriv ut versjonsinformasjon"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Start i ikke-standard modus"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Laster..."
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Dette dokumenetet inneholder ikke noen index"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Inget navn]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "Kunne ikke lese fil fra stdin og skrive til temporærfil."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Usupportert filtype. Vennligst innstaller den nødvendige pluginen."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Dokumentet inneholder ingen sider"
diff --git a/po/pl.po b/po/pl.po
index fad224e..8c81fda 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Polish (http://www.transifex.com/pwmt/zathura/language/pl/)\n"
@@ -499,80 +499,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Dodaj zakładkę"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Usuń zakładkę"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Wyświetl zakładki"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Zamknij plik"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Wyświetl informacje o pliku"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Wykonaj polecenie"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Wyświetl pomoc"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Otwórz plik"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Zakończ"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Wydrukuj"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Zapisz"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Zapisz (nadpisując istniejący plik)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Zapisz załączniki"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Ustaw przesunięcie numerów stron"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Zaznacz aktualną pozycję w dokumencie"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Skasuj określone zakładki"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Nie podświetlaj aktualnych wyników wyszukiwania "
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Podświetl aktualne wyniki wyszukiwania"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Wyświetl informacje o wersji"
@@ -598,62 +598,66 @@ msgstr "Link: %s"
msgid "Link: Invalid"
msgstr "Nieprawidłowy link"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Przypisz proces do rodzica o danym xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Położenie katalogu konfiguracyjnego"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Położenie katalogu danych"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Położenie katalogu wtyczek"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Forkuj w tle"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Hasło dokumentu"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Szczegółowość komunikatów (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Wyświetl informacje o wersji"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Edytor synctex (przekierowanie do komendy synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Wczytywanie pliku..."
@@ -691,26 +695,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Dokument nie zawiera indeksu"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[bez nazwy]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Niewspierany rodzaj pliku. Zainstaluj wymagane wtyczki"
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Dokument nie zawiera żadnej strony"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 95a8aeb..91a8205 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-04-27 01:40+0000\n"
"Last-Translator: Fernando Henrique \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/pwmt/zathura/"
@@ -507,80 +507,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Adicionar um favorito"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Deletar um favorito"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Listar todos favoritos"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Fechar arquivo atual"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Mostrar informações do arquivo"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Executar um comando"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Mostrar ajuda"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Abrir documento"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Fechar zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Imprimir documento"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Salvar documento"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Salvar documento (e forçar sobrescrever)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Salvar anexos"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Definir deslocamento da página"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Marcar localização atual no documento"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Apagar as marcas especificadas"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Não destacar resultados de busca atual"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Destacar resultado de busca atual"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Mostrar informações sobre a versão"
@@ -606,62 +606,66 @@ msgstr "Link: %s"
msgid "Link: Invalid"
msgstr "Link: Inválido"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Reparar a janela especificada por xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Caminho de diretório para configuração"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Caminho para diretório de dados"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Caminho para o diretório de cache"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Caminho de diretório que contenham plugins"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Deslocar no fundo"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Senha do documento"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Número da página para ir"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Nível de log (depurar, informação, aviso, erro)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Imprimir informações sobre a versão"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Editor synctex (encaminhado para o comando synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Mover para determinada posição synctex"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Destacar determinada posição no determinado processo"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Começar em um modo não padrão"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Carregando..."
@@ -699,29 +703,29 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Este documento não contem qualquer índice"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Sem nome]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Não foi possível ler o arquivo a partir de stdin e gravá-lo em um arquivo "
"temporário."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Formato de arquivo não suportado. Por favor, instale o plugin necessário."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Documento não contém quaisquer páginas"
diff --git a/po/ru.po b/po/ru.po
index e6d9f29..d1351e4 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-04-28 19:42+0000\n"
"Last-Translator: crt0r citrus\n"
"Language-Team: Russian (http://www.transifex.com/pwmt/zathura/language/ru/)\n"
@@ -510,80 +510,80 @@ msgid "Sandbox level"
msgstr "Уровень песочницы"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Добавить закладку"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Удалить закладку"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Показать все закладки"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Закрыть текущий файл"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Показать информацию о файле"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Выполнить команду"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Помощь"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Открыть документ"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Выход"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Печать"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Сохранить документ"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Сохранить документ (с перезаписью)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Сохранить прикреплённые файлы"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Сохранить смещение страницы"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Пометить текущую позицию в документе"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Удалить указанные пометки"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Не подсвечивать результаты текущего поиска"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Подсветить результаты текущего поиска"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Показать информацию о версии файла"
@@ -609,62 +609,66 @@ msgstr "Ссылка: %s"
msgid "Link: Invalid"
msgstr "Ссылка: неправильная"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Сменить материнское окно на окно, указанное в xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Путь к каталогу с настройкой"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Путь к каталогу с данными"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Путь к каталогу с кэшем"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Путь к каталогу с плагинами"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Запустить в фоне"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Пароль документа"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Перейти к странице номер"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Уровень журналирования (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Показать информацию о файле"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Редактор для synctex (передаётся далее программе synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Перейти к указанному положению synctex"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Подсветка заданного положения в заданном процессе"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Запустить в специальном режиме"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Загрузка..."
@@ -702,29 +706,29 @@ msgstr "Шаблон не найден: %s"
msgid "This document does not contain any index"
msgstr "В документе нет индекса"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Без названия]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Не удалось прочитать файл со стандартного входа и записать его во временный "
"файл."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
"Не удалось прочитать файл через GIO и скопировать его во временный файл."
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Введите пароль:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Тип файла не поддерживается. Установите соответствующий плагин."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "В документе нет страниц"
diff --git a/po/sv.po b/po/sv.po
index f45f418..ea3372c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Rasmussen \n"
"Language-Team: Swedish (http://www.transifex.com/pwmt/zathura/language/sv/)\n"
@@ -501,80 +501,80 @@ msgid "Sandbox level"
msgstr "Sandlådenivå"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Lägg till ett bokmärke"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Ta bort ett bokmärke"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Lista alla bokmärken"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Stäng aktuell fil"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Visa filinformation"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Exekvera ett kommando"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Visa hjälp"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Öppna dokument"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Stäng zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Skriv ut dokument"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Spara dokument"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Spara dokument (och tvinga överskrivning)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Spara bilagor"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Sätt sidposition"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Markera aktuell position inom dokumentet"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Ta bort angivna märken"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Färgmarkera inte sökresultat"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Färgmarkera aktuella sökresultat"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Visa versionsinformation"
@@ -600,62 +600,66 @@ msgstr "Länk: %s"
msgid "Link: Invalid"
msgstr "Länk: Ogiltig"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Ändrar förälder till förster angivet av xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Sökväg till konfigurationskatalogen"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Sökväg till datakatlogen"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Sökväg till cachekatalogen"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Sökväg till kataloger som innehåller instick"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Forka till bakgrunden"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Dokumentlösenord"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Sidnummer att gå til"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Loggningsnivå (debug, info, warning, error)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Skriv ut versionsinformation"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Synctex-redigerare (vidareskickat till synctex-kommandot)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Flytta till angiven synctex-position"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Färgmarkera angiven position i den angivna processen"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Starta i ett icke-standardläge"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Läser in…"
@@ -693,26 +697,26 @@ msgstr "Mönster hittades inte: %s"
msgid "This document does not contain any index"
msgstr "Detta dokument innehåller inget index"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Namnlös]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "Kunde inte läsa fil från stdin och skriva den till en temporärfil."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "Kunde inte läsa fil från GIO och kopiera den till en temporärfil."
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Ange lösenord:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Filtyp stöds ej. Installera det nödvändiga insticket."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Dokument innehåller inga sidor"
diff --git a/po/ta_IN.po b/po/ta_IN.po
index 9a83292..49c864f 100644
--- a/po/ta_IN.po
+++ b/po/ta_IN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-04-12 17:53+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-22 22:48+0000\n"
"Last-Translator: Sebastian Ramacher \n"
"Language-Team: Tamil (India) (http://www.transifex.com/pwmt/zathura/language/"
@@ -497,80 +497,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "புதிய bookmark உருவாக்கு"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Bookmark-ஐ அழித்துவிடு"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "அனைத்து bookmark-களையும் பட்டியலிடு"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr ""
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "ஆவணம் பற்றிய தகவல்களைக் காட்டு"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr ""
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "உதவியைக் காட்டு"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "ஒரு ஆவணத்தைத் திற"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "zathura-வை விட்டு வெளியேறு"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "ஆவணத்தை அச்சிடு"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "ஆவணத்தை சேமிக்கவும்"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr ""
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "இணைப்புகளைச் சேமிக்கவும்"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr ""
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr ""
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr ""
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr ""
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr ""
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr ""
@@ -596,62 +596,66 @@ msgstr ""
msgid "Link: Invalid"
msgstr ""
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr ""
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr ""
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr ""
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr ""
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr ""
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr ""
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr ""
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr ""
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "ஆவணம் பற்றிய தகவல்களைக் காட்டு"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr ""
@@ -689,26 +693,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "இந்த ஆவணத்தில் எந்த index-ம் இல்லை"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "பெயரற்ற ஆவணம்"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr ""
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 4bec2e3..bb01d2e 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-03-30 00:26+0000\n"
"Last-Translator: abc Def \n"
"Language-Team: Turkish (http://www.transifex.com/pwmt/zathura/language/tr/)\n"
@@ -498,80 +498,80 @@ msgid "Sandbox level"
msgstr ""
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Yer imi ekle"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Yer imi sil"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Yer imlerini listele"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Geçerli dosyayı kapat"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Dosya bilgisi göster"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Bir komut çalıştır"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Yardım bilgisi göster"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Belge aç"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Zathura'yı kapat"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Belge yazdır"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Belgeyi kaydet"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Belgeyi kaydet (ve sormadan üzerine yaz)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Ekleri kaydet"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Sayfa derinliğini ayarla"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Bu belgede bu konumu işaretle"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Seçilen işaretlemeleri sil"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Şuanki arama sonuçlarını vurgulama"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Şuanki arama sonuçlarını vurgula"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Versiyon bilgisi göster"
@@ -597,62 +597,66 @@ msgstr "Bağlantı: %s"
msgid "Link: Invalid"
msgstr "Bağlantı: Geçersiz"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Xid tarafından belirlendiği gibi bir üst seviye pencereye bağlı (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Ayar dizini adresi"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Veri dizini adresi"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Önbellek dizininin adresi"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Eklentileri içeren dizinin adresi"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Arka planda işlemden çocuk oluştur"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Belge şifresi"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr ""
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Kayıt seviyesi (hata ayıklama, bilgi, uyarı, hata)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Dosya bilgisi göster"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr ""
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr ""
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr ""
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr ""
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Yüklüyor ..."
@@ -690,26 +694,26 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Bu belge fihrist içermiyor"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[İsimsiz]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Şifre girin:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Desteklenmeyen dosya türü. Lütfen gerekli eklentileri yükleyin."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr ""
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 0df9352..0d4b050 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-06-16 23:57+0200\n"
+"POT-Creation-Date: 2020-07-27 10:06+0200\n"
"PO-Revision-Date: 2020-05-06 14:51+0000\n"
"Last-Translator: Юрій Яновський \n"
"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/pwmt/zathura/"
@@ -509,80 +509,80 @@ msgid "Sandbox level"
msgstr "Рівень пісочниці"
#. define default inputbar commands
-#: zathura/config.c:483
+#: zathura/config.c:485
msgid "Add a bookmark"
msgstr "Додати закладку"
-#: zathura/config.c:484
+#: zathura/config.c:486
msgid "Delete a bookmark"
msgstr "Вилучити закладку"
-#: zathura/config.c:485
+#: zathura/config.c:487
msgid "List all bookmarks"
msgstr "Список усіх закладок"
-#: zathura/config.c:486
+#: zathura/config.c:488
msgid "Close current file"
msgstr "Закрити поточний файл"
-#: zathura/config.c:487
+#: zathura/config.c:489
msgid "Show file information"
msgstr "Показати інформацію про файл"
-#: zathura/config.c:488 zathura/config.c:489
+#: zathura/config.c:490 zathura/config.c:491
msgid "Execute a command"
msgstr "Виконати команду"
#. like vim
-#: zathura/config.c:490
+#: zathura/config.c:492
msgid "Show help"
msgstr "Покажіть довідку"
-#: zathura/config.c:491
+#: zathura/config.c:493
msgid "Open document"
msgstr "Відкрити документ"
-#: zathura/config.c:492
+#: zathura/config.c:494
msgid "Close zathura"
msgstr "Закрити zathura"
-#: zathura/config.c:493
+#: zathura/config.c:495
msgid "Print document"
msgstr "Надрукувати документ"
-#: zathura/config.c:494
+#: zathura/config.c:496
msgid "Save document"
msgstr "Зберегти документ"
-#: zathura/config.c:495
+#: zathura/config.c:497
msgid "Save document (and force overwriting)"
msgstr "Зберегти документ (і примусово перезаписати)"
-#: zathura/config.c:496
+#: zathura/config.c:498
msgid "Save attachments"
msgstr "Зберегти вкладення"
-#: zathura/config.c:497
+#: zathura/config.c:499
msgid "Set page offset"
msgstr "Встановити зміщення сторінки"
-#: zathura/config.c:498
+#: zathura/config.c:500
msgid "Mark current location within the document"
msgstr "Позначити поточне розташування в документі"
-#: zathura/config.c:499
+#: zathura/config.c:501
msgid "Delete the specified marks"
msgstr "Вилучити зазначені позначки"
-#: zathura/config.c:500
+#: zathura/config.c:502
msgid "Don't highlight current search results"
msgstr "Не виділяти поточні результати пошуку"
-#: zathura/config.c:501
+#: zathura/config.c:503
msgid "Highlight current search results"
msgstr "Виділити поточні результати пошуку"
-#: zathura/config.c:502
+#: zathura/config.c:504
msgid "Show version information"
msgstr "Показати інформацію про версію"
@@ -608,62 +608,66 @@ msgstr "Посилання: %s"
msgid "Link: Invalid"
msgstr "Посилання: Недійсне"
-#: zathura/main.c:145
+#: zathura/main.c:146
msgid "Reparents to window specified by xid (X11)"
msgstr "Повертатися до вікна, вказаного за допомогою xid (X11)"
-#: zathura/main.c:146
+#: zathura/main.c:147
msgid "Path to the config directory"
msgstr "Шлях до каталогу конфігурації"
-#: zathura/main.c:147
+#: zathura/main.c:148
msgid "Path to the data directory"
msgstr "Шлях до каталогу з даними"
-#: zathura/main.c:148
+#: zathura/main.c:149
msgid "Path to the cache directory"
msgstr "Шлях до каталогу кеша"
-#: zathura/main.c:149
+#: zathura/main.c:150
msgid "Path to the directories containing plugins"
msgstr "Шлях до каталогів, які містять плаґіни"
-#: zathura/main.c:150
+#: zathura/main.c:151
msgid "Fork into the background"
msgstr "Запустити у фоні"
-#: zathura/main.c:151
+#: zathura/main.c:152
msgid "Document password"
msgstr "Пароль документа"
-#: zathura/main.c:152
+#: zathura/main.c:153
msgid "Page number to go to"
msgstr "Номер сторінки, на який потрібно перейти"
-#: zathura/main.c:153
+#: zathura/main.c:154
msgid "Log level (debug, info, warning, error)"
msgstr "Рівень журналювання (налагодження, інформація, попередження, помилка)"
-#: zathura/main.c:154
+#: zathura/main.c:155
msgid "Print version information"
msgstr "Інформація про версію для друку"
-#: zathura/main.c:155
+#: zathura/main.c:156
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Редактор Synctex (перенаправляється до команди Synctex)"
-#: zathura/main.c:156
+#: zathura/main.c:157
msgid "Move to given synctex position"
msgstr "Перейдіть до заданої позиції Synctex"
-#: zathura/main.c:157
+#: zathura/main.c:158
msgid "Highlight given position in the given process"
msgstr "Виділити задану позицію в даному процесі"
-#: zathura/main.c:158
+#: zathura/main.c:159
msgid "Start in a non-default mode"
msgstr "Запуск в режимі, що не використовується за замовчуванням"
+#: zathura/main.c:160
+msgid "Search for the given phrase and display results"
+msgstr ""
+
#: zathura/page-widget.c:654
msgid "Loading..."
msgstr "Завантаження..."
@@ -701,26 +705,26 @@ msgstr "Шаблон не знайдено: %s"
msgid "This document does not contain any index"
msgstr "Цей документ не містить покажчика"
-#: zathura/zathura.c:300 zathura/zathura.c:1467
+#: zathura/zathura.c:303 zathura/zathura.c:1482
msgid "[No name]"
msgstr "[Без імені]"
-#: zathura/zathura.c:832
+#: zathura/zathura.c:835
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "Не вдалося прочитати файл із stdin та записати його у тимчасовий файл."
-#: zathura/zathura.c:852
+#: zathura/zathura.c:855
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "Не вдалося прочитати файл із GIO та скопіювати його у тимчасовий файл."
-#: zathura/zathura.c:941
+#: zathura/zathura.c:952
msgid "Enter password:"
msgstr "Введіть пароль:"
-#: zathura/zathura.c:980
+#: zathura/zathura.c:991
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Непідтримуваний тип файлу. Установіть необхідне розширення."
-#: zathura/zathura.c:990
+#: zathura/zathura.c:1001
msgid "Document does not contain any pages"
msgstr "Документ не містить жодної сторінки"
From 5ceb00ab8f9142a9510a5b3077441176c514d33c Mon Sep 17 00:00:00 2001
From: Sebastian Ramacher
Date: Mon, 27 Jul 2020 18:29:18 +0200
Subject: [PATCH 49/49] Version 0.4.6
---
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index a42dcf3..54c382b 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('zathura', 'c',
- version: '0.4.5',
+ version: '0.4.6',
meson_version: '>=0.47',
default_options: ['c_std=c11', 'warning_level=3'],
)