# HG changeset patch # User Julien Cristau # Date 1323094282 -3600 # Node ID d743865ba7ed19ecf0732d10935e4f642a2e16d3 # Parent 67d540b7f8c8cb3bc6060d8894c4361c3c69bf79 Tweak message to clarify it gets the pagination back http://www.cubicweb.org/task/2106487 diff -r 67d540b7f8c8 -r d743865ba7ed i18n/de.po --- a/i18n/de.po Mon Dec 05 15:20:21 2011 +0100 +++ b/i18n/de.po Mon Dec 05 15:11:22 2011 +0100 @@ -972,6 +972,9 @@ msgid "abstract base class for transitions" msgstr "abstrakte Basisklasse für Übergänge" +msgid "action menu" +msgstr "" + msgid "action(s) on this selection" msgstr "Aktionen(en) bei dieser Auswahl" @@ -1252,6 +1255,10 @@ msgid "automatic" msgstr "automatisch" +#, python-format +msgid "back to pagination (%s results)" +msgstr "" + msgid "bad value" msgstr "Unzulässiger Wert" diff -r 67d540b7f8c8 -r d743865ba7ed i18n/en.po --- a/i18n/en.po Mon Dec 05 15:20:21 2011 +0100 +++ b/i18n/en.po Mon Dec 05 15:11:22 2011 +0100 @@ -932,6 +932,9 @@ msgid "abstract base class for transitions" msgstr "" +msgid "action menu" +msgstr "" + msgid "action(s) on this selection" msgstr "" @@ -1207,6 +1210,10 @@ msgid "automatic" msgstr "" +#, python-format +msgid "back to pagination (%s results)" +msgstr "" + msgid "bad value" msgstr "" diff -r 67d540b7f8c8 -r d743865ba7ed i18n/es.po --- a/i18n/es.po Mon Dec 05 15:20:21 2011 +0100 +++ b/i18n/es.po Mon Dec 05 15:11:22 2011 +0100 @@ -982,6 +982,9 @@ msgid "abstract base class for transitions" msgstr "Clase de base abstracta para la transiciones" +msgid "action menu" +msgstr "" + msgid "action(s) on this selection" msgstr "Acción(es) en esta selección" @@ -1263,6 +1266,10 @@ msgid "automatic" msgstr "Automático" +#, python-format +msgid "back to pagination (%s results)" +msgstr "" + msgid "bad value" msgstr "Valor erróneo" diff -r 67d540b7f8c8 -r d743865ba7ed i18n/fr.po --- a/i18n/fr.po Mon Dec 05 15:20:21 2011 +0100 +++ b/i18n/fr.po Mon Dec 05 15:11:22 2011 +0100 @@ -982,6 +982,9 @@ msgid "abstract base class for transitions" msgstr "classe de base abstraite pour les transitions" +msgid "action menu" +msgstr "" + msgid "action(s) on this selection" msgstr "action(s) sur cette sélection" @@ -1264,6 +1267,10 @@ msgid "automatic" msgstr "automatique" +#, python-format +msgid "back to pagination (%s results)" +msgstr "retour à la vue paginée (%s résultats)" + msgid "bad value" msgstr "mauvaise valeur" diff -r 67d540b7f8c8 -r d743865ba7ed web/views/navigation.py --- a/web/views/navigation.py Mon Dec 05 15:20:21 2011 +0100 +++ b/web/views/navigation.py Mon Dec 05 15:11:22 2011 +0100 @@ -290,7 +290,8 @@ del params['__force_display'] url = nav.page_url(basepath, params) w(u'\n' - % (xml_escape(url), req._('show %s results') % nav.page_size)) + % (xml_escape(url), req._('back to pagination (%s results)') + % nav.page_size)) else: # get boundaries before component rendering start, stop = nav.page_boundaries()