From 334189e96174bce0aba429285f121e1f1634eb05 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 15 Feb 2016 01:49:03 +0100 Subject: [PATCH 01/21] Really fix parallel build of manpages Based on https://www.gnu.org/software/automake/manual/html_node/Multiple-Outputs.html. Signed-off-by: Sebastian Ramacher --- doc/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 7e36b9d..c4151da 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -22,11 +22,17 @@ $(SPHINX_BUILDDIR)/html/index.html: $(HTML_SOURCES) $(SPHINX_BUILDDIR)/doxygen/x $(call colorecho,DOC,"Build HTML documentation") $(QUIET)$(SPHINX_BIN) -b html $(SPHINX_OPTS) . $(SPHINX_BUILDDIR)/html -$(SPHINX_BUILDDIR)/zathura.1 $(SPHINX_BUILDDIR)/zathurarc.5: $(MAN_SOURCES) +$(SPHINX_BUILDDIR)/zathura.1: $(MAN_SOURCES) $(QUIET)mkdir -p $(SPHINX_BUILDDIR) $(call colorecho,DOC,"Build man pages") $(QUIET)$(SPHINX_BIN) -b man $(SPHINX_OPTS) man $(SPHINX_BUILDDIR) +$(SPHINX_BUILDDIR)/zathurarc.5: $(SPHINX_BUILDDIR)/zathura.1 + @if test -f $@; then :; else \ + rm -f $(SPHINX_BUILDDIR)/zathura.1; \ + $(MAKE) $(SPHINX_BUILDDIR)/zathura.1; \ + fi + $(SPHINX_BUILDDIR)/doxygen/xml/index.xml: $(DOXYGEN_SOURCES) $(QUIET)mkdir -p $(SPHINX_BUILDDIR)/doxygen/xml $(call colorecho,DOC,"Run doxygen") From 1c6d31a8b16bc8e919d8f4fbdf5fc7164170f0d5 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 19 Feb 2016 10:03:50 +0100 Subject: [PATCH 02/21] Check if there is a database Signed-off-by: Sebastian Ramacher --- zathura/completion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/completion.c b/zathura/completion.c index 696aabb..0081f22 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -190,7 +190,7 @@ list_files_for_cc(zathura_t* zathura, const char* input, bool check_file_ext, in girara_list_free(names); } - if (show_recent > 0) { + if (show_recent > 0 && zathura->database != NULL) { girara_list_t* recent_files = zathura_db_get_recent_files(zathura->database, show_recent); if (recent_files == NULL) { goto error_free; From eda1dcec638acaaacc391d54fd3f3bd629dcfa5b Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Wed, 24 Feb 2016 22:57:01 +0100 Subject: [PATCH 03/21] Split out fileinfo save Signed-off-by: Sebastian Ramacher --- zathura/zathura.c | 55 ++++++++++++++++++++++++++--------------------- 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/zathura/zathura.c b/zathura/zathura.c index 163063b..c3fd6cc 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -792,7 +792,7 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* } goto error_out; } - + zathura->document = document; const char* file_path = zathura_document_get_path(document); @@ -1193,6 +1193,35 @@ remove_page_from_table(GtkWidget* page, gpointer UNUSED(permanent)) gtk_container_remove(GTK_CONTAINER(gtk_widget_get_parent(page)), page); } +static void +save_fileinfo_to_db(zathura_t* zathura) +{ + const char* path = zathura_document_get_path(zathura->document); + + zathura_fileinfo_t file_info = { + .current_page = zathura_document_get_current_page_number(zathura->document), + .page_offset = zathura_document_get_page_offset(zathura->document), + .scale = zathura_document_get_scale(zathura->document), + .rotation = zathura_document_get_rotation(zathura->document), + .pages_per_row = 1, + .first_page_column_list = "1:2", + .position_x = zathura_document_get_position_x(zathura->document), + .position_y = zathura_document_get_position_y(zathura->document) + }; + + girara_setting_get(zathura->ui.session, "pages-per-row", + &(file_info.pages_per_row)); + girara_setting_get(zathura->ui.session, "first-page-column", + &(file_info.first_page_column_list)); + + /* save file info */ + zathura_db_set_fileinfo(zathura->database, path, &file_info); + /* save jumplist */ + zathura_db_save_jumplist(zathura->database, path, zathura->jumplist.list); + + g_free(file_info.first_page_column_list); +} + bool document_close(zathura_t* zathura, bool keep_monitor) { @@ -1234,32 +1263,10 @@ document_close(zathura_t* zathura, bool keep_monitor) } /* store file information */ - const char* path = zathura_document_get_path(zathura->document); - - zathura_fileinfo_t file_info = { 0, 0, 1, 0, 1, "1:2", 0, 0 }; - file_info.current_page = zathura_document_get_current_page_number(zathura->document); - file_info.page_offset = zathura_document_get_page_offset(zathura->document); - file_info.scale = zathura_document_get_scale(zathura->document); - file_info.rotation = zathura_document_get_rotation(zathura->document); - - girara_setting_get(zathura->ui.session, "pages-per-row", &(file_info.pages_per_row)); - girara_setting_get(zathura->ui.session, "first-page-column", &(file_info.first_page_column_list)); - - /* get position */ - file_info.position_x = zathura_document_get_position_x(zathura->document); - file_info.position_y = zathura_document_get_position_y(zathura->document); - if (zathura->database != NULL) { - /* save file info */ - zathura_db_set_fileinfo(zathura->database, path, &file_info); - - /* save jumplist */ - zathura_db_save_jumplist(zathura->database, path, zathura->jumplist.list); + save_fileinfo_to_db(zathura); } - /* free buffers */ - g_free(file_info.first_page_column_list); - girara_list_iterator_free(zathura->jumplist.cur); zathura->jumplist.cur = NULL; girara_list_free(zathura->jumplist.list); From f6754d7a00b48bbbd8f5d9d5e752db7b53bc3ad7 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Wed, 24 Feb 2016 23:22:02 +0100 Subject: [PATCH 04/21] Split handle_method_call Signed-off-by: Sebastian Ramacher --- zathura/dbus-interface.c | 344 ++++++++++++++++++++++----------------- 1 file changed, 192 insertions(+), 152 deletions(-) diff --git a/zathura/dbus-interface.c b/zathura/dbus-interface.c index 1a89261..2dd95ec 100644 --- a/zathura/dbus-interface.c +++ b/zathura/dbus-interface.c @@ -192,11 +192,182 @@ zathura_dbus_edit(ZathuraDbus* edit, unsigned int page, unsigned int x, unsigned /* D-Bus handler */ +static void +handle_open_document(zathura_t* zathura, GVariant* parameters, + GDBusMethodInvocation* invocation) +{ + gchar* filename = NULL; + gchar* password = NULL; + gint page = ZATHURA_PAGE_NUMBER_UNSPECIFIED; + g_variant_get(parameters, "(ssi)", &filename, &password, &page); + + document_close(zathura, false); + document_open_idle(zathura, filename, + strlen(password) > 0 ? password : NULL, + page, + NULL, NULL); + g_free(filename); + g_free(password); + + GVariant* result = g_variant_new("(b)", true); + g_dbus_method_invocation_return_value(invocation, result); +} + +static void +handle_close_document(zathura_t* zathura, GVariant* UNUSED(parameters), + GDBusMethodInvocation* invocation) +{ + const bool ret = document_close(zathura, false); + + GVariant* result = g_variant_new("(b)", ret); + g_dbus_method_invocation_return_value(invocation, result); +} + +static void +handle_goto_page(zathura_t* zathura, GVariant* parameters, + GDBusMethodInvocation* invocation) +{ + const unsigned int number_of_pages = zathura_document_get_number_of_pages(zathura->document); + + guint page = 0; + g_variant_get(parameters, "(u)", &page); + + bool ret = true; + if (page >= number_of_pages) { + ret = false; + } else { + page_set(zathura, page); + } + + GVariant* result = g_variant_new("(b)", ret); + g_dbus_method_invocation_return_value(invocation, result); +} + +static void +handle_highlight_rects(zathura_t* zathura, GVariant* parameters, + GDBusMethodInvocation* invocation) +{ + const unsigned int number_of_pages = zathura_document_get_number_of_pages(zathura->document); + + guint page = 0; + GVariantIter* iter = NULL; + GVariantIter* secondary_iter = NULL; + g_variant_get(parameters, "(ua(dddd)a(udddd))", &page, &iter, + &secondary_iter); + + if (page >= number_of_pages) { + girara_debug("Got invalid page number."); + GVariant* result = g_variant_new("(b)", false); + g_variant_iter_free(iter); + g_variant_iter_free(secondary_iter); + g_dbus_method_invocation_return_value(invocation, result); + return; + } + + /* get rectangles */ + girara_list_t** rectangles = g_try_malloc0(number_of_pages * sizeof(girara_list_t*)); + if (rectangles == NULL) { + g_variant_iter_free(iter); + g_variant_iter_free(secondary_iter); + g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, + G_DBUS_ERROR_NO_MEMORY, + "Failed to allocate memory."); + return; + } + + rectangles[page] = girara_list_new2(g_free); + if (rectangles[page] == NULL) { + g_free(rectangles); + g_variant_iter_free(iter); + g_variant_iter_free(secondary_iter); + g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, + G_DBUS_ERROR_NO_MEMORY, + "Failed to allocate memory."); + return; + } + + zathura_rectangle_t temp_rect = { 0, 0, 0, 0 }; + while (g_variant_iter_loop(iter, "(dddd)", &temp_rect.x1, &temp_rect.x2, + &temp_rect.y1, &temp_rect.y2)) { + zathura_rectangle_t* rect = g_try_malloc0(sizeof(zathura_rectangle_t)); + if (rect == NULL) { + g_variant_iter_free(iter); + g_variant_iter_free(secondary_iter); + girara_list_free(rectangles[page]); + g_free(rectangles); + g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, + G_DBUS_ERROR_NO_MEMORY, + "Failed to allocate memory."); + return; + } + + *rect = temp_rect; + girara_list_append(rectangles[page], rect); + } + g_variant_iter_free(iter); + + /* get secondary rectangles */ + guint temp_page = 0; + while (g_variant_iter_loop(secondary_iter, "(udddd)", &temp_page, + &temp_rect.x1, &temp_rect.x2, &temp_rect.y1, + &temp_rect.y2)) { + if (temp_page >= number_of_pages) { + /* error out here? */ + girara_debug("Got invalid page number."); + continue; + } + + if (rectangles[temp_page] == NULL) { + rectangles[temp_page] = girara_list_new2(g_free); + } + + zathura_rectangle_t* rect = g_try_malloc0(sizeof(zathura_rectangle_t)); + if (rect == NULL || rectangles[temp_page] == NULL) { + g_variant_iter_free(secondary_iter); + for (unsigned int p = 0; p != number_of_pages; ++p) { + girara_list_free(rectangles[p]); + } + g_free(rectangles); + g_free(rect); + g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, + G_DBUS_ERROR_NO_MEMORY, + "Failed to allocate memory."); + return; + } + + *rect = temp_rect; + girara_list_append(rectangles[temp_page], rect); + } + g_variant_iter_free(secondary_iter); + + synctex_highlight_rects(zathura, page, rectangles); + g_free(rectangles); + + GVariant* result = g_variant_new("(b)", true); + g_dbus_method_invocation_return_value(invocation, result); +} + +static void +handle_synctex_view(zathura_t* zathura, GVariant* parameters, + GDBusMethodInvocation* invocation) +{ + gchar* input_file = NULL; + guint line = 0; + guint column = 0; + g_variant_get(parameters, "(suu)", &input_file, &line, &column); + + const bool ret = synctex_view(zathura, input_file, line, column); + g_free(input_file); + + GVariant* result = g_variant_new("(b)", ret); + g_dbus_method_invocation_return_value(invocation, result); +} + static void handle_method_call(GDBusConnection* UNUSED(connection), const gchar* UNUSED(sender), const gchar* object_path, const gchar* interface_name, const gchar* method_name, - GVariant* parameters, GDBusMethodInvocation* invocation, + GVariant* parameters, GDBusMethodInvocation* invocation, void* data) { ZathuraDbus* dbus = data; @@ -205,163 +376,32 @@ handle_method_call(GDBusConnection* UNUSED(connection), girara_debug("Handling call '%s.%s' on '%s'.", interface_name, method_name, object_path); - /* methods that work without open document */ - if (g_strcmp0(method_name, "OpenDocument") == 0) { - gchar* filename = NULL; - gchar* password = NULL; - gint page = ZATHURA_PAGE_NUMBER_UNSPECIFIED; - g_variant_get(parameters, "(ssi)", &filename, &password, &page); + static const struct { + const char* method; + void (*handler)(zathura_t*, GVariant*, GDBusMethodInvocation*); + bool needs_document; + } handlers[] = { + { "OpenDocument", handle_open_document, false }, + { "CloseDocument", handle_close_document, false }, + { "GotoPage", handle_goto_page, true }, + { "HighlightRects", handle_highlight_rects, true }, + { "SynctexView", handle_synctex_view, true } + }; - document_close(priv->zathura, false); - document_open_idle(priv->zathura, filename, - strlen(password) > 0 ? password : NULL, - page, - NULL, NULL); - g_free(filename); - g_free(password); - - GVariant* result = g_variant_new("(b)", true); - g_dbus_method_invocation_return_value(invocation, result); - return; - } else if (g_strcmp0(method_name, "CloseDocument") == 0) { - const bool ret = document_close(priv->zathura, false); - - GVariant* result = g_variant_new("(b)", ret); - g_dbus_method_invocation_return_value(invocation, result); - return; - } - - if (priv->zathura->document == NULL) { - g_dbus_method_invocation_return_dbus_error(invocation, - "org.pwmt.zathura.NoOpenDocumen", - "No document has been opened."); - return; - } - - const unsigned int number_of_pages = zathura_document_get_number_of_pages(priv->zathura->document); - - /* methods that require an open document */ - if (g_strcmp0(method_name, "GotoPage") == 0) { - guint page = 0; - g_variant_get(parameters, "(u)", &page); - - bool ret = true; - if (page >= number_of_pages) { - ret = false; - } else { - page_set(priv->zathura, page); + for (size_t idx = 0; idx != sizeof(handlers) / sizeof(handlers[0]); ++idx) { + if (g_strcmp0(method_name, handlers[idx].method) != 0) { + continue; } - GVariant* result = g_variant_new("(b)", ret); - g_dbus_method_invocation_return_value(invocation, result); - } else if (g_strcmp0(method_name, "HighlightRects") == 0) { - guint page = 0; - GVariantIter* iter = NULL; - GVariantIter* secondary_iter = NULL; - g_variant_get(parameters, "(ua(dddd)a(udddd))", &page, &iter, - &secondary_iter); - - if (page >= number_of_pages) { - girara_debug("Got invalid page number."); - GVariant* result = g_variant_new("(b)", false); - g_variant_iter_free(iter); - g_variant_iter_free(secondary_iter); - g_dbus_method_invocation_return_value(invocation, result); + if (handlers[idx].needs_document == true && priv->zathura->document == NULL) { + g_dbus_method_invocation_return_dbus_error( + invocation, "org.pwmt.zathura.NoOpenDocumen", + "No document has been opened."); return; } - /* get rectangles */ - girara_list_t** rectangles = g_try_malloc0(number_of_pages * sizeof(girara_list_t*)); - if (rectangles == NULL) { - g_variant_iter_free(iter); - g_variant_iter_free(secondary_iter); - g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, - G_DBUS_ERROR_NO_MEMORY, - "Failed to allocate memory."); - return; - } - - rectangles[page] = girara_list_new2(g_free); - if (rectangles[page] == NULL) { - g_free(rectangles); - g_variant_iter_free(iter); - g_variant_iter_free(secondary_iter); - g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, - G_DBUS_ERROR_NO_MEMORY, - "Failed to allocate memory."); - return; - } - - zathura_rectangle_t temp_rect = { 0, 0, 0, 0 }; - while (g_variant_iter_loop(iter, "(dddd)", &temp_rect.x1, &temp_rect.x2, - &temp_rect.y1, &temp_rect.y2)) { - zathura_rectangle_t* rect = g_try_malloc0(sizeof(zathura_rectangle_t)); - if (rect == NULL) { - g_variant_iter_free(iter); - g_variant_iter_free(secondary_iter); - girara_list_free(rectangles[page]); - g_free(rectangles); - g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, - G_DBUS_ERROR_NO_MEMORY, - "Failed to allocate memory."); - return; - } - - *rect = temp_rect; - girara_list_append(rectangles[page], rect); - } - g_variant_iter_free(iter); - - /* get secondary rectangles */ - guint temp_page = 0; - while (g_variant_iter_loop(secondary_iter, "(udddd)", &temp_page, - &temp_rect.x1, &temp_rect.x2, &temp_rect.y1, - &temp_rect.y2)) { - if (temp_page >= number_of_pages) { - /* error out here? */ - girara_debug("Got invalid page number."); - continue; - } - - if (rectangles[temp_page] == NULL) { - rectangles[temp_page] = girara_list_new2(g_free); - } - - zathura_rectangle_t* rect = g_try_malloc0(sizeof(zathura_rectangle_t)); - if (rect == NULL || rectangles[temp_page] == NULL) { - g_variant_iter_free(secondary_iter); - for (unsigned int p = 0; p != number_of_pages; ++p) { - girara_list_free(rectangles[p]); - } - g_free(rectangles); - g_free(rect); - g_dbus_method_invocation_return_error(invocation, G_DBUS_ERROR, - G_DBUS_ERROR_NO_MEMORY, - "Failed to allocate memory."); - return; - } - - *rect = temp_rect; - girara_list_append(rectangles[temp_page], rect); - } - g_variant_iter_free(secondary_iter); - - synctex_highlight_rects(priv->zathura, page, rectangles); - g_free(rectangles); - - GVariant* result = g_variant_new("(b)", true); - g_dbus_method_invocation_return_value(invocation, result); - } else if (g_strcmp0(method_name, "SynctexView") == 0) { - gchar* input_file = NULL; - guint line = 0; - guint column = 0; - g_variant_get(parameters, "(suu)", &input_file, &line, &column); - - const bool ret = synctex_view(priv->zathura, input_file, line, column); - g_free(input_file); - - GVariant* result = g_variant_new("(b)", ret); - g_dbus_method_invocation_return_value(invocation, result); + (*handlers[idx].handler)(priv->zathura, parameters, invocation); + return; } } From ea094f2393d616e57656e7ea540fcae88548d114 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Wed, 24 Feb 2016 23:56:32 +0100 Subject: [PATCH 05/21] Split off jumplist function declarations --- zathura/jumplist.c | 2 ++ zathura/jumplist.h | 78 ++++++++++++++++++++++++++++++++++++++++++++ zathura/types.h | 10 ++++++ zathura/zathura.h | 81 ++-------------------------------------------- 4 files changed, 92 insertions(+), 79 deletions(-) create mode 100644 zathura/jumplist.h diff --git a/zathura/jumplist.c b/zathura/jumplist.c index fedfb98..f1bb531 100644 --- a/zathura/jumplist.c +++ b/zathura/jumplist.c @@ -1,3 +1,5 @@ +#include "jumplist.h" + #include "zathura.h" #include "document.h" #include "database.h" diff --git a/zathura/jumplist.h b/zathura/jumplist.h new file mode 100644 index 0000000..2f5a401 --- /dev/null +++ b/zathura/jumplist.h @@ -0,0 +1,78 @@ +#ifndef ZATHURA_JUMPLIST_H +#define ZATHURA_JUMPLIST_H + +#include +#include "types.h" + +typedef struct zathura_jumplist_s +{ + girara_list_t* list; + girara_list_iterator_t *cur; + unsigned int size; + unsigned int max_size; +} zathura_jumplist_t; + +/** + * Checks whether current jump has a previous jump + * + * @param zathura The zathura session + * @return true if current jump has a previous jump + */ +bool zathura_jumplist_has_previous(zathura_t* jumplzathura); + +/** + * Checks whether current jump has a next jump + * + * @param zathura The zathura session + * @return true if current jump has a next jump + */ +bool zathura_jumplist_has_next(zathura_t* zathura); + +/** + * Return current jump in the jumplist + * + * @param zathura The zathura session + * @return current jump + */ +zathura_jump_t* zathura_jumplist_current(zathura_t* zathura); + +/** + * Move forward in the jumplist + * + * @param zathura The zathura session + */ +void zathura_jumplist_forward(zathura_t* zathura); + +/** + * Move backward in the jumplist + * + * @param zathura The zathura session + */ +void zathura_jumplist_backward(zathura_t* zathura); + +/** + * Add current page as a new item to the jumplist after current position + * + * @param zathura The zathura session + */ +void zathura_jumplist_add(zathura_t* zathura); + +/** + * Trim entries from the beginning of the jumplist to maintain it's maximum size constraint. + * + * @param zathura The zathura session + */ +void zathura_jumplist_trim(zathura_t* zathura); + +/** + * Load the jumplist of the specified file + * + * @param zathura The zathura session + * @param file The file whose jumplist is to be loaded + * + * return A linked list of zathura_jump_t structures constituting the jumplist of the specified file, or NULL. + */ +bool zathura_jumplist_load(zathura_t* zathura, const char* file); + + +#endif diff --git a/zathura/types.h b/zathura/types.h index de87eaa..16189ee 100644 --- a/zathura/types.h +++ b/zathura/types.h @@ -213,6 +213,16 @@ typedef struct zathura_form_s zathura_form_type_t type; /**< Type */ } zathura_form_t; +/** + * Jump + */ +typedef struct zathura_jump_s +{ + unsigned int page; + double x; + double y; +} zathura_jump_t; + /** * Create new index element * diff --git a/zathura/zathura.h b/zathura/zathura.h index 904b938..ffb5d80 100644 --- a/zathura/zathura.h +++ b/zathura/zathura.h @@ -11,6 +11,7 @@ #endif #include "macros.h" #include "types.h" +#include "jumplist.h" enum { NEXT, @@ -82,16 +83,6 @@ enum { /* forward declaration for types from database.h */ typedef struct _ZathuraDatabase zathura_database_t; -/** - * Jump - */ -typedef struct zathura_jump_s -{ - unsigned int page; - double x; - double y; -} zathura_jump_t; - struct zathura_s { struct @@ -162,13 +153,7 @@ struct zathura_s girara_list_t* bookmarks; /**< bookmarks */ } bookmarks; - struct - { - girara_list_t* list; - girara_list_iterator_t *cur; - unsigned int size; - unsigned int max_size; - } jumplist; + zathura_jumplist_t jumplist; struct { @@ -415,68 +400,6 @@ void page_widget_set_mode(zathura_t* zathura, unsigned int page_padding, */ void statusbar_page_number_update(zathura_t* zathura); -/** - * Checks whether current jump has a previous jump - * - * @param zathura The zathura session - * @return true if current jump has a previous jump - */ -bool zathura_jumplist_has_previous(zathura_t* zathura); - -/** - * Checks whether current jump has a next jump - * - * @param zathura The zathura session - * @return true if current jump has a next jump - */ -bool zathura_jumplist_has_next(zathura_t* zathura); - -/** - * Return current jump in the jumplist - * - * @param zathura The zathura session - * @return current jump - */ -zathura_jump_t* zathura_jumplist_current(zathura_t* zathura); - -/** - * Move forward in the jumplist - * - * @param zathura The zathura session - */ -void zathura_jumplist_forward(zathura_t* zathura); - -/** - * Move backward in the jumplist - * - * @param zathura The zathura session - */ -void zathura_jumplist_backward(zathura_t* zathura); - -/** - * Add current page as a new item to the jumplist after current position - * - * @param zathura The zathura session - */ -void zathura_jumplist_add(zathura_t* zathura); - -/** - * Trim entries from the beginning of the jumplist to maintain it's maximum size constraint. - * - * @param zathura The zathura session - */ -void zathura_jumplist_trim(zathura_t* zathura); - -/** - * Load the jumplist of the specified file - * - * @param zathura The zathura session - * @param file The file whose jumplist is to be loaded - * - * return A linked list of zathura_jump_t structures constituting the jumplist of the specified file, or NULL. - */ -bool zathura_jumplist_load(zathura_t* zathura, const char* file); - /** * Gets the nicely formatted filename of the loaded document according to settings * From 9bfe4f222e5661a9c860684fa3c12e8e5ba22f78 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 25 Feb 2016 00:06:04 +0100 Subject: [PATCH 06/21] Simplify --- zathura/jumplist.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/zathura/jumplist.c b/zathura/jumplist.c index f1bb531..5fd783f 100644 --- a/zathura/jumplist.c +++ b/zathura/jumplist.c @@ -53,11 +53,7 @@ zathura_jumplist_reset_current(zathura_t* zathura) { g_return_if_fail(zathura != NULL && zathura->jumplist.cur != NULL); - while (true) { - if (girara_list_iterator_has_next(zathura->jumplist.cur) == false) { - return; - } - + while (girara_list_iterator_has_next(zathura->jumplist.cur) == true) { girara_list_iterator_next(zathura->jumplist.cur); } } From 771e0513bb7b9e01ef4c5216b122140d99d4cf99 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 25 Feb 2016 00:06:26 +0100 Subject: [PATCH 07/21] Compare with fabs Signed-off-by: Sebastian Ramacher --- zathura/jumplist.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zathura/jumplist.c b/zathura/jumplist.c index 5fd783f..f7e3c57 100644 --- a/zathura/jumplist.c +++ b/zathura/jumplist.c @@ -5,6 +5,7 @@ #include "database.h" #include +#include static void zathura_jumplist_reset_current(zathura_t* zathura); static void zathura_jumplist_append_jump(zathura_t* zathura); @@ -120,7 +121,7 @@ zathura_jumplist_add(zathura_t* zathura) zathura_jump_t* cur = zathura_jumplist_current(zathura); if (cur != NULL) { - if (cur->page == pagenum && cur->x == x && cur->y == y) { + if (cur->page == pagenum && fabs(cur->x - x) <= DBL_EPSILON && fabs(cur->y - y) <= DBL_EPSILON) { return; } } From bdceb153989d4953fa8b0d851384528468c3d5a0 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 26 Feb 2016 18:10:12 +0100 Subject: [PATCH 08/21] Switch to multiplicative zooming (fixes #614) Signed-off-by: Sebastian Ramacher --- zathura/shortcuts.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c index a6a16cb..77873d1 100644 --- a/zathura/shortcuts.c +++ b/zathura/shortcuts.c @@ -1363,14 +1363,14 @@ sc_zoom(girara_session_t* session, girara_argument_t* argument, girara_event_t* girara_setting_get(zathura->ui.session, "zoom-step", &value); const int nt = (t == 0) ? 1 : t; - const double zoom_step = value / 100.0 * nt; + const double zoom_step = 1.0 + value / 100.0 * nt; const double old_zoom = zathura_document_get_scale(zathura->document); /* specify new zoom value */ if (argument->n == ZOOM_IN) { - zathura_document_set_scale(zathura->document, old_zoom + zoom_step); + zathura_document_set_scale(zathura->document, old_zoom * zoom_step); } else if (argument->n == ZOOM_OUT) { - zathura_document_set_scale(zathura->document, old_zoom - zoom_step); + zathura_document_set_scale(zathura->document, old_zoom / zoom_step); } else if (argument->n == ZOOM_SPECIFIC) { if (t == 0) { zathura_document_set_scale(zathura->document, 1.0); From 0ad76c07ee9f3992173f0e61a0402baac93a2ae0 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 26 Feb 2016 18:17:51 +0100 Subject: [PATCH 09/21] Replace tabs with spaces Signed-off-by: Sebastian Ramacher --- doc/configuration/options.rst | 76 +++++++++++++++++------------------ 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/doc/configuration/options.rst b/doc/configuration/options.rst index 6926160..2f99d13 100644 --- a/doc/configuration/options.rst +++ b/doc/configuration/options.rst @@ -16,144 +16,144 @@ General settings Defines which auto adjustment mode should be used if a document is loaded. Possible options are "best-fit" and "width". - :type: String - :default: best-fit + :type: String + :default: best-fit .. describe:: advance-ds-per-row Defines if the number of pages per row should be honored when advancing a page. - :type: Boolean - :default: true + :type: Boolean + :default: true .. describe:: database Defines the used database backend. Possible options are 'plain' and 'sqlite' - :type: String - :default: plain + :type: String + :default: plain .. describe:: highlight-color Defines the color that is used for highlighting parts of the document (e.g.: show search results) - :type: String - :default: #9FBC00 + :type: String + :default: #9FBC00 .. describe:: highlight-active-color Defines the color that is used to show the current selected highlighted element (e.g: current search result) - :type: String - :default: #00BC00 + :type: String + :default: #00BC00 .. describe:: highlight-transparency Defines the opacity of a highlighted element - :type: Float - :default: 0.5 + :type: Float + :default: 0.5 .. describe:: page-padding The page padding defines the gap in pixels between each rendered page. - :type: Integer - :default: 1 + :type: Integer + :default: 1 .. describe:: page-store-threshold Pages that are not visible get unloaded after some time. Every page that has not been visible for page-store-treshold seconds will be unloaded. - :type: Integer - :default: 30 + :type: Integer + :default: 30 .. describe:: page-store-interval Defines the amount of seconds between the check to unload invisible pages. - :type: Integer - :default: 30 + :type: Integer + :default: 30 .. describe:: pages-per-row Defines the number of pages that are rendered next to each other in a row. - :type: Integer - :default: 1 + :type: Integer + :default: 1 .. describe:: recolor En/Disables recoloring - :type: Boolean - :default: false + :type: Boolean + :default: false .. describe:: recolor-darkcolor Defines the color value that is used to represent dark colors in recoloring mode - :type: String - :default: #FFFFFF + :type: String + :default: #FFFFFF .. describe:: recolor-lightcolor Defines the color value that is used to represent light colors in recoloring mode - :type: String - :default: #000000 + :type: String + :default: #000000 .. describe:: render-loading Defines if the "Loading..." text should be displayed if a page is rendered. - :type: Boolean - :default: true + :type: Boolean + :default: true .. describe:: scroll-step Defines the step size of scrolling by calling the scroll command once - :type: Float - :default: 40 + :type: Float + :default: 40 .. describe:: scroll-wrap Defines if the last/first page should be wrapped - :type: Boolean - :default: false + :type: Boolean + :default: false .. describe:: zoom-max Defines the maximum percentage that the zoom level can be - :type: Integer - :default: 1000 + :type: Integer + :default: 1000 .. describe:: zoom-min Defines the minimum percentage that the zoom level can be - :type: Integer - :default: 10 + :type: Integer + :default: 10 .. describe:: zoom-step Defines the amount of percent that is zoomed in or out on each comand. - :type: Integer - :default: 10 + :type: Integer + :default: 10 Girara settings --------------- From 1c9bc2dbcdbb5229967aa173e6378603130e4556 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 26 Feb 2016 18:22:12 +0100 Subject: [PATCH 10/21] Check for integer overflow Signed-off-by: Sebastian Ramacher --- zathura/checked-integer-arithmetic.c | 16 ++++++++++++ zathura/checked-integer-arithmetic.h | 39 ++++++++++++++++++++++++++++ zathura/types.c | 12 ++++++++- 3 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 zathura/checked-integer-arithmetic.c create mode 100644 zathura/checked-integer-arithmetic.h diff --git a/zathura/checked-integer-arithmetic.c b/zathura/checked-integer-arithmetic.c new file mode 100644 index 0000000..45ee6c2 --- /dev/null +++ b/zathura/checked-integer-arithmetic.c @@ -0,0 +1,16 @@ +/* See LICENSE file for license and copyright information */ + +#include "checked-integer-arithmetic.h" +#include +#include + +#ifndef HAVE_BUILTIN +bool +checked_umul(unsigned int lhs, unsigned int rhs, unsigned int* res) +{ + const uint64_t r = (uint64_t) lhs * (uint64_t) rhs; + *res = (unsigned int) r; + + return r > UINT_MAX; +} +#endif diff --git a/zathura/checked-integer-arithmetic.h b/zathura/checked-integer-arithmetic.h new file mode 100644 index 0000000..67c5f03 --- /dev/null +++ b/zathura/checked-integer-arithmetic.h @@ -0,0 +1,39 @@ +/* See LICENSE file for license and copyright information */ +#ifndef ZATHURA_CHECKED_INTEGER_ARITHMETIC_H +#define ZATHURA_CHECKED_INTEGER_ARITHMETIC_H + +#include "macros.h" +#include + +#if __GNUC__ >= 5 +#define HAVE_BUILTIN +#elif defined(__clang__) +#if __has_builtin(__builtin_add_overflow) +#define HAVE_BUILTIN +#endif +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef HAVE_BUILTIN +#define checked_umul(lhs, rhs, res) __builtin_umul_overflow((lhs), (rhs), (res)) +#else +/** + * Helper function for multiplication with overflow detection. This function has + * the same semantics as the __builtin_*mul_overflow functions. + * + * @param[in] lhs first operand + * @param[in] rhs second operand + * @param[out] res result + * @return true if an overflow occurred, false otherwise + */ +HIDDEN bool checked_umul(unsigned int lhs, unsigned int rhs, unsigned int* res); +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/zathura/types.c b/zathura/types.c index 28d50ee..5b4713b 100644 --- a/zathura/types.c +++ b/zathura/types.c @@ -7,6 +7,7 @@ #include "types.h" #include "links.h" #include "internal.h" +#include "checked-integer-arithmetic.h" zathura_index_element_t* zathura_index_element_new(const char* title) @@ -40,13 +41,22 @@ zathura_index_element_free(zathura_index_element_t* index) zathura_image_buffer_t* zathura_image_buffer_create(unsigned int width, unsigned int height) { + g_return_val_if_fail(width != 0, NULL); + g_return_val_if_fail(height != 0, NULL); + + unsigned int size = 0; + if (checked_umul(width, height, &size) == false || + checked_umul(size, 3, &size) == false) { + return NULL; + } + zathura_image_buffer_t* image_buffer = malloc(sizeof(zathura_image_buffer_t)); if (image_buffer == NULL) { return NULL; } - image_buffer->data = calloc(width * height * 3, sizeof(unsigned char)); + image_buffer->data = calloc(size, sizeof(unsigned char)); if (image_buffer->data == NULL) { free(image_buffer); From 0b45a313b7f38184beffcb45269199b00f59fd34 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 26 Feb 2016 18:29:22 +0100 Subject: [PATCH 11/21] Update macro name Signed-off-by: Sebastian Ramacher --- zathura/checked-integer-arithmetic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/checked-integer-arithmetic.h b/zathura/checked-integer-arithmetic.h index 67c5f03..e2fb2e8 100644 --- a/zathura/checked-integer-arithmetic.h +++ b/zathura/checked-integer-arithmetic.h @@ -29,7 +29,7 @@ extern "C" { * @param[out] res result * @return true if an overflow occurred, false otherwise */ -HIDDEN bool checked_umul(unsigned int lhs, unsigned int rhs, unsigned int* res); +GIRARA_HIDDEN bool checked_umul(unsigned int lhs, unsigned int rhs, unsigned int* res); #endif #ifdef __cplusplus From 6c7479c35e5795ff63ed3359348837c1cd4e6477 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 26 Feb 2016 18:59:24 +0100 Subject: [PATCH 12/21] Make zathura_set_xid always available Signed-off-by: Sebastian Ramacher --- zathura/main.c | 4 ---- zathura/zathura.c | 2 -- zathura/zathura.h | 5 ++--- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/zathura/main.c b/zathura/main.c index 2671e4c..d8bb463 100644 --- a/zathura/main.c +++ b/zathura/main.c @@ -18,10 +18,6 @@ #include "synctex.h" #endif -#ifndef GDK_WINDOWING_X11 -typedef int Window; -#endif - /* Init locale */ static void init_locale(void) diff --git a/zathura/zathura.c b/zathura/zathura.c index c3fd6cc..8712c8a 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -448,7 +448,6 @@ zathura_free(zathura_t* zathura) g_free(zathura); } -#ifdef GDK_WINDOWING_X11 void zathura_set_xid(zathura_t* zathura, Window xid) { @@ -456,7 +455,6 @@ zathura_set_xid(zathura_t* zathura, Window xid) zathura->ui.session->gtk.embed = xid; } -#endif void zathura_set_config_dir(zathura_t* zathura, const char* dir) diff --git a/zathura/zathura.h b/zathura/zathura.h index ffb5d80..5c3f134 100644 --- a/zathura/zathura.h +++ b/zathura/zathura.h @@ -238,15 +238,14 @@ bool zathura_init(zathura_t* zathura); */ void zathura_free(zathura_t* zathura); -#ifdef GDK_WINDOWING_X11 /** - * Set parent window id + * Set parent window id. This does not have an effect if the underlying Gtk + * backend is not X11. * * @param zathura The zathura session * @param xid The window id */ void zathura_set_xid(zathura_t* zathura, Window xid); -#endif /** * Set the path to the configuration directory From 898d3487709ef6d5b9aaf2e5dff58d76a62a1e4a Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 26 Feb 2016 19:01:14 +0100 Subject: [PATCH 13/21] Reduce another #ifdef --- zathura/main.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/zathura/main.c b/zathura/main.c index d8bb463..873381e 100644 --- a/zathura/main.c +++ b/zathura/main.c @@ -95,9 +95,7 @@ init_zathura(const char* config_dir, const char* data_dir, return NULL; } -#ifdef GDK_WINDOWING_X11 zathura_set_xid(zathura, embed); -#endif zathura_set_config_dir(zathura, config_dir); zathura_set_data_dir(zathura, data_dir); zathura_set_cache_dir(zathura, cache_dir); @@ -144,9 +142,7 @@ main(int argc, char* argv[]) Window embed = 0; GOptionEntry entries[] = { -#ifdef GDK_WINDOWING_X11 - { "reparent", 'e', 0, G_OPTION_ARG_INT, &embed, _("Reparents to window specified by xid"), "xid" }, -#endif + { "reparent", 'e', 0, G_OPTION_ARG_INT, &embed, _("Reparents to window specified by xid (X11 only)"), "xid" }, { "config-dir", 'c', 0, G_OPTION_ARG_FILENAME, &config_dir, _("Path to the config directory"), "path" }, { "data-dir", 'd', 0, G_OPTION_ARG_FILENAME, &data_dir, _("Path to the data directory"), "path" }, { "cache-dir", '\0', 0, G_OPTION_ARG_FILENAME, &cache_dir, _("Path to the cache directory"), "path"}, From 7e84b6725901d6ee19b469b19dbd70635cda82ed Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Tue, 8 Mar 2016 15:50:41 +0100 Subject: [PATCH 14/21] Update .gitignore file --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 31dd511..360e877 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,5 @@ version.h .frama-c compile_commands.json *.log +.ycm_extra_conf.py +_*/ From 3bc1d819a45d75f6a642b8b751ea46e94c6db5b2 Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Wed, 9 Mar 2016 16:21:12 +0100 Subject: [PATCH 15/21] Assign document object iff pages exist Only saves the document object iff the opened document contains pages. In addition a check is implemented such that the nrow calculation does not crash. --- zathura/document.c | 9 +++++++-- zathura/zathura.c | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/zathura/document.c b/zathura/document.c index 7ed9acb..d094e2e 100644 --- a/zathura/document.c +++ b/zathura/document.c @@ -518,8 +518,13 @@ zathura_document_get_document_size(zathura_document_t* document, { g_return_if_fail(document != NULL && height != NULL && width != NULL); - const unsigned int npag = zathura_document_get_number_of_pages(document); - const unsigned int ncol = zathura_document_get_pages_per_row(document); + const unsigned int npag = zathura_document_get_number_of_pages(document); + const unsigned int ncol = zathura_document_get_pages_per_row(document); + + if (npag == 0 || ncol == 0) { + return; + } + const unsigned int c0 = zathura_document_get_first_page_column(document); const unsigned int nrow = (npag + c0 - 1 + ncol - 1) / ncol; /* number of rows */ const unsigned int pad = zathura_document_get_page_padding(document); diff --git a/zathura/zathura.c b/zathura/zathura.c index 8712c8a..8c493ae 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -791,8 +791,6 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* goto error_out; } - zathura->document = document; - const char* file_path = zathura_document_get_path(document); unsigned int number_of_pages = zathura_document_get_number_of_pages(document); @@ -802,6 +800,8 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* goto error_free; } + zathura->document = document; + /* read history file */ zathura_fileinfo_t file_info = { .current_page = 0, From 4696e10cd81b3a2f1e0e990bcc51087623bceaa5 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 1 Apr 2016 17:10:38 +0200 Subject: [PATCH 16/21] Some clean up Signed-off-by: Sebastian Ramacher --- zathura/utils.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zathura/utils.c b/zathura/utils.c index d99a461..bf394fa 100644 --- a/zathura/utils.c +++ b/zathura/utils.c @@ -257,17 +257,17 @@ find_first_page_column(const char* first_page_column_list, { /* sanity checks */ unsigned int first_page_column = 1; - g_return_val_if_fail(first_page_column_list != NULL, first_page_column); - g_return_val_if_fail(strcmp(first_page_column_list, ""), first_page_column); - g_return_val_if_fail(pages_per_row > 0, first_page_column); + g_return_val_if_fail(first_page_column_list != NULL, first_page_column); + g_return_val_if_fail(*first_page_column_list != '\0', first_page_column); + g_return_val_if_fail(pages_per_row > 0, first_page_column); /* split settings list */ - char** settings = g_strsplit(first_page_column_list, ":", pages_per_row+1); + char** settings = g_strsplit(first_page_column_list, ":", pages_per_row + 1); const size_t settings_size = g_strv_length(settings); /* read setting value corresponding to the specified pages per row */ unsigned int index = pages_per_row - 1; - if (settings_size > index && strcmp(settings[index], "")) { + if (index < settings_size && *settings[index] != '\0') { first_page_column = atoi(settings[index]); } From 0e095c1a24b4c23aa9fab9c624af544dfb53fe63 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 3 Apr 2016 20:38:51 +0200 Subject: [PATCH 17/21] Use the last value for all unspecified pages per row This change ensures that configs with "first-page-column=2" before 0.3.4 will upgrade more sanely. Signed-off-by: Sebastian Ramacher --- doc/man/zathurarc.5.rst | 7 +++++-- zathura/utils.c | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/man/zathurarc.5.rst b/doc/man/zathurarc.5.rst index c70f524..523ce8a 100644 --- a/doc/man/zathurarc.5.rst +++ b/doc/man/zathurarc.5.rst @@ -739,8 +739,11 @@ first-page-column ^^^^^^^^^^^^^^^^^ Defines the column in which the first page will be displayed. This setting is stored separately for every value of pages-per-row according to -the following pattern <1 page per row>:[<2 pages per row>[: ...]]. Per default, -the first column is set to 2 for double-page layout. +the following pattern <1 page per row>:[<2 pages per row>[: ...]]. The last +value in the list will be used for all other number of pages per row if not set +explicitely. + +Per default, the first column is set to 2 for double-page layout. * Value type: String * Default value: 1:2 diff --git a/zathura/utils.c b/zathura/utils.c index bf394fa..5fdf042 100644 --- a/zathura/utils.c +++ b/zathura/utils.c @@ -269,6 +269,8 @@ find_first_page_column(const char* first_page_column_list, unsigned int index = pages_per_row - 1; if (index < settings_size && *settings[index] != '\0') { first_page_column = atoi(settings[index]); + } else if (*settings[settings_size - 1] != '\0') { + first_page_column = atoi(settings[settings_size - 1]); } /* free buffers */ From 1ca81adcfe970c8dbb0fbc3c6338c1c438465c92 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 18 Apr 2016 21:04:59 +0200 Subject: [PATCH 18/21] Update PO files --- po/ca.po | 47 ++++++++++++++++++++++++----------------------- po/cs.po | 46 +++++++++++++++++++++++----------------------- po/de.po | 49 +++++++++++++++++++++++++------------------------ po/el.po | 47 ++++++++++++++++++++++++----------------------- po/eo.po | 46 +++++++++++++++++++++++----------------------- po/es.po | 47 ++++++++++++++++++++++++----------------------- po/es_CL.po | 47 ++++++++++++++++++++++++----------------------- po/et.po | 46 +++++++++++++++++++++++----------------------- po/fr.po | 47 ++++++++++++++++++++++++----------------------- po/he.po | 46 +++++++++++++++++++++++----------------------- po/hr.po | 46 +++++++++++++++++++++++----------------------- po/id_ID.po | 47 ++++++++++++++++++++++++----------------------- po/it.po | 46 +++++++++++++++++++++++----------------------- po/lt.po | 46 +++++++++++++++++++++++----------------------- po/no.po | 46 +++++++++++++++++++++++----------------------- po/pl.po | 47 ++++++++++++++++++++++++----------------------- po/pt_BR.po | 47 ++++++++++++++++++++++++----------------------- po/ru.po | 47 ++++++++++++++++++++++++----------------------- po/ta_IN.po | 46 +++++++++++++++++++++++----------------------- po/tr.po | 47 ++++++++++++++++++++++++----------------------- po/uk_UA.po | 47 ++++++++++++++++++++++++----------------------- 21 files changed, 496 insertions(+), 484 deletions(-) diff --git a/po/ca.po b/po/ca.po index 3b5808e..44e509b 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:09+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/zathura/language/" @@ -502,59 +502,60 @@ msgstr "Enllaç: %s" msgid "Link: Invalid" msgstr "Enllaç: Invàlid" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Reassigna a la finestra especificada per xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Ruta al directori de configuració" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Camí al directori de dades" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Camí al directori que conté els plugins" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Bifurca en segon pla" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Contrasenya del document" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Nivell de registre (depuració, informació, advertiments, errors)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Imprimeix informació sobre la versió" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Editor synctex (reenviat a l'ordre synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -570,7 +571,7 @@ msgstr "Copia la imatge" msgid "Save image as" msgstr "Desa imatge com a" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -579,26 +580,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Aquest document no conté cap índex" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Sense nom]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/cs.po b/po/cs.po index d6f69d6..d1292a0 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:09+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: pwmt.org \n" @@ -497,59 +497,59 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Cesta k souboru s nastavením" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Cesta k adresáři s daty" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Cesta k adresářům s pluginy" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Forknout se na pozadí" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Heslo" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Úroveň logování (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Zobrazit informace o souboru" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -565,7 +565,7 @@ msgstr "Zkopíruj obrázek" msgid "Save image as" msgstr "Ulož obrázek jako" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -574,26 +574,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Tenhle dokument neobsahuje žádné indexy" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Nepojmenovaný]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/de.po b/po/de.po index 6b5a05c..ee3f1bd 100644 --- a/po/de.po +++ b/po/de.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-12-14 22:15+0100\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: German (http://www.transifex.com/projects/p/zathura/language/" "de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.6\n" @@ -505,59 +505,60 @@ msgstr "Verknüpfung: %s" msgid "Link: Invalid" msgstr "Verknüpfung: ungültig" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Reparentiert zathura an das Fenster mit der xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Pfad zum Konfigurationsverzeichnis" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Pfad zum Datenverzeichnis" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "Pfad zum Cacheverzeichnis" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Pfad zum Pluginverzeichnis" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Forkt den Prozess in den Hintergrund" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Dokument Passwort" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "Zur Seite springen" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Log-Stufe (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Zeige Versionsinformationen an" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Synctex Editor (wird an synctex weitergeleitet)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "Zur gewählten SyncTeX-Position springen" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "Gewählte Position im Prozess hervorheben" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "In einem Nicht-Standardmodus starten" @@ -573,7 +574,7 @@ msgstr "Bild kopieren" msgid "Save image as" msgstr "Bild speichern als" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "Drucken fehlgeschlagen: %s" @@ -582,26 +583,26 @@ msgstr "Drucken fehlgeschlagen: %s" msgid "This document does not contain any index" msgstr "Dieses Dokument beinhaltet kein Inhaltsverzeichnis." -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Kein Name]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 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:594 +#: ../zathura/zathura.c:664 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:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "Passwort:" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Dateityp ist nicht unterstützt. Installiere das benötigete Plugin." -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "Dieses Dokument beinhaltet keine Seiten" diff --git a/po/el.po b/po/el.po index c99c38a..05751a9 100644 --- a/po/el.po +++ b/po/el.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Greek (http://www.transifex.com/projects/p/zathura/language/" @@ -504,59 +504,60 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Reparents to window specified by xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Διαδρομή του αρχείου ρυθμίσεων" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Διαδρομή του φακέλου δεδομένων" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Διαδρομή φακέλου που περιέχει τα πρόσθετα" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Διακλάδωση στο παρασκήνιο" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Κωδικός αρχείου" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Επίπεδο καταγραφής (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Εκτύπωση πληροφοριών έκδοσης" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Synctex editor (Προώθηση στην εντολή synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -572,7 +573,7 @@ msgstr "Αντιγραφή εικόνας" msgid "Save image as" msgstr "Αποθήκευση εικόνας ως..." -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -581,26 +582,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Το αρχείο δεν περιέχει κανένα δείκτη" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Χωρίς όνομα]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/eo.po b/po/eo.po index edd4f21..3da30f8 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/zathura/" @@ -501,59 +501,59 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Vojo al la agorda dosierujo" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Vojo al la datuma dosierujo" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Vojoj al dosierujoj enhavantaj kromaĵojn" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Nivelo de ĵurnalo (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Montru dosiera informacio" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -569,7 +569,7 @@ msgstr "Kopiu bildon" msgid "Save image as" msgstr "Savi bildojn kiel" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -578,26 +578,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Ĉi-tiu dokumento enhavas neniam indekson." -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Neniu nomo]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/es.po b/po/es.po index 83d0de6..24b47fc 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/" @@ -502,59 +502,60 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Reasignar a la ventana especificada por xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Ruta al directorio de configuración" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Ruta para el directorio de datos" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Ruta a los directorios que contienen los plugins" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Fork, ejecutándose en background" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Contraseña del documento" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Nivel de log (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Mostrar información del fichero" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Editor de Synctex (reenvíado al commando synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -570,7 +571,7 @@ msgstr "Copiar imagen" msgid "Save image as" msgstr "Salvar imagen como" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -579,26 +580,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Este documento no contiene ningún índice" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Sin nombre]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/es_CL.po b/po/es_CL.po index 8bc8ee4..236f214 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: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Spanish (Chile) (http://www.transifex.net/projects/p/zathura/" @@ -501,59 +501,60 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Reasignar a la ventana especificada por xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Ruta al directorio de configuración" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Ruta al directorio de datos" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Ruta al directorio que contiene plugins" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Ejecución en background" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Nivel de log (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Mostrar información del archivo" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -569,7 +570,7 @@ msgstr "Copiar imagen" msgid "Save image as" msgstr "" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -578,26 +579,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Este document no contiene índice" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Sin nombre]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/et.po b/po/et.po index 53ae129..a590cdc 100644 --- a/po/et.po +++ b/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Estonian (http://www.transifex.net/projects/p/zathura/" @@ -501,59 +501,59 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Näita faili infot" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -569,7 +569,7 @@ msgstr "Kopeeri pilt" msgid "Save image as" msgstr "" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -578,26 +578,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Nime pole]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/fr.po b/po/fr.po index 0e2c7b6..777b423 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: French (http://www.transifex.com/projects/p/zathura/language/" @@ -507,59 +507,60 @@ msgstr "Lien : %s" msgid "Link: Invalid" msgstr "Lien : Invalide" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Rattacher à la fenêtre spécifiée par xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Chemin vers le dossier de configuration" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Chemin vers le dossier de données" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Chemin vers le dossier de plugins" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Détacher en arrière-plan" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Mot de passe du document" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "Numéro de page où aller" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Niveau de journalisation (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Afficher les informations de version" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Éditeur synctex (transféré à la commande synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "Démarrer dans un mode non-défaut" @@ -575,7 +576,7 @@ msgstr "Copier l'image" msgid "Save image as" msgstr "Enregistrer l'image sous" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "Echec d'impression : %s" @@ -584,29 +585,29 @@ msgstr "Echec d'impression : %s" msgid "This document does not contain any index" msgstr "Ce document ne contient pas d'index" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Sans nom]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 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:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" "Type de fichier non supporté. Veuillez installer l'extension nécessaire." -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 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 8c9cf6a..404f419 100644 --- a/po/he.po +++ b/po/he.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2014-01-31 09:37+0000\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/zathura/language/" @@ -499,59 +499,59 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -567,7 +567,7 @@ msgstr "" msgid "Save image as" msgstr "" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -576,26 +576,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/hr.po b/po/hr.po index 166620d..f98d024 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2014-01-31 09:37+0000\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/zathura/" @@ -500,59 +500,59 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -568,7 +568,7 @@ msgstr "" msgid "Save image as" msgstr "" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -577,26 +577,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/id_ID.po b/po/id_ID.po index bed3af9..9b463d4 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: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/" @@ -501,59 +501,60 @@ msgstr "Link: %s" msgid "Link: Invalid" msgstr "Link: Tidak valid" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Mengembalikan jendela sesuai dengan xid yang ditentukan" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Path ke direktori konfigurasi" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Path ke direktori data" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Path ke direktori plugin" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Jalankan pada latar" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Kata sandi dokumen" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "Nomor halaman tujuan" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Tingkat log (debug, info, peringatan, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Cetak informasi versi" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Synctex editor (diteruskan ke perintah synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -569,7 +570,7 @@ msgstr "Salin gambar" msgid "Save image as" msgstr "Simpan gambar sebagai" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -578,27 +579,27 @@ msgstr "" msgid "This document does not contain any index" msgstr "Dokumen ini tidak mempunyai indeks" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Tidak berjudul]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 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:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Tipe berkas tidak didukung. Silakan memasang plugin yang dibutuhkan." -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "Dokumen tidak mempunyai laman apapun" diff --git a/po/it.po b/po/it.po index 77e750b..c90fe0b 100644 --- a/po/it.po +++ b/po/it.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Italian (http://www.transifex.com/projects/p/zathura/language/" @@ -504,59 +504,59 @@ msgstr "Link: %s" msgid "Link: Invalid" msgstr "Link: non valido" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Percorso della directory della configurazione" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Percorso della directory dei dati" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "Percorso della cartella di cache" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Percorso della directory contenente i plugin" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Crea un processo separato" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Password del documento" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Livello di log (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Mostra le informazioni sul file" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -572,7 +572,7 @@ msgstr "Copia immagine" msgid "Save image as" msgstr "Salva immagine come" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "Impossibile stampare: %s" @@ -581,28 +581,28 @@ msgstr "Impossibile stampare: %s" msgid "This document does not contain any index" msgstr "Questo documento non contiene l' indice" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Nessun nome]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 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:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" "Tipo di file non supportato. Per favore, installa il plugin necessario." -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 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 3285f03..e44567b 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Lithuanian (http://www.transifex.com/projects/p/zathura/" @@ -502,59 +502,59 @@ msgstr "Nuoroda: %s" msgid "Link: Invalid" msgstr "Neteisinga nuoroda" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Konfigūracinių failų aplanko adresas" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Duomenų aplanko adresas" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Įskiepių aplanko adresas" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Dokumento slaptažodis" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "Pereiti į puslapį" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Registravimo lygis (derinimas, informacija, įspėjimai, klaidos)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Spausdinti versijos informaciją" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Synctex redaktorius (naudojama synctex komandoje)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -570,7 +570,7 @@ msgstr "Kopijuoti atvaizdą" msgid "Save image as" msgstr "Irašyti atvaizdą kaip" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -579,26 +579,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Šit dokumentas neturi turinio" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Bevardis]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Bylos tipas nepalaikomas. Įdiekite tam skirtus įskiepius." -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "Dokumente puslapių nėra" diff --git a/po/no.po b/po/no.po index 2c42c35..7afedb2 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Norwegian (http://www.transifex.com/projects/p/zathura/" @@ -501,59 +501,59 @@ msgstr "" msgid "Link: Invalid" msgstr "Link: Ugyldig" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Sti til konfigureringsmappe" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Sti til data-mappe" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Sti til mapper som inneholder plugins" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Dokument passord" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "Sidetall å gå til" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Logg nivå (diagnostisering, info, advarsler, feil)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Skriv ut versjonsinformasjon" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "Start i ikke-standard modus" @@ -569,7 +569,7 @@ msgstr "Kopier bilde" msgid "Save image as" msgstr "Lagre bilde som" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "Utskrift feilet: %s" @@ -578,26 +578,26 @@ msgstr "Utskrift feilet: %s" msgid "This document does not contain any index" msgstr "Dette dokumenetet inneholder ikke noen index" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Inget navn]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 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:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Usupportert filtype. Vennligst innstaller den nødvendige pluginen." -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "Dokumentet inneholder ingen sider" diff --git a/po/pl.po b/po/pl.po index 03669b3..0ebc2f5 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Polish (http://www.transifex.com/projects/p/zathura/language/" @@ -503,59 +503,60 @@ msgstr "Link: %s" msgid "Link: Invalid" msgstr "Nieprawidłowy link" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Przypisz proces do rodzica o danym xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Położenie katalogu konfiguracyjnego" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Położenie katalogu danych" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Położenie katalogu wtyczek" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Forkuj w tle" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Hasło dokumentu" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Szczegółowość komunikatów (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Wyświetl informacje o wersji" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Edytor synctex (przekierowanie do komendy synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -571,7 +572,7 @@ msgstr "Skopiuj obrazek" msgid "Save image as" msgstr "Zapisz obrazek jako" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "Nie można wydrukować: %s" @@ -580,26 +581,26 @@ msgstr "Nie można wydrukować: %s" msgid "This document does not contain any index" msgstr "Dokument nie zawiera indeksu" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[bez nazwy]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Niewspierany rodzaj pliku. Zainstaluj wymagane wtyczki" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 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 79f008e..dcb99bf 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" @@ -504,59 +504,60 @@ msgstr "Link: %s" msgid "Link: Invalid" msgstr "Link: Inválido" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Reparar a janela especificada por xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Caminho de diretório para configuração" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Caminho para diretório de dados" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Caminho de diretório que contenham plugins" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Deslocar no fundo" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Senha do documento" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "Número da página para ir" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Nível de log (depurar, informação, aviso, erro)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Imprimir informações sobre a versão" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Editor synctex (encaminhado para o comando synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "Mover para determinada posição synctex" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "Destacar determinada posição no determinado processo" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "Começar em um modo não padrão" @@ -572,7 +573,7 @@ msgstr "Copiar imagem" msgid "Save image as" msgstr "Salvar imagem para" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "Impressão falhou: %s" @@ -581,29 +582,29 @@ msgstr "Impressão falhou: %s" msgid "This document does not contain any index" msgstr "Este documento não contem qualquer índice" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Sem nome]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 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:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 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:731 +#: ../zathura/zathura.c:799 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 f65fe4b..1affc04 100644 --- a/po/ru.po +++ b/po/ru.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Russian (http://www.transifex.com/projects/p/zathura/language/" @@ -505,59 +505,60 @@ msgstr "Ссылка: %s" msgid "Link: Invalid" msgstr "Ссылка: неправильная" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Сменить материнское окно на окно, указанное в xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Путь к каталогу с настройкой" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Путь к каталогу с данными" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Путь к каталогу с плагинами" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Запустить в фоне" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Пароль документа" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "Перейти к странице номер" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Уровень журналирования (debug, info, warning, error)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Показать информацию о файле" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "Редактор для synctex (передаётся далее программе synctex)" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "Перейти к указанному положению synctex" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "Подсветка заданного положения в заданном процессе" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "Запустить в специальном режиме" @@ -573,7 +574,7 @@ msgstr "Скопировать изображение" msgid "Save image as" msgstr "Сохранить изображение как" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "Не удалось напечатать %s" @@ -582,28 +583,28 @@ msgstr "Не удалось напечатать %s" msgid "This document does not contain any index" msgstr "В документе нет индекса" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Без названия]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" "Не удалось прочитать файл со стандартного входа и записать его во временный " "файл." -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Тип файла не поддерживается. Установите соответствующий плагин." -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "В документе нет страниц" diff --git a/po/ta_IN.po b/po/ta_IN.po index 48e1085..d12b72c 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: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2014-01-31 09:37+0000\n" "Last-Translator: mankand007 \n" "Language-Team: Tamil (India) (http://www.transifex.net/projects/p/zathura/" @@ -500,59 +500,59 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +msgid "Reparents to window specified by xid (X11 only)" msgstr "" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "ஆவணம் பற்றிய தகவல்களைக் காட்டு" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -568,7 +568,7 @@ msgstr "படத்தை ஒரு பிரதியெடு" msgid "Save image as" msgstr "" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -577,26 +577,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "இந்த ஆவணத்தில் எந்த index-ம் இல்லை" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "பெயரற்ற ஆவணம்" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/tr.po b/po/tr.po index 2f1a841..e43d6e8 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:05+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Turkish (http://www.transifex.net/projects/p/zathura/language/" @@ -502,59 +502,60 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Xid tarafından belirlendiği gibi bir üst seviye pencereye bağlı" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Ayar dizini adresi" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Veri dizini adresi" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Eklentileri içeren dizinin adresi" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Arka planda işlemden çocuk oluştur" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "Belge şifresi" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Kayıt seviyesi (hata ayıklama, bilgi, uyarı, hata)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Dosya bilgisi göster" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -570,7 +571,7 @@ msgstr "Resim kopyala" msgid "Save image as" msgstr "Resmi farklı kaydet" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -579,26 +580,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Bu belge fihrist içermiyor" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[İsimsiz]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" diff --git a/po/uk_UA.po b/po/uk_UA.po index df236d4..1101136 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: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2015-12-14 22:03+0100\n" +"POT-Creation-Date: 2016-04-18 21:03+0200\n" "PO-Revision-Date: 2015-10-15 23:05+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/" @@ -502,59 +502,60 @@ msgstr "" msgid "Link: Invalid" msgstr "" -#: ../zathura/main.c:155 -msgid "Reparents to window specified by xid" +#: ../zathura/main.c:145 +#, fuzzy +msgid "Reparents to window specified by xid (X11 only)" msgstr "Вертатися до вікна, вказаного xid" -#: ../zathura/main.c:157 +#: ../zathura/main.c:146 msgid "Path to the config directory" msgstr "Шлях до теки конфігурації" -#: ../zathura/main.c:158 +#: ../zathura/main.c:147 msgid "Path to the data directory" msgstr "Шлях до теки з даними" -#: ../zathura/main.c:159 +#: ../zathura/main.c:148 msgid "Path to the cache directory" msgstr "" -#: ../zathura/main.c:160 +#: ../zathura/main.c:149 msgid "Path to the directories containing plugins" msgstr "Шлях до теки з плаґінами" -#: ../zathura/main.c:161 +#: ../zathura/main.c:150 msgid "Fork into the background" msgstr "Працювати у фоні" -#: ../zathura/main.c:162 +#: ../zathura/main.c:151 msgid "Document password" msgstr "" -#: ../zathura/main.c:163 +#: ../zathura/main.c:152 msgid "Page number to go to" msgstr "" -#: ../zathura/main.c:164 +#: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" msgstr "Рівень логування (налагодження, інфо, застереження, помилка)" -#: ../zathura/main.c:165 +#: ../zathura/main.c:154 msgid "Print version information" msgstr "Показати інформацію файлу" -#: ../zathura/main.c:167 +#: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" msgstr "" -#: ../zathura/main.c:168 +#: ../zathura/main.c:157 msgid "Move to given synctex position" msgstr "" -#: ../zathura/main.c:169 +#: ../zathura/main.c:158 msgid "Highlight given position in the given process" msgstr "" -#: ../zathura/main.c:171 +#: ../zathura/main.c:160 msgid "Start in a non-default mode" msgstr "" @@ -570,7 +571,7 @@ msgstr "Копіювати картинку" msgid "Save image as" msgstr "" -#: ../zathura/print.c:64 ../zathura/print.c:209 +#: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" msgstr "" @@ -579,26 +580,26 @@ msgstr "" msgid "This document does not contain any index" msgstr "Індекс відсутній в цьому документі" -#: ../zathura/zathura.c:218 ../zathura/zathura.c:1224 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" msgstr "[Без назви]" -#: ../zathura/zathura.c:578 +#: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." msgstr "" -#: ../zathura/zathura.c:594 +#: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." msgstr "" -#: ../zathura/zathura.c:683 +#: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:719 +#: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:731 +#: ../zathura/zathura.c:799 msgid "Document does not contain any pages" msgstr "" From f28d913ff9397499cf343137d5b74291e69d557f Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 18 Apr 2016 21:08:14 +0200 Subject: [PATCH 19/21] Update string --- zathura/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/main.c b/zathura/main.c index 873381e..1c1439a 100644 --- a/zathura/main.c +++ b/zathura/main.c @@ -142,7 +142,7 @@ main(int argc, char* argv[]) Window embed = 0; GOptionEntry entries[] = { - { "reparent", 'e', 0, G_OPTION_ARG_INT, &embed, _("Reparents to window specified by xid (X11 only)"), "xid" }, + { "reparent", 'e', 0, G_OPTION_ARG_INT, &embed, _("Reparents to window specified by xid (X11)"), "xid" }, { "config-dir", 'c', 0, G_OPTION_ARG_FILENAME, &config_dir, _("Path to the config directory"), "path" }, { "data-dir", 'd', 0, G_OPTION_ARG_FILENAME, &data_dir, _("Path to the data directory"), "path" }, { "cache-dir", '\0', 0, G_OPTION_ARG_FILENAME, &cache_dir, _("Path to the cache directory"), "path"}, From 7cd25a258834602bd9c9c3d6386b9b10637e020e Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 18 Apr 2016 21:11:27 +0200 Subject: [PATCH 20/21] Update strings Signed-off-by: Sebastian Ramacher --- po/ca.po | 11 +++++------ po/cs.po | 4 ++-- po/de.po | 11 +++++------ po/el.po | 11 +++++------ po/eo.po | 4 ++-- po/es.po | 11 +++++------ po/es_CL.po | 11 +++++------ po/et.po | 4 ++-- po/fr.po | 11 +++++------ po/he.po | 4 ++-- po/hr.po | 4 ++-- po/id_ID.po | 11 +++++------ po/it.po | 4 ++-- po/lt.po | 4 ++-- po/no.po | 4 ++-- po/pl.po | 11 +++++------ po/pt_BR.po | 11 +++++------ po/ru.po | 11 +++++------ po/ta_IN.po | 4 ++-- po/tr.po | 11 +++++------ po/uk_UA.po | 11 +++++------ 21 files changed, 78 insertions(+), 90 deletions(-) diff --git a/po/ca.po b/po/ca.po index 44e509b..901b198 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:09+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:11+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/zathura/language/" "ca/)\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -503,9 +503,8 @@ msgid "Link: Invalid" msgstr "Enllaç: Invàlid" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Reassigna a la finestra especificada per xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Reassigna a la finestra especificada per xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/cs.po b/po/cs.po index d1292a0..4437ab1 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2015-10-15 23:09+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: pwmt.org \n" @@ -498,7 +498,7 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/de.po b/po/de.po index ee3f1bd..757d0a2 100644 --- a/po/de.po +++ b/po/de.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-12-14 22:15+0100\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:11+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: German (http://www.transifex.com/projects/p/zathura/language/" "de/)\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.6\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -506,9 +506,8 @@ msgid "Link: Invalid" msgstr "Verknüpfung: ungültig" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Reparentiert zathura an das Fenster mit der xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Reparentiert zathura an das Fenster mit der xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/el.po b/po/el.po index 05751a9..fe28247 100644 --- a/po/el.po +++ b/po/el.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:07+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:10+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Greek (http://www.transifex.com/projects/p/zathura/language/" "el/)\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -505,9 +505,8 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Reparents to window specified by xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/eo.po b/po/eo.po index 3da30f8..61ad3a0 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/zathura/" @@ -502,7 +502,7 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/es.po b/po/es.po index 24b47fc..9554fea 100644 --- a/po/es.po +++ b/po/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:07+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:10+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/" "zathura/language/es/)\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -503,9 +503,8 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Reasignar a la ventana especificada por xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Reasignar a la ventana especificada por xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/es_CL.po b/po/es_CL.po index 236f214..1efb671 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: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:07+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:10+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Spanish (Chile) (http://www.transifex.net/projects/p/zathura/" "language/es_CL/)\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -502,9 +502,8 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Reasignar a la ventana especificada por xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Reasignar a la ventana especificada por xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/et.po b/po/et.po index a590cdc..d2e4908 100644 --- a/po/et.po +++ b/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2015-10-15 23:07+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Estonian (http://www.transifex.net/projects/p/zathura/" @@ -502,7 +502,7 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/fr.po b/po/fr.po index 777b423..659c620 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:07+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:10+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: French (http://www.transifex.com/projects/p/zathura/language/" "fr/)\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -508,9 +508,8 @@ msgid "Link: Invalid" msgstr "Lien : Invalide" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Rattacher à la fenêtre spécifiée par xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Rattacher à la fenêtre spécifiée par xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/he.po b/po/he.po index 404f419..2bbfb08 100644 --- a/po/he.po +++ b/po/he.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2014-01-31 09:37+0000\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/zathura/language/" @@ -500,7 +500,7 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/hr.po b/po/hr.po index f98d024..765f3c7 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2014-01-31 09:37+0000\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/zathura/" @@ -501,7 +501,7 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/id_ID.po b/po/id_ID.po index 9b463d4..8672376 100644 --- a/po/id_ID.po +++ b/po/id_ID.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:06+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:10+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/" "zathura/language/id_ID/)\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -502,9 +502,8 @@ msgid "Link: Invalid" msgstr "Link: Tidak valid" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Mengembalikan jendela sesuai dengan xid yang ditentukan" +msgid "Reparents to window specified by xid (X11)" +msgstr "Mengembalikan jendela sesuai dengan xid yang ditentukan (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/it.po b/po/it.po index c90fe0b..ecab047 100644 --- a/po/it.po +++ b/po/it.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Italian (http://www.transifex.com/projects/p/zathura/language/" @@ -505,7 +505,7 @@ msgid "Link: Invalid" msgstr "Link: non valido" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/lt.po b/po/lt.po index e44567b..bea8d3c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Lithuanian (http://www.transifex.com/projects/p/zathura/" @@ -503,7 +503,7 @@ msgid "Link: Invalid" msgstr "Neteisinga nuoroda" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/no.po b/po/no.po index 7afedb2..6260b32 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2015-10-15 23:06+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Norwegian (http://www.transifex.com/projects/p/zathura/" @@ -502,7 +502,7 @@ msgid "Link: Invalid" msgstr "Link: Ugyldig" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/pl.po b/po/pl.po index 0ebc2f5..113160e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:06+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:09+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Polish (http://www.transifex.com/projects/p/zathura/language/" "pl/)\n" @@ -19,7 +19,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -504,9 +504,8 @@ msgid "Link: Invalid" msgstr "Nieprawidłowy link" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Przypisz proces do rodzica o danym xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Przypisz proces do rodzica o danym xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/pt_BR.po b/po/pt_BR.po index dcb99bf..95a8bde 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: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:06+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:09+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" "zathura/language/pt_BR/)\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -505,9 +505,8 @@ msgid "Link: Invalid" msgstr "Link: Inválido" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Reparar a janela especificada por xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Reparar a janela especificada por xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/ru.po b/po/ru.po index 1affc04..24b8278 100644 --- a/po/ru.po +++ b/po/ru.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:06+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:09+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Russian (http://www.transifex.com/projects/p/zathura/language/" "ru/)\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -506,9 +506,8 @@ msgid "Link: Invalid" msgstr "Ссылка: неправильная" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Сменить материнское окно на окно, указанное в xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Сменить материнское окно на окно, указанное в xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" diff --git a/po/ta_IN.po b/po/ta_IN.po index d12b72c..ec40c80 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: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" "PO-Revision-Date: 2014-01-31 09:37+0000\n" "Last-Translator: mankand007 \n" "Language-Team: Tamil (India) (http://www.transifex.net/projects/p/zathura/" @@ -501,7 +501,7 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -msgid "Reparents to window specified by xid (X11 only)" +msgid "Reparents to window specified by xid (X11)" msgstr "" #: ../zathura/main.c:146 diff --git a/po/tr.po b/po/tr.po index e43d6e8..f5ba155 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:05+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:09+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Turkish (http://www.transifex.net/projects/p/zathura/language/" "tr/)\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -503,9 +503,8 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Xid tarafından belirlendiği gibi bir üst seviye pencereye bağlı" +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 msgid "Path to the config directory" diff --git a/po/uk_UA.po b/po/uk_UA.po index 1101136..4dce8e5 100644 --- a/po/uk_UA.po +++ b/po/uk_UA.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:03+0200\n" -"PO-Revision-Date: 2015-10-15 23:05+0200\n" +"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"PO-Revision-Date: 2016-04-18 21:08+0200\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/" "zathura/language/uk_UA/)\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Poedit 1.8.5\n" +"X-Generator: Poedit 1.8.7.1\n" #: ../zathura/callbacks.c:233 #, c-format @@ -503,9 +503,8 @@ msgid "Link: Invalid" msgstr "" #: ../zathura/main.c:145 -#, fuzzy -msgid "Reparents to window specified by xid (X11 only)" -msgstr "Вертатися до вікна, вказаного xid" +msgid "Reparents to window specified by xid (X11)" +msgstr "Вертатися до вікна, вказаного xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" From eb5f48641948fa9adafcf54f33aa3348b04489c6 Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Mon, 18 Apr 2016 22:38:46 +0200 Subject: [PATCH 21/21] Version 0.3.6 --- config.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.mk b/config.mk index d529e79..3612e93 100644 --- a/config.mk +++ b/config.mk @@ -6,7 +6,7 @@ PROJECT = zathura ZATHURA_VERSION_MAJOR = 0 ZATHURA_VERSION_MINOR = 3 -ZATHURA_VERSION_REV = 5 +ZATHURA_VERSION_REV = 6 # If the API changes, the API version and the ABI version have to be bumped. ZATHURA_API_VERSION = 2 # If the ABI breaks for any reason, this has to be bumped. @@ -18,7 +18,7 @@ VERSION = ${ZATHURA_VERSION_MAJOR}.${ZATHURA_VERSION_MINOR}.${ZATHURA_VERSION_RE # girara GIRARA_VERSION_CHECK ?= 1 -GIRARA_MIN_VERSION = 0.2.5 +GIRARA_MIN_VERSION = 0.2.6 GIRARA_PKG_CONFIG_NAME = girara-gtk3 # glib GLIB_VERSION_CHECK ?= 1