|
|
1a700d |
From bbdf11482efb932bcf8a55ec11b0cf503527638f Mon Sep 17 00:00:00 2001
|
|
|
1a700d |
From: Marek Kasik <mkasik@redhat.com>
|
|
|
1a700d |
Date: Mon, 26 Aug 2019 16:23:41 +0200
|
|
|
1a700d |
Subject: shell: Set a11y names for annotation buttons
|
|
|
1a700d |
|
|
|
1a700d |
Buttons for annotations were missing a11y names
|
|
|
1a700d |
which made it difficult to navigate using a11y
|
|
|
1a700d |
methods.
|
|
|
1a700d |
|
|
|
1a700d |
diff --git a/shell/ev-annotations-toolbar.c b/shell/ev-annotations-toolbar.c
|
|
|
1a700d |
index 7231d968..0efc6a35 100644
|
|
|
1a700d |
--- a/shell/ev-annotations-toolbar.c
|
|
|
1a700d |
+++ b/shell/ev-annotations-toolbar.c
|
|
|
1a700d |
@@ -90,13 +90,20 @@ ev_annotations_toolbar_toggle_button_if_
|
|
|
1a700d |
|
|
|
1a700d |
static GtkWidget *
|
|
|
1a700d |
ev_annotations_toolbar_create_toggle_button (EvAnnotationsToolbar *toolbar,
|
|
|
1a700d |
+ const gchar *label,
|
|
|
1a700d |
const gchar *icon_name,
|
|
|
1a700d |
const gchar *tooltip)
|
|
|
1a700d |
{
|
|
|
1a700d |
GtkWidget *button = GTK_WIDGET (gtk_toggle_tool_button_new ());
|
|
|
1a700d |
|
|
|
1a700d |
gtk_widget_set_tooltip_text (button, tooltip);
|
|
|
1a700d |
- gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON (button), icon_name);
|
|
|
1a700d |
+
|
|
|
1a700d |
+ if (label)
|
|
|
1a700d |
+ atk_object_set_name (gtk_widget_get_accessible (button), label);
|
|
|
1a700d |
+
|
|
|
1a700d |
+ if (icon_name)
|
|
|
1a700d |
+ gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON (button), icon_name);
|
|
|
1a700d |
+
|
|
|
1a700d |
/* For some reason adding text-button class to the GtkToogleButton makes the button smaller */
|
|
|
1a700d |
gtk_style_context_add_class (gtk_widget_get_style_context (gtk_bin_get_child (GTK_BIN (button))), "text-button");
|
|
|
1a700d |
g_signal_connect (button, "toggled",
|
|
|
1a700d |
@@ -115,13 +124,16 @@ ev_annotations_toolbar_init (EvAnnotatio
|
|
|
1a700d |
GTK_STYLE_CLASS_INLINE_TOOLBAR);
|
|
|
1a700d |
|
|
|
1a700d |
toolbar->text_button = ev_annotations_toolbar_create_toggle_button (toolbar,
|
|
|
1a700d |
+ /* Translators: an annotation that looks like a "sticky note" */
|
|
|
1a700d |
+ _("Note text"),
|
|
|
1a700d |
"document-new-symbolic",
|
|
|
1a700d |
_("Add text annotation"));
|
|
|
1a700d |
gtk_container_add (GTK_CONTAINER(toolbar), toolbar->text_button);
|
|
|
1a700d |
gtk_widget_show (toolbar->text_button);
|
|
|
1a700d |
|
|
|
1a700d |
/* FIXME: use a better icon than select-all */
|
|
|
1a700d |
toolbar->highlight_button = ev_annotations_toolbar_create_toggle_button (toolbar,
|
|
|
1a700d |
+ _("Highlight text"),
|
|
|
1a700d |
"edit-select-all-symbolic",
|
|
|
1a700d |
_("Add highlight annotation"));
|
|
|
1a700d |
gtk_container_add (GTK_CONTAINER (toolbar), toolbar->highlight_button);
|
|
|
1a700d |
diff --git a/shell/ev-toolbar.c b/shell/ev-toolbar.c
|
|
|
1a700d |
index c4f209f5..44a293dc 100644
|
|
|
1a700d |
--- a/shell/ev-toolbar.c
|
|
|
1a700d |
+++ b/shell/ev-toolbar.c
|
|
|
1a700d |
@@ -224,6 +224,7 @@ ev_toolbar_constructed (GObject *object)
|
|
|
1a700d |
/* FIXME: Use a better icon for edit than text editor */
|
|
|
1a700d |
button = ev_toolbar_create_toggle_button (ev_toolbar, "win.toggle-edit-annots", "accessories-text-editor-symbolic",
|
|
|
1a700d |
_("Annotate the document"));
|
|
|
1a700d |
+ atk_object_set_name (gtk_widget_get_accessible (button), _("Annotate document"));
|
|
|
1a700d |
ev_toolbar->priv->annots_button = button;
|
|
|
1a700d |
gtk_widget_set_margin_end (button, 6);
|
|
|
1a700d |
gtk_header_bar_pack_start (GTK_HEADER_BAR (ev_toolbar), button);
|
|
|
1a700d |
--- evince-3.28.4/po/ar.po
|
|
|
1a700d |
+++ evince-3.28.4/po/ar.po
|
|
|
1a700d |
@@ -904,10 +904,19 @@ msgstr "Ù
ÙتÙØØ©"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Ù
غÙÙØ©"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Ùص اÙÙ
ÙاØظة"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "أض٠تعÙÙÙا ÙصÙا"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Ùص اÙتظÙÙÙ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "أض٠تعÙÙ٠إبراز"
|
|
|
1a700d |
--- evince-3.28.4/po/be.po
|
|
|
1a700d |
+++ evince-3.28.4/po/be.po
|
|
|
1a700d |
@@ -911,10 +911,19 @@ msgstr "ĞдкÑÑÑÑ"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ĞакÑÑÑÑ"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Ğ¢ÑкÑÑ Ğ½Ğ°ÑĞ°ÑкÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "ĞĞ°Ğ´Ğ°ÑÑ ÑÑкÑÑавÑÑ Ğ°Ğ½Ğ°ÑĞ°ÑÑÑ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ĞĞ°Ğ´ÑвÑÑÑÑÑ ÑÑкÑÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "ĞĞ°Ğ´Ğ°ÑÑ Ğ°Ğ½Ğ°ÑĞ°ÑÑÑ Ğ²ÑĞ´Ğ·ÑленнÑ"
|
|
|
1a700d |
--- evince-3.28.4/po/ca.po
|
|
|
1a700d |
+++ evince-3.28.4/po/ca.po
|
|
|
1a700d |
@@ -915,10 +915,19 @@ msgstr "Obre"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Tanca"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Propera nota"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Afegeix una anotació de text"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Ressalta el text"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Afegeix una anotació realçada"
|
|
|
1a700d |
@@ -1115,6 +1124,10 @@ msgstr "Selecciona la pà gina"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Anota el document"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Anota el document"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opcions de fitxer"
|
|
|
1a700d |
--- evince-3.28.4/po/cs.po
|
|
|
1a700d |
+++ evince-3.28.4/po/cs.po
|
|
|
1a700d |
@@ -926,10 +926,19 @@ msgstr "OtevÅené"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ZavÅené"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Poznámka"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "PÅidat textovou poznámku"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Zvýraznit"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "PÅidat zvýraznÄnou poznámku"
|
|
|
1a700d |
@@ -1133,6 +1142,10 @@ msgstr "Zvolit stránku"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "PÅidat poznámky k dokumentu"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "PÅidat poznámky k dokumentu"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Volby souborů"
|
|
|
1a700d |
--- evince-3.28.4/po/da.po
|
|
|
1a700d |
+++ evince-3.28.4/po/da.po
|
|
|
1a700d |
@@ -953,10 +953,19 @@ msgstr "Ã
bent"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Lukket"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Notetekst"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Tilføj tekstannotation"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Fremhæv tekst"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Tilføj fremhævet annotation"
|
|
|
1a700d |
@@ -1159,6 +1168,10 @@ msgstr "Vælg side"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Annotér dokumentet"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Annotér dokument"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Filindstillinger"
|
|
|
1a700d |
--- evince-3.28.4/po/de.po
|
|
|
1a700d |
+++ evince-3.28.4/po/de.po
|
|
|
1a700d |
@@ -941,10 +941,19 @@ msgstr "Ãffnen"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "SchlieÃen"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Notiztext"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Textanmerkung hinzufügen"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Texthervorhebung"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Hervorhebungsanmerkung hinzufügen"
|
|
|
1a700d |
@@ -1152,6 +1161,10 @@ msgstr "Seite auswählen"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Das Dokument mit Anmerkungen versehen"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Dokument mit Anmerkungen versehen"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Dateioptionen"
|
|
|
1a700d |
--- evince-3.28.4/po/el.po
|
|
|
1a700d |
+++ evince-3.28.4/po/el.po
|
|
|
1a700d |
@@ -932,10 +932,19 @@ msgstr "Îνοιγμα"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ÎλείÏιμο"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ΣημείÏÏη κειμÎνοÏ
"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Î ÏοÏθήκη ÏÏολίοÏ
κειμÎνοÏ
"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ÎÏιÏήμανÏη κειμÎνοÏ
"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Î ÏοÏθήκη ÏÏολίοÏ
εÏιÏήμανÏηÏ"
|
|
|
1a700d |
--- evince-3.28.4/po/en_GB.po
|
|
|
1a700d |
+++ evince-3.28.4/po/en_GB.po
|
|
|
1a700d |
@@ -932,10 +932,19 @@ msgstr "Open"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Close"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Note text"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Add text annotation"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Highlight text"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Add highlight annotation"
|
|
|
1a700d |
@@ -1170,6 +1179,11 @@ msgstr "Select page"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Annotate the document"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+#| msgid "Annotate the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Annotate document"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Find options"
|
|
|
1a700d |
--- evince-3.28.4/po/eo.po
|
|
|
1a700d |
+++ evince-3.28.4/po/eo.po
|
|
|
1a700d |
@@ -1093,10 +1093,19 @@ msgstr "Notoj"
|
|
|
1a700d |
msgid "Text"
|
|
|
1a700d |
msgstr "Teksto"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-sidebar-annotations.c:212
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Nota teksto"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Aldoni tekstnoton"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Emfazi tekston"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-sidebar-annotations.c:223 ../shell/ev-sidebar-bookmarks.c:458
|
|
|
1a700d |
msgid "Add"
|
|
|
1a700d |
msgstr "Aldoni"
|
|
|
1a700d |
@@ -1158,6 +1167,10 @@ msgstr "Malfermi ekzistan dokumenton"
|
|
|
1a700d |
msgid "Find a word or phrase in the document"
|
|
|
1a700d |
msgstr "SerÄi vorton aÅ frazon en la dokumento"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Noti dokumenton"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:232 ../shell/ev-toolbar.c:233
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Dosieraj opcioj"
|
|
|
1a700d |
--- evince-3.28.4/po/es.po
|
|
|
1a700d |
+++ evince-3.28.4/po/es.po
|
|
|
1a700d |
@@ -925,10 +925,19 @@ msgstr "Abierta"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Cerrada"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Nota de texto"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Añadir anotación de texto"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Resaltar texto"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Añadir anotación resaltada"
|
|
|
1a700d |
@@ -1131,6 +1140,10 @@ msgstr "Seleccionar página"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Anotar el documento"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Anotar el documento"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opciones del archivo"
|
|
|
1a700d |
--- evince-3.28.4/po/eu.po
|
|
|
1a700d |
+++ evince-3.28.4/po/eu.po
|
|
|
1a700d |
@@ -918,10 +918,19 @@ msgstr "Ireki"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Itxi"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Ohar-testua"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Gehitu testuaren oharpena"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Nabarmendu testua"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Gehitu ohar nabarmendua"
|
|
|
1a700d |
@@ -1151,6 +1160,10 @@ msgstr "Hautatu orrialdea"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Jarri oharra dokumentuan"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Jarri oharra dokumentuetan"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Fitxategiaren aukerak"
|
|
|
1a700d |
--- evince-3.28.4/po/fa.po
|
|
|
1a700d |
+++ evince-3.28.4/po/fa.po
|
|
|
1a700d |
@@ -908,10 +908,19 @@ msgstr "باز کردÙ"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "بستÙ"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Ù
ت٠Ûاداشت"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "اÙزÙد٠ØاشÛÙâÙÙÛØ³Û Ù
تÙÛ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Ù
ت٠ÙشاÙÙâگذارÛ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "اÙزÙد٠ØاشÛÙâÙÙÛØ³Û Ù¾Ø±Ø±ÙÚ¯"
|
|
|
1a700d |
@@ -1139,6 +1148,10 @@ msgstr "اÙتخاب صÙØÙ"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "ØاشÛÙâÙÙÛØ³Û Ø³Ùد"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "ØاشÛÙâÙÙÛØ³Û Ø³Ùد"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "گزÛÙÙâÙØ§Û Ù¾Ø±ÙÙدÙ"
|
|
|
1a700d |
--- evince-3.28.4/po/fi.po
|
|
|
1a700d |
+++ evince-3.28.4/po/fi.po
|
|
|
1a700d |
@@ -924,10 +924,19 @@ msgstr "Avoin"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Suljettu"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Huomautusteksti"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Lisää tekstihuomautus"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Korosta teksti"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Lisää korostettu huomautus"
|
|
|
1a700d |
@@ -1132,6 +1141,10 @@ msgstr "Valitse sivu"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Lisää huomautuksia asiakirjaan"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Lisää huomautuksia asiakirjaan"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Tiedoston valinnat"
|
|
|
1a700d |
--- evince-3.28.4/po/fr.po
|
|
|
1a700d |
+++ evince-3.28.4/po/fr.po
|
|
|
1a700d |
@@ -934,10 +934,19 @@ msgstr "Ouvrir"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Fermer"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Annotation"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Ajouter une annotation texte"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Surligner du texte"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Ajouter une annotation surbrillante"
|
|
|
1a700d |
@@ -1144,6 +1153,10 @@ msgstr "Choisir une page"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Annoter le document"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Annoter le document"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Options des fichiers"
|
|
|
1a700d |
--- evince-3.28.4/po/fur.po
|
|
|
1a700d |
+++ evince-3.28.4/po/fur.po
|
|
|
1a700d |
@@ -917,10 +917,19 @@ msgstr "Viert"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Sierât"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Test de note"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Zonte une note testuâl"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Test evidenziât"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Zonte une note evidenziade"
|
|
|
1a700d |
@@ -1116,6 +1125,10 @@ msgstr "Selezione pagjine"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Cjape notis tal document"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Cjape notis tal document"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opzions file"
|
|
|
1a700d |
--- evince-3.28.4/po/gl.po
|
|
|
1a700d |
+++ evince-3.28.4/po/gl.po
|
|
|
1a700d |
@@ -925,10 +925,19 @@ msgstr "Abrir"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Pechar"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Texto da nota"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Engadir texto de anotación"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Realzar texto"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Engadir anotación de realzado"
|
|
|
1a700d |
@@ -1139,6 +1148,10 @@ msgstr "Seleccionar páxina"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Anotar o documento"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Anotar documento"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opcións do ficheiro"
|
|
|
1a700d |
--- evince-3.28.4/po/he.po
|
|
|
1a700d |
+++ evince-3.28.4/po/he.po
|
|
|
1a700d |
@@ -926,10 +926,21 @@ msgstr "פת×××"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ס××ר×"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+#| msgid "Note"
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "×ער×ת ×××"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "××ספת ×¤×¨×©× ×ת ×קס×"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+#| msgid "Highlight"
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "×××שת ×××"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "××ספת ×¤×¨×©× ×ת ××××שת"
|
|
|
1a700d |
@@ -1162,6 +1173,11 @@ msgstr "×××רת ×¢×××"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "פ×ר×ש ××ס××"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+#| msgid "Annotate the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "פ×ר×ש ××ס××"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "×פשר×××ת ק×××¥"
|
|
|
1a700d |
--- evince-3.28.4/po/hr.po
|
|
|
1a700d |
+++ evince-3.28.4/po/hr.po
|
|
|
1a700d |
@@ -912,10 +912,19 @@ msgstr "Otvori"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Zatvori"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Tekst napomene"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Dodaj napomenu teksta"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Naglašeni tekst"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Dodaj istaknutu napomenu"
|
|
|
1a700d |
@@ -1122,6 +1131,10 @@ msgstr "Odaberi stranicu"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Zabilježi dokument"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Zabilježi dokument"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "MoguÄnosti datoteke"
|
|
|
1a700d |
--- evince-3.28.4/po/hu.po
|
|
|
1a700d |
+++ evince-3.28.4/po/hu.po
|
|
|
1a700d |
@@ -912,10 +912,19 @@ msgstr "Nyitott"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Zárt"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Szöveg jegyzetelése"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Szöveges jegyzet hozzáadása"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Szöveg kiemelése"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Kiemelés jegyzet hozzáadása"
|
|
|
1a700d |
@@ -1112,6 +1121,11 @@ msgstr "Oldal kiválasztása"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "A dokumentum jegyzetelése"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+#| msgid "Annotate the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Dokumentum jegyzetelése"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "FájlbeállÃtások"
|
|
|
1a700d |
--- evince-3.28.4/po/id.po
|
|
|
1a700d |
+++ evince-3.28.4/po/id.po
|
|
|
1a700d |
@@ -917,10 +917,19 @@ msgstr "Buka"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Tutup"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Catatan teks"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Menambahkan teks anotasi"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Sorot teks"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Tambahkan anotasi penyorotan"
|
|
|
1a700d |
@@ -1118,6 +1127,10 @@ msgstr "Pilih halaman"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Anotasikan dokumen"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Anotasikan dokumen"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opsi berkas"
|
|
|
1a700d |
--- evince-3.28.4/po/is.po
|
|
|
1a700d |
+++ evince-3.28.4/po/is.po
|
|
|
1a700d |
@@ -910,10 +910,21 @@ msgstr "Opna"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Loka"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+#| msgid "Note"
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Texti minnispunkts"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Bæta við glósu"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+#| msgid "Highlight"
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Ãherslulita texta"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Bæta við áherslulitaðri glósu"
|
|
|
1a700d |
--- evince-3.28.4/po/it.po
|
|
|
1a700d |
+++ evince-3.28.4/po/it.po
|
|
|
1a700d |
@@ -930,10 +930,19 @@ msgstr "Apri"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Chiudi"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Annotazione"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Aggiunge un'annotazione testuale"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Testo evidenziato"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Aggiunge un'annotazione evidenziata"
|
|
|
1a700d |
@@ -1138,6 +1147,11 @@ msgstr "Seleziona pagina"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Annota il documento"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+#| msgid "Annotate the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Annota documento"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opzioni file"
|
|
|
1a700d |
--- evince-3.28.4/po/ja.po
|
|
|
1a700d |
+++ evince-3.28.4/po/ja.po
|
|
|
1a700d |
@@ -945,10 +945,19 @@ msgstr "éã"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "éãã"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ããã¹ããã¡ã¢"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "ããã¹ã注éã追å ãã¾ã"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ããã¹ãããã¤ã©ã¤ã"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "ãã¤ã©ã¤ã注éã追å ãã¾ã"
|
|
|
1a700d |
@@ -1182,6 +1191,10 @@ msgstr "ç´æ¥ãã¼ã¸ãæå®ãã¾ã
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "ããã¥ã¡ã³ãã«æ³¨éãä»ãã¾ã"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "ããã¥ã¡ã³ãã«æ³¨éãä»ãã"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "ãã¡ã¤ã«ãªãã·ã§ã³"
|
|
|
1a700d |
--- evince-3.28.4/po/kk.po
|
|
|
1a700d |
+++ evince-3.28.4/po/kk.po
|
|
|
1a700d |
@@ -912,10 +912,19 @@ msgstr "ĞÑÑ"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ĞабÑ"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ĞÓĞ»Ñмдеме мÓÑÑнÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "ĞÓÑÑндÑк Ğ¿ÑкÑÑĞ´Ñ ÒоÑÑ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ĞÓÑÑĞ½Ğ´Ñ ÑÒ¯Ñпен еÑекÑелеÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Ğ¢Ò¯Ñпен еÑекÑелеÑĞ´ÑÒ£ аңдаÑĞ¿Ğ°ÑÑн ÒоÑÑ"
|
|
|
1a700d |
--- evince-3.28.4/po/ko.po
|
|
|
1a700d |
+++ evince-3.28.4/po/ko.po
|
|
|
1a700d |
@@ -914,10 +914,19 @@ msgstr "ì´ê¸°"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ë«ê¸°"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ë©ëª¨ í
ì¤í¸"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "í
ì¤í¸ ì¶ê° ì ë³´ ì¶ê°"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ê°ì¡° í
ì¤í¸"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "ê°ì¡° ì¶ê° ì ë³´ ì¶ê°"
|
|
|
1a700d |
@@ -1113,6 +1122,11 @@ msgstr "íì´ì§ ì í"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "문ìì ì¶ê° ì 보를 ë£ìµëë¤"
|
|
|
1a700d |
|
|
|
1a700d |
+# a11y ì ë³´
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "문ìì 주ì ë¬ê¸°"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "íì¼ ìµì
"
|
|
|
1a700d |
--- evince-3.28.4/po/lt.po
|
|
|
1a700d |
+++ evince-3.28.4/po/lt.po
|
|
|
1a700d |
@@ -921,10 +921,19 @@ msgstr "Atverti"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Užverti"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Ratelio tekstas"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "PridÄti teksto anotacijÄ
"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ParyÅ¡kinti tekstÄ
"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "PridÄti paryÅ¡kinimo anotacijÄ
"
|
|
|
1a700d |
@@ -1122,6 +1131,11 @@ msgstr "Pasirinkite puslapį"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Anotuoti dokumentÄ
"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+#| msgid "Annotate the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Anotuoti dokumentÄ
"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Failo parametrai"
|
|
|
1a700d |
--- evince-3.28.4/po/lv.po
|
|
|
1a700d |
+++ evince-3.28.4/po/lv.po
|
|
|
1a700d |
@@ -914,10 +914,19 @@ msgstr "AtvÄrt"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "AizvÄrt"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Piezīmes teksts"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Pievienot teksta anotÄciju"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Izcelt tekstu"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Pievienot izcÄluma anotÄciju"
|
|
|
1a700d |
--- evince-3.28.4/po/ms.po
|
|
|
1a700d |
+++ evince-3.28.4/po/ms.po
|
|
|
1a700d |
@@ -991,10 +991,20 @@ msgstr "Anotasi"
|
|
|
1a700d |
msgid "Text"
|
|
|
1a700d |
msgstr "Teks"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-sidebar-annotations.c:210
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+#| msgid "Note"
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Teks nota"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Tambah anotasi teks"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Teks sorot"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-sidebar-annotations.c:221
|
|
|
1a700d |
msgid "Add"
|
|
|
1a700d |
msgstr "Tambah"
|
|
|
1a700d |
@@ -1322,6 +1332,11 @@ msgstr "_Buka..."
|
|
|
1a700d |
msgid "Open an existing document"
|
|
|
1a700d |
msgstr "Membuka dokumen sedia ada"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+#| msgid "Reload the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Catatkan dokumen"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-window.c:5695
|
|
|
1a700d |
msgid "Op_en a Copy"
|
|
|
1a700d |
msgstr "Bu_ka Satu Salinan"
|
|
|
1a700d |
--- evince-3.28.4/po/nl.po
|
|
|
1a700d |
+++ evince-3.28.4/po/nl.po
|
|
|
1a700d |
@@ -962,10 +962,20 @@ msgstr "Openen"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Sluiten"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+# Notitietekst of tekst noteren? -Justin 28/07/18
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Notitietekst"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Tekstannotatie toevoegen"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Tekst markeren"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Markeerannotatie toevoegen"
|
|
|
1a700d |
@@ -1171,6 +1181,10 @@ msgstr "Pagina selecteren"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Het document annoteren"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Document annoteren"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Bestandsopties"
|
|
|
1a700d |
--- evince-3.28.4/po/pa.po
|
|
|
1a700d |
+++ evince-3.28.4/po/pa.po
|
|
|
1a700d |
@@ -922,10 +922,21 @@ msgstr "à¨à©à¨²à©à¨¹à©"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ਬੰਦ à¨à¨°à©"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+#| msgid "Note"
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ਲਿà¨à¨¤à© ਨà©à¨"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "ਲਿà¨à¨¤ ਵਿà¨à¨à¨¿à¨ ਸ਼ਾਮਿਲ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+#| msgid "Highlight"
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ਲਿà¨à¨¤ à¨à¨à¨¾à©à©"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "à¨à¨à¨¾à¨°à© ਵਿà¨à¨à¨¿à¨ à¨à©à©à©"
|
|
|
1a700d |
--- evince-3.28.4/po/pl.po
|
|
|
1a700d |
+++ evince-3.28.4/po/pl.po
|
|
|
1a700d |
@@ -919,10 +919,19 @@ msgstr "Otwarte"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ZamkniÄte"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Dodaj notatkÄ"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Dodaje przypis tekstowy"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ZakreÅl tekst"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Dodaje zakreÅlenie"
|
|
|
1a700d |
@@ -1125,6 +1134,10 @@ msgstr "Wybiera stronÄ"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Dodaje przypisy do dokumentu"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Dodaj przypisy do dokumentu"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opcje plików"
|
|
|
1a700d |
--- evince-3.28.4/po/pt_BR.po
|
|
|
1a700d |
+++ evince-3.28.4/po/pt_BR.po
|
|
|
1a700d |
@@ -941,10 +941,19 @@ msgstr "Aberto"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Fechado"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Nota de texto"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Adiciona anotação de texto"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Texto destacado"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Adiciona anotação com destaque"
|
|
|
1a700d |
@@ -1166,6 +1175,10 @@ msgstr "Seleciona página"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Anota o documento"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Anotar documento"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Opções do arquivo"
|
|
|
1a700d |
--- evince-3.28.4/po/ro.po
|
|
|
1a700d |
+++ evince-3.28.4/po/ro.po
|
|
|
1a700d |
@@ -932,10 +932,20 @@ msgstr "Deschide"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Ãnchide"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+# LG: descriere a unei iconiÈe ataÈabile unei notiÈe
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Textul notei"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "AdÄugÄ adnotare text"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "EvidenÈiazÄ textul"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "AdÄugÄ adnotare evidenÈiatÄ"
|
|
|
1a700d |
--- evince-3.28.4/po/ru.po
|
|
|
1a700d |
+++ evince-3.28.4/po/ru.po
|
|
|
1a700d |
@@ -918,10 +918,19 @@ msgstr "ĞÑкÑÑÑÑ"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ĞакÑÑÑÑ"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "СделаÑÑ Ğ·Ğ°Ğ¼ĞµÑĞºÑ ÑекÑÑÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "ĞобавиÑÑ ÑекÑÑовое Ğ¿ÑимеÑание"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ĞодÑвеÑиÑÑ ÑекÑÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "ĞобавиÑÑ Ğ²Ñделенное Ğ¿ÑимеÑание"
|
|
|
1a700d |
--- evince-3.28.4/po/sk.po
|
|
|
1a700d |
+++ evince-3.28.4/po/sk.po
|
|
|
1a700d |
@@ -1028,11 +1028,21 @@ msgstr "Otvorené"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Zatvorené"
|
|
|
1a700d |
|
|
|
1a700d |
+# cobmbobox item
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Text poznámky"
|
|
|
1a700d |
+
|
|
|
1a700d |
# tooltip
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Pridá poznámku do textu"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Zvýrazniť text"
|
|
|
1a700d |
+
|
|
|
1a700d |
# tooltip
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
@@ -1261,6 +1271,11 @@ msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Pridá poznámku k dokumentu"
|
|
|
1a700d |
|
|
|
1a700d |
# tooltip
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Pridá poznámku k dokumentu"
|
|
|
1a700d |
+
|
|
|
1a700d |
+# tooltip
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Voľby súboru"
|
|
|
1a700d |
--- evince-3.28.4/po/sl.po
|
|
|
1a700d |
+++ evince-3.28.4/po/sl.po
|
|
|
1a700d |
@@ -916,10 +916,19 @@ msgstr "Odpri"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Zapri"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Besedilo opombe"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Dodaj pripombo k besedilu ..."
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Poudari besedilo"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Dodaj opombo s poudarkom"
|
|
|
1a700d |
@@ -1116,6 +1125,12 @@ msgstr "Izberi stran"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Opomba s poudarkom"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:228
|
|
|
1a700d |
+#, fuzzy
|
|
|
1a700d |
+#| msgid "Annotate the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Opomba s poudarkom"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Možnosti datotek"
|
|
|
1a700d |
--- evince-3.28.4/po/sr.po
|
|
|
1a700d |
+++ evince-3.28.4/po/sr.po
|
|
|
1a700d |
@@ -919,10 +919,19 @@ msgstr "ĞÑвоÑен"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ĞĞ°ÑвоÑен"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ТекÑÑ Ğ±ĞµĞ»ĞµÑке"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "ĞĞ¾Ğ´Ğ°Ñ Ğ·Ğ°Ğ±ĞµĞ»ĞµÑкÑ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ĞÑÑакнÑÑи ÑекÑÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "ĞĞ¾Ğ´Ğ°Ñ Ğ·Ğ°Ğ±ĞµĞ»ĞµÑĞºÑ Ñ Ğ±Ğ¾Ñи"
|
|
|
1a700d |
@@ -1126,6 +1135,10 @@ msgstr "ĞзабеÑи ÑÑÑаниÑÑ"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "ĞĞ¾Ğ´Ğ°Ñ Ğ·Ğ°Ğ±ĞµĞ»ĞµÑке Ñ Ğ´Ğ¾ĞºÑменÑ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "ĞĞ¾Ğ´Ğ°Ñ Ğ·Ğ°Ğ±ĞµĞ»ĞµÑке Ñ Ğ´Ğ¾ĞºÑменÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "ĞĞ¿ÑиÑе Ğ´Ğ°ÑоÑеке"
|
|
|
1a700d |
--- evince-3.28.4/po/sv.po
|
|
|
1a700d |
+++ evince-3.28.4/po/sv.po
|
|
|
1a700d |
@@ -925,10 +925,19 @@ msgstr "Ãppna"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Stäng"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Gör en notering på text"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Lägg till textkommentar"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Färgmarkera text"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Lägg till färgmarkeringskommentar"
|
|
|
1a700d |
@@ -1127,6 +1136,10 @@ msgstr "Välj sida"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Lägg till kommentarer till dokumentet"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Lägg till kommentarer till dokument"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Filalternativ"
|
|
|
1a700d |
--- evince-3.28.4/po/tr.po
|
|
|
1a700d |
+++ evince-3.28.4/po/tr.po
|
|
|
1a700d |
@@ -919,10 +919,19 @@ msgstr "Aç"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Kapat"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Açıklama metni"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Açıklama metni ekle"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Metni vurgula"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Vurgu açıklaması ekle"
|
|
|
1a700d |
@@ -1120,6 +1129,10 @@ msgstr "Sayfa seç"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "Belgeye açıklama ekle"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "Belgeye açıklama ekle"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "Dosya seçenekleri"
|
|
|
1a700d |
--- evince-3.28.4/po/uk.po
|
|
|
1a700d |
+++ evince-3.28.4/po/uk.po
|
|
|
1a700d |
@@ -930,10 +930,21 @@ msgstr "ĞÑдкÑиÑи"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "ĞакÑиÑи"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+#| msgid "Note"
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ТекÑÑова Ğ¿ÑимÑÑка"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "ĞодаÑи ÑекÑÑĞ¾Ğ²Ñ Ğ½Ğ¾ÑĞ°ÑкÑ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+#| msgid "Highlight"
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "ĞÑĞ´ÑвÑÑиÑи ÑекÑÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "ĞодаÑи познаÑĞµĞ½Ñ Ğ½Ğ¾ÑĞ°ÑкÑ"
|
|
|
1a700d |
@@ -1163,6 +1174,11 @@ msgstr "ĞибеÑÑÑÑ ÑÑоÑÑнкÑ
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "ĞÑобиÑи Ğ¿ÑимÑÑĞºÑ Ğ² докÑменÑÑ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+#| msgid "Annotate the document"
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "ĞноÑÑваÑи докÑменÑ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "ĞĞ°ÑамеÑÑи ÑайлÑв"
|
|
|
1a700d |
--- evince-3.28.4/po/vi.po
|
|
|
1a700d |
+++ evince-3.28.4/po/vi.po
|
|
|
1a700d |
@@ -911,10 +911,19 @@ msgstr "Má»"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "Äóng"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "Ghi chú bằng chữ"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "Thêm chú thÃch bằng chữ"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "Tô sáng chữ"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "Thêm chú thÃch tô sáng"
|
|
|
1a700d |
--- evince-3.28.4/po/zh_CN.po
|
|
|
1a700d |
+++ evince-3.28.4/po/zh_CN.po
|
|
|
1a700d |
@@ -913,10 +913,19 @@ msgstr "æå¼"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "å
³é"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:131
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "ç¬è®°"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "æ·»å ææ¬æ³¨é"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:138
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "é«äº®ææ¬"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "æ·»å é«äº®æ³¨é"
|
|
|
1a700d |
--- evince-3.28.4/po/zh_TW.po
|
|
|
1a700d |
+++ evince-3.28.4/po/zh_TW.po
|
|
|
1a700d |
@@ -903,10 +903,19 @@ msgstr "éå"
|
|
|
1a700d |
msgid "Close"
|
|
|
1a700d |
msgstr "éé"
|
|
|
1a700d |
|
|
|
1a700d |
-#: ../shell/ev-annotations-toolbar.c:120
|
|
|
1a700d |
+#. Translators: an annotation that looks like a "sticky note"
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:133
|
|
|
1a700d |
+msgid "Note text"
|
|
|
1a700d |
+msgstr "å註æå"
|
|
|
1a700d |
+
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:135
|
|
|
1a700d |
msgid "Add text annotation"
|
|
|
1a700d |
msgstr "å å
¥æå註解"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-annotations-toolbar.c:140
|
|
|
1a700d |
+msgid "Highlight text"
|
|
|
1a700d |
+msgstr "æ¨ç¤ºæå"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-annotations-toolbar.c:127
|
|
|
1a700d |
msgid "Add highlight annotation"
|
|
|
1a700d |
msgstr "å å
¥çªé¡¯è¨»è§£"
|
|
|
1a700d |
@@ -1106,6 +1115,10 @@ msgstr "é¸æé é¢"
|
|
|
1a700d |
msgid "Annotate the document"
|
|
|
1a700d |
msgstr "æ件å å
¥è¨»è§£"
|
|
|
1a700d |
|
|
|
1a700d |
+#: ../shell/ev-toolbar.c:227
|
|
|
1a700d |
+msgid "Annotate document"
|
|
|
1a700d |
+msgstr "å å
¥æ件註解"
|
|
|
1a700d |
+
|
|
|
1a700d |
#: ../shell/ev-toolbar.c:243 ../shell/ev-toolbar.c:244
|
|
|
1a700d |
msgid "File options"
|
|
|
1a700d |
msgstr "æªæ¡é¸é
"
|