Projet

Général

Profil

0001-trivial-use-three-dots-in-logout-messages-not-four-9.patch

Frédéric Péters, 03 décembre 2015 21:35

Télécharger (4,48 ko)

Voir les différences:

Subject: [PATCH] trivial: use three dots in logout messages, not four (#9199)

 src/authentic2/idp/saml/locale/fr/LC_MESSAGES/django.po             | 6 +++---
 src/authentic2/idp/saml/templates/idp/saml/logout_fragment.html     | 2 +-
 src/authentic2/templates/authentic2/logout.html                     | 2 +-
 src/authentic2_idp_cas/locale/fr/LC_MESSAGES/django.po              | 6 +++---
 .../templates/authentic2_idp_cas/logout_fragment.html               | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)
src/authentic2/idp/saml/locale/fr/LC_MESSAGES/django.po
8 8
"Project-Id-Version: Authentic\n"
9 9
"Report-Msgid-Bugs-To: \n"
10 10
"POT-Creation-Date: 2015-10-13 20:31+0200\n"
11
"PO-Revision-Date: 2014-11-21 11:43+0100\n"
11
"PO-Revision-Date: 2015-12-03 21:34+0100\n"
12 12
"Last-Translator: Mikaël Ates <mates@entrouvert.com>\n"
13 13
"Language-Team: None\n"
14 14
"Language: fr\n"
......
85 85

  
86 86
#: authentic2/idp/saml/templates/idp/saml/logout_fragment.html:2
87 87
#, python-format
88
msgid "Sending logout to %(name)s...."
89
msgstr "Déconnexion avec %(name)s...."
88
msgid "Sending logout to %(name)s..."
89
msgstr "Déconnexion avec %(name)s..."
90 90

  
91 91
#: authentic2/idp/saml/templates/idp/saml/unknown_provider.html:5
92 92
#, python-format
src/authentic2/idp/saml/templates/idp/saml/logout_fragment.html
1 1
{% load i18n %}
2
<div>{% blocktrans %}Sending logout to {{ name }}....{% endblocktrans %}
2
<div>{% blocktrans %}Sending logout to {{ name }}...{% endblocktrans %}
3 3
  {% if needs_iframe %}
4 4
    <iframe src="{{ url }}" marginwidth="0" marginheight="0" scrolling="no" style="border: none"
5 5
      width="16" height="16" onload="setTimeout(function () { window.iframe_count -= 1; }, {{ iframe_timeout }})">
src/authentic2/templates/authentic2/logout.html
15 15
{% comment %}Initialize iframe countdown {% endcomment %}
16 16
{% block extra_scripts %}
17 17
  <script>
18
    window.iframe_count = 1;
18
    window.iframe_count = 3;
19 19
  </script>
20 20
{% endblock %}
21 21

  
src/authentic2_idp_cas/locale/fr/LC_MESSAGES/django.po
9 9
"Project-Id-Version: authentic2_idp_cas 1.0 \n"
10 10
"Report-Msgid-Bugs-To: \n"
11 11
"POT-Creation-Date: 2015-10-13 20:31+0200\n"
12
"PO-Revision-Date: 2015-02-27 15:54+0100\n"
12
"PO-Revision-Date: 2015-12-03 21:34+0100\n"
13 13
"Last-Translator: Benjamin Dauvergne <bdauvergne@entrouvert.com>\n"
14 14
"Language: fr\n"
15 15
"MIME-Version: 1.0\n"
......
115 115

  
116 116
#: authentic2_idp_cas/templates/authentic2_idp_cas/logout_fragment.html:2
117 117
#, python-format
118
msgid "Sending logout to %(name)s...."
119
msgstr "Déconnexion de %(name)s...."
118
msgid "Sending logout to %(name)s..."
119
msgstr "Déconnexion de %(name)s..."
src/authentic2_idp_cas/templates/authentic2_idp_cas/logout_fragment.html
1 1
{% load i18n %}
2
<div>{% blocktrans %}Sending logout to {{ name }}....{% endblocktrans %}
2
<div>{% blocktrans %}Sending logout to {{ name }}...{% endblocktrans %}
3 3
  {% if needs_iframe %}
4 4
    <iframe src="{{ url }}" marginwidth="0" marginheight="0" scrolling="no" style="border: none"
5 5
      width="16" height="16" onload="setTimeout(function () { window.iframe_count -= 1; }, {{ iframe_timeout }})">
6
-