From dd56318bac92653475e7fdf17cb6948bbcb29d87 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 19 Apr 2016 09:09:42 +0200 Subject: [PATCH 01/46] Fix a typo Signed-off-by: Sebastian Ramacher --- doc/man/zathurarc.5.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/man/zathurarc.5.rst b/doc/man/zathurarc.5.rst index 523ce8a..325b217 100644 --- a/doc/man/zathurarc.5.rst +++ b/doc/man/zathurarc.5.rst @@ -741,7 +741,7 @@ 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>[: ...]]. The last value in the list will be used for all other number of pages per row if not set -explicitely. +explicitly. Per default, the first column is set to 2 for double-page layout. From 7717d7691eb4acbf679d5f9de896db1dc4f101de Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sat, 23 Apr 2016 23:58:50 +0200 Subject: [PATCH 02/46] Fix typo --- zathura/database.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/database.h b/zathura/database.h index 8a5140b..eb72364 100644 --- a/zathura/database.h +++ b/zathura/database.h @@ -36,7 +36,7 @@ struct _ZathuraDatabaseInterface { GTypeInterface parent_iface; - /* interface methords */ + /* interface methods */ bool (*add_bookmark)(ZathuraDatabase* db, const char* file, zathura_bookmark_t* bookmark); bool (*remove_bookmark)(ZathuraDatabase* db, const char* file, const char* id); From e70316b2368b36ac9b7060ffcc33f8d2ad227878 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sat, 23 Apr 2016 23:59:06 +0200 Subject: [PATCH 03/46] CS Signed-off-by: Sebastian Ramacher --- zathura/page-widget.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zathura/page-widget.c b/zathura/page-widget.c index ad27c27..651efa4 100644 --- a/zathura/page-widget.c +++ b/zathura/page-widget.c @@ -114,7 +114,7 @@ zathura_page_widget_class_init(ZathuraPageClass* class) g_type_class_add_private(class, sizeof(zathura_page_widget_private_t)); /* overwrite methods */ - GtkWidgetClass* widget_class = GTK_WIDGET_CLASS(class); + GtkWidgetClass* widget_class = GTK_WIDGET_CLASS(class); widget_class->draw = zathura_page_widget_draw; widget_class->size_allocate = zathura_page_widget_size_allocate; widget_class->button_press_event = cb_zathura_page_widget_button_press_event; @@ -208,11 +208,11 @@ static void zathura_page_widget_init(ZathuraPage* widget) { zathura_page_widget_private_t* priv = ZATHURA_PAGE_GET_PRIVATE(widget); - priv->page = NULL; - priv->surface = NULL; - priv->thumbnail = NULL; - priv->render_request = NULL; - priv->cached = false; + priv->page = NULL; + priv->surface = NULL; + priv->thumbnail = NULL; + priv->render_request = NULL; + priv->cached = false; priv->links.list = NULL; priv->links.retrieved = false; From d428ba3c7766b9ba01903ee9dd468b15936219e9 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 24 Apr 2016 17:43:12 +0200 Subject: [PATCH 04/46] Fix a macro --- zathura/page-widget.h | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/zathura/page-widget.h b/zathura/page-widget.h index d18c63f..79057dc 100644 --- a/zathura/page-widget.h +++ b/zathura/page-widget.h @@ -25,18 +25,17 @@ struct zathura_page_widget_class_s GtkDrawingAreaClass parent_class; }; -#define ZATHURA_TYPE_PAGE \ - (zathura_page_widget_get_type ()) -#define ZATHURA_PAGE(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST ((obj), ZATHURA_TYPE_PAGE, ZathuraPage)) -#define ZATHURA_PAGE_CLASS(obj) \ - (G_TYPE_CHECK_CLASS_CAST ((obj), ZATHURA_TYPE_PAGE, ZathuraPageClass)) -#define ZATHURA_IS_PAGE(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ZATHURA_TYPE_PAGE)) -#define ZATHURA_IS_PAGE_CLASS(obj) \ - (G_TYPE_CHECK_CLASS_TYPE ((obj), ZATHURA_TYPE_PAGE)) -#define ZATHURA_PAGE_GET_CLASS \ - (G_TYPE_INSTANCE_GET_CLASS ((obj), ZATHURA_TYPE_PAGE, ZathuraPageClass)) +#define ZATHURA_TYPE_PAGE (zathura_page_widget_get_type()) +#define ZATHURA_PAGE(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), ZATHURA_TYPE_PAGE, ZathuraPage)) +#define ZATHURA_PAGE_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_CAST((obj), ZATHURA_TYPE_PAGE, ZathuraPageClass)) +#define ZATHURA_IS_PAGE(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), ZATHURA_TYPE_PAGE)) +#define ZATHURA_IS_PAGE_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_TYPE((obj), ZATHURA_TYPE_PAGE)) +#define ZATHURA_PAGE_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS((obj), ZATHURA_TYPE_PAGE, ZathuraPageClass)) /** * Returns the type of the page view widget. From 09c7f540abc15dd7f2e657e571c28c1771addb0e Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 24 Apr 2016 18:26:54 +0200 Subject: [PATCH 05/46] Refactor file monitor and add option to reload on SIGHUP Signed-off-by: Sebastian Ramacher --- doc/man/zathurarc.5.rst | 10 ++- zathura/callbacks.c | 12 +-- zathura/callbacks.h | 6 +- zathura/config.c | 1 + zathura/file-monitor-glib.c | 107 +++++++++++++++++++++++++ zathura/file-monitor-glib.h | 33 ++++++++ zathura/file-monitor-signal.c | 80 +++++++++++++++++++ zathura/file-monitor-signal.h | 33 ++++++++ zathura/file-monitor.c | 146 ++++++++++++++++++++++++++++++++++ zathura/file-monitor.h | 79 ++++++++++++++++++ zathura/shortcuts.c | 8 +- zathura/zathura.c | 51 +++--------- zathura/zathura.h | 5 +- 13 files changed, 509 insertions(+), 62 deletions(-) create mode 100644 zathura/file-monitor-glib.c create mode 100644 zathura/file-monitor-glib.h create mode 100644 zathura/file-monitor-signal.c create mode 100644 zathura/file-monitor-signal.h create mode 100644 zathura/file-monitor.c create mode 100644 zathura/file-monitor.h diff --git a/doc/man/zathurarc.5.rst b/doc/man/zathurarc.5.rst index 325b217..d7e0a62 100644 --- a/doc/man/zathurarc.5.rst +++ b/doc/man/zathurarc.5.rst @@ -661,13 +661,21 @@ values are "plain", "sqlite" (if built with sqlite support) and "null". If * Default value: plain dbus-service -^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^ En/Disables the D-Bus service. If the services is disabled, SyncTeX forward synchronization is not available. * Value type: Boolean * Default value: true +filemonitor +^^^^^^^^^^^ +Defines the filemonitor backend. Possible values are "glib" and "signal" (if +signal handling is supported). + +* Value type: String +* Default value: glib + incremental-search ^^^^^^^^^^^^^^^^^^ En/Disables incremental search (search while typing). diff --git a/zathura/callbacks.c b/zathura/callbacks.c index 070796d..192b5de 100644 --- a/zathura/callbacks.c +++ b/zathura/callbacks.c @@ -376,20 +376,12 @@ file_monitor_reload(void* data) } void -cb_file_monitor(GFileMonitor* monitor, GFile* file, GFile* UNUSED(other_file), GFileMonitorEvent event, girara_session_t* session) +cb_file_monitor(ZathuraFileMonitor* monitor, girara_session_t* session) { g_return_if_fail(monitor != NULL); - g_return_if_fail(file != NULL); g_return_if_fail(session != NULL); - switch (event) { - case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT: - case G_FILE_MONITOR_EVENT_CREATED: - g_main_context_invoke(NULL, file_monitor_reload, session); - break; - default: - return; - } + g_main_context_invoke(NULL, file_monitor_reload, session); } static gboolean diff --git a/zathura/callbacks.h b/zathura/callbacks.h index eb41db9..a357028 100644 --- a/zathura/callbacks.h +++ b/zathura/callbacks.h @@ -125,13 +125,9 @@ bool cb_sc_display_link(GtkEntry* entry, girara_session_t* session); * Emitted when file has been changed * * @param monitor The file monitor - * @param file The file - * @param other_file A file or NULL - * @param event The monitor event * @param session The girara session */ -void cb_file_monitor(GFileMonitor* monitor, GFile* file, GFile* other_file, - GFileMonitorEvent event, girara_session_t* session); +void cb_file_monitor(ZathuraFileMonitor* monitor, girara_session_t* session); /** * Callback to read new password for file that should be opened diff --git a/zathura/config.c b/zathura/config.c index f0037ec..359b18b 100644 --- a/zathura/config.c +++ b/zathura/config.c @@ -142,6 +142,7 @@ config_load_default(zathura_t* zathura) /* zathura settings */ girara_setting_add(gsession, "database", "plain", STRING, true, _("Database backend"), NULL, NULL); + girara_setting_add(gsession, "filemonitor", "glib", STRING, true, _("File monitor backend"), NULL, NULL); int_value = 10; girara_setting_add(gsession, "zoom-step", &int_value, INT, false, _("Zoom step"), NULL, NULL); int_value = 1; diff --git a/zathura/file-monitor-glib.c b/zathura/file-monitor-glib.c new file mode 100644 index 0000000..c707a84 --- /dev/null +++ b/zathura/file-monitor-glib.c @@ -0,0 +1,107 @@ +/* See LICENSE file for license and copyright information */ + +#include "file-monitor-glib.h" +#include "macros.h" + +#include + +struct zathura_glibfilemonitor_s +{ + ZathuraFileMonitor parent; + GFileMonitor* monitor; /**< File monitor */ + GFile* file; /**< File for file monitor */ +}; + +G_DEFINE_TYPE(ZathuraGLibFileMonitor, zathura_glibfilemonitor, + ZATHURA_TYPE_FILEMONITOR) + +static void +file_changed(GFileMonitor* UNUSED(monitor), GFile* UNUSED(file), + GFile* UNUSED(other_file), GFileMonitorEvent event, + ZathuraGLibFileMonitor* file_monitor) +{ + switch (event) { + case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT: + case G_FILE_MONITOR_EVENT_CREATED: + g_signal_emit_by_name(file_monitor, "reload-file"); + break; + default: + return; + } +} + +static void +start(ZathuraFileMonitor* file_monitor) +{ + ZathuraGLibFileMonitor* glib_file_monitor = + ZATHURA_GLIBFILEMONITOR(file_monitor); + + const char* file_path = + zathura_filemonitor_get_filepath(file_monitor); + + /* install file monitor */ + char* file_uri = g_filename_to_uri(file_path, NULL, NULL); + if (file_uri == NULL) { + return; + } + + glib_file_monitor->file = g_file_new_for_uri(file_uri); + g_free(file_uri); + if (glib_file_monitor->file == NULL) { + return; + } + + glib_file_monitor->monitor = g_file_monitor_file( + glib_file_monitor->file, G_FILE_MONITOR_NONE, NULL, NULL); + if (glib_file_monitor->monitor != NULL) { + g_signal_connect_object(G_OBJECT(glib_file_monitor->monitor), "changed", + G_CALLBACK(file_changed), glib_file_monitor, 0); + } +} + +static void +stop(ZathuraFileMonitor* file_monitor) +{ + ZathuraGLibFileMonitor* glib_file_monitor = + ZATHURA_GLIBFILEMONITOR(file_monitor); + + if (glib_file_monitor->monitor != NULL) { + g_file_monitor_cancel(glib_file_monitor->monitor); + } + + g_clear_object(&glib_file_monitor->monitor); + g_clear_object(&glib_file_monitor->file); +} + +static void +dispose(GObject* object) +{ + stop(ZATHURA_FILEMONITOR(object)); + + G_OBJECT_CLASS(zathura_glibfilemonitor_parent_class)->dispose(object); +} + +static void +finalize(GObject* object) +{ + G_OBJECT_CLASS(zathura_glibfilemonitor_parent_class)->finalize(object); +} + +static void +zathura_glibfilemonitor_class_init(ZathuraGLibFileMonitorClass* class) +{ + ZathuraFileMonitorClass* filemonitor_class = ZATHURA_FILEMONITOR_CLASS(class); + filemonitor_class->start = start; + filemonitor_class->stop = stop; + + GObjectClass* object_class = G_OBJECT_CLASS(class); + object_class->dispose = dispose; + object_class->finalize = finalize; +} + +static void +zathura_glibfilemonitor_init(ZathuraGLibFileMonitor* glibfilemonitor) +{ + glibfilemonitor->monitor = NULL; + glibfilemonitor->file = NULL; +} diff --git a/zathura/file-monitor-glib.h b/zathura/file-monitor-glib.h new file mode 100644 index 0000000..fde3979 --- /dev/null +++ b/zathura/file-monitor-glib.h @@ -0,0 +1,33 @@ +/* See LICENSE file for license and copyright information */ + +#ifndef FILEMONITOR_GLIB_H +#define FILEMONITOR_GLIB_H + +#include "file-monitor.h" + +#define ZATHURA_TYPE_GLIBFILEMONITOR (zathura_glibfilemonitor_get_type()) +#define ZATHURA_GLIBFILEMONITOR(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), ZATHURA_TYPE_GLIBFILEMONITOR, \ + ZathuraGLibFileMonitor)) +#define ZATHURA_GLIBFILEMONITOR_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_CAST((obj), ZATHURA_TYPE_GLIBFILEMONITOR, \ + ZathuraGLibFileMonitorClass)) +#define ZATHURA_IS_GLIBFILEMONITOR(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), ZATHURA_TYPE_GLIBFILEMONITOR)) +#define ZATHURA_IS_GLIBFILEMONITOR_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_TYPE((obj), ZATHURA_TYPE_GLIBFILEMONITOR)) +#define ZATHURA_GLIBFILEMONITOR_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS((obj), ZATHURA_TYPE_GLIBFILEMONITOR, \ + ZathuraGLibFileMonitorClass)) + +typedef struct zathura_glibfilemonitor_s ZathuraGLibFileMonitor; +typedef struct zathura_glibfilemonitor_class_s ZathuraGLibFileMonitorClass; + +struct zathura_glibfilemonitor_class_s +{ + ZathuraFileMonitorClass parent_class; +}; + +GType zathura_glibfilemonitor_get_type(void); + +#endif diff --git a/zathura/file-monitor-signal.c b/zathura/file-monitor-signal.c new file mode 100644 index 0000000..fe027a2 --- /dev/null +++ b/zathura/file-monitor-signal.c @@ -0,0 +1,80 @@ +/* See LICENSE file for license and copyright information */ + +#include "file-monitor-signal.h" + +#ifdef G_OS_UNIX +#include +#endif + +struct zathura_signalfilemonitor_s +{ + ZathuraFileMonitor parent; + gint handle; +}; + +G_DEFINE_TYPE(ZathuraSignalFileMonitor, zathura_signalfilemonitor, + ZATHURA_TYPE_FILEMONITOR) + +static gboolean +signal_handler(gpointer data) +{ + if (data == NULL) { + return TRUE; + } + + ZathuraSignalFileMonitor* signalfilemonitor = data; + + g_signal_emit_by_name(signalfilemonitor, "reload-file"); + + return TRUE; +} + +static void +start(ZathuraFileMonitor* file_monitor) +{ +#ifdef G_OS_UNIX + ZathuraSignalFileMonitor* signal_file_monitor = + ZATHURA_SIGNALFILEMONITOR(file_monitor); + + signal_file_monitor->handle = + g_unix_signal_add(SIGHUP, signal_handler, signal_file_monitor); +#endif +} + +static void +stop(ZathuraFileMonitor* file_monitor) +{ +#ifdef G_OS_UNIX + ZathuraSignalFileMonitor* signal_file_monitor = + ZATHURA_SIGNALFILEMONITOR(file_monitor); + + if (signal_file_monitor->handle > 0) { + g_source_remove(signal_file_monitor->handle); + } +#endif +} + +static void +zathura_signalfilemonitor_finalize(GObject* object) +{ + stop(ZATHURA_FILEMONITOR(object)); + + G_OBJECT_CLASS(zathura_signalfilemonitor_parent_class)->finalize(object); +} + +static void +zathura_signalfilemonitor_class_init(ZathuraSignalFileMonitorClass* class) +{ + ZathuraFileMonitorClass* filemonitor_class = ZATHURA_FILEMONITOR_CLASS(class); + filemonitor_class->start = start; + filemonitor_class->stop = stop; + + GObjectClass* object_class = G_OBJECT_CLASS(class); + object_class->finalize = zathura_signalfilemonitor_finalize; +} + +static void +zathura_signalfilemonitor_init(ZathuraSignalFileMonitor* signalfilemonitor) +{ + signalfilemonitor->handle = 0; +} diff --git a/zathura/file-monitor-signal.h b/zathura/file-monitor-signal.h new file mode 100644 index 0000000..ab3b033 --- /dev/null +++ b/zathura/file-monitor-signal.h @@ -0,0 +1,33 @@ +/* See LICENSE file for license and copyright information */ + +#ifndef FILEMONITOR_SIGNAL_H +#define FILEMONITOR_SIGNAL_H + +#include "file-monitor.h" + +#define ZATHURA_TYPE_SIGNALFILEMONITOR (zathura_signalfilemonitor_get_type()) +#define ZATHURA_SIGNALFILEMONITOR(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), ZATHURA_TYPE_SIGNALFILEMONITOR, \ + ZathuraSignalFileMonitor)) +#define ZATHURA_SIGNALFILEMONITOR_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_CAST((obj), ZATHURA_TYPE_SIGNALFILEMONITOR, \ + ZathuraSignalFileMonitorClass)) +#define ZATHURA_IS_SIGNALFILEMONITOR(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), ZATHURA_TYPE_SIGNALFILEMONITOR)) +#define ZATHURA_IS_SIGNALFILEMONITOR_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_TYPE((obj), ZATHURA_TYPE_SIGNALFILEMONITOR)) +#define ZATHURA_SIGNALFILEMONITOR_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS((obj), ZATHURA_TYPE_SIGNALFILEMONITOR, \ + ZathuraSignalFileMonitorClass)) + +typedef struct zathura_signalfilemonitor_s ZathuraSignalFileMonitor; +typedef struct zathura_signalfilemonitor_class_s ZathuraSignalFileMonitorClass; + +struct zathura_signalfilemonitor_class_s +{ + ZathuraFileMonitorClass parent_class; +}; + +GType zathura_signalfilemonitor_get_type(void); + +#endif diff --git a/zathura/file-monitor.c b/zathura/file-monitor.c new file mode 100644 index 0000000..63c844b --- /dev/null +++ b/zathura/file-monitor.c @@ -0,0 +1,146 @@ +/* See LICENSE file for license and copyright information */ + +#include "file-monitor.h" +#include "file-monitor-glib.h" +#include "file-monitor-signal.h" +#include "macros.h" + +G_DEFINE_TYPE(ZathuraFileMonitor, zathura_filemonitor, G_TYPE_OBJECT) + +typedef struct private_s { + char* file_path; +} private_t; + +#define GET_PRIVATE(obj) \ + (G_TYPE_INSTANCE_GET_PRIVATE((obj), ZATHURA_TYPE_FILEMONITOR, private_t)) + +enum { + PROP_0, + PROP_FILE_PATH +}; + +enum { + RELOAD_FILE, + LAST_SIGNAL +}; + +static guint signals[LAST_SIGNAL] = { 0 }; + +static void +finalize(GObject* object) +{ + ZathuraFileMonitor* file_monitor = ZATHURA_FILEMONITOR(object); + private_t* private = GET_PRIVATE(file_monitor); + + if (private->file_path != NULL) { + g_free(private->file_path); + } + + G_OBJECT_CLASS(zathura_filemonitor_parent_class)->finalize(object); +} + +static void +set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec) +{ + ZathuraFileMonitor* file_monitor = ZATHURA_FILEMONITOR(object); + private_t* private = GET_PRIVATE(file_monitor); + + switch (prop_id) { + case PROP_FILE_PATH: + if (private->file_path != NULL) { + g_free(private->file_path); + } + private->file_path = g_value_dup_string(value); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec); + } +} + +static void +get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec) +{ + ZathuraFileMonitor* file_monitor = ZATHURA_FILEMONITOR(object); + private_t* private = GET_PRIVATE(file_monitor); + + switch (prop_id) { + case PROP_FILE_PATH: + g_value_set_string(value, private->file_path); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec); + } +} + +static void +zathura_filemonitor_class_init(ZathuraFileMonitorClass* class) +{ + /* add private members */ + g_type_class_add_private(class, sizeof(private_t)); + + /* set up methods */ + class->start = NULL; + class->stop = NULL; + + GObjectClass* object_class = G_OBJECT_CLASS(class); + object_class->finalize = finalize; + object_class->set_property = set_property; + object_class->get_property = get_property; + + /* add properties */ + g_object_class_install_property( + object_class, PROP_FILE_PATH, + g_param_spec_string("file-path", "file-path", "file path to monitor", NULL, + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS)); + + /* add signals */ + signals[RELOAD_FILE] = + g_signal_new("reload-file", ZATHURA_TYPE_FILEMONITOR, G_SIGNAL_RUN_LAST, 0, + NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 0); +} + +static void +zathura_filemonitor_init(ZathuraFileMonitor* file_monitor) +{ + private_t* private = GET_PRIVATE(file_monitor); + private->file_path = NULL; +} + +const char* zathura_filemonitor_get_filepath(ZathuraFileMonitor* filemonitor) +{ + private_t* private = GET_PRIVATE(filemonitor); + + return private->file_path; +} + +ZathuraFileMonitor* +zathura_filemonitor_new(const char* file_path, + zathura_filemonitor_type_t filemonitor_type) +{ + g_return_val_if_fail(file_path != NULL, NULL); + + GObject* ret = NULL; + switch (filemonitor_type) { + case ZATHURA_FILEMONITOR_GLIB: + ret = g_object_new(ZATHURA_TYPE_GLIBFILEMONITOR, "file-path", file_path, + NULL); + break; + case ZATHURA_FILEMONITOR_SIGNAL: + ret = g_object_new(ZATHURA_TYPE_SIGNALFILEMONITOR, "file-path", file_path, + NULL); + break; + default: + g_return_val_if_fail(false, NULL); + } + + if (ret == NULL) { + return NULL; + } + + ZathuraFileMonitor* file_monitor = ZATHURA_FILEMONITOR(ret); + ZATHURA_FILEMONITOR_GET_CLASS(file_monitor)->start(file_monitor); + + return file_monitor; +} + diff --git a/zathura/file-monitor.h b/zathura/file-monitor.h new file mode 100644 index 0000000..ca65407 --- /dev/null +++ b/zathura/file-monitor.h @@ -0,0 +1,79 @@ +/* See LICENSE file for license and copyright information */ + +#ifndef FILEMONITOR_H +#define FILEMONITOR_H + +#include +#include +#include + +#define ZATHURA_TYPE_FILEMONITOR (zathura_filemonitor_get_type()) +#define ZATHURA_FILEMONITOR(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), ZATHURA_TYPE_FILEMONITOR, \ + ZathuraFileMonitor)) +#define ZATHURA_FILEMONITOR_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_CAST((obj), ZATHURA_TYPE_FILEMONITOR, \ + ZathuraFileMonitorClass)) +#define ZATHURA_IS_FILEMONITOR(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), ZATHURA_TYPE_FILEMONITOR)) +#define ZATHURA_IS_FILEMONITOR_CLASS(obj) \ + (G_TYPE_CHECK_CLASS_TYPE((obj), ZATHURA_TYPE_FILEMONITOR)) +#define ZATHURA_FILEMONITOR_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS((obj), ZATHURA_TYPE_FILEMONITOR, \ + ZathuraFileMonitorClass)) + +typedef struct zathura_filemonitor_s ZathuraFileMonitor; +typedef struct zathura_filemonitor_class_s ZathuraFileMonitorClass; + +/** + * Base class for all file monitors. + * + * The signal 'reload-file' is emitted if the monitored file changed. + */ +struct zathura_filemonitor_s +{ + GObject parent; +}; + +struct zathura_filemonitor_class_s +{ + GObjectClass parent_class; + + void (*start)(ZathuraFileMonitor*); + void (*stop)(ZathuraFileMonitor*); +}; + +/** + * Get the type of the filemonitor. + * + * @return the type + */ +GType zathura_filemonitor_get_type(void); + +/** + * Type of file monitor. + */ +typedef enum zathura_filemonitor_type_e { + ZATHURA_FILEMONITOR_GLIB, /**< Use filemonitor from GLib */ + ZATHURA_FILEMONITOR_SIGNAL /**< Reload when receiving SIGHUP */ +} zathura_filemonitor_type_t; + +/** + * Create a new file monitor. + * + * @param file_path file to monitor + * @param filemonitor_type type of file monitor + * @return new file monitor instance + */ +ZathuraFileMonitor* +zathura_filemonitor_new(const char* file_path, + zathura_filemonitor_type_t filemonitor_type); + +/** + * Get path of the monitored file. + * + * @return path of monitored file + */ +const char* zathura_filemonitor_get_filepath(ZathuraFileMonitor* filemonitor); + +#endif diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c index 77873d1..4aca805 100644 --- a/zathura/shortcuts.c +++ b/zathura/shortcuts.c @@ -434,7 +434,7 @@ sc_reload(girara_session_t* session, girara_argument_t* UNUSED(argument), g_return_val_if_fail(session->global.data != NULL, false); zathura_t* zathura = session->global.data; - if (zathura->file_monitor.file_path == NULL) { + if (zathura->file_monitor.monitor == NULL) { return false; } @@ -442,9 +442,9 @@ sc_reload(girara_session_t* session, girara_argument_t* UNUSED(argument), document_close(zathura, true); /* reopen document */ - document_open(zathura, zathura->file_monitor.file_path, NULL, - zathura->file_monitor.password, - ZATHURA_PAGE_NUMBER_UNSPECIFIED); + document_open( + zathura, zathura_filemonitor_get_filepath(zathura->file_monitor.monitor), + NULL, zathura->file_monitor.password, ZATHURA_PAGE_NUMBER_UNSPECIFIED); return false; } diff --git a/zathura/zathura.c b/zathura/zathura.c index 8c493ae..2f2f2d7 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -763,7 +763,6 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* goto error_out; } - gchar* file_uri = NULL; zathura_error_t error = ZATHURA_ERROR_OK; zathura_document_t* document = zathura_document_open(zathura, path, uri, password, &error); @@ -882,31 +881,22 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* g_free(filename); /* install file monitor */ - file_uri = g_filename_to_uri(file_path, NULL, NULL); - if (file_uri == NULL) { - goto error_free; - } - - if (zathura->file_monitor.file == NULL) { - zathura->file_monitor.file = g_file_new_for_uri(file_uri); - if (zathura->file_monitor.file == NULL) { - goto error_free; - } - } - if (zathura->file_monitor.monitor == NULL) { - zathura->file_monitor.monitor = g_file_monitor_file(zathura->file_monitor.file, G_FILE_MONITOR_NONE, NULL, NULL); + char* filemonitor_backend = NULL; + girara_setting_get(zathura->ui.session, "filemonitor", &filemonitor_backend); + zathura_filemonitor_type_t type = ZATHURA_FILEMONITOR_GLIB; +#ifdef G_OS_UNIX + if (g_strcmp0(filemonitor_backend, "signal") == 0) { + type = ZATHURA_FILEMONITOR_SIGNAL; + } +#endif + + zathura->file_monitor.monitor = zathura_filemonitor_new(file_path, type); if (zathura->file_monitor.monitor == NULL) { goto error_free; } - g_signal_connect(G_OBJECT(zathura->file_monitor.monitor), "changed", G_CALLBACK(cb_file_monitor), zathura->ui.session); - } - - if (zathura->file_monitor.file_path == NULL) { - zathura->file_monitor.file_path = g_strdup(file_path); - if (zathura->file_monitor.file_path == NULL) { - goto error_free; - } + g_signal_connect(G_OBJECT(zathura->file_monitor.monitor), "reload-file", + G_CALLBACK(cb_file_monitor), zathura->ui.session); } if (password != NULL) { @@ -1055,8 +1045,6 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* girara_set_window_title(zathura->ui.session, formatted_filename); g_free(formatted_filename); - g_free(file_uri); - /* adjust_view */ adjust_view(zathura); for (unsigned int page_id = 0; page_id < number_of_pages; page_id++) { @@ -1092,10 +1080,6 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* error_free: - if (file_uri != NULL) { - g_free(file_uri); - } - zathura_document_free(document); error_out: @@ -1233,21 +1217,10 @@ document_close(zathura_t* zathura, bool keep_monitor) /* remove monitor */ if (keep_monitor == false) { if (zathura->file_monitor.monitor != NULL) { - g_file_monitor_cancel(zathura->file_monitor.monitor); g_object_unref(zathura->file_monitor.monitor); zathura->file_monitor.monitor = NULL; } - if (zathura->file_monitor.file != NULL) { - g_object_unref(zathura->file_monitor.file); - zathura->file_monitor.file = NULL; - } - - if (zathura->file_monitor.file_path != NULL) { - g_free(zathura->file_monitor.file_path); - zathura->file_monitor.file_path = NULL; - } - if (zathura->file_monitor.password != NULL) { g_free(zathura->file_monitor.password); zathura->file_monitor.password = NULL; diff --git a/zathura/zathura.h b/zathura/zathura.h index 5c3f134..65b8b04 100644 --- a/zathura/zathura.h +++ b/zathura/zathura.h @@ -12,6 +12,7 @@ #include "macros.h" #include "types.h" #include "jumplist.h" +#include "file-monitor.h" enum { NEXT, @@ -177,9 +178,7 @@ struct zathura_s * File monitor */ struct { - GFileMonitor* monitor; /**< File monitor */ - GFile* file; /**< File for file monitor */ - gchar* file_path; /**< Save file path */ + ZathuraFileMonitor* monitor; /**< File monitor */ gchar* password; /**< Save password */ } file_monitor; From 019416f943a836b23a5db7c0594f1bffccd661bd Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 24 Apr 2016 18:49:37 +0200 Subject: [PATCH 06/46] Print debug output on invalid filemonitor type --- zathura/file-monitor.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zathura/file-monitor.c b/zathura/file-monitor.c index 63c844b..8e9ed20 100644 --- a/zathura/file-monitor.c +++ b/zathura/file-monitor.c @@ -2,9 +2,13 @@ #include "file-monitor.h" #include "file-monitor-glib.h" +#ifdef G_OS_UNIX #include "file-monitor-signal.h" +#endif #include "macros.h" +#include + G_DEFINE_TYPE(ZathuraFileMonitor, zathura_filemonitor, G_TYPE_OBJECT) typedef struct private_s { @@ -126,11 +130,14 @@ zathura_filemonitor_new(const char* file_path, ret = g_object_new(ZATHURA_TYPE_GLIBFILEMONITOR, "file-path", file_path, NULL); break; +#ifdef G_OS_UNIX case ZATHURA_FILEMONITOR_SIGNAL: ret = g_object_new(ZATHURA_TYPE_SIGNALFILEMONITOR, "file-path", file_path, NULL); break; +#endif default: + girara_debug("invalid filemonitor type: %d", filemonitor_type); g_return_val_if_fail(false, NULL); } From c7236aa8dab49d47bf64922cf242dcc03bf9423d Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 29 Apr 2016 13:38:19 +0200 Subject: [PATCH 07/46] Debug output for file completion Signed-off-by: Sebastian Ramacher --- zathura/completion.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/zathura/completion.c b/zathura/completion.c index 0081f22..a3beeb5 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -39,6 +39,8 @@ list_files(zathura_t* zathura, const char* current_path, const char* current_fil return NULL; } + girara_debug("checking files in %s", current_path); + /* read directory */ GDir* dir = g_dir_open(current_path, 0, NULL); if (dir == NULL) { @@ -79,20 +81,23 @@ list_files(zathura_t* zathura, const char* current_path, const char* current_fil }; char* full_path = g_strdup_printf("%s%s%s", current_path, tmp, e_name); + g_free(e_name); if (g_file_test(full_path, G_FILE_TEST_IS_DIR) == true) { if (show_directories == false) { - g_free(e_name); + girara_debug("ignoring %s (directory)", full_path); g_free(full_path); continue; } + girara_debug("adding %s (directory)", full_path); girara_list_append(res, full_path); } else if (check_file_ext == false || file_valid_extension(zathura, full_path) == true) { + girara_debug("adding %s (file)", full_path); girara_list_append(res, full_path); } else { + girara_debug("ignoring %s (file)", full_path); g_free(full_path); } - g_free(e_name); } g_dir_close(dir); @@ -200,6 +205,7 @@ list_files_for_cc(zathura_t* zathura, const char* input, bool check_file_ext, in const size_t path_len = strlen(path); GIRARA_LIST_FOREACH(recent_files, const char*, iter, file) if (strncmp(path, file, path_len) == 0) { + girara_debug("adding %s (recent file)", file); girara_completion_group_add_element(history_group, file, NULL); } GIRARA_LIST_FOREACH_END(recent_files, const char*, iter, file); From 19429574f4a9321c98df313cec823d74c3c6ad26 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 29 Apr 2016 18:14:59 +0200 Subject: [PATCH 08/46] CS 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 a3beeb5..016215a 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -166,7 +166,7 @@ list_files_for_cc(zathura_t* zathura, const char* input, bool check_file_ext, in /* Append a slash if the given argument is a directory */ bool is_dir = (path[strlen(path) - 1] == '/') ? true : false; - if ((g_file_test(path, G_FILE_TEST_IS_DIR) == TRUE) && !is_dir) { + if ((g_file_test(path, G_FILE_TEST_IS_DIR) == TRUE) && is_dir == false) { char* tmp_path = g_strdup_printf("%s/", path); g_free(path); path = tmp_path; From 25b276246b63de819b6fdc82cb61258fe6a5eb97 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 29 Apr 2016 18:15:49 +0200 Subject: [PATCH 09/46] More debug output Signed-off-by: Sebastian Ramacher --- zathura/completion.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura/completion.c b/zathura/completion.c index 016215a..5e269f6 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -105,6 +105,7 @@ list_files(zathura_t* zathura, const char* current_path, const char* current_fil if (girara_list_size(res) == 1) { char* path = girara_list_nth(res, 0); if (g_file_test(path, G_FILE_TEST_IS_DIR) == true) { + girara_debug("changing to directory %s", path); char* newpath = g_strdup_printf("%s/", path); girara_list_clear(res); girara_list_append(res, newpath); From d3612f3c9b17a701f1deae29407f5821d681ae3e Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 29 Apr 2016 18:57:35 +0200 Subject: [PATCH 10/46] Remove useless g_strdup Signed-off-by: Sebastian Ramacher --- zathura/completion.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/zathura/completion.c b/zathura/completion.c index 5e269f6..92a25c7 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -175,12 +175,10 @@ list_files_for_cc(zathura_t* zathura, const char* input, bool check_file_ext, in } /* get current path */ - char* tmp = g_strdup(path); - current_path = is_dir ? g_strdup(tmp) : g_strdup(dirname(tmp)); - g_free(tmp); + current_path = is_dir ? g_strdup(path) : g_path_get_dirname(path); /* get current file */ - gchar* current_file = is_dir ? "" : basename(path); + gchar* current_file = is_dir ? "" : basename(path); const size_t current_file_length = strlen(current_file); /* read directory */ From 2805cf1f2ccf6173f3238a65b7a306865b04eca2 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 29 Apr 2016 19:25:29 +0200 Subject: [PATCH 11/46] Use g_get_current_dir instead Signed-off-by: Sebastian Ramacher --- zathura/completion.c | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/zathura/completion.c b/zathura/completion.c index 92a25c7..002266b 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -145,21 +145,16 @@ list_files_for_cc(zathura_t* zathura, const char* input, bool check_file_ext, in /* If the path does not begin with a slash we update the path with the current * working directory */ if (strlen(path) == 0 || path[0] != '/') { - long path_max; -#ifdef PATH_MAX - path_max = PATH_MAX; -#else - path_max = pathconf(path,_PC_PATH_MAX); - if (path_max <= 0) - path_max = 4096; -#endif - - char cwd[path_max]; - if (getcwd(cwd, path_max) == NULL) { + char* cwd = g_get_current_dir(); + if (cwd == NULL) { goto error_free; } char* tmp_path = g_strdup_printf("%s/%s", cwd, path); + g_free(cwd); + if (tmp_path == NULL) { + goto error_free; + } g_free(path); path = tmp_path; From 67d1131bbb66be610b6b4c2cfb277d1d13e06687 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 29 Apr 2016 20:48:49 +0200 Subject: [PATCH 12/46] Fix infinite loop on NULL Signed-off-by: Sebastian Ramacher --- zathura/completion.c | 4 ++-- zathura/marks.c | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/zathura/completion.c b/zathura/completion.c index 002266b..d073a5b 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -294,11 +294,11 @@ cc_bookmarks(girara_session_t* session, const char* input) error_free: - if (completion) { + if (completion != NULL) { girara_completion_free(completion); } - if (group) { + if (group != NULL) { girara_completion_group_free(group); } diff --git a/zathura/marks.c b/zathura/marks.c index 5ec6bf2..5658a07 100644 --- a/zathura/marks.c +++ b/zathura/marks.c @@ -160,6 +160,7 @@ cmd_marks_delete(girara_session_t* session, girara_list_t* argument_list) GIRARA_LIST_FOREACH(argument_list, char*, iter, key_string) if (key_string == NULL) { + girara_list_iterator_next(iter); continue; } From 0069ef28609e7aaef6dee5a47e45befaf0239202 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 1 May 2016 18:26:29 +0200 Subject: [PATCH 13/46] Simplify check Signed-off-by: Sebastian Ramacher --- zathura/marks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/marks.c b/zathura/marks.c index 5658a07..73c39d2 100644 --- a/zathura/marks.c +++ b/zathura/marks.c @@ -127,7 +127,7 @@ cmd_marks_add(girara_session_t* session, girara_list_t* argument_list) return false; } - if (strlen(key_string) < 1 || strlen(key_string) > 1) { + if (strlen(key_string) != 1) { return false; } From c9672357d2b55f6be47e9609a1b42b1c2b8f951b Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 29 May 2016 12:05:03 +0200 Subject: [PATCH 14/46] Include girara/session.h so that Window is available in any case --- zathura/zathura.h | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura/zathura.h b/zathura/zathura.h index 65b8b04..84e0cb6 100644 --- a/zathura/zathura.h +++ b/zathura/zathura.h @@ -5,6 +5,7 @@ #include #include +#include #include #ifdef GDK_WINDOWING_X11 #include From b85e8c389fdb698b873da15a1cc7a0211dd78fda Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 24 Jun 2016 18:56:45 +0200 Subject: [PATCH 15/46] Add debug output Signed-off-by: Sebastian Ramacher --- zathura/file-monitor-glib.c | 10 ++++++++-- zathura/file-monitor-signal.c | 2 ++ zathura/file-monitor.c | 2 ++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/zathura/file-monitor-glib.c b/zathura/file-monitor-glib.c index c707a84..2ea0bb5 100644 --- a/zathura/file-monitor-glib.c +++ b/zathura/file-monitor-glib.c @@ -3,6 +3,7 @@ #include "file-monitor-glib.h" #include "macros.h" +#include #include struct zathura_glibfilemonitor_s @@ -16,15 +17,20 @@ G_DEFINE_TYPE(ZathuraGLibFileMonitor, zathura_glibfilemonitor, ZATHURA_TYPE_FILEMONITOR) static void -file_changed(GFileMonitor* UNUSED(monitor), GFile* UNUSED(file), +file_changed(GFileMonitor* UNUSED(monitor), GFile* file, GFile* UNUSED(other_file), GFileMonitorEvent event, ZathuraGLibFileMonitor* file_monitor) { switch (event) { case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT: - case G_FILE_MONITOR_EVENT_CREATED: + case G_FILE_MONITOR_EVENT_CREATED: { + char* uri = g_file_get_uri(file); + girara_debug("received file-monitor event for %s", uri); + g_free(uri); + g_signal_emit_by_name(file_monitor, "reload-file"); break; + } default: return; } diff --git a/zathura/file-monitor-signal.c b/zathura/file-monitor-signal.c index fe027a2..a00d035 100644 --- a/zathura/file-monitor-signal.c +++ b/zathura/file-monitor-signal.c @@ -2,6 +2,7 @@ #include "file-monitor-signal.h" +#include #ifdef G_OS_UNIX #include #endif @@ -24,6 +25,7 @@ signal_handler(gpointer data) ZathuraSignalFileMonitor* signalfilemonitor = data; + girara_debug("SIGHUP received"); g_signal_emit_by_name(signalfilemonitor, "reload-file"); return TRUE; diff --git a/zathura/file-monitor.c b/zathura/file-monitor.c index 8e9ed20..51094da 100644 --- a/zathura/file-monitor.c +++ b/zathura/file-monitor.c @@ -127,11 +127,13 @@ zathura_filemonitor_new(const char* file_path, GObject* ret = NULL; switch (filemonitor_type) { case ZATHURA_FILEMONITOR_GLIB: + girara_debug("using glib file monitor"); ret = g_object_new(ZATHURA_TYPE_GLIBFILEMONITOR, "file-path", file_path, NULL); break; #ifdef G_OS_UNIX case ZATHURA_FILEMONITOR_SIGNAL: + girara_debug("using SIGHUB file monitor"); ret = g_object_new(ZATHURA_TYPE_SIGNALFILEMONITOR, "file-path", file_path, NULL); break; From 97cbbe7c06a3906827ae2da04a7fd9860a64e642 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 24 Jun 2016 19:14:39 +0200 Subject: [PATCH 16/46] More debug output Signed-off-by: Sebastian Ramacher --- zathura/file-monitor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura/file-monitor.c b/zathura/file-monitor.c index 51094da..26a1ded 100644 --- a/zathura/file-monitor.c +++ b/zathura/file-monitor.c @@ -147,6 +147,7 @@ zathura_filemonitor_new(const char* file_path, return NULL; } + girara_debug("starting file monitor"); ZathuraFileMonitor* file_monitor = ZATHURA_FILEMONITOR(ret); ZATHURA_FILEMONITOR_GET_CLASS(file_monitor)->start(file_monitor); From cbfcd8a1b4d40c222cb79ce2ef851b9a0265ffa2 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 24 Jun 2016 19:17:18 +0200 Subject: [PATCH 17/46] Remove unnecessary code Signed-off-by: Sebastian Ramacher --- zathura/file-monitor-glib.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/zathura/file-monitor-glib.c b/zathura/file-monitor-glib.c index 2ea0bb5..418d504 100644 --- a/zathura/file-monitor-glib.c +++ b/zathura/file-monitor-glib.c @@ -46,13 +46,7 @@ start(ZathuraFileMonitor* file_monitor) zathura_filemonitor_get_filepath(file_monitor); /* install file monitor */ - char* file_uri = g_filename_to_uri(file_path, NULL, NULL); - if (file_uri == NULL) { - return; - } - - glib_file_monitor->file = g_file_new_for_uri(file_uri); - g_free(file_uri); + glib_file_monitor->file = g_file_new_for_path(file_path); if (glib_file_monitor->file == NULL) { return; } From d913eda04aff86beeda1466adea2c22d44f6487c Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 24 Jun 2016 19:46:09 +0200 Subject: [PATCH 18/46] Simplify Signed-off-by: Sebastian Ramacher --- zathura/zathura.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/zathura.c b/zathura/zathura.c index 2f2f2d7..1cb8f8d 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -1007,7 +1007,7 @@ document_open(zathura_t* zathura, const char* path, const char* uri, const char* } /* read first_page_column list */ - if (file_info.first_page_column_list != NULL && strcmp(file_info.first_page_column_list, "")) { + if (file_info.first_page_column_list != NULL && *file_info.first_page_column_list != '\0') { first_page_column_list = file_info.first_page_column_list; file_info.first_page_column_list = NULL; } else { From 945929ce5f5297b7cadaf5edec867967952aec3c Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 2 Aug 2016 11:36:41 +0200 Subject: [PATCH 19/46] Remove redundant check --- zathura/jumplist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/jumplist.c b/zathura/jumplist.c index f7e3c57..84070c1 100644 --- a/zathura/jumplist.c +++ b/zathura/jumplist.c @@ -99,7 +99,7 @@ zathura_jumplist_trim(zathura_t* zathura) --zathura->jumplist.size; } - if (zathura->jumplist.size == 0 || (zathura->jumplist.size != 0 && zathura->jumplist.cur != NULL)) { + if (zathura->jumplist.size == 0 || zathura->jumplist.cur != NULL) { girara_list_iterator_free(cur); } else { zathura->jumplist.cur = cur; From 5202554f7e99c0b48eaa7993d8d5b13fe93f1aaf Mon Sep 17 00:00:00 2001 From: "Panashe M. Fundira" Date: Wed, 21 Sep 2016 10:33:25 -0400 Subject: [PATCH 20/46] Fix typo in zathurarc man page --- doc/configuration/set.rst | 2 +- doc/man/zathurarc.5.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/configuration/set.rst b/doc/configuration/set.rst index 0e0e066..20aaedb 100644 --- a/doc/configuration/set.rst +++ b/doc/configuration/set.rst @@ -1,7 +1,7 @@ set - Changing options ====================== -In addition to the build-in *:set* command zathura offers more options +In addition to the built-in *:set* command zathura offers more options to be changed and makes those changes permanent. To overwrite an option you just have to add a line structured like the following diff --git a/doc/man/zathurarc.5.rst b/doc/man/zathurarc.5.rst index 523ce8a..bbeeec7 100644 --- a/doc/man/zathurarc.5.rst +++ b/doc/man/zathurarc.5.rst @@ -22,7 +22,7 @@ COMMANDS set - Changing options ---------------------- -In addition to the build-in ``:set`` command zathura offers more options to be +In addition to the built-in ``:set`` command zathura offers more options to be changed and makes those changes permanent. To overwrite an option you just have to add a line structured like the following From be717529c29a71c0489f8cb0b675767971df632d Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 25 Oct 2016 13:37:42 +0200 Subject: [PATCH 21/46] Remove function pointer casts Signed-off-by: Sebastian Ramacher --- zathura/callbacks.c | 14 +++++++++----- zathura/callbacks.h | 6 +++--- zathura/shortcuts.c | 4 ++-- zathura/zathura.c | 2 +- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/zathura/callbacks.c b/zathura/callbacks.c index 192b5de..8c3fc65 100644 --- a/zathura/callbacks.c +++ b/zathura/callbacks.c @@ -357,14 +357,16 @@ handle_link(GtkEntry* entry, girara_session_t* session, } bool -cb_sc_follow(GtkEntry* entry, girara_session_t* session) +cb_sc_follow(GtkEntry* entry, void* data) { + girara_session_t* session = data; return handle_link(entry, session, ZATHURA_LINK_ACTION_FOLLOW); } bool -cb_sc_display_link(GtkEntry* entry, girara_session_t* session) +cb_sc_display_link(GtkEntry* entry, void* data) { + girara_session_t* session = data; return handle_link(entry, session, ZATHURA_LINK_ACTION_DISPLAY); } @@ -395,7 +397,7 @@ password_dialog(gpointer data) "Incorrect password. Enter password:", true, NULL, - (girara_callback_inputbar_activate_t) cb_password_dialog, + cb_password_dialog, dialog ); } @@ -404,12 +406,14 @@ password_dialog(gpointer data) } bool -cb_password_dialog(GtkEntry* entry, zathura_password_dialog_info_t* dialog) +cb_password_dialog(GtkEntry* entry, void* data) { - if (entry == NULL || dialog == NULL) { + if (entry == NULL || data == NULL) { goto error_ret; } + zathura_password_dialog_info_t* dialog = data; + if (dialog->path == NULL) { free(dialog); goto error_ret; diff --git a/zathura/callbacks.h b/zathura/callbacks.h index a357028..d989996 100644 --- a/zathura/callbacks.h +++ b/zathura/callbacks.h @@ -110,7 +110,7 @@ void cb_index_row_activated(GtkTreeView* tree_view, GtkTreePath* path, * @param session The girara session * @return true if no error occurred and the event has been handled */ -bool cb_sc_follow(GtkEntry* entry, girara_session_t* session); +bool cb_sc_follow(GtkEntry* entry, void* session); /** * Called when input has been passed to the sc_display_link dialog @@ -119,7 +119,7 @@ bool cb_sc_follow(GtkEntry* entry, girara_session_t* session); * @param session The girara session * @return true if no error occurred and the event has been handled */ -bool cb_sc_display_link(GtkEntry* entry, girara_session_t* session); +bool cb_sc_display_link(GtkEntry* entry, void* session); /** * Emitted when file has been changed @@ -136,7 +136,7 @@ void cb_file_monitor(ZathuraFileMonitor* monitor, girara_session_t* session); * @param dialog The dialog information * @return true if input has been handled */ -bool cb_password_dialog(GtkEntry* entry, zathura_password_dialog_info_t* dialog); +bool cb_password_dialog(GtkEntry* entry, void* dialog); /** * Emitted when the view has been resized diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c index 4aca805..3390123 100644 --- a/zathura/shortcuts.c +++ b/zathura/shortcuts.c @@ -135,7 +135,7 @@ sc_display_link(girara_session_t* session, girara_argument_t* UNUSED(argument), if (show_links) { zathura_document_set_adjust_mode(zathura->document, ZATHURA_ADJUST_INPUTBAR); girara_dialog(zathura->ui.session, "Display link:", FALSE, NULL, - (girara_callback_inputbar_activate_t) cb_sc_display_link, + cb_sc_display_link, zathura->ui.session); } @@ -223,7 +223,7 @@ sc_follow(girara_session_t* session, girara_argument_t* UNUSED(argument), /* ask for input */ if (show_links == true) { zathura_document_set_adjust_mode(zathura->document, ZATHURA_ADJUST_INPUTBAR); - girara_dialog(zathura->ui.session, "Follow link:", FALSE, NULL, (girara_callback_inputbar_activate_t) cb_sc_follow, zathura->ui.session); + girara_dialog(zathura->ui.session, "Follow link:", FALSE, NULL, cb_sc_follow, zathura->ui.session); } return false; diff --git a/zathura/zathura.c b/zathura/zathura.c index 1cb8f8d..19aaa83 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -751,7 +751,7 @@ document_open_password_dialog(gpointer data) zathura_password_dialog_info_t* password_dialog_info = data; girara_dialog(password_dialog_info->zathura->ui.session, _("Enter password:"), true, NULL, - (girara_callback_inputbar_activate_t) cb_password_dialog, password_dialog_info); + cb_password_dialog, password_dialog_info); return FALSE; } From 9ee80714d40c8b21f7fd9e406259cf1504d8ca71 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 25 Oct 2016 20:59:33 +0200 Subject: [PATCH 22/46] Fix return type of callbacks Signed-off-by: Sebastian Ramacher --- zathura/callbacks.c | 2 +- zathura/callbacks.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zathura/callbacks.c b/zathura/callbacks.c index 8c3fc65..44e506b 100644 --- a/zathura/callbacks.c +++ b/zathura/callbacks.c @@ -459,7 +459,7 @@ error_ret: return false; } -bool +gboolean cb_view_resized(GtkWidget* UNUSED(widget), GtkAllocation* UNUSED(allocation), zathura_t* zathura) { if (zathura == NULL || zathura->document == NULL) { diff --git a/zathura/callbacks.h b/zathura/callbacks.h index d989996..08c44aa 100644 --- a/zathura/callbacks.h +++ b/zathura/callbacks.h @@ -146,7 +146,7 @@ bool cb_password_dialog(GtkEntry* entry, void* dialog); * @param zathura Zathura session * @return true if signal has been handled successfully */ -bool cb_view_resized(GtkWidget* widget, GtkAllocation* allocation, zathura_t* zathura); +gboolean cb_view_resized(GtkWidget* widget, GtkAllocation* allocation, zathura_t* zathura); /** * Emitted when the 'recolor' setting is changed From 32607326a9779cf9f561b69382a6d062be40498f Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 25 Oct 2016 21:04:30 +0200 Subject: [PATCH 23/46] Fix more callback return types Signed-off-by: Sebastian Ramacher --- zathura/callbacks.c | 6 +++--- zathura/callbacks.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zathura/callbacks.c b/zathura/callbacks.c index 44e506b..c5dd965 100644 --- a/zathura/callbacks.c +++ b/zathura/callbacks.c @@ -356,14 +356,14 @@ handle_link(GtkEntry* entry, girara_session_t* session, return (eval == TRUE) ? TRUE : FALSE; } -bool +gboolean cb_sc_follow(GtkEntry* entry, void* data) { girara_session_t* session = data; return handle_link(entry, session, ZATHURA_LINK_ACTION_FOLLOW); } -bool +gboolean cb_sc_display_link(GtkEntry* entry, void* data) { girara_session_t* session = data; @@ -405,7 +405,7 @@ password_dialog(gpointer data) return FALSE; } -bool +gboolean cb_password_dialog(GtkEntry* entry, void* data) { if (entry == NULL || data == NULL) { diff --git a/zathura/callbacks.h b/zathura/callbacks.h index 08c44aa..15e4ba1 100644 --- a/zathura/callbacks.h +++ b/zathura/callbacks.h @@ -110,7 +110,7 @@ void cb_index_row_activated(GtkTreeView* tree_view, GtkTreePath* path, * @param session The girara session * @return true if no error occurred and the event has been handled */ -bool cb_sc_follow(GtkEntry* entry, void* session); +gboolean cb_sc_follow(GtkEntry* entry, void* session); /** * Called when input has been passed to the sc_display_link dialog @@ -119,7 +119,7 @@ bool cb_sc_follow(GtkEntry* entry, void* session); * @param session The girara session * @return true if no error occurred and the event has been handled */ -bool cb_sc_display_link(GtkEntry* entry, void* session); +gboolean cb_sc_display_link(GtkEntry* entry, void* session); /** * Emitted when file has been changed @@ -136,7 +136,7 @@ void cb_file_monitor(ZathuraFileMonitor* monitor, girara_session_t* session); * @param dialog The dialog information * @return true if input has been handled */ -bool cb_password_dialog(GtkEntry* entry, void* dialog); +gboolean cb_password_dialog(GtkEntry* entry, void* dialog); /** * Emitted when the view has been resized From 10641d688d8cde125626ad461d366ad31f5aaa4b Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 4 Nov 2016 19:37:13 +0100 Subject: [PATCH 24/46] CS Signed-off-by: Sebastian Ramacher --- zathura/zathura.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zathura/zathura.c b/zathura/zathura.c index 19aaa83..fc0d603 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -1482,9 +1482,8 @@ adjust_view(zathura_t* zathura) abs((int)new_cell_height - (int)cell_height) > 1) { render_all(zathura); refresh_view(zathura); - - /* otherwise set the old scale and leave */ } else { + /* otherwise set the old scale and leave */ zathura_document_set_scale(zathura->document, scale); } From bcdc7aba05547c467edb44f515388b4e3cfdaccd Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 6 Nov 2016 18:23:25 +0100 Subject: [PATCH 25/46] Check adjust mode argument Signed-off-by: Sebastian Ramacher --- zathura/shortcuts.c | 11 +++++++++-- zathura/types.h | 3 ++- zathura/zathura.c | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c index 3390123..a3f5cdd 100644 --- a/zathura/shortcuts.c +++ b/zathura/shortcuts.c @@ -100,8 +100,15 @@ sc_adjust_window(girara_session_t* session, girara_argument_t* argument, zathura_t* zathura = session->global.data; g_return_val_if_fail(argument != NULL, false); - zathura_document_set_adjust_mode(zathura->document, argument->n); - adjust_view(zathura); + if (argument->n < ZATHURA_ADJUST_NONE || argument->n >= ZATHURA_ADJUST_MODE_NUMBER) { + girara_error("Invalid adjust mode: %d", argument->n); + girara_notify(session, GIRARA_ERROR, _("Invalid adjust mode: %d"), argument->n); + } else { + girara_debug("Setting adjust mode to: %d", argument->n); + + zathura_document_set_adjust_mode(zathura->document, argument->n); + adjust_view(zathura); + } return false; } diff --git a/zathura/types.h b/zathura/types.h index 16189ee..e0028d7 100644 --- a/zathura/types.h +++ b/zathura/types.h @@ -101,7 +101,8 @@ typedef enum zathura_adjust_mode_e ZATHURA_ADJUST_NONE, /**< No adjustment */ ZATHURA_ADJUST_BESTFIT, /**< Adjust to best-fit */ ZATHURA_ADJUST_WIDTH, /**< Adjust to width */ - ZATHURA_ADJUST_INPUTBAR /**< Focusing the inputbar */ + ZATHURA_ADJUST_INPUTBAR, /**< Focusing the inputbar */ + ZATHURA_ADJUST_MODE_NUMBER /**< Number of adjust modes */ } zathura_adjust_mode_t; /** diff --git a/zathura/zathura.c b/zathura/zathura.c index fc0d603..704fad5 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -121,7 +121,7 @@ error_out: static void create_directories(zathura_t* zathura) { - static const unsigned int mode = 0711; + static const unsigned int mode = 0700; if (g_mkdir_with_parents(zathura->config.config_dir, mode) == -1) { girara_error("Could not create '%s': %s", zathura->config.config_dir, From 9b5dceac17df3badc99365e273122994106d3dbb Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 6 Nov 2016 18:40:55 +0100 Subject: [PATCH 26/46] Debug output for sc_zoom Signed-off-by: Sebastian Ramacher --- zathura/shortcuts.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c index a3f5cdd..7020586 100644 --- a/zathura/shortcuts.c +++ b/zathura/shortcuts.c @@ -1375,19 +1375,25 @@ sc_zoom(girara_session_t* session, girara_argument_t* argument, girara_event_t* /* specify new zoom value */ if (argument->n == ZOOM_IN) { + girara_debug("Increasing zoom by %f.", zoom_step - 1.0); zathura_document_set_scale(zathura->document, old_zoom * zoom_step); } else if (argument->n == ZOOM_OUT) { + girara_debug("Decreasing zoom by %f.", zoom_step - 1.0); zathura_document_set_scale(zathura->document, old_zoom / zoom_step); } else if (argument->n == ZOOM_SPECIFIC) { if (t == 0) { + girara_debug("Setting zoom to 1."); zathura_document_set_scale(zathura->document, 1.0); } else { + girara_debug("Setting zoom to %f.", t / 100.0); zathura_document_set_scale(zathura->document, t / 100.0); } } else if (argument->n == ZOOM_SMOOTH) { - const double dy = (event != NULL) ? event->y : 1.0; - zathura_document_set_scale(zathura->document, old_zoom + zoom_step * dy); + const double dy = (event != NULL) ? event->y : 1.0; + girara_debug("Increasing zoom by %f.", zoom_step * dy - 1.0); + zathura_document_set_scale(zathura->document, old_zoom + zoom_step * dy); } else { + girara_debug("Setting zoom to 1."); zathura_document_set_scale(zathura->document, 1.0); } @@ -1397,9 +1403,11 @@ sc_zoom(girara_session_t* session, girara_argument_t* argument, girara_event_t* const double new_zoom = zathura_document_get_scale(zathura->document); if (fabs(new_zoom - old_zoom) <= DBL_EPSILON) { + girara_debug("New and old zoom level are too close: %f vs. %f, diff = %f", new_zoom, old_zoom, fabs(new_zoom - old_zoom)); return false; } + girara_debug("Re-rendering with new zoom level %f.", new_zoom); render_all(zathura); refresh_view(zathura); From 527e26095797f7c8f28c2d4048b6e16453845b5a Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 6 Nov 2016 23:39:18 +0100 Subject: [PATCH 27/46] CS --- zathura/adjustment.c | 2 +- zathura/render.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zathura/adjustment.c b/zathura/adjustment.c index 1cd31b3..9a10da5 100644 --- a/zathura/adjustment.c +++ b/zathura/adjustment.c @@ -13,7 +13,7 @@ page_calc_height_width(zathura_document_t* document, double height, g_return_val_if_fail(document != NULL && page_height != NULL && page_width != NULL, 0.0); double scale = zathura_document_get_scale(document); - if (rotate && zathura_document_get_rotation(document) % 180) { + if (rotate == true && zathura_document_get_rotation(document) % 180 != 0) { *page_width = round(height * scale); *page_height = round(width * scale); scale = MAX(*page_width / height, *page_height / width); diff --git a/zathura/render.c b/zathura/render.c index f18ceb4..de750cb 100644 --- a/zathura/render.c +++ b/zathura/render.c @@ -845,7 +845,7 @@ render_all(zathura_t* zathura) /* unmark all pages */ const unsigned int number_of_pages = zathura_document_get_number_of_pages(zathura->document); - for (unsigned int page_id = 0; page_id < number_of_pages; page_id++) { + for (unsigned int page_id = 0; page_id < number_of_pages; ++page_id) { zathura_page_t* page = zathura_document_get_page(zathura->document, page_id); unsigned int page_height = 0, page_width = 0; From 5026cbb9e3fbffa377c5a528f24f086c138d2370 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 6 Nov 2016 23:39:27 +0100 Subject: [PATCH 28/46] Debug output --- zathura/render.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura/render.c b/zathura/render.c index de750cb..51967a8 100644 --- a/zathura/render.c +++ b/zathura/render.c @@ -853,6 +853,7 @@ render_all(zathura_t* zathura) const double width = zathura_page_get_width(page); page_calc_height_width(zathura->document, height, width, &page_height, &page_width, true); + girara_debug("Queuing resize for page %u to %u x %u (%f x %f).", page_id, page_width, page_height, width, height); GtkWidget* widget = zathura_page_get_widget(zathura, page); gtk_widget_set_size_request(widget, page_width, page_height); gtk_widget_queue_resize(widget); From e087fa66349389909557f4d1fca3933976d1c006 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Nov 2016 21:49:25 +0100 Subject: [PATCH 29/46] Sort for reproducability Signed-off-by: Sebastian Ramacher --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9fc1fcc..986817b 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ include config.mk include colors.mk include common.mk -OSOURCE = $(filter-out ${PROJECT}/css-definitions.c, $(filter-out ${PROJECT}/dbus-interface-definitions.c, $(wildcard ${PROJECT}/*.c))) +OSOURCE = $(filter-out ${PROJECT}/css-definitions.c, $(filter-out ${PROJECT}/dbus-interface-definitions.c, $(sort $(wildcard ${PROJECT}/*.c)))) ifneq (${WITH_SQLITE},0) INCS += $(SQLITE_INC) From 9bc80b773307669cda554748b57393d2ef938ae6 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Nov 2016 22:39:38 +0100 Subject: [PATCH 30/46] Update handling of event == NULL Signed-off-by: Sebastian Ramacher --- zathura/page-widget.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/zathura/page-widget.c b/zathura/page-widget.c index 651efa4..ed079a9 100644 --- a/zathura/page-widget.c +++ b/zathura/page-widget.c @@ -967,7 +967,11 @@ static void zathura_page_widget_popup_menu(GtkWidget* widget, GdkEventButton* event) { g_return_if_fail(widget != NULL); - g_return_if_fail(event != NULL); + if (event == NULL) { + /* do something here in the future in case we have general popups */ + return; + } + zathura_page_widget_private_t* priv = ZATHURA_PAGE_GET_PRIVATE(widget); if (priv->images.retrieved == false) { @@ -1015,16 +1019,8 @@ zathura_page_widget_popup_menu(GtkWidget* widget, GdkEventButton* event) } /* attach and popup */ - int event_button = 0; - int event_time = gtk_get_current_event_time(); - - if (event != NULL) { - event_button = event->button; - event_time = event->time; - } - gtk_menu_attach_to_widget(GTK_MENU(menu), widget, NULL); - gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, event_button, event_time); + gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, event->button, event->time); } static gboolean From 2948580edd1c9b1b9ed8877b68fb4bd38eaff8c9 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Nov 2016 22:45:09 +0100 Subject: [PATCH 31/46] Fix deprecation warning Signed-off-by: Sebastian Ramacher --- zathura/page-widget.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zathura/page-widget.c b/zathura/page-widget.c index ed079a9..c894dd5 100644 --- a/zathura/page-widget.c +++ b/zathura/page-widget.c @@ -1020,7 +1020,11 @@ zathura_page_widget_popup_menu(GtkWidget* widget, GdkEventButton* event) /* attach and popup */ gtk_menu_attach_to_widget(GTK_MENU(menu), widget, NULL); +#if GTK_CHECK_VERSION(3, 22, 0) + gtk_menu_popup_at_pointer(GTK_MENU(menu), (GdkEvent*) event); +#else gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, event->button, event->time); +#endif } static gboolean From 40d032b034795d94d1333805287b9b161193dd18 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Nov 2016 22:48:41 +0100 Subject: [PATCH 32/46] Update check for context menu creation Signed-off-by: Sebastian Ramacher --- zathura/page-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/page-widget.c b/zathura/page-widget.c index c894dd5..44bf64e 100644 --- a/zathura/page-widget.c +++ b/zathura/page-widget.c @@ -801,7 +801,7 @@ cb_zathura_page_widget_button_press_event(GtkWidget* widget, GdkEventButton* but } return true; - } else if (button->button == 3) { /* right click */ + } else if (gdk_event_triggers_context_menu((GdkEvent*) button) == TRUE && button->type == GDK_BUTTON_PRESS) { /* right click */ zathura_page_widget_popup_menu(widget, button); return true; } From 79a5d1fa680200f75fcc1d837c81042adc5c8bdf Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Nov 2016 22:54:33 +0100 Subject: [PATCH 33/46] Use constant instead of magic value Signed-off-by: Sebastian Ramacher --- zathura/page-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/page-widget.c b/zathura/page-widget.c index 44bf64e..5d929cb 100644 --- a/zathura/page-widget.c +++ b/zathura/page-widget.c @@ -779,7 +779,7 @@ cb_zathura_page_widget_button_press_event(GtkWidget* widget, GdkEventButton* but return true; } - if (button->button == 1) { /* left click */ + if (button->button == GDK_BUTTON_PRIMARY) { /* left click */ if (button->type == GDK_BUTTON_PRESS) { /* start the selection */ priv->mouse.selection_basepoint.x = button->x; From 4341a094736c5ff44ad0bbee9e89f314475b090a Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Nov 2016 22:56:26 +0100 Subject: [PATCH 34/46] Use constant instead of magic value Signed-off-by: Sebastian Ramacher --- zathura/page-widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/page-widget.c b/zathura/page-widget.c index 5d929cb..f525879 100644 --- a/zathura/page-widget.c +++ b/zathura/page-widget.c @@ -835,7 +835,7 @@ cb_zathura_page_widget_button_release_event(GtkWidget* widget, GdkEventButton* b button->x = oldx; button->y = oldy; - if (button->button != 1) { + if (button->button != GDK_BUTTON_PRIMARY) { return false; } From 6aa5420f378aecd8f8197e798f1cdfeb82e20ce0 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Nov 2016 23:10:18 +0100 Subject: [PATCH 35/46] Simplify Signed-off-by: Sebastian Ramacher --- zathura/page-widget.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/zathura/page-widget.c b/zathura/page-widget.c index f525879..324f668 100644 --- a/zathura/page-widget.c +++ b/zathura/page-widget.c @@ -862,21 +862,18 @@ cb_zathura_page_widget_button_release_event(GtkWidget* widget, GdkEventButton* b zathura_rectangle_t tmp = priv->mouse.selection; - double scale = zathura_document_get_scale(document); + const double scale = zathura_document_get_scale(document); tmp.x1 /= scale; tmp.x2 /= scale; tmp.y1 /= scale; tmp.y2 /= scale; char* text = zathura_page_get_text(priv->page, tmp, NULL); - if (text != NULL) { - if (strlen(text) > 0) { - /* emit text-selected signal */ - g_signal_emit(ZATHURA_PAGE(widget), signals[TEXT_SELECTED], 0, text); - } - - g_free(text); + if (text != NULL && *text != '\0') { + /* emit text-selected signal */ + g_signal_emit(ZATHURA_PAGE(widget), signals[TEXT_SELECTED], 0, text); } + g_free(text); } priv->mouse.selection_basepoint.x = -1; From 2371550807bdb972988cce6c3a77d08f663318d4 Mon Sep 17 00:00:00 2001 From: Felix Kaiser Date: Sat, 15 Oct 2016 00:49:21 +0200 Subject: [PATCH 36/46] Make page mode toggling predictable Previously, toggling page mode would jump to near page, but usually not the one your were looking at before. --- zathura/shortcuts.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zathura/shortcuts.c b/zathura/shortcuts.c index 7020586..26da4fb 100644 --- a/zathura/shortcuts.c +++ b/zathura/shortcuts.c @@ -1224,6 +1224,8 @@ sc_toggle_page_mode(girara_session_t* session, girara_argument_t* return false; } + unsigned int page_id = zathura_document_get_current_page_number(zathura->document); + int pages_per_row = 1; girara_setting_get(zathura->ui.session, "pages-per-row", &pages_per_row); @@ -1237,6 +1239,10 @@ sc_toggle_page_mode(girara_session_t* session, girara_argument_t* girara_setting_set(zathura->ui.session, "pages-per-row", &value); adjust_view(zathura); + page_set(zathura, page_id); + render_all(zathura); + refresh_view(zathura); + return true; } From 49e96c68e53394d70af367f6c63155b8f09d6429 Mon Sep 17 00:00:00 2001 From: Felix Kaiser Date: Sat, 15 Oct 2016 00:49:21 +0200 Subject: [PATCH 37/46] Make clicking a page set the current page number This allows fast visual navigation through the 'd'ouble page shortcut in combination with a high pages-per-row setting. Resolves #635 --- zathura/callbacks.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/zathura/callbacks.c b/zathura/callbacks.c index c5dd965..605391b 100644 --- a/zathura/callbacks.c +++ b/zathura/callbacks.c @@ -634,12 +634,20 @@ void cb_page_widget_scaled_button_release(ZathuraPage* page_widget, GdkEventButton* event, void* data) { + zathura_t* zathura = data; + + zathura_page_t* page = zathura_page_widget_get_page(page_widget); + + /* set page number (but don't scroll there. it was clicked on, so it's visible) */ + if (event->button == 1) { + zathura_document_set_current_page_number(zathura->document, zathura_page_get_index(page)); + refresh_view(zathura); + } + if (event->button != 1 || !(event->state & GDK_CONTROL_MASK)) { return; } - zathura_t* zathura = data; - bool synctex = false; girara_setting_get(zathura->ui.session, "synctex", &synctex); @@ -647,8 +655,6 @@ cb_page_widget_scaled_button_release(ZathuraPage* page_widget, GdkEventButton* e return; } - zathura_page_t* page = zathura_page_widget_get_page(page_widget); - if (zathura->dbus != NULL) { zathura_dbus_edit(zathura->dbus, zathura_page_get_index(page), event->x, event->y); } From 0890d1bb195046c57513be3ca220c936a5580d9b Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 4 Dec 2016 12:10:29 +0100 Subject: [PATCH 38/46] Use symbolic constant --- zathura/callbacks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/callbacks.c b/zathura/callbacks.c index 605391b..1d176c5 100644 --- a/zathura/callbacks.c +++ b/zathura/callbacks.c @@ -639,7 +639,7 @@ cb_page_widget_scaled_button_release(ZathuraPage* page_widget, GdkEventButton* e zathura_page_t* page = zathura_page_widget_get_page(page_widget); /* set page number (but don't scroll there. it was clicked on, so it's visible) */ - if (event->button == 1) { + if (event->button == GDK_BUTTON_PRIMARY) { zathura_document_set_current_page_number(zathura->document, zathura_page_get_index(page)); refresh_view(zathura); } From 17f0e740b4cc2e0af12f9cb09f53d81ff38b3e75 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 20 Dec 2016 00:48:42 +0100 Subject: [PATCH 39/46] Use g_build_filename isntead Signed-off-by: Sebastian Ramacher --- zathura/zathura.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura/zathura.c b/zathura/zathura.c index 704fad5..ba7df81 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -1152,7 +1152,7 @@ document_save(zathura_t* zathura, const char* path, bool overwrite) if (g_file_test(file_path, G_FILE_TEST_IS_DIR) == TRUE) { char* basename = g_path_get_basename(zathura_document_get_path(zathura->document)); char* tmp = file_path; - file_path = g_strconcat(file_path, "/", basename, NULL); + file_path = g_build_filename(file_path, basename, NULL); g_free(tmp); g_free(basename); } From 4295b2678efa2cd29649732ba5ad77b260f18879 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Wed, 4 Jan 2017 20:41:07 +0100 Subject: [PATCH 40/46] Update translations --- po/cs.po | 202 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 102 insertions(+), 100 deletions(-) diff --git a/po/cs.po b/po/cs.po index 4437ab1..7ed6272 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,24 +1,26 @@ # zathura - language file (Czech) # See LICENSE file for license and copyright information # +# Translators: +# fri, 2016 msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\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" -"Language: cs\n" +"PO-Revision-Date: 2017-01-04 20:39+0100\n" +"Last-Translator: fri\n" +"Language-Team: Czech (http://www.transifex.com/pwmt/zathura/language/cs/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.5\n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../zathura/callbacks.c:233 #, c-format msgid "'%s' must not be 0. Set to 1." -msgstr "" +msgstr "'%s' nesmí být 0. Nastaveno na 1." #: ../zathura/callbacks.c:315 #, c-format @@ -28,12 +30,12 @@ msgstr "Neplatný vstup: %s" #: ../zathura/callbacks.c:351 #, c-format msgid "Invalid index '%s' given." -msgstr "Neplatný index: %s" +msgstr "Neplatný rejstřík: %s" #: ../zathura/callbacks.c:594 #, c-format msgid "Copied selected text to selection %s: %s" -msgstr "" +msgstr "Vybraný text zkopírován do výběru %s: %s" #: ../zathura/commands.c:36 ../zathura/commands.c:76 ../zathura/commands.c:103 #: ../zathura/commands.c:152 ../zathura/commands.c:268 @@ -52,12 +54,12 @@ msgstr "Špatný počet argumentů." #: ../zathura/commands.c:53 #, c-format msgid "Could not update bookmark: %s" -msgstr "Nemůžu vytvořit záložku: %s" +msgstr "Nepodařilo se vytvořit záložku: %s" #: ../zathura/commands.c:55 #, c-format msgid "Could not create bookmark: %s" -msgstr "Nemůžu vytvořit záložku: %s" +msgstr "Nepodařilo se vytvořit záložku: %s" #: ../zathura/commands.c:60 #, c-format @@ -77,7 +79,7 @@ msgstr "Záložka smazána: %s" #: ../zathura/commands.c:90 #, c-format msgid "Failed to remove bookmark: %s" -msgstr "Nemůžu smazat záložku: %s" +msgstr "Nepodařilo se smazat záložku: %s" #: ../zathura/commands.c:116 #, c-format @@ -86,35 +88,35 @@ msgstr "Záložka neexistuje: %s" #: ../zathura/commands.c:162 msgid "Title" -msgstr "" +msgstr "Název" #: ../zathura/commands.c:163 msgid "Author" -msgstr "" +msgstr "Autor" #: ../zathura/commands.c:164 msgid "Subject" -msgstr "" +msgstr "Předmět" #: ../zathura/commands.c:165 msgid "Keywords" -msgstr "" +msgstr "Klíčová slova" #: ../zathura/commands.c:166 msgid "Creator" -msgstr "" +msgstr "Tvůrce" #: ../zathura/commands.c:167 msgid "Producer" -msgstr "" +msgstr "Výrobce" #: ../zathura/commands.c:168 msgid "Creation date" -msgstr "" +msgstr "Datum vytvoření" #: ../zathura/commands.c:169 msgid "Modification date" -msgstr "" +msgstr "Datum změny" #: ../zathura/commands.c:174 ../zathura/commands.c:196 msgid "No information available." @@ -191,11 +193,11 @@ msgstr "Obrázky" #. zathura settings #: ../zathura/config.c:144 msgid "Database backend" -msgstr "Databázový backend" +msgstr "Databázová vrstva" #: ../zathura/config.c:146 msgid "Zoom step" -msgstr "Zoom step" +msgstr "Velikost kroku zvětšení" #: ../zathura/config.c:148 msgid "Padding between pages" @@ -203,51 +205,51 @@ msgstr "Mezery mezi stránkami" #: ../zathura/config.c:150 msgid "Number of pages per row" -msgstr "Počet stránek na řádek" +msgstr "Počet stran na řádek" #: ../zathura/config.c:152 msgid "Column of the first page" -msgstr "" +msgstr "Sloupec první strany" #: ../zathura/config.c:154 msgid "Scroll step" -msgstr "Scroll step" +msgstr "Velikost kroku posunu" #: ../zathura/config.c:156 msgid "Horizontal scroll step" -msgstr "" +msgstr "Velikost kroku vodorovného posunu" #: ../zathura/config.c:158 msgid "Full page scroll overlap" -msgstr "" +msgstr "Překrývání při posunování celých stran" #: ../zathura/config.c:160 msgid "Zoom minimum" -msgstr "Oddálit" +msgstr "Nejmenší stupeň zvětšení" #: ../zathura/config.c:162 msgid "Zoom maximum" -msgstr "Přiblížit" +msgstr "Největší stupeň zvětšení" #: ../zathura/config.c:164 msgid "Maximum number of pages to keep in the cache" -msgstr "" +msgstr "Největší počet stran ve vyrovnávací paměti" #: ../zathura/config.c:166 msgid "Maximum size in pixels of thumbnails to keep in the cache" -msgstr "" +msgstr "Největší velikost náhledů v obrazových bodech ve vyrovnávací paměti" #: ../zathura/config.c:168 msgid "Number of positions to remember in the jumplist" -msgstr "" +msgstr "Počet poloh k uchování v seznamu" #: ../zathura/config.c:170 msgid "Recoloring (dark color)" -msgstr "Přebarvuji do tmava" +msgstr "Přebarvuje se do tmava" #: ../zathura/config.c:171 msgid "Recoloring (light color)" -msgstr "Přebarvuji do světla" +msgstr "Přebarvuje se do světla" #: ../zathura/config.c:172 msgid "Color for highlighting" @@ -255,31 +257,31 @@ msgstr "Barva zvýrazňovače" #: ../zathura/config.c:174 msgid "Color for highlighting (active)" -msgstr "Barva zvýrazňovače (aktivní)" +msgstr "Barva zvýrazňovače (činná)" #: ../zathura/config.c:176 msgid "'Loading ...' background color" -msgstr "" +msgstr "Nahrává se barva pozadí..." #: ../zathura/config.c:178 msgid "'Loading ...' foreground color" -msgstr "" +msgstr "Nahrává se barva popředí..." #: ../zathura/config.c:181 msgid "Index mode foreground color" -msgstr "" +msgstr "Barva popředí režimu rejstříku" #: ../zathura/config.c:182 msgid "Index mode background color" -msgstr "" +msgstr "Barva pozadí režimu rejstříku" #: ../zathura/config.c:183 msgid "Index mode foreground color (active element)" -msgstr "" +msgstr "Barva popředí režimu rejstříku (činný prvek)" #: ../zathura/config.c:184 msgid "Index mode background color (active element)" -msgstr "" +msgstr "Barva pozadí režimu rejstříku (činný prvek)" #: ../zathura/config.c:187 msgid "Recolor pages" @@ -287,39 +289,39 @@ msgstr "Přebarvit stránky" #: ../zathura/config.c:189 msgid "When recoloring keep original hue and adjust lightness only" -msgstr "" +msgstr "Při přebarvování zachovat původní odstín a přizpůsobit pouze světlost" #: ../zathura/config.c:191 msgid "When recoloring keep original image colors" -msgstr "" +msgstr "Při přebarvování zachovat původní barvy obrázku" #: ../zathura/config.c:193 msgid "Wrap scrolling" -msgstr "Scrollovat přes konce" +msgstr "Posunovat přes konce" #: ../zathura/config.c:195 msgid "Page aware scrolling" -msgstr "" +msgstr "Posunovat s ohledem na strany" #: ../zathura/config.c:197 msgid "Advance number of pages per row" -msgstr "" +msgstr "Pokračovat v počtu stran v jednom řádku" #: ../zathura/config.c:199 msgid "Horizontally centered zoom" -msgstr "" +msgstr "Vodorovně vystředěné přiblížení" #: ../zathura/config.c:201 msgid "Align link target to the left" -msgstr "" +msgstr "Zarovnat cíl odkazu nalevo" #: ../zathura/config.c:203 msgid "Let zoom be changed when following links" -msgstr "" +msgstr "Při následování odkazů se mění velikost přiblížení" #: ../zathura/config.c:205 msgid "Center result horizontally" -msgstr "" +msgstr "Vystředit výsledky vodorovně" #: ../zathura/config.c:207 msgid "Transparency for highlighting" @@ -327,7 +329,7 @@ msgstr "Průhlednost při zvýrazňování" #: ../zathura/config.c:209 msgid "Render 'Loading ...'" -msgstr "Vypisovat 'Načítám ...'" +msgstr "Vypisovat Nahrává se..." #: ../zathura/config.c:210 msgid "Adjust to when opening file" @@ -339,11 +341,11 @@ msgstr "Zobrazovat skryté soubory" #: ../zathura/config.c:214 msgid "Show directories" -msgstr "Zobrazovat adresáře" +msgstr "Ukázat adresáře" #: ../zathura/config.c:216 msgid "Show recent files" -msgstr "" +msgstr "Ukázat nedávné soubory" #: ../zathura/config.c:218 msgid "Always open on first page" @@ -355,51 +357,51 @@ msgstr "Zvýrazňovat výsledky hledání" #: ../zathura/config.c:223 msgid "Enable incremental search" -msgstr "" +msgstr "Povolit přírůstkové hledání" #: ../zathura/config.c:225 msgid "Clear search results on abort" -msgstr "Při abortu smazat výsledky hledání" +msgstr "Při přerušení smazat výsledky hledání" #: ../zathura/config.c:227 msgid "Use basename of the file in the window title" -msgstr "" +msgstr "Použít základní název souboru v názvu okna" #: ../zathura/config.c:229 msgid "Use ~ instead of $HOME in the filename in the window title" -msgstr "" +msgstr "Použít ~ místo $HOME v souborovém názvu v názvu okna" #: ../zathura/config.c:231 msgid "Display the page number in the window title" -msgstr "" +msgstr "Zobrazit číslo strany v názvu okna" #: ../zathura/config.c:233 msgid "Use basename of the file in the statusbar" -msgstr "" +msgstr "Použít základní název souboru ve stavovém řádku" #: ../zathura/config.c:235 msgid "Use ~ instead of $HOME in the filename in the statusbar" -msgstr "" +msgstr "Použít ~ místo $HOME v souborovém názvu ve stavovém řádku" #: ../zathura/config.c:237 msgid "Enable synctex support" -msgstr "" +msgstr "Povolit podporu pro synctex" #: ../zathura/config.c:239 msgid "Synctex editor command" -msgstr "" +msgstr "Příkaz pro editor Synctex" #: ../zathura/config.c:241 msgid "Enable D-Bus service" -msgstr "" +msgstr "Povolit službu D-Bus" #: ../zathura/config.c:243 msgid "The clipboard into which mouse-selected data will be written" -msgstr "" +msgstr "Schránka, do níž budou zapsána data vabraná pomocí myši" #: ../zathura/config.c:245 msgid "Enable notification after selecting text" -msgstr "" +msgstr "Povolit oznámení po vybrání textu" #. define default inputbar commands #: ../zathura/config.c:435 @@ -412,24 +414,24 @@ msgstr "Smazat záložku" #: ../zathura/config.c:437 msgid "List all bookmarks" -msgstr "Vypsat záložky" +msgstr "Vypsat všechny záložky" #: ../zathura/config.c:438 msgid "Close current file" -msgstr "Zavřít tenhle soubor" +msgstr "Zavřít nynější soubor" #: ../zathura/config.c:439 msgid "Show file information" -msgstr "Zobrazit informace o souboru" +msgstr "Ukázat informace o souboru" #: ../zathura/config.c:440 ../zathura/config.c:441 msgid "Execute a command" -msgstr "" +msgstr "Spustit příkaz" #. like vim #: ../zathura/config.c:442 msgid "Show help" -msgstr "Zobrazit nápovědu" +msgstr "Ukázat nápovědu" #: ../zathura/config.c:443 msgid "Open document" @@ -441,7 +443,7 @@ msgstr "Zavřít zathuru" #: ../zathura/config.c:445 msgid "Print document" -msgstr "Tisknout dokument" +msgstr "Vytisknout dokument" #: ../zathura/config.c:446 msgid "Save document" @@ -449,7 +451,7 @@ msgstr "Uložit dokument" #: ../zathura/config.c:447 msgid "Save document (and force overwriting)" -msgstr "Uložit a přepsat dokument" +msgstr "Uložit dokument a vynutit jeho přepsání" #: ../zathura/config.c:448 msgid "Save attachments" @@ -457,11 +459,11 @@ msgstr "Uložit přílohy" #: ../zathura/config.c:449 msgid "Set page offset" -msgstr "" +msgstr "Nastavit posun strany" #: ../zathura/config.c:450 msgid "Mark current location within the document" -msgstr "Označit současnou pozici v dokumentu" +msgstr "Označit současnou polohu v dokumentu" #: ../zathura/config.c:451 msgid "Delete the specified marks" @@ -477,33 +479,33 @@ msgstr "Zvýrazňovat výsledky tohoto hledání" #: ../zathura/config.c:454 msgid "Show version information" -msgstr "" +msgstr "Ukázat údaj o verzi" #: ../zathura/links.c:203 ../zathura/links.c:282 msgid "Failed to run xdg-open." -msgstr "Nepovedlo se spustit xdg-open." +msgstr "Nepodařilo se spustit xdg-open." #: ../zathura/links.c:221 #, c-format msgid "Link: page %d" -msgstr "" +msgstr "Odkaz: strana %d" #: ../zathura/links.c:228 #, c-format msgid "Link: %s" -msgstr "" +msgstr "Odkaz: %s" #: ../zathura/links.c:232 msgid "Link: Invalid" -msgstr "" +msgstr "Odkaz: Neplatný" #: ../zathura/main.c:145 msgid "Reparents to window specified by xid (X11)" -msgstr "" +msgstr "Propojí s oknem udaným xid (X11)" #: ../zathura/main.c:146 msgid "Path to the config directory" -msgstr "Cesta k souboru s nastavením" +msgstr "Cesta k adresáři se souborem s nastavením" #: ../zathura/main.c:147 msgid "Path to the data directory" @@ -511,11 +513,11 @@ msgstr "Cesta k adresáři s daty" #: ../zathura/main.c:148 msgid "Path to the cache directory" -msgstr "" +msgstr "Cesta k adresáři s vyrovnávací pamětí" #: ../zathura/main.c:149 msgid "Path to the directories containing plugins" -msgstr "Cesta k adresářům s pluginy" +msgstr "Cesta k adresářům s přídavnými moduly" #: ../zathura/main.c:150 msgid "Fork into the background" @@ -523,11 +525,11 @@ msgstr "Forknout se na pozadí" #: ../zathura/main.c:151 msgid "Document password" -msgstr "Heslo" +msgstr "Heslo k dokumentu" #: ../zathura/main.c:152 msgid "Page number to go to" -msgstr "" +msgstr "Číslo strany, na kterou jít" #: ../zathura/main.c:153 msgid "Log level (debug, info, warning, error)" @@ -535,44 +537,44 @@ msgstr "Úroveň logování (debug, info, warning, error)" #: ../zathura/main.c:154 msgid "Print version information" -msgstr "Zobrazit informace o souboru" +msgstr "Zobrazit údaje o verzi" #: ../zathura/main.c:156 msgid "Synctex editor (forwarded to the synctex command)" -msgstr "" +msgstr "Editor Synctex (předáno příkazu synctex)" #: ../zathura/main.c:157 msgid "Move to given synctex position" -msgstr "" +msgstr "Přesunout se na udanou polohu synctex" #: ../zathura/main.c:158 msgid "Highlight given position in the given process" -msgstr "" +msgstr "Zvýraznit zadanou polohu v daném procesu" #: ../zathura/main.c:160 msgid "Start in a non-default mode" -msgstr "" +msgstr "Spustit v ne-výchozím režimu" #: ../zathura/page-widget.c:561 msgid "Loading..." -msgstr "Načítám ..." +msgstr "Nahrává se..." #: ../zathura/page-widget.c:1006 msgid "Copy image" -msgstr "Zkopíruj obrázek" +msgstr "Kopírovat obrázek" #: ../zathura/page-widget.c:1007 msgid "Save image as" -msgstr "Ulož obrázek jako" +msgstr "Uložit obrázek jako" #: ../zathura/print.c:64 ../zathura/print.c:231 #, c-format msgid "Printing failed: %s" -msgstr "" +msgstr "Nepodařilo se vytisknout: %s" #: ../zathura/shortcuts.c:1126 msgid "This document does not contain any index" -msgstr "Tenhle dokument neobsahuje žádné indexy" +msgstr "Tento dokument neobsahuje žádný rejstřík" #: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 msgid "[No name]" @@ -580,20 +582,20 @@ msgstr "[Nepojmenovaný]" #: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." -msgstr "" +msgstr "Nepodařilo se přečíst soubor z stdin a zapsat jej do dočasného souboru." #: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." -msgstr "" +msgstr "Nepodařilo se přečíst soubor z GIO a zkopírovat jej do dočasného souboru." #: ../zathura/zathura.c:753 msgid "Enter password:" -msgstr "" +msgstr "Zadat heslo:" #: ../zathura/zathura.c:789 msgid "Unsupported file type. Please install the necessary plugin." -msgstr "" +msgstr "Nepodporovaný typ souboru. Nainstalujte, prosím, nezbytný přídavný modul." #: ../zathura/zathura.c:799 msgid "Document does not contain any pages" -msgstr "" +msgstr "Dokument neobsahuje žádné strany" From baa839fcbb2fd12794c930184f3086ff94a4fb07 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 5 Jan 2017 15:52:57 +0100 Subject: [PATCH 41/46] Run update-po --- po/ca.po | 171 +++++++++++++++++++++++++----------------------- po/cs.po | 182 ++++++++++++++++++++++++++++------------------------ po/de.po | 171 +++++++++++++++++++++++++----------------------- po/el.po | 171 +++++++++++++++++++++++++----------------------- po/eo.po | 171 +++++++++++++++++++++++++----------------------- po/es.po | 171 +++++++++++++++++++++++++----------------------- po/es_CL.po | 171 +++++++++++++++++++++++++----------------------- po/et.po | 171 +++++++++++++++++++++++++----------------------- po/fr.po | 171 +++++++++++++++++++++++++----------------------- po/he.po | 171 +++++++++++++++++++++++++----------------------- po/hr.po | 171 +++++++++++++++++++++++++----------------------- po/id_ID.po | 171 +++++++++++++++++++++++++----------------------- po/it.po | 171 +++++++++++++++++++++++++----------------------- po/lt.po | 171 +++++++++++++++++++++++++----------------------- po/no.po | 171 +++++++++++++++++++++++++----------------------- po/pl.po | 171 +++++++++++++++++++++++++----------------------- po/pt_BR.po | 171 +++++++++++++++++++++++++----------------------- po/ru.po | 171 +++++++++++++++++++++++++----------------------- po/ta_IN.po | 171 +++++++++++++++++++++++++----------------------- po/tr.po | 171 +++++++++++++++++++++++++----------------------- po/uk_UA.po | 171 +++++++++++++++++++++++++----------------------- 21 files changed, 1897 insertions(+), 1705 deletions(-) diff --git a/po/ca.po b/po/ca.po index 901b198..2077344 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -35,7 +35,7 @@ msgstr "Entrada invàlida '%s'." msgid "Invalid index '%s' given." msgstr "Índex invàlid '%s'." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -44,8 +44,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "No s'ha obert cap document." @@ -198,289 +198,293 @@ msgstr "Imatges" msgid "Database backend" msgstr "Base de dades de rerefons" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Pas d'ampliació" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Separació entre pàgines" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Nombre de pàgines per fila" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Columna de la primera pàgina" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Pas de desplaçament" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Pas de desplaçament horitzontal" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Superposició de pàgines completes de desplaçament" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Zoom mínim" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Zoom màxim" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Nombre de posicions per recordar al jumplist" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Recolorejant (color fosc)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Recolorejant (color clar)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Color de realçament" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Color de realçament (activat)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Recolorejant les pàgines" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "Quan recoloregis manté el to original i ajusta només la lluminositat" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Desplaçament recollit" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Desplaçament recollit" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Avançar nombre de pàgines per fila" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Zoom centrat horitzontalment" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Centra el resultat horitzontalment" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Transparència del realçat" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Renderitza 'Carregant ...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Ajustar al fitxer quan s'obri" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Mostra els directoris i fitxers ocults" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Mostra els directoris" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Obrir sempre la primera pàgina" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Realça els resultats de recerca" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Habilita la cerca incremental" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Esborra els resultats de recerca a l'interrompre" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Utilitza el nom base del fitxer en el títol de la finestra" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Habilitar la compatibilitat amb synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Afegir un marcador" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Esborrar un marcador" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Llista tots els marcadors" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Tancar el fitxer actual" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Mostra informació sobre el fitxer" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Executar una comanda" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Mostrar l'ajuda" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Obrir document" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Tancar Zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Imprimir document" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Desar document" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Desar document (i forçar la sobreescritura)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Desa els fitxers adjunts" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Assigna el desplaçament de pàgina" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Marca la posició actual dins el document" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Esborrar les marques especificades" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "No realcis els resultats de la recerca actual" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Realça els resultats de recerca actual" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Mostra informació sobre la versió" @@ -562,11 +566,11 @@ msgstr "" msgid "Loading..." msgstr "Carregant..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Copia la imatge" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Desa imatge com a" @@ -575,11 +579,16 @@ msgstr "Desa imatge com a" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Aquest document no conté cap índex" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Sense nom]" @@ -595,10 +604,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/cs.po b/po/cs.po index 7ed6272..86d276b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\n" "PO-Revision-Date: 2017-01-04 20:39+0100\n" "Last-Translator: fri\n" "Language-Team: Czech (http://www.transifex.com/pwmt/zathura/language/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../zathura/callbacks.c:233 @@ -32,7 +32,7 @@ msgstr "Neplatný vstup: %s" msgid "Invalid index '%s' given." msgstr "Neplatný rejstřík: %s" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "Vybraný text zkopírován do výběru %s: %s" @@ -41,8 +41,8 @@ msgstr "Vybraný text zkopírován do výběru %s: %s" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Není otevřený žádný dokument." @@ -195,289 +195,293 @@ msgstr "Obrázky" msgid "Database backend" msgstr "Databázová vrstva" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Velikost kroku zvětšení" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Mezery mezi stránkami" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Počet stran na řádek" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Sloupec první strany" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Velikost kroku posunu" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Velikost kroku vodorovného posunu" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Překrývání při posunování celých stran" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Nejmenší stupeň zvětšení" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Největší stupeň zvětšení" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Největší počet stran ve vyrovnávací paměti" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "Největší velikost náhledů v obrazových bodech ve vyrovnávací paměti" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Počet poloh k uchování v seznamu" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Přebarvuje se do tmava" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Přebarvuje se do světla" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Barva zvýrazňovače" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Barva zvýrazňovače (činná)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "Nahrává se barva pozadí..." -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "Nahrává se barva popředí..." -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "Barva popředí režimu rejstříku" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "Barva pozadí režimu rejstříku" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "Barva popředí režimu rejstříku (činný prvek)" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "Barva pozadí režimu rejstříku (činný prvek)" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Přebarvit stránky" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "Při přebarvování zachovat původní odstín a přizpůsobit pouze světlost" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "Při přebarvování zachovat původní barvy obrázku" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Posunovat přes konce" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Posunovat s ohledem na strany" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Pokračovat v počtu stran v jednom řádku" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Vodorovně vystředěné přiblížení" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "Zarovnat cíl odkazu nalevo" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "Při následování odkazů se mění velikost přiblížení" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Vystředit výsledky vodorovně" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Průhlednost při zvýrazňování" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Vypisovat Nahrává se..." -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Přiblížení po otevření souboru" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Zobrazovat skryté soubory" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Ukázat adresáře" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "Ukázat nedávné soubory" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Vždy otevírat na první straně" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Zvýrazňovat výsledky hledání" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Povolit přírůstkové hledání" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Při přerušení smazat výsledky hledání" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Použít základní název souboru v názvu okna" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "Použít ~ místo $HOME v souborovém názvu v názvu okna" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Zobrazit číslo strany v názvu okna" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Použít základní název souboru ve stavovém řádku" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "Použít ~ místo $HOME v souborovém názvu ve stavovém řádku" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Povolit podporu pro synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "Příkaz pro editor Synctex" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "Povolit službu D-Bus" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "Schránka, do níž budou zapsána data vabraná pomocí myši" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "Povolit oznámení po vybrání textu" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Přidat záložku" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Smazat záložku" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Vypsat všechny záložky" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Zavřít nynější soubor" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Ukázat informace o souboru" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Spustit příkaz" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Ukázat nápovědu" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Otevřít dokument" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Zavřít zathuru" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Vytisknout dokument" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Uložit dokument" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Uložit dokument a vynutit jeho přepsání" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Uložit přílohy" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Nastavit posun strany" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Označit současnou polohu v dokumentu" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Smazat vybrané značky" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Nezvýrazňovat výsledky tohoto hledání" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Zvýrazňovat výsledky tohoto hledání" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Ukázat údaj o verzi" @@ -559,11 +563,11 @@ msgstr "Spustit v ne-výchozím režimu" msgid "Loading..." msgstr "Nahrává se..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Kopírovat obrázek" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Uložit obrázek jako" @@ -572,30 +576,38 @@ msgstr "Uložit obrázek jako" msgid "Printing failed: %s" msgstr "Nepodařilo se vytisknout: %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Tento dokument neobsahuje žádný rejstřík" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Nepojmenovaný]" #: ../zathura/zathura.c:648 msgid "Could not read file from stdin and write it to a temporary file." -msgstr "Nepodařilo se přečíst soubor z stdin a zapsat jej do dočasného souboru." +msgstr "" +"Nepodařilo se přečíst soubor z stdin a zapsat jej do dočasného souboru." #: ../zathura/zathura.c:664 msgid "Could not read file from GIO and copy it to a temporary file." -msgstr "Nepodařilo se přečíst soubor z GIO a zkopírovat jej do dočasného souboru." +msgstr "" +"Nepodařilo se přečíst soubor z GIO a zkopírovat jej do dočasného souboru." #: ../zathura/zathura.c:753 msgid "Enter password:" msgstr "Zadat heslo:" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." -msgstr "Nepodporovaný typ souboru. Nainstalujte, prosím, nezbytný přídavný modul." +msgstr "" +"Nepodporovaný typ souboru. Nainstalujte, prosím, nezbytný přídavný modul." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "Dokument neobsahuje žádné strany" diff --git a/po/de.po b/po/de.po index 757d0a2..0acf15d 100644 --- a/po/de.po +++ b/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" -"POT-Creation-Date: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -35,7 +35,7 @@ msgstr "Ungültige Eingabe '%s' angegeben." msgid "Invalid index '%s' given." msgstr "Ungültiger Index '%s' angegeben." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "Der gewählte Text wurde in die Zwischenablage %s kopiert: %s" @@ -44,8 +44,8 @@ msgstr "Der gewählte Text wurde in die Zwischenablage %s kopiert: %s" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Kein Dokument geöffnet." @@ -198,292 +198,296 @@ msgstr "Bilder" msgid "Database backend" msgstr "Datenbank Backend" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Vergrößerungsstufe" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Abstand zwischen den Seiten" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Anzahl der Seiten in einer Reihe" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Spalte der ersten Seite" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Schrittgröße beim Scrollen" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Horizontale Schrittgröße beim Scrollen" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Überlappung beim Scrollen von ganzen Seiten" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Minimale Vergrößerungsstufe" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Maximale Vergrößerungsstufe" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Maximale Seitenzahl im Zwischenspeicher" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "Maximale Größe der Vorschau im Zwischenspeicher (in Pixel)" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Anzahl der Liste zu behaltenden Positionen" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Neufärben (Dunkle Farbe)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Neufärben (Helle Farbe)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Farbe für eine Markierung" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Farbe für die aktuelle Markierung" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "Hintergrundfarbe von 'Lädt...'" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "Vordergrundfarbe von 'Lädt...'" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "Vordergrundfarbe des Indexmodus" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "Hintergrundfarbe des Indexmodus" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "Vordergrundfarbe des Indexmodus (aktives Element)" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "Hintergrundfarbe des Indexmodus (aktives Element)" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Färbe die Seiten ein" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" "Behalte beim Neufärben den ursprünglichen Farbton bei und passe nur die " "Helligkeit an" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" "Bilder bleiben unverändert, wenn das Einfärben des Dokuments aktiviert ist" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Scroll-Umbruch" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Seiten beim Scrollen beachten" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Gehe Anzahl der Seiten in einer Reihe weiter" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Horizontal zentrierter Zoom" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "Linkziel links ausrichten" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "Erlaube Zoom-Änderungen beim Folgen von Links" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Zentriere Ergebnis horizontal" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Transparenz für Markierungen" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Zeige 'Lädt...'-Text beim Zeichnen einer Seite" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Seite einpassen" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Zeige versteckte Dateien und Ordner an" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Zeige Ordner an" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "Zeige zuletzt geöffnete Dateien an" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Öffne Dokument immer auf der ersten Seite" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Hebe Suchergebnisse hervor" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Aktiviere inkrementelle Suche" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Lösche Suchergebnisse bei Abbruch" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Verwende den Dateinamen der Datei im Fenstertitel" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "Verwende ~ statt $HOME im Dateinamen im Fenstertitel" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Verwende die Seitenzal im Fenstertitel" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Verwende den Dateinamen der Datei in der Statusleiste" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "Verwende ~ statt $HOME im Dateinamen in der Statusleiste" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Aktiviere SyncTeX-Unterstützung" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "Synctex Editor Befehl" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "D-Bus-Dienst aktivieren" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "Zwischenablage, in die mit der Maus gewählte Text kopiert wird" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "Benachrichtigung nach Text-Selektion" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Füge Lesezeichen hinzu" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Lösche ein Lesezeichen" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Liste all Lesezeichen auf" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Schließe das aktuelle Dokument" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Zeige Dokumentinformationen an" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Führe einen Befehl aus" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Zeige Hilfe an" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Öffne Dokument" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Beende zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Drucke Dokument" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Speichere Dokument" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Speichere Dokument (und überschreibe bestehende)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Speichere Anhänge" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Setze den Seitenabstand" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Markiere aktuelle Position im Doukument" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Lösche angegebene Markierung" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Hebe aktuelle Suchergebnisse nicht hervor" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Hebe aktuelle Suchergebnisse hervor" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Zeige Versionsinformationen an" @@ -565,11 +569,11 @@ msgstr "In einem Nicht-Standardmodus starten" msgid "Loading..." msgstr "Lädt..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Bild kopieren" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Bild speichern als" @@ -578,11 +582,16 @@ msgstr "Bild speichern als" msgid "Printing failed: %s" msgstr "Drucken fehlgeschlagen: %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Dieses Dokument beinhaltet kein Inhaltsverzeichnis." -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Kein Name]" @@ -598,10 +607,10 @@ msgstr "Konnte Datei nicht mittels GIO in temporäre Datei kopieren." msgid "Enter password:" msgstr "Passwort:" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Dateityp ist nicht unterstützt. Installiere das benötigete Plugin." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "Dieses Dokument beinhaltet keine Seiten" diff --git a/po/el.po b/po/el.po index fe28247..646bce0 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -35,7 +35,7 @@ msgstr "Η είσοδος '%s' είναι άκυρη." msgid "Invalid index '%s' given." msgstr "Ο δείκτης '%s' είναι άκυρος." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -44,8 +44,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Δεν άνοιξε κανένα αρχείο. " @@ -198,291 +198,295 @@ msgstr "Εικόνες" msgid "Database backend" msgstr "Το βασικό εργαλείο της βάσης δεδομένων" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Βήμα μεγέθυνσης" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Διάκενο μεταξύ σελίδων" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Αριθμός σελίδων ανά γραμμή" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Στήλη της πρώτης σελίδας" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Βήμα κύλισης" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Βήμα οριζόντιας κύλησης" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Ελάχιστη μεγέθυνση" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Μέγιστη μεγέθυνση" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Επαναχρωματισμός (σκούρο χρώμα)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Επαναχρωματισμός (ανοικτό χρώμα)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Χρώμα τονισμού" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Χρώμα τονισμού (ενεργό)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Επαναχρωματισμός σελίδων" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" "Κατά τον επαναχρωματισμό της σελιδάς διατήρηση της αρχικής απόχρωσης και " "αλλαγή μόνο της φωτεινότητας" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Κυκλική κύληση" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Προώθηση σε αριθμό σελίδων ανά γραμμή" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Μεγένθηση οριζοντίως κεντραρισμένη" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Οριζόντιο κεντράρισμα αποτελεσμάτων" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Διαφάνεια για τονισμό" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Εμφάνιση της ένδειξης 'Φορτώνει ...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Προσαρμογή κατά το άνοιγμα του αρχείου" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Εμφάνιση κρυφών αρχείων και φακέλων" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Εμφάνιση καταλόγων" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Άνοιγμα πάντα στην πρώτη σελίδα" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Τονισμός αποτελεσμάτων αναζήτησης" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Εκκαθάριση των απολεσμάτων αναζήτησης κατά την διακοπή" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Χρήση του ονόματος του αρχείο στο τίτλο του παραθύρου" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Ενεργοποίηση υποστήριξης synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Προσθήκη σελιδοδείκτη" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Διαγραφή σελιδοδείκτη" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Εμφάνιση όλων των σελιδοδεικτών" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Κλείσιμο αρχείου" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Προβολή πληροφοριών αρχείου" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Εκτέλεση εντολής" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Εμφάνιση βοήθειας" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Άνοιγμα αρχείου" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Κλείσιμο" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Εκτύπωση αρχείου" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Αποθήκευση αρχείου" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Αποθήκευση αρχείου (και αντικατάσταση)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Αποθήκευση προσαρτήσεων. " -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Ρύθμιση αντιστάθμισης σελίδας" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Επισήμανση τρέχουσας θέσης στο κείμενο" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Διαγραφή επιλεγμένων σημείων" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Χωρίς τονισμό τα τρέχοντα αποτελέσματα της αναζήτησης" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Τονισμός στα τρέχοντα αποτελέσματα της αναζήτησης" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Εμφάνιση πληροφοριών έκδοσης" @@ -564,11 +568,11 @@ msgstr "" msgid "Loading..." msgstr "Φορτώνει ..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Αντιγραφή εικόνας" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Αποθήκευση εικόνας ως..." @@ -577,11 +581,16 @@ msgstr "Αποθήκευση εικόνας ως..." msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Το αρχείο δεν περιέχει κανένα δείκτη" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Χωρίς όνομα]" @@ -597,10 +606,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/eo.po b/po/eo.po index 61ad3a0..9d2b9e9 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -34,7 +34,7 @@ msgstr "Nevalida enigo '%s' uzata." msgid "Invalid index '%s' given." msgstr "Nevalida indekso '%s' uzata." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -43,8 +43,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Neniu dokumento malfermita." @@ -197,289 +197,293 @@ msgstr "Bildoj" msgid "Database backend" msgstr "" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Zompaŝo" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Interpaĝa plenigo" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Nombro da paĝoj po vico" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Rulumpaŝo" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Mimimuma zomo" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Maksimuma zomo" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Rekolorigo (malhela koloro)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Rekolorigo (hela koloro)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Koloro por fonlumo" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Koloro por fonlumo (aktiva)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Rekoloru paĝojn" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Ĉirkaŭflua rulumado" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Travidebleco por fonlumo" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Bildigu 'Ŝargado ...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Adaptaĵo ĉe malfermo de dosiero" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Montru kaŝitajn dosierojn kaj -ujojn" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Montru dosierujojn" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Ĉiam malfermu ĉe unua paĝo" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Aldonu paĝosignon" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Forigu paĝosignon" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Listigu ĉiujn paĝosignojn" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Fermu nunan dosieron" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Montru dosiera informacio" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Montru helpon" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Malfermu dokumenton" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Fermu zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Presu dokumenton" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Konservu dokumenton" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Konservu dokumenton (deviga anstataŭo)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Konservu kunsendaĵojn" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Agordu paĝdelokado" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "" @@ -561,11 +565,11 @@ msgstr "" msgid "Loading..." msgstr "Ŝargado ..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Kopiu bildon" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Savi bildojn kiel" @@ -574,11 +578,16 @@ msgstr "Savi bildojn kiel" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Ĉi-tiu dokumento enhavas neniam indekson." -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Neniu nomo]" @@ -594,10 +603,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/es.po b/po/es.po index 9554fea..1a2bde8 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -33,7 +33,7 @@ msgstr "Entrada inválida: '%s'." msgid "Invalid index '%s' given." msgstr "Índice invalido: '%s'." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -42,8 +42,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Ningún documento abierto." @@ -196,291 +196,295 @@ msgstr "Imágenes" msgid "Database backend" msgstr "Base de datos" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Unidad de zoom" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Separación entre páginas" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Número de páginas por fila" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Columna de la primera página" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Paso de desplazamiento" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Paso de desplazamiento horizontal" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Solapamiento del desplazamiento de página" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Zoom mínimo" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Zoom máximo" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Número de posiciones a recordar en la lista de saltos" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Recoloreado (color oscuro)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Recoloreado (color claro)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Color para destacar" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Color para destacar (activo)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Recolorear páginas" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" "Cuando se recoloree, mantener el tono original y ajustar únicamente la " "luminosidad" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Navegación/Scroll cíclica/o" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Zoom centrado horizontalmente" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Centrar el resultado horizontalmente" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Transparencia para el destacado" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Renderizado 'Cargando ...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Ajustarse al abrir un fichero" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Mostrar directorios y ficheros ocultos" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Mostrar directorios" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Abrir siempre la primera página" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Destacar los resultados de búsqueda" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Habilitar la búsqueda incremental" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Borrar resultados de búsqueda al abortar" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Usar el nombre del archivo en el título de la ventana" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Habilitar soporte synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Añadir Favorito" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Eliminar Favorito" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Listar favoritos" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Cerrar fichero actual" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Mostrar información del fichero" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Ejecutar un comando" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Mostrar ayuda" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Abrir documento" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Salir de zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Imprimir documento" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Guardar documento" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Guardar documento (y sobreescribir)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Guardar ficheros adjuntos" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Asignar el desplazamiento de página" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Marcar la posición actual en el documento" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Borrar las marcas especificadas" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "No destacar los resultados de la búsqueda actual" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Destacar los resultados de la búsqueda actual" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Mostrar versión" @@ -562,11 +566,11 @@ msgstr "" msgid "Loading..." msgstr "Cargando ..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Copiar imagen" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Salvar imagen como" @@ -575,11 +579,16 @@ msgstr "Salvar imagen como" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Este documento no contiene ningún índice" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Sin nombre]" @@ -595,10 +604,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/es_CL.po b/po/es_CL.po index 1efb671..dd44463 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -34,7 +34,7 @@ msgstr "Entrada inválida: '%s'." msgid "Invalid index '%s' given." msgstr "Índice invalido: '%s'." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -43,8 +43,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Ningún documento abierto." @@ -197,289 +197,293 @@ msgstr "" msgid "Database backend" msgstr "Fin de la base de datos." -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Unidad de zoom" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Separación entre páginas" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Numero de páginas por fila" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Unidad de desplazamiento" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Zoom mínimo" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Zoom máximo" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Recolorando (color oscuro)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Recolorando (color claro)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Color para destacar" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Color para destacar (activo)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Recolorar páginas" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Scroll cíclico" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Transparencia para lo destacado" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Renderizando 'Cargando...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Ajustar al abrirse un archivo" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Mostrar archivos ocultos y directorios" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Mostrar directorios" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Siempre abrir en primera página" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Agregar un marcador" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Eliminar un marcador" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Listar todos los marcadores" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Cerrar archivo actual" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Mostrar información del archivo" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Mostrar ayuda" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Abrir documento" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Cerrar zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Imprimir documento" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Guardar documento" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Guardar documento (y forzar sobreescritura)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Guardar archivos adjuntos" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Asignar desplazamiento de la página" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "" @@ -561,11 +565,11 @@ msgstr "" msgid "Loading..." msgstr "Cargando..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Copiar imagen" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "" @@ -574,11 +578,16 @@ msgstr "" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Este document no contiene índice" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Sin nombre]" @@ -594,10 +603,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/et.po b/po/et.po index d2e4908..8c95d68 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -34,7 +34,7 @@ msgstr "" msgid "Invalid index '%s' given." msgstr "" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -43,8 +43,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "" @@ -197,289 +197,293 @@ msgstr "" msgid "Database backend" msgstr "" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Esiletõstmise värv" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Esiletõstmise värv (aktiivne)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Näita kaustasid" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Ava alati esimene leht" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Lisa järjehoidja" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Kustuta järjehoidja" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Näita kõiki järjehoidjaid" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Sulge praegune fail" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Näita faili infot" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Näita abiinfot" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Ava dokument" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Sule zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Prindi dokument" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Salvesta dokument" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Salvesta manused" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "" @@ -561,11 +565,11 @@ msgstr "" msgid "Loading..." msgstr "" -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Kopeeri pilt" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "" @@ -574,11 +578,16 @@ msgstr "" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Nime pole]" @@ -594,10 +603,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/fr.po b/po/fr.po index 659c620..724c1a8 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -38,7 +38,7 @@ msgstr "Entrée invalide : '%s'" msgid "Invalid index '%s' given." msgstr "Index invalide : '%s'" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -47,8 +47,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Aucun document ouvert." @@ -201,291 +201,295 @@ msgstr "Images" msgid "Database backend" msgstr "Gestionnaire de base de données" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Incrément de zoom" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Espacement entre les pages" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Nombre de page par rangée" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Colonne de la première page" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Incrément de défilement" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Incrément de défilement horizontal" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Recouvrement lors du défilement par page entière" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Zoom minimum" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Zoom maximum" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Nombre maximum de pages à garder en cache" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Nombre de positions à mémoriser dans la liste de sauts" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Recoloration (couleur sombre)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Recoloration (couleur claire)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Couleur de surbrillance" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Couleur de surbrillance (active)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "Couleur d'arrière-plan de 'Chargement...'" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "Couleur de 'Chargement...'" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Recoloriser les pages" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" "Lors de la recoloration garder la teinte d'origine et ajuster seulement la " "luminosité" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Défiler en boucle" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Défilement tenant compte des limites de page" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Augmenter le nombre de pages par rangée" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Zoom centré horizontalement" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "Aligner la cible du lien à gauche" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "Autoriser la modification du zoom quand on suit un lien" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Centrer le résultat horizontalement" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Transparence de la surbrillance" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Afficher 'Chargement...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Ajuster à l'ouverture du fichier" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Montrer les fichiers et dossiers cachés" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Montrer les dossiers" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Toujours ouvrir à la première page" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Surligner les résultats de la recherche" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Activer la recherche incrémentale" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Effacer les résultats de recherche en cas d'annulation" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Utiliser le nom de base du fichier dans le titre de la fenêtre" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Afficher le numéro de page dans le titre de la fenêtre" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Utiliser le nom de base du fichier dans la barre d'état" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Activer la prise en charge de synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "Activer le service D-Bus" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "Le presse-papiers qui recevra les données sélectionnées avec la souris" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Ajouter un marque-page" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Supprimer un marque-page" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Lister tous les marque-pages" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Fermer le fichier actuel" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Montrer les informations sur le fichier" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Exécuter une commande" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Afficher l'aide" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Ouvrir un document" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Quitter zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Imprimer le document" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Sauver le document" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Sauver le document (et forcer l'écrasement)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Enregistrer les pièces jointes" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Définir le décalage de page" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Marquer l'emplacement actuel dans le document" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Supprimer les marques indiquées" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Ne pas surligner les résultats de la recherche en cours" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Surligner les résultats de la recherche en cours" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Afficher les informations de version" @@ -567,11 +571,11 @@ msgstr "Démarrer dans un mode non-défaut" msgid "Loading..." msgstr "Chargement..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Copier l'image" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Enregistrer l'image sous" @@ -580,11 +584,16 @@ msgstr "Enregistrer l'image sous" msgid "Printing failed: %s" msgstr "Echec d'impression : %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Ce document ne contient pas d'index" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Sans nom]" @@ -602,11 +611,11 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" "Type de fichier non supporté. Veuillez installer l'extension nécessaire." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 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 2bbfb08..2748c49 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -32,7 +32,7 @@ msgstr "" msgid "Invalid index '%s' given." msgstr "" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -41,8 +41,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "" @@ -195,289 +195,293 @@ msgstr "" msgid "Database backend" msgstr "" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "" @@ -559,11 +563,11 @@ msgstr "" msgid "Loading..." msgstr "" -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "" @@ -572,11 +576,16 @@ msgstr "" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "" @@ -592,10 +601,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/hr.po b/po/hr.po index 765f3c7..a2326b7 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -33,7 +33,7 @@ msgstr "" msgid "Invalid index '%s' given." msgstr "" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -42,8 +42,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "" @@ -196,289 +196,293 @@ msgstr "" msgid "Database backend" msgstr "" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "" @@ -560,11 +564,11 @@ msgstr "" msgid "Loading..." msgstr "" -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "" @@ -573,11 +577,16 @@ msgstr "" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "" @@ -593,10 +602,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/id_ID.po b/po/id_ID.po index 8672376..fed7dd6 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -34,7 +34,7 @@ msgstr "Masukan '%s' tidak valid" msgid "Invalid index '%s' given." msgstr "Index '%s' tidak valid" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -43,8 +43,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Tidak ada dokumen yang terbuka." @@ -197,289 +197,293 @@ msgstr "Citra" msgid "Database backend" msgstr "backend database" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Tingkat pembesaran" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Selisih antar halaman" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Jumlah halaman tiap kolom" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Kolom pada halaman pertama" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Tingkat menggulung" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Tingkat penggulungan horisontal" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Pembesaran minimum" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Pembesaran maksimal" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Jumlah laman yang disimpan pada cache" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Jumlah posisi yang diingat pada jumplist" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Mewarnai ulang (warna gelap)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Mewarnai ulang (warna cerah)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Warna sorotan" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Warna sorotan (aktif)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "'Memuat ...; warna latar" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "'Memuat ...' warna depan" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Mewarnai ulang halaman" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "Ketika mewarnai ulang, jaga hue dan sesuaikan kecerahan saja" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Penggulungan sadar halaman" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Jumlah halaman per baris \"lanjutan\"" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Pembesaran horisontal tengah" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "Ratakan tautan ke kiri" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "Biarkan pembesaran berubah saat mengikuti pranala" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Tengah-horisontalkan hasil" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Transparansi sorotan" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Memuat Render..." -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Menyesuaikan ketika membuka file" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Perlihatkan file dan direktori tersembunyi" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Perlihatkan direktori" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Selalu buka halaman pertama" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Sorot hasil pencarian" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Fungsikan pencarian berkelanjutan" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Hapus hasil pencarian ketika batal mencari" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Gunakan nama dasar file pada judul jendela" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Tampilkan nomor laman pada jendela judul" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Gunakan nama dasar berkas pada statusbar" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Support synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "Data yang dipilih tetikus akan ditulis ke clipboard" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Tambahkan pada bookmark" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Hapus bookmark" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Perlihatkan semua bookmark" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Tutup file ini" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Informasi file" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Jalankan perintah" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Bantuan" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Buka dokumen" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Tutup zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Cetak dokumen" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Simpan dokumen" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Simpan dokumen (dan menimpa berkas)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Simpan lampiran" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Set offset halaman" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Tandai lokasi sekarang dalam dokumen" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Hapus tanda terpilih" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Jangan menyorot hasil cari sekarang" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Sorot hasil pencarian sekarang" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Tunjukan informasi versi" @@ -561,11 +565,11 @@ msgstr "" msgid "Loading..." msgstr "Memuat....." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Salin gambar" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Simpan gambar sebagai" @@ -574,11 +578,16 @@ msgstr "Simpan gambar sebagai" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Dokumen ini tidak mempunyai indeks" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Tidak berjudul]" @@ -595,10 +604,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Tipe berkas tidak didukung. Silakan memasang plugin yang dibutuhkan." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "Dokumen tidak mempunyai laman apapun" diff --git a/po/it.po b/po/it.po index ecab047..81c5deb 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -37,7 +37,7 @@ msgstr "Input inserito '%s' non valido." msgid "Invalid index '%s' given." msgstr "Indice inserito '%s' non valido." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -46,8 +46,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Nessun documento aperto." @@ -200,289 +200,293 @@ msgstr "Immagini" msgid "Database backend" msgstr "Backend del database" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Spaziatura tra le pagine" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Numero di pagine per riga" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Zoom minimo" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Zoom massimo" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Numero massimo di pagine da mantenere nella cache" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Numero di posizioni da mantenere nella jumplist" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Ricolora le pagine" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Scrolling continuo" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Centra orizzontalmente i risultati" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Mostra file e cartelle nascosti" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Mostra cartelle" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Apri sempre alla prima pagina" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Evidenzia i risultati della ricerca" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Abilita la ricerca incrementale" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Mostra il numero di pagina nel titolo della finestra" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Abilita il supporto per synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "Abilita il servizio D-Bus" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "Attiva la notifica dopo aver selezionato del testo" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Aggiungi un segnalibro" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Elimina un segnalibro" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Mostra i segnalibri" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Chiudi il file corrente" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Mostra le informazioni sul file" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Esegui un comando" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Mostra l' aiuto" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Apri un documento" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Chiudi zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Stampa il documento" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Salva il documento" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Salva il documento (e sovrascrivi)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Salva allegati" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Imposta l' offset della pagina" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Segna la posizione attuale all'interno del documento" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Non evidenziare i risultati della ricerca in corso" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Evidenzia i risultati della ricerca in corso" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Mostra informazioni sulla versione" @@ -564,11 +568,11 @@ msgstr "" msgid "Loading..." msgstr "Caricamento..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Copia immagine" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Salva immagine come" @@ -577,11 +581,16 @@ msgstr "Salva immagine come" msgid "Printing failed: %s" msgstr "Impossibile stampare: %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Questo documento non contiene l' indice" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Nessun nome]" @@ -598,11 +607,11 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" "Tipo di file non supportato. Per favore, installa il plugin necessario." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 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 bea8d3c..a995973 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -35,7 +35,7 @@ msgstr "Netinkama įvestis: „%s“." msgid "Invalid index '%s' given." msgstr "Duotas netinkamas indeksas: „%s“." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -44,8 +44,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Nėra atidarytų dokumentų." @@ -198,289 +198,293 @@ msgstr "Atvaizdai" msgid "Database backend" msgstr "Duomenų bazės posistemė" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Priartinimo žingsnis" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Užpildymas tarp puslapių" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Puslapių skaičius eilutėje" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Pirmo puslapio stulpelis" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Slinkties žingsnis" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Horizontalios slinksties žingsnis" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Mažiausias priartinimas" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Didžiausias priartinimas" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Puslapių limitas spartinančioje atmintinėje" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Spalvų keitimas (tamsi spalva)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Spalvų keitimas (šviesi spalva)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Žymos spalva" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Žymos spalva (aktyvi)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "„Kraunama ...“ fono spalva" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "„Kraunama ...“ pagrindinė spalva" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Pakeisti spalvas" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Puslapių ribas atpažįstanti slinktis" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Padidinti puslapių skaičių eilutėje" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Žymų skaidrumas" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Atvaizduoti „Kraunama ...“" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Prisitaikyti atidarant bylą" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Rodyti paslėptus failus ir katalogus" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Rodyti katalogų sąrašą" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Visada atverti pirmą puslapį" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Pažymėti paieškos rezultatus" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Įjungti prieauginę paiešką" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Išvalyti paieškos rezultatus nutraukiant" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Rodyti puslapio skaičių lango pavadinime" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Naudoti bylos vardą būsenos juostoje" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Įjungti synctex palaikymą" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Pridėti žymę" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Ištrinti žymę" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Žymių sąrašas" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Uždaryti dabartinę bylą" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Rodyti bylos informaciją" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Rodyti pagalbą" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Atidryti dokumentą" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Uždaryti zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Atspausdinti dokumentą" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Išsaugoti dokumentą" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Išsaugoti dokumentą (ir priverstinai perašyti)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Išsaugoti priedus" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Nustatyti puslapio poslinkį" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Pažymėti dabartinę dokumento vietą" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Ištrinti šias žymes" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Nežymėti dabartinės paieškos rezultatų" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Pažymėti dabartinės paieškos rezultatus" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Rodyti versijos informaciją" @@ -562,11 +566,11 @@ msgstr "" msgid "Loading..." msgstr "Kraunama..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Kopijuoti atvaizdą" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Irašyti atvaizdą kaip" @@ -575,11 +579,16 @@ msgstr "Irašyti atvaizdą kaip" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Šit dokumentas neturi turinio" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Bevardis]" @@ -595,10 +604,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Bylos tipas nepalaikomas. Įdiekite tam skirtus įskiepius." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "Dokumente puslapių nėra" diff --git a/po/no.po b/po/no.po index 6260b32..acf4da6 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -34,7 +34,7 @@ msgstr "Ugyldig inndata '%s' gitt." msgid "Invalid index '%s' given." msgstr "Ugyldig index '%s' gitt." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -43,8 +43,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Ingen dokumenter åpnet." @@ -197,289 +197,293 @@ msgstr "Bilder" msgid "Database backend" msgstr "Database backend" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Zoom nivå" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Avstand mellom sider" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Nummer av sider per rad" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Skrolle nivå" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Zoom minimum" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Zoom maximum" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Maksimum antall sider å holde i mellomlagringen" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Antall posisjoner å huske i hopp-til-listen" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Om-farger (mørk farge)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Om-farge (lys farge)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Farge for utheving" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Farge for utheving (aktiv)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "'Laster ...' bakgrunnsfarge" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "'Laster ...' forgrunnsfarge" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Om-farge sider" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Horisontalsentrert zoom" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "La zoom bli endret når følgende linker" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Sentrer resultatene horisontalt" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Klarhet for utheving" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Render 'Laster ...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Juster til når du åpner filen" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Vis skjulte filer og mapper" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Vis mapper" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Alltid åpne på første side" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Uthev søkeresultater" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Stryk ut søkeresulteter ved avbrytelse" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Vis nummer av sider i vinduestittelen" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "Aktiv D-Bus servicen" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Legg til bokmerke" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Slett bokmerke" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "List alle bokmerker" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Lukk den gjeldende filen" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Vis filinformasjon" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Kjør en kommando" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Vis hjelp" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Åpne dokument" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Lukk zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Skriv ut dokument" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Lagre dokument" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Lagre dokument (og tving til å skrive over)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Lagre vedlegg" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Marker nåværende lokalasjon i dokumentet" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Slett spesifiserte merker" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Ikke uthev gjeldende søkeresultater" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Uthev følgende søkeresultater" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Vis versjonsinformasjon" @@ -561,11 +565,11 @@ msgstr "Start i ikke-standard modus" msgid "Loading..." msgstr "Laster..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Kopier bilde" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Lagre bilde som" @@ -574,11 +578,16 @@ msgstr "Lagre bilde som" msgid "Printing failed: %s" msgstr "Utskrift feilet: %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Dette dokumenetet inneholder ikke noen index" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Inget navn]" @@ -594,10 +603,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Usupportert filtype. Vennligst innstaller den nødvendige pluginen." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "Dokumentet inneholder ingen sider" diff --git a/po/pl.po b/po/pl.po index 113160e..37d768b 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -36,7 +36,7 @@ msgstr "Nieprawidłowy argument: %s" msgid "Invalid index '%s' given." msgstr "Nieprawidłowy indeks: %s" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -45,8 +45,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Nie otwarto żadnego pliku" @@ -199,289 +199,293 @@ msgstr "Obrazki" msgid "Database backend" msgstr "Baza danych" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Skok powiększenia" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Odstęp pomiędzy stronami" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Liczba stron w wierszu" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Skok przewijania" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Skok przewijania poziomego" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Minimalne powiększenie" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Maksymalne powiększenie" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Maksymalna liczba stron w pamięci podręcznej" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Ciemny kolor negatywu" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Jasny kolor negatywu" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Kolor wyróżnienia" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Kolor wyróżnienia bieżącego elementu" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "Kolor tła komunikatu „Wczytywanie pliku...”" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "Kolor komunikatu „Wczytywanie pliku...”" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Negatyw" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "Dla negatywu zachowaj oryginalny odcień i zmień tylko jasność" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Zawijanie dokumentu" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Zwiększ liczbę stron w wierszu" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Powiększenie względem środka" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Poziome wyśrodkowanie wyniku" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Przezroczystość wyróżnienia" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Wyświetlaj: „Wczytywanie pliku...”" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Dopasowanie widoku pliku" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Wyświetl ukryte pliki i katalogi" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Wyświetl katalogi" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Zawsze otwieraj na pierwszej stronie" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Podświetl wyniki wyszukiwania" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Włącz wyszukiwanie przyrostowe" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Wyczyść wyniki wyszukiwania po przerwaniu" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Pokaż nazwę pliku w pasku tytułu" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Wyświetl numer strony w pasku tytułu" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Nazwa pliku w pasku stanu" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Włącz synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "Uruchom serwis D-Bus" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Dodaj zakładkę" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Usuń zakładkę" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Wyświetl zakładki" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Zamknij plik" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Wyświetl informacje o pliku" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Wykonaj polecenie" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Wyświetl pomoc" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Otwórz plik" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Zakończ" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Wydrukuj" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Zapisz" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Zapisz (nadpisując istniejący plik)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Zapisz załączniki" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Ustaw przesunięcie numerów stron" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Zaznacz aktualną pozycję w dokumencie" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Skasuj określone zakładki" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Nie podświetlaj aktualnych wyników wyszukiwania " -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Podświetl aktualne wyniki wyszukiwania" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Wyświetl informacje o wersji" @@ -563,11 +567,11 @@ msgstr "" msgid "Loading..." msgstr "Wczytywanie pliku..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Skopiuj obrazek" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Zapisz obrazek jako" @@ -576,11 +580,16 @@ msgstr "Zapisz obrazek jako" msgid "Printing failed: %s" msgstr "Nie można wydrukować: %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Dokument nie zawiera indeksu" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[bez nazwy]" @@ -596,10 +605,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Niewspierany rodzaj pliku. Zainstaluj wymagane wtyczki" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 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 95a8bde..950b45e 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -34,7 +34,7 @@ msgstr "Dados de entrada inválida '%s' ." msgid "Invalid index '%s' given." msgstr "Dados de índice invalido '%s'." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -43,8 +43,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Nenhum documento aberto." @@ -197,292 +197,296 @@ msgstr "Imagens" msgid "Database backend" msgstr "Fim da base de dados" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Grau de Zoom" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Preenchimento entre páginas" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Número de paginas por linha" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Coluna da primeira página" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Fase de Rolagem" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Etapa de rolagem horizontal" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Sobreposição de rolagem de página inteira" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Zoom minimo" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Zoom máximo" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Número máximo de páginas para manter no cache" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Numero de posições para lembrar na lista de salto" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Recolorindo (cor escura)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Recolorindo (cor clara)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Cor para destacar" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Cor para destacar (ativo)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "'Carregando ...' cor de fundo" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "'Carregando ...' cor de primeiro plano" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Recolorir páginas" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" "Quando recolorir, manter tonalidade original e ajustar somente a luminosidade" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Rolagem envoltório" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Rolagem de página consciente" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Numero de avanço de paginas por linha" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Zoom centrado horizontalmente" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "Alinhe destino do link à esquerda" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "Zoom será mudado quando seguir os links" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Resultado centrado horizontalmente" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Transparência para destacar" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Renderizando 'Carregando...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Ajuste para quando abrir o arquivo" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Mostrar arquivos ocultos e diretórios" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Mostrar diretórios" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Sempre abrir na primeira página" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Destaque resultados de busca" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Ativar pesquisa incremental" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Limpar resultados de busca ou abortar" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Usar nome do arquivo na barra de titulo" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Exibir o número da página no título da janela." -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Use o nome do arquivo na barra de status" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Ativar suporte synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "Habilitar serviço D-Bus" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" "A área de transferência em que o dados selecionados com o mouse vão ser " "escritos" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Adicionar um favorito" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Deletar um favorito" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Listar todos favoritos" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Fechar arquivo atual" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Mostrar informações do arquivo" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Executar um comando" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Mostrar ajuda" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Abrir documento" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Fechar zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Imprimir documento" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Salvar documento" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Salvar documento (e forçar sobrescrever)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Salvar anexos" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Definir deslocamento da página" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Marcar localização atual no documento" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Apagar as marcas especificadas" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Não destacar resultados de busca atual" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Destacar resultado de busca atual" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Mostrar informações sobre a versão" @@ -564,11 +568,11 @@ msgstr "Começar em um modo não padrão" msgid "Loading..." msgstr "Carregando..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Copiar imagem" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Salvar imagem para" @@ -577,11 +581,16 @@ msgstr "Salvar imagem para" msgid "Printing failed: %s" msgstr "Impressão falhou: %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Este documento não contem qualquer índice" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Sem nome]" @@ -599,11 +608,11 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 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:799 +#: ../zathura/zathura.c:798 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 24b8278..85f07a9 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -38,7 +38,7 @@ msgstr "Неправильный ввод: %s." msgid "Invalid index '%s' given." msgstr "Получен неверный индекс: %s." -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -47,8 +47,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Нет открытых документов." @@ -201,289 +201,293 @@ msgstr "Изображения" msgid "Database backend" msgstr "Бэкэнд базы данных" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Шаг увеличения" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Разрыв между страницами" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Количество страниц в ряд" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "Столбец первой страницы" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Шаг прокрутки" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Шаг горизонтальной прокрутки" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Перекрытие страниц при прокрутке" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Минимальное увеличение" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Максимальное увеличение" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "Максимальное количество страниц хранимых в кэше" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Длина истории переходов" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Перекрашивание (тёмные тона)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Перекрашивание (светлые тона)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Цвет для подсветки" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Цвет для подсветки (активной)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "Цвет фона загрузочной заставки" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "Цвет загрузочной заставки" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Перекрасить страницы" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "При перекраске сохранять оттенок и изменять только осветление" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Плавная прокрутка" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "Постраничная прокрутка" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Увеличить количество страниц в ряду" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Центрировать увеличение по горизонтали" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "Выровнять цель ссылки по левому краю" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "Разрешить изменять размер при следовании по ссылкам" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "Центрировать результат по горизонтали" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Прозрачность подсветки" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Рендер «Загружается ...»" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Подогнать размеры при открытии документа" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Показывать скрытые файлы и каталоги" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Показывать каталоги" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Всегда открывать на первой странице" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Подсветить результаты поиска" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Включить инкрементальный поиск" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Сбросить результаты при отмене поиска" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Использовать базовое имя файла в заголовке" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "Показывать номер страницы в заголовке" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "Использовать базовое имя файла в строке состояния" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "Включить поддержку synctex" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "Включить сервис D-Bus" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "Буфер для записи данных из области выделенных мышкой" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Добавить закладку" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Удалить закладку" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Показать все закладки" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Закрыть текущий файл" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Показать информацию о файле" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Выполнить команду" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Помощь" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Открыть документ" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Выход" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Печать" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Сохранить документ" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Сохранить документ (с перезаписью)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Сохранить прикреплённые файлы" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Сохранить смещение страницы" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Пометить текущую позицию в документе" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Удалить указанные пометки" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Не подсвечивать результаты текущего поиска" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Подсветить результаты текущего поиска" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Показать информацию о версии файла" @@ -565,11 +569,11 @@ msgstr "Запустить в специальном режиме" msgid "Loading..." msgstr "Загрузка..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Скопировать изображение" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Сохранить изображение как" @@ -578,11 +582,16 @@ msgstr "Сохранить изображение как" msgid "Printing failed: %s" msgstr "Не удалось напечатать %s" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "В документе нет индекса" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Без названия]" @@ -600,10 +609,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "Тип файла не поддерживается. Установите соответствующий плагин." -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "В документе нет страниц" diff --git a/po/ta_IN.po b/po/ta_IN.po index ec40c80..c60073b 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:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -33,7 +33,7 @@ msgstr "கொடுக்கப்பட்ட உள்ளீடு(input) '%s msgid "Invalid index '%s' given." msgstr "கொடுக்கப்பட்ட index '%s' தவறு" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -42,8 +42,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "எந்தக் ஆவணமும் திறக்கப்படவில்லை" @@ -196,289 +196,293 @@ msgstr "" msgid "Database backend" msgstr "" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Zoom அமைப்பு" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "இரு பக்கங்களுக்கிடையில் உள்ள நிரப்பல்(padding)" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "ஒரு வரிசையில் எத்தனை பக்கங்களைக் காட்ட வேண்டும்" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "திரை உருளல்(scroll) அளவு" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "முடிந்தவரை சிறியதாகக் காட்டு" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "முடிந்தவரை பெரிதாகக் காட்டு" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "புதிய bookmark உருவாக்கு" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Bookmark-ஐ அழித்துவிடு" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "அனைத்து bookmark-களையும் பட்டியலிடு" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "ஆவணம் பற்றிய தகவல்களைக் காட்டு" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "உதவியைக் காட்டு" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "ஒரு ஆவணத்தைத் திற" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "zathura-வை விட்டு வெளியேறு" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "ஆவணத்தை அச்சிடு" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "ஆவணத்தை சேமிக்கவும்" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "இணைப்புகளைச் சேமிக்கவும்" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "" @@ -560,11 +564,11 @@ msgstr "" msgid "Loading..." msgstr "" -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "படத்தை ஒரு பிரதியெடு" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "" @@ -573,11 +577,16 @@ msgstr "" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "இந்த ஆவணத்தில் எந்த index-ம் இல்லை" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "பெயரற்ற ஆவணம்" @@ -593,10 +602,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/tr.po b/po/tr.po index f5ba155..1bee3b6 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -35,7 +35,7 @@ msgstr "Hatalı girdi '%s'" msgid "Invalid index '%s' given." msgstr "Hatalı dizin '%s'" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -44,8 +44,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Açık belge yok." @@ -198,289 +198,293 @@ msgstr "Resimler" msgid "Database backend" msgstr "Veritabanı arkayüzü" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Yakınlaşma/uzaklaşma aralığı" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Sayfalar arasındaki boşluk" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Satır başına sayfa sayısı" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "İlk sayfanın sütunu" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Kaydırma aralığı" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "Yatay kaydırma adımı" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "Tam ekran kaydırma kaplaması" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "En fazla uzaklaşma" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "En fazla yakınlaşma" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "Atlama listesinde hatırlanacak pozisyon sayısı" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Renk değişimi (koyu renk)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Renk değişimi (açık renk)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "İşaretleme rengi" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "İşaretleme rengi (etkin)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Sayga rengini değiştir" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "Yeniden renklendirirken renk değerini tut ve sadece parlaklığı ayarla" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Kaydırmayı sarmala" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "Satır başına sayfa sayısı" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "Yatay olarak ortalanmış büyütme" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Ön plana çıkarmak için saydamlaştır" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "'Yüklüyor ...' yazısını göster" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Dosya açarken ayarla" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Gizli dosyaları ve dizinleri göster" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Dizinleri göster" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Her zaman ilk sayfayı aç" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "Arama sonuçlarını vurgula" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "Artımlı aramayı etkinleştir" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "Kapatınca arama sonuçlarını temizle" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "Pencere başlığı olarak dosyanın adını kullan" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Yer imi ekle" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Yer imi sil" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Yer imlerini listele" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Geçerli dosyayı kapat" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Dosya bilgisi göster" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "Bir komut çalıştır" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Yardım bilgisi göster" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Belge aç" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Zathura'yı kapat" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Belge yazdır" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Belgeyi kaydet" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Belgeyi kaydet (ve sormadan üzerine yaz)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Ekleri kaydet" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Sayfa derinliğini ayarla" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "Bu belgede bu konumu işaretle" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "Seçilen işaretlemeleri sil" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "Şuanki arama sonuçlarını vurgulama" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "Şuanki arama sonuçlarını vurgula" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "Versiyon bilgisi göster" @@ -562,11 +566,11 @@ msgstr "" msgid "Loading..." msgstr "Yüklüyor ..." -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Resim kopyala" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "Resmi farklı kaydet" @@ -575,11 +579,16 @@ msgstr "Resmi farklı kaydet" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Bu belge fihrist içermiyor" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[İsimsiz]" @@ -595,10 +604,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" diff --git a/po/uk_UA.po b/po/uk_UA.po index 4dce8e5..0bf303b 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: 2016-04-18 21:08+0200\n" +"POT-Creation-Date: 2017-01-05 15:52+0100\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/" @@ -35,7 +35,7 @@ msgstr "Вказано невірний аргумент: %s." msgid "Invalid index '%s' given." msgstr "Вказано невірний індекс: %s" -#: ../zathura/callbacks.c:594 +#: ../zathura/callbacks.c:590 #, c-format msgid "Copied selected text to selection %s: %s" msgstr "" @@ -44,8 +44,8 @@ msgstr "" #: ../zathura/commands.c:152 ../zathura/commands.c:268 #: ../zathura/commands.c:298 ../zathura/commands.c:324 #: ../zathura/commands.c:423 ../zathura/commands.c:550 -#: ../zathura/shortcuts.c:406 ../zathura/shortcuts.c:1216 -#: ../zathura/shortcuts.c:1245 ../zathura/shortcuts.c:1272 +#: ../zathura/shortcuts.c:413 ../zathura/shortcuts.c:1223 +#: ../zathura/shortcuts.c:1258 ../zathura/shortcuts.c:1285 msgid "No document opened." msgstr "Документ не відкрито." @@ -198,289 +198,293 @@ msgstr "" msgid "Database backend" msgstr "Буфер бази" -#: ../zathura/config.c:146 +#: ../zathura/config.c:145 +msgid "File monitor backend" +msgstr "" + +#: ../zathura/config.c:147 msgid "Zoom step" msgstr "Збільшення" -#: ../zathura/config.c:148 +#: ../zathura/config.c:149 msgid "Padding between pages" msgstr "Заповнення між сторінками" -#: ../zathura/config.c:150 +#: ../zathura/config.c:151 msgid "Number of pages per row" msgstr "Кількість сторінок в одному рядку" -#: ../zathura/config.c:152 +#: ../zathura/config.c:153 msgid "Column of the first page" msgstr "" -#: ../zathura/config.c:154 +#: ../zathura/config.c:155 msgid "Scroll step" msgstr "Прокручування" -#: ../zathura/config.c:156 +#: ../zathura/config.c:157 msgid "Horizontal scroll step" msgstr "" -#: ../zathura/config.c:158 +#: ../zathura/config.c:159 msgid "Full page scroll overlap" msgstr "" -#: ../zathura/config.c:160 +#: ../zathura/config.c:161 msgid "Zoom minimum" msgstr "Максимальне зменшення" -#: ../zathura/config.c:162 +#: ../zathura/config.c:163 msgid "Zoom maximum" msgstr "Максимальне збільшення" -#: ../zathura/config.c:164 +#: ../zathura/config.c:165 msgid "Maximum number of pages to keep in the cache" msgstr "" -#: ../zathura/config.c:166 +#: ../zathura/config.c:167 msgid "Maximum size in pixels of thumbnails to keep in the cache" msgstr "" -#: ../zathura/config.c:168 +#: ../zathura/config.c:169 msgid "Number of positions to remember in the jumplist" msgstr "" -#: ../zathura/config.c:170 +#: ../zathura/config.c:171 msgid "Recoloring (dark color)" msgstr "Перефарбування (темний колір)" -#: ../zathura/config.c:171 +#: ../zathura/config.c:172 msgid "Recoloring (light color)" msgstr "Перефарбування (світлий колір)" -#: ../zathura/config.c:172 +#: ../zathura/config.c:173 msgid "Color for highlighting" msgstr "Колір для виділення" -#: ../zathura/config.c:174 +#: ../zathura/config.c:175 msgid "Color for highlighting (active)" msgstr "Колір для виділення (активний)" -#: ../zathura/config.c:176 +#: ../zathura/config.c:177 msgid "'Loading ...' background color" msgstr "" -#: ../zathura/config.c:178 +#: ../zathura/config.c:179 msgid "'Loading ...' foreground color" msgstr "" -#: ../zathura/config.c:181 +#: ../zathura/config.c:182 msgid "Index mode foreground color" msgstr "" -#: ../zathura/config.c:182 +#: ../zathura/config.c:183 msgid "Index mode background color" msgstr "" -#: ../zathura/config.c:183 +#: ../zathura/config.c:184 msgid "Index mode foreground color (active element)" msgstr "" -#: ../zathura/config.c:184 +#: ../zathura/config.c:185 msgid "Index mode background color (active element)" msgstr "" -#: ../zathura/config.c:187 +#: ../zathura/config.c:188 msgid "Recolor pages" msgstr "Змінити кольори" -#: ../zathura/config.c:189 +#: ../zathura/config.c:190 msgid "When recoloring keep original hue and adjust lightness only" msgstr "" -#: ../zathura/config.c:191 +#: ../zathura/config.c:192 msgid "When recoloring keep original image colors" msgstr "" -#: ../zathura/config.c:193 +#: ../zathura/config.c:194 msgid "Wrap scrolling" msgstr "Плавне прокручування" -#: ../zathura/config.c:195 +#: ../zathura/config.c:196 msgid "Page aware scrolling" msgstr "" -#: ../zathura/config.c:197 +#: ../zathura/config.c:198 msgid "Advance number of pages per row" msgstr "" -#: ../zathura/config.c:199 +#: ../zathura/config.c:200 msgid "Horizontally centered zoom" msgstr "" -#: ../zathura/config.c:201 +#: ../zathura/config.c:202 msgid "Align link target to the left" msgstr "" -#: ../zathura/config.c:203 +#: ../zathura/config.c:204 msgid "Let zoom be changed when following links" msgstr "" -#: ../zathura/config.c:205 +#: ../zathura/config.c:206 msgid "Center result horizontally" msgstr "" -#: ../zathura/config.c:207 +#: ../zathura/config.c:208 msgid "Transparency for highlighting" msgstr "Прозорість для виділення" -#: ../zathura/config.c:209 +#: ../zathura/config.c:210 msgid "Render 'Loading ...'" msgstr "Рендер 'Завантажується ...'" -#: ../zathura/config.c:210 +#: ../zathura/config.c:211 msgid "Adjust to when opening file" msgstr "Підлаштовутись при відкритті файлу" -#: ../zathura/config.c:212 +#: ../zathura/config.c:213 msgid "Show hidden files and directories" msgstr "Показати приховані файли та директорії" -#: ../zathura/config.c:214 +#: ../zathura/config.c:215 msgid "Show directories" msgstr "Показати диреторії" -#: ../zathura/config.c:216 +#: ../zathura/config.c:217 msgid "Show recent files" msgstr "" -#: ../zathura/config.c:218 +#: ../zathura/config.c:219 msgid "Always open on first page" msgstr "Завжди відкривати на першій сторінці" -#: ../zathura/config.c:220 +#: ../zathura/config.c:221 msgid "Highlight search results" msgstr "" -#: ../zathura/config.c:223 +#: ../zathura/config.c:224 msgid "Enable incremental search" msgstr "" -#: ../zathura/config.c:225 +#: ../zathura/config.c:226 msgid "Clear search results on abort" msgstr "" -#: ../zathura/config.c:227 +#: ../zathura/config.c:228 msgid "Use basename of the file in the window title" msgstr "" -#: ../zathura/config.c:229 +#: ../zathura/config.c:230 msgid "Use ~ instead of $HOME in the filename in the window title" msgstr "" -#: ../zathura/config.c:231 +#: ../zathura/config.c:232 msgid "Display the page number in the window title" msgstr "" -#: ../zathura/config.c:233 +#: ../zathura/config.c:234 msgid "Use basename of the file in the statusbar" msgstr "" -#: ../zathura/config.c:235 +#: ../zathura/config.c:236 msgid "Use ~ instead of $HOME in the filename in the statusbar" msgstr "" -#: ../zathura/config.c:237 +#: ../zathura/config.c:238 msgid "Enable synctex support" msgstr "" -#: ../zathura/config.c:239 +#: ../zathura/config.c:240 msgid "Synctex editor command" msgstr "" -#: ../zathura/config.c:241 +#: ../zathura/config.c:242 msgid "Enable D-Bus service" msgstr "" -#: ../zathura/config.c:243 +#: ../zathura/config.c:244 msgid "The clipboard into which mouse-selected data will be written" msgstr "" -#: ../zathura/config.c:245 +#: ../zathura/config.c:246 msgid "Enable notification after selecting text" msgstr "" #. define default inputbar commands -#: ../zathura/config.c:435 +#: ../zathura/config.c:436 msgid "Add a bookmark" msgstr "Додати закладку" -#: ../zathura/config.c:436 +#: ../zathura/config.c:437 msgid "Delete a bookmark" msgstr "Вилучити закладку" -#: ../zathura/config.c:437 +#: ../zathura/config.c:438 msgid "List all bookmarks" msgstr "Дивитись усі закладки" -#: ../zathura/config.c:438 +#: ../zathura/config.c:439 msgid "Close current file" msgstr "Закрити документ" -#: ../zathura/config.c:439 +#: ../zathura/config.c:440 msgid "Show file information" msgstr "Показати інформацію файлу" -#: ../zathura/config.c:440 ../zathura/config.c:441 +#: ../zathura/config.c:441 ../zathura/config.c:442 msgid "Execute a command" msgstr "" #. like vim -#: ../zathura/config.c:442 +#: ../zathura/config.c:443 msgid "Show help" msgstr "Показати довідку" -#: ../zathura/config.c:443 +#: ../zathura/config.c:444 msgid "Open document" msgstr "Відкрити документ" -#: ../zathura/config.c:444 +#: ../zathura/config.c:445 msgid "Close zathura" msgstr "Вийти із zathura" -#: ../zathura/config.c:445 +#: ../zathura/config.c:446 msgid "Print document" msgstr "Друкувати документ" -#: ../zathura/config.c:446 +#: ../zathura/config.c:447 msgid "Save document" msgstr "Зберегти документ" -#: ../zathura/config.c:447 +#: ../zathura/config.c:448 msgid "Save document (and force overwriting)" msgstr "Зберегти документ (форсувати перезапис)" -#: ../zathura/config.c:448 +#: ../zathura/config.c:449 msgid "Save attachments" msgstr "Зберегти прикріплення" -#: ../zathura/config.c:449 +#: ../zathura/config.c:450 msgid "Set page offset" msgstr "Встановити зміщення сторінки" -#: ../zathura/config.c:450 +#: ../zathura/config.c:451 msgid "Mark current location within the document" msgstr "" -#: ../zathura/config.c:451 +#: ../zathura/config.c:452 msgid "Delete the specified marks" msgstr "" -#: ../zathura/config.c:452 +#: ../zathura/config.c:453 msgid "Don't highlight current search results" msgstr "" -#: ../zathura/config.c:453 +#: ../zathura/config.c:454 msgid "Highlight current search results" msgstr "" -#: ../zathura/config.c:454 +#: ../zathura/config.c:455 msgid "Show version information" msgstr "" @@ -562,11 +566,11 @@ msgstr "" msgid "Loading..." msgstr "" -#: ../zathura/page-widget.c:1006 +#: ../zathura/page-widget.c:1007 msgid "Copy image" msgstr "Копіювати картинку" -#: ../zathura/page-widget.c:1007 +#: ../zathura/page-widget.c:1008 msgid "Save image as" msgstr "" @@ -575,11 +579,16 @@ msgstr "" msgid "Printing failed: %s" msgstr "" -#: ../zathura/shortcuts.c:1126 +#: ../zathura/shortcuts.c:105 +#, c-format +msgid "Invalid adjust mode: %d" +msgstr "" + +#: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" msgstr "Індекс відсутній в цьому документі" -#: ../zathura/zathura.c:216 ../zathura/zathura.c:1301 +#: ../zathura/zathura.c:216 ../zathura/zathura.c:1274 msgid "[No name]" msgstr "[Без назви]" @@ -595,10 +604,10 @@ msgstr "" msgid "Enter password:" msgstr "" -#: ../zathura/zathura.c:789 +#: ../zathura/zathura.c:788 msgid "Unsupported file type. Please install the necessary plugin." msgstr "" -#: ../zathura/zathura.c:799 +#: ../zathura/zathura.c:798 msgid "Document does not contain any pages" msgstr "" From fda7aa426159c537f2e6166c7b22a4d59bd3b2e9 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 5 Jan 2017 15:55:45 +0100 Subject: [PATCH 42/46] Update German translation --- po/de.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 0acf15d..40eba5a 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: zathura\n" "Report-Msgid-Bugs-To: http://bugs.pwmt.org\n" "POT-Creation-Date: 2017-01-05 15:52+0100\n" -"PO-Revision-Date: 2016-04-18 21:11+0200\n" +"PO-Revision-Date: 2017-01-05 15:55+0100\n" "Last-Translator: Sebastian Ramacher \n" "Language-Team: German (http://www.transifex.com/projects/p/zathura/language/" "de/)\n" @@ -200,7 +200,7 @@ msgstr "Datenbank Backend" #: ../zathura/config.c:145 msgid "File monitor backend" -msgstr "" +msgstr "Dateiwächter Backend" #: ../zathura/config.c:147 msgid "Zoom step" @@ -585,7 +585,7 @@ msgstr "Drucken fehlgeschlagen: %s" #: ../zathura/shortcuts.c:105 #, c-format msgid "Invalid adjust mode: %d" -msgstr "" +msgstr "Ungültiger Anpassungsmodus: %d" #: ../zathura/shortcuts.c:1133 msgid "This document does not contain any index" From 16394a3a1fed183c0b765e32cfd0f0de555f6c59 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 6 Jan 2017 20:09:03 +0100 Subject: [PATCH 43/46] Switch to log functions Signed-off-by: Sebastian Ramacher --- zathura/main.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/zathura/main.c b/zathura/main.c index 1c1439a..082e0ce 100644 --- a/zathura/main.c +++ b/zathura/main.c @@ -1,7 +1,8 @@ /* See LICENSE file for license and copyright information */ -#include #include +#include + #include #include #include @@ -33,11 +34,11 @@ static void set_log_level(const char* loglevel) { if (loglevel == NULL || g_strcmp0(loglevel, "info") == 0) { - girara_set_debug_level(GIRARA_INFO); + girara_set_log_level(GIRARA_INFO); } else if (g_strcmp0(loglevel, "warning") == 0) { - girara_set_debug_level(GIRARA_WARNING); + girara_set_log_level(GIRARA_WARNING); } else if (g_strcmp0(loglevel, "error") == 0) { - girara_set_debug_level(GIRARA_ERROR); + girara_set_log_level(GIRARA_ERROR); } } From 1ae7ac0b9ce069956d6129d6e9b6d4bf183e8362 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 6 Jan 2017 20:11:23 +0100 Subject: [PATCH 44/46] Rename --debug to --log-level Signed-off-by: Sebastian Ramacher --- doc/man/_options.txt | 4 ++-- zathura/main.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man/_options.txt b/doc/man/_options.txt index 0ebbf14..73a9833 100644 --- a/doc/man/_options.txt +++ b/doc/man/_options.txt @@ -20,8 +20,8 @@ with 1, and negative numbers indicate page numbers starting from the end of the document, -1 being the last page. --l, --debug=level - Set log debug level (debug, info, warning, error) +-l, --log-level=level + Set log level (debug, info, warning, error) -x, --synctex-editor-command=command Set the synctex editor command. Overrides the synctex-editor-command setting. diff --git a/zathura/main.c b/zathura/main.c index 082e0ce..2355a1e 100644 --- a/zathura/main.c +++ b/zathura/main.c @@ -151,7 +151,7 @@ main(int argc, char* argv[]) { "fork", '\0', 0, G_OPTION_ARG_NONE, &forkback, _("Fork into the background"), NULL }, { "password", 'w', 0, G_OPTION_ARG_STRING, &password, _("Document password"), "password" }, { "page", 'P', 0, G_OPTION_ARG_INT, &page_number, _("Page number to go to"), "number" }, - { "debug", 'l', 0, G_OPTION_ARG_STRING, &loglevel, _("Log level (debug, info, warning, error)"), "level" }, + { "log-level", 'l', 0, G_OPTION_ARG_STRING, &loglevel, _("Log level (debug, info, warning, error)"), "level" }, { "version", 'v', 0, G_OPTION_ARG_NONE, &print_version, _("Print version information"), NULL }, #ifdef WITH_SYNCTEX { "synctex-editor-command", 'x', 0, G_OPTION_ARG_STRING, &synctex_editor, _("Synctex editor (forwarded to the synctex command)"), "cmd" }, From 6237b859ce93029b55e88fc0d5e8bfc65a3d11d9 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sat, 7 Jan 2017 15:19:58 +0100 Subject: [PATCH 45/46] Update years --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 2244d16..af2dfc0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009-2016 pwmt.org +Copyright (c) 2009-2017 pwmt.org This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages From d7f8ee5a23ecc7f1a5466c6d215cbf4e18826d16 Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Wed, 11 Jan 2017 22:04:56 +0100 Subject: [PATCH 46/46] Version 0.3.7 --- config.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.mk b/config.mk index 3612e93..4967656 100644 --- a/config.mk +++ b/config.mk @@ -6,7 +6,7 @@ PROJECT = zathura ZATHURA_VERSION_MAJOR = 0 ZATHURA_VERSION_MINOR = 3 -ZATHURA_VERSION_REV = 6 +ZATHURA_VERSION_REV = 7 # 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.6 +GIRARA_MIN_VERSION = 0.2.7 GIRARA_PKG_CONFIG_NAME = girara-gtk3 # glib GLIB_VERSION_CHECK ?= 1