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