From: Francisco Javier F. Serrador Date: Mon, 8 May 2006 21:45:52 +0000 (+0000) Subject: Updated Spanish translation. X-Git-Tag: EVINCE_0_5_3~16 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=5b5c9733272ff79b672c60e02174f3c34b16c422;p=evince.git Updated Spanish translation. 2006-05-08 Francisco Javier F. Serrador * es.po: Updated Spanish translation. --- diff --git a/ChangeLog b/ChangeLog index a3fc2663..4d20c8e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-05-08 Francisco Javier F. Serrador + + * shell/ev-view.c (tip_from_action_named): Replace some strings + that were wrong. Closes #340970. + 2006-05-08 Carlos Garcia Campos * shell/ev-window.c: (ev_window_sidebar_visibility_changed_cb): @@ -5,6 +10,7 @@ Update sidebar chrome flag when sidebar visibility changes. Fixes bug #341049 + 2006-05-05 Nickolay V. Shmyrev * djvu/Makefile.am: diff --git a/shell/ev-view.c b/shell/ev-view.c index 7c009d6b..524a8d0b 100644 --- a/shell/ev-view.c +++ b/shell/ev-view.c @@ -1333,15 +1333,15 @@ tip_from_action_named (EvLinkAction *action) const gchar *name = ev_link_action_get_name (action); if (g_ascii_strcasecmp (name, "FirstPage") == 0) { - return g_strdup (_("Got to fisrt page")); + return g_strdup (_("Go to first page")); } else if (g_ascii_strcasecmp (name, "PrevPage") == 0) { - return g_strdup (_("Got to previuos page")); + return g_strdup (_("Go to previous page")); } else if (g_ascii_strcasecmp (name, "NextPage") == 0) { - return g_strdup (_("Got to next page")); + return g_strdup (_("Go to next page")); } else if (g_ascii_strcasecmp (name, "LastPage") == 0) { - return g_strdup (_("Got to last page")); + return g_strdup (_("Go to last page")); } else if (g_ascii_strcasecmp (name, "GoToPage") == 0) { - return g_strdup (_("Got to page")); + return g_strdup (_("Go to page")); } else if (g_ascii_strcasecmp (name, "Find") == 0) { return g_strdup (_("Find")); }