Merge lp:~futatuki/mailman/python-doc-url into lp:mailman/2.1

Proposed by Yasuhito FUTATSUKI at POEM
Status: Merged
Merged at revision: 1793
Proposed branch: lp:~futatuki/mailman/python-doc-url
Merge into: lp:mailman/2.1
Diff against target: 2615 lines (+265/-265)
82 files modified
Mailman/Cgi/admin.py (+1/-1)
Mailman/Gui/Privacy.py (+1/-1)
Mailman/Gui/Topics.py (+1/-1)
bin/find_member (+1/-1)
messages/ar/LC_MESSAGES/mailman.po (+7/-7)
messages/ast/LC_MESSAGES/mailman.po (+6/-6)
messages/ca/LC_MESSAGES/mailman.po (+6/-6)
messages/cs/LC_MESSAGES/mailman.po (+5/-5)
messages/da/LC_MESSAGES/mailman.po (+7/-7)
messages/de/LC_MESSAGES/mailman.po (+6/-6)
messages/el/LC_MESSAGES/mailman.po (+6/-6)
messages/eo/LC_MESSAGES/mailman.po (+3/-3)
messages/es/LC_MESSAGES/mailman.po (+6/-6)
messages/et/LC_MESSAGES/mailman.po (+7/-7)
messages/eu/LC_MESSAGES/mailman.po (+5/-5)
messages/fa/LC_MESSAGES/mailman.po (+3/-3)
messages/fi/LC_MESSAGES/mailman.po (+6/-6)
messages/fr/LC_MESSAGES/mailman.po (+6/-6)
messages/gl/LC_MESSAGES/mailman.po (+6/-6)
messages/he/LC_MESSAGES/mailman.po (+5/-5)
messages/hr/LC_MESSAGES/mailman.po (+5/-5)
messages/hu/LC_MESSAGES/mailman.po (+6/-6)
messages/ia/LC_MESSAGES/mailman.po (+5/-5)
messages/it/LC_MESSAGES/mailman.po (+6/-6)
messages/ja/LC_MESSAGES/mailman.po (+6/-6)
messages/ko/LC_MESSAGES/mailman.po (+7/-7)
messages/lt/LC_MESSAGES/mailman.po (+3/-3)
messages/mailman.pot (+3/-3)
messages/nl/LC_MESSAGES/mailman.po (+5/-5)
messages/no/LC_MESSAGES/mailman.po (+7/-7)
messages/pl/LC_MESSAGES/mailman.po (+5/-5)
messages/pt/LC_MESSAGES/mailman.po (+6/-6)
messages/pt_BR/LC_MESSAGES/mailman.po (+6/-6)
messages/ro/LC_MESSAGES/mailman.po (+5/-5)
messages/ru/LC_MESSAGES/mailman.po (+6/-6)
messages/sk/LC_MESSAGES/mailman.po (+5/-5)
messages/sl/LC_MESSAGES/mailman.po (+8/-8)
messages/sr/LC_MESSAGES/mailman.po (+3/-3)
messages/sv/LC_MESSAGES/mailman.po (+9/-9)
messages/tr/LC_MESSAGES/mailman.po (+5/-5)
messages/uk/LC_MESSAGES/mailman.po (+6/-6)
messages/vi/LC_MESSAGES/mailman.po (+6/-6)
messages/zh_CN/LC_MESSAGES/mailman.po (+6/-6)
messages/zh_TW/LC_MESSAGES/mailman.po (+4/-4)
misc/sitelist.cfg (+1/-1)
templates/ar/headfoot.html (+1/-1)
templates/ast/headfoot.html (+1/-1)
templates/ca/headfoot.html (+1/-1)
templates/cs/headfoot.html (+1/-1)
templates/da/headfoot.html (+1/-1)
templates/de/headfoot.html (+1/-1)
templates/el/headfoot.html (+1/-1)
templates/en/headfoot.html (+1/-1)
templates/es/headfoot.html (+1/-1)
templates/et/headfoot.html (+1/-1)
templates/eu/headfoot.html (+1/-1)
templates/fi/headfoot.html (+1/-1)
templates/fr/headfoot.html (+1/-1)
templates/gl/headfoot.html (+1/-1)
templates/he/headfoot.html (+1/-1)
templates/hr/headfoot.html (+1/-1)
templates/hu/headfoot.html (+1/-1)
templates/ia/headfoot.html (+1/-1)
templates/it/headfoot.html (+1/-1)
templates/ja/headfoot.html (+1/-1)
templates/ko/headfoot.html (+1/-1)
templates/lt/headfoot.html (+1/-1)
templates/nl/headfoot.html (+1/-1)
templates/no/headfoot.html (+1/-1)
templates/pt/headfoot.html (+1/-1)
templates/pt_BR/headfoot.html (+1/-1)
templates/ro/headfoot.html (+1/-1)
templates/ru/headfoot.html (+1/-1)
templates/sk/headfoot.html (+1/-1)
templates/sl/headfoot.html (+1/-1)
templates/sr/headfoot.html (+1/-1)
templates/sv/headfoot.html (+1/-1)
templates/tr/headfoot.html (+1/-1)
templates/uk/headfoot.html (+1/-1)
templates/vi/headfoot.html (+1/-1)
templates/zh_CN/headfoot.html (+1/-1)
templates/zh_TW/headfoot.html (+1/-1)
To merge this branch: bzr merge lp:~futatuki/mailman/python-doc-url
Reviewer Review Type Date Requested Status
Mark Sapiro Approve
Review via email: mp+349626@code.launchpad.net

Commit message

update Python library docs URLs

Description of the change

URLs start with http://docs.python.org/library are now redirected to https and those are for Python 3 docs. So I update these links as https://docs.python.org/2/library.

This is done by command line

    $ env LC_CTYPE=C sh -c "fgrep -l -r 'http://docs.python.org/' * | xargs sed -I '' -e 's|http://docs\.python\.org/|https://docs.python.org/2/|'"

and check the diff, then find missed change and do

    $ env LC_CTYPE=C sed -I '' -e 's|http://www.python.org/doc/current/lib/module-re.html|https://docs.python.org/2/library/re.html|' messages/ca/LC_MESSAGES/mailman.po

and edit messages/et/LC_MESSAGES/mailman.po by hand to fix missed change by folding msgstr.

Changes in
  Mailman/Cgi/admin.py
  Mailman/Gui/Privacy.py
  Mailman/Gui/Topics.py
  bin/find_member
  misc/sitelist.cfg
  messages/mailman.pot
  messages/*/LC_CTYPE/mailman.po:

http://docs.python.org/library/re.html
http://www.python.org/doc/current/lib/module-re.html
  -> https://docs.python.org/2/library/re.html

Changes in
  templates/*/headfoot.html:

http://docs.python.org/library/stdtypes.html#string-formatting-operations
  -> https://docs.python.org/2/library/stdtypes.html#string-formatting-operations

To post a comment you must log in.
Revision history for this message
Mark Sapiro (msapiro) wrote :

I have mixed feelings about this MR.

On the one hand, it is valid and represents a significant amount of work, and I hate to just ignore it.

On the other, I have concerns. While it is true that the URL http://docs.python.org/library/stdtypes.html#string-formatting-operations doesn't go to the relevant Python 3 section of library/stdtypes.html which is https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting, that Python 3 section is not so different from Python 2 as to be misleading.

Likewise, the reference to http://docs.python.org/library/re.html goes to the Python 3 page which is not so different from Python 2 as to be misleading, and the reference to http://www.python.org/doc/current/lib/module-re.html which gives a 404 is only in the 'ca' mailman.po.

None of this is really a reason to not fix these things, but my concern is what will happen on 1 January 2020 (see https://pythonclock.org/ ). Are we changing these wrong but not so bad URLs to ones that will 404 in less than 18 months?

Revision history for this message
Yasuhito FUTATSUKI at POEM (futatuki) wrote :

> I have mixed feelings about this MR.

I also have complex feelings about this.

> On the one hand, it is valid and represents a significant amount of work, and
> I hate to just ignore it.
>
> On the other, I have concerns. While it is true that the URL
> http://docs.python.org/library/stdtypes.html#string-formatting-operations
> doesn't go to the relevant Python 3 section of library/stdtypes.html which is
> https://docs.python.org/3/library/stdtypes.html#printf-style-string-
> formatting, that Python 3 section is not so different from Python 2 as to be
> misleading.

I think it is hard to search correct section to read if list admins don't so familier with Python. This is why I start to work to fix these URLs.

> Likewise, the reference to http://docs.python.org/library/re.html goes to the
> Python 3 page which is not so different from Python 2 as to be misleading, and
> the reference to http://www.python.org/doc/current/lib/module-re.html which
> gives a 404 is only in the 'ca' mailman.po.

I agree it is not so problem except the 'ca' mailman.po. This is by-product of fix about stdtypes.html and for consistency of this MP.

> None of this is really a reason to not fix these things, but my concern is
> what will happen on 1 January 2020 (see https://pythonclock.org/ ). Are we
> changing these wrong but not so bad URLs to ones that will 404 in less than 18
> months?

On the other hand, there is also no warranty these URLs will not change within 18 months :)
Putting that aside, if Python 2 docs will vanish after Jan 2020, our choices will be to link to Python 3 docs (with some comment if needed) or to search and link to appropriate docs (I don't think Python 2 library docs will not be removed even if their URL will be changed).

I also started to check other URLs (re)moved or switched to https, but I stopped soon to work farther as I'm not sure it is worth to do so....

Revision history for this message
Yasuhito FUTATSUKI at POEM (futatuki) wrote :

> (I don't think Python 2 library docs will not be removed even if their URL will be changed)
I'm sorry, I did't intend double negation, this was intended "(I don't think Python 2 library docs will be removed soon, even if their URL will be changed)"

I'll stand by your choice even if it is not merging this or fixing only 404 link in ca po file by pointing http://docs.python.org/library/re.html for maintenance reasons, etc.

Any way, as it have been clear where and how to modify if we will want to fix these URLs, it is also easy to fix them later.

Revision history for this message
Mark Sapiro (msapiro) wrote :

I have merged this as is, and will deal with eventual 404s if and when they come.

Thank you for your continued interest in Mailman. I truly appreciate it.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Mailman/Cgi/admin.py'
2--- Mailman/Cgi/admin.py 2018-06-22 00:34:52 +0000
3+++ Mailman/Cgi/admin.py 2018-07-15 05:58:13 +0000
4@@ -917,7 +917,7 @@
5 container.AddItem(header)
6 # Add a "search for member" button
7 table = Table(width='100%')
8- link = Link('http://docs.python.org/library/re.html'
9+ link = Link('https://docs.python.org/2/library/re.html'
10 '#regular-expression-syntax',
11 _('(help)')).Format()
12 table.AddRow([Label(_('Find member %(link)s:')),
13
14=== modified file 'Mailman/Gui/Privacy.py'
15--- Mailman/Gui/Privacy.py 2018-06-17 23:47:34 +0000
16+++ Mailman/Gui/Privacy.py 2018-07-15 05:58:13 +0000
17@@ -203,7 +203,7 @@
18
19 <p>In the text boxes below, add one address per line; start the
20 line with a ^ character to designate a <a href=
21- "http://docs.python.org/library/re.html"
22+ "https://docs.python.org/2/library/re.html"
23 >Python regular expression</a>. When entering backslashes, do so
24 as if you were using Python raw strings (i.e. you generally just
25 use a single backslash).
26
27=== modified file 'Mailman/Gui/Topics.py'
28--- Mailman/Gui/Topics.py 2018-06-17 23:47:34 +0000
29+++ Mailman/Gui/Topics.py 2018-07-15 05:58:13 +0000
30@@ -50,7 +50,7 @@
31
32 _("""The topic filter categorizes each incoming email message
33 according to <a
34- href="http://docs.python.org/library/re.html">regular
35+ href="https://docs.python.org/2/library/re.html">regular
36 expression filters</a> you specify below. If the message's
37 <code>Subject:</code> or <code>Keywords:</code> header contains a
38 match against a topic filter, the message is logically placed
39
40=== modified file 'bin/find_member'
41--- bin/find_member 2018-06-17 23:47:34 +0000
42+++ bin/find_member 2018-07-15 05:58:13 +0000
43@@ -49,7 +49,7 @@
44 Regular expression syntax is Perl5-like, using the Python re module. Complete
45 specifications are at:
46
47-http://docs.python.org/library/re.html
48+https://docs.python.org/2/library/re.html
49
50 Address matches are case-insensitive, but case-preserved addresses are
51 displayed.
52
53=== modified file 'messages/ar/LC_MESSAGES/mailman.po'
54--- messages/ar/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
55+++ messages/ar/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
56@@ -6404,7 +6404,7 @@
57 "\n"
58 " <p>In the text boxes below, add one address per line; start the\n"
59 " line with a ^ character to designate a <a href=\n"
60-" \"http://docs.python.org/library/re.html\"\n"
61+" \"https://docs.python.org/2/library/re.html\"\n"
62 " >Python regular expression</a>. When entering backslashes, do "
63 "so\n"
64 " as if you were using Python raw strings (i.e. you generally "
65@@ -6435,7 +6435,7 @@
66 "\n"
67 " <p>�ي مربعات النص تحت، أض� عناناً واحداً �ي السطر، ابدأ السطر "
68 "بمحر� ^ لصنع <a href=\n"
69-" \"http://docs.python.org/library/re.html\"\n"
70+" \"https://docs.python.org/2/library/re.html\"\n"
71 " >صيغة بايثون نظامية</a>. عند إدخال محر� التقسيم الخل�ي أدخله "
72 "وكأنك تدخل أحر� بايثون خام (مثلاً أنت عادة تستخدم محر� تقسيم خل�ي واحد).\n"
73 " <p>لاحظ أن المقابلات مع الإدخالات غير الصيغ النظامية دائماً تحصل "
74@@ -7139,7 +7139,7 @@
75 msgid ""
76 "The topic filter categorizes each incoming email message\n"
77 " according to <a\n"
78-" href=\"http://docs.python.org/library/re.html\">regular\n"
79+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
80 " expression filters</a> you specify below. If the message's\n"
81 " <code>Subject:</code> or <code>Keywords:</code> header contains "
82 "a\n"
83@@ -7162,7 +7162,7 @@
84 " configuration variable."
85 msgstr ""
86 "يصن� مص�ي الموضوع كل رسالة بريد قائمة حسب <a\n"
87-" href=\"http://docs.python.org/library/re.html\">مص�يات صيغ "
88+" href=\"https://docs.python.org/2/library/re.html\">مص�يات صيغ "
89 "نظامية</a> تحددها أنت �ي الأس�ل. إذا كانت ترويسة \n"
90 " <code>Subject :</code> أو <code>Keywords:</code> الخاصة "
91 "بالرسالة تحتوي على تطابق مع مص�ي موضوع �سو� توضع الرسالة �ي <em>جيب</em> "
92@@ -9350,7 +9350,7 @@
93 "Complete\n"
94 "specifications are at:\n"
95 "\n"
96-"http://docs.python.org/library/re.html\n"
97+"https://docs.python.org/2/library/re.html\n"
98 "\n"
99 "Address matches are case-insensitive, but case-preserved addresses are\n"
100 "displayed.\n"
101@@ -12086,7 +12086,7 @@
102
103 #~ msgid ""
104 #~ "This text can include \n"
105-#~ "<a href=\"http://docs.python.org/library/stdtypes.html#string-formatting-"
106+#~ "<a href=\"https://docs.python.org/2/library/stdtypes.html#string-formatting-"
107 #~ "operations\">Python\n"
108 #~ "format strings</a> which are resolved against list attributes. The\n"
109 #~ "list of substitutions allowed are:\n"
110@@ -12115,7 +12115,7 @@
111 #~ " <li><b>cgiext</b> - The extension added to CGI scripts.\n"
112 #~ "</ul>"
113 #~ msgstr ""
114-#~ "يمكن لهذا النص أن يتضمن<a href=\"http://docs.python.org/library/stdtypes."
115+#~ "يمكن لهذا النص أن يتضمن<a href=\"https://docs.python.org/2/library/stdtypes."
116 #~ "html#string-formatting-operations\">محار� تنسيق بايثون</a> \n"
117 #~ "والتي سيتم حلها مع مواص�ات القائمة. قائمة الاستبدالات المسموحة هي:\n"
118 #~ "\n"
119
120=== modified file 'messages/ast/LC_MESSAGES/mailman.po'
121--- messages/ast/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
122+++ messages/ast/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
123@@ -7105,7 +7105,7 @@
124 "\n"
125 " <p>In the text boxes below, add one address per line; start the\n"
126 " line with a ^ character to designate a <a href=\n"
127-" \"http://docs.python.org/library/re.html\"\n"
128+" \"https://docs.python.org/2/library/re.html\"\n"
129 " >Python regular expression</a>. When entering backslashes, do "
130 "so\n"
131 " as if you were using Python raw strings (i.e. you generally "
132@@ -7146,7 +7146,7 @@
133 " <p>Na caxa de testu de más abaxo, amiesta una direición en cada "
134 "llinia, entama la llinia\n"
135 " col caráuter ^ pa designar una \n"
136-" <a href=\"http://docs.python.org/library/re.html\">\n"
137+" <a href=\"https://docs.python.org/2/library/re.html\">\n"
138 " espresión regular de Python</a>. Cuando introduzas barres "
139 "atenllaes de manzorga a mandrecha,\n"
140 " fáilo como si tuvieres usando cadenes de Python (davezu namái "
141@@ -7958,7 +7958,7 @@
142 msgid ""
143 "The topic filter categorizes each incoming email message\n"
144 " according to <a\n"
145-" href=\"http://docs.python.org/library/re.html\">regular\n"
146+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
147 " expression filters</a> you specify below. If the message's\n"
148 " <code>Subject:</code> or <code>Keywords:</code> header contains "
149 "a\n"
150@@ -7981,7 +7981,7 @@
151 " configuration variable."
152 msgstr ""
153 "La peñera según el tema, clasifica cada mensax recibíu\n"
154-" según: les <a href=\"http://docs.python.org/library/re.html\">\n"
155+" según: les <a href=\"https://docs.python.org/2/library/re.html\">\n"
156 " peñeres d'espresiones regulares</a> qu'especifiques embaxo. Si "
157 "les cabeceres\n"
158 " <code>Asuntu:</code> o <code>Pallabres clave</code>\n"
159@@ -10705,7 +10705,7 @@
160 "Complete\n"
161 "specifications are at:\n"
162 "\n"
163-"http://docs.python.org/library/re.html\n"
164+"https://docs.python.org/2/library/re.html\n"
165 "\n"
166 "Address matches are case-insensitive, but case-preserved addresses are\n"
167 "displayed.\n"
168@@ -10745,7 +10745,7 @@
169 "La Usu de la espresión regular ye al estilu Perl5, usando'l modulu Python "
170 "re. Les especificaciones completes tan en:\n"
171 "\n"
172-"http://docs.python.org/library/re.html\n"
173+"https://docs.python.org/2/library/re.html\n"
174 "\n"
175 "Al guetar les direiciones nun se distinguen mayúscules de minúscules, ensin "
176 "embargo, \n"
177
178=== modified file 'messages/ca/LC_MESSAGES/mailman.po'
179--- messages/ca/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
180+++ messages/ca/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
181@@ -7197,7 +7197,7 @@
182 "\n"
183 " <p>In the text boxes below, add one address per line; start the\n"
184 " line with a ^ character to designate a <a href=\n"
185-" \"http://docs.python.org/library/re.html\"\n"
186+" \"https://docs.python.org/2/library/re.html\"\n"
187 " >Python regular expression</a>. When entering backslashes, do "
188 "so\n"
189 " as if you were using Python raw strings (i.e. you generally "
190@@ -7239,7 +7239,7 @@
191 " <p>A les caixes de text d'abaix, afegeix una adreça per línia; "
192 "comença la\n"
193 " línia amb ^ per a designar <a href=\n"
194-" \"http://www.python.org/doc/current/lib/module-re.html\"\n"
195+" \"https://docs.python.org/2/library/re.html\"\n"
196 " >una expressió regular de Python</a>. Quan escriguis barres "
197 "inverses, fes-ho\n"
198 " com si estiguessis al Python (ex. normalment només es fa servir\n"
199@@ -8055,7 +8055,7 @@
200 msgid ""
201 "The topic filter categorizes each incoming email message\n"
202 " according to <a\n"
203-" href=\"http://docs.python.org/library/re.html\">regular\n"
204+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
205 " expression filters</a> you specify below. If the message's\n"
206 " <code>Subject:</code> or <code>Keywords:</code> header contains "
207 "a\n"
208@@ -8079,7 +8079,7 @@
209 msgstr ""
210 "El filtre segons el tema, classifica cada missatge rebut segons:\n"
211 "<a\n"
212-" href=\"http://www.python.org/doc/current/lib/module-re.html"
213+" href=\"https://docs.python.org/2/library/re.html"
214 "\">els filtres\n"
215 " d'expressions</a> que especifiqui abaix.\n"
216 " Si les capçaleres <code>Subject:</code> o <code>Keywords</code>\n"
217@@ -10806,7 +10806,7 @@
218 "Complete\n"
219 "specifications are at:\n"
220 "\n"
221-"http://docs.python.org/library/re.html\n"
222+"https://docs.python.org/2/library/re.html\n"
223 "\n"
224 "Address matches are case-insensitive, but case-preserved addresses are\n"
225 "displayed.\n"
226@@ -10848,7 +10848,7 @@
227 "modul Python. Les \n"
228 "especificacions són a:\n"
229 "\n"
230-"http://www.python.org/doc/current/lib/module-re.html\n"
231+"https://docs.python.org/2/library/re.html\n"
232 "\n"
233 "Les coincidencies de les adreces son case-insensitive, però les adreces "
234 "case-preserved són\n"
235
236=== modified file 'messages/cs/LC_MESSAGES/mailman.po'
237--- messages/cs/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
238+++ messages/cs/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
239@@ -6765,7 +6765,7 @@
240 "\n"
241 " <p>In the text boxes below, add one address per line; start the\n"
242 " line with a ^ character to designate a <a href=\n"
243-" \"http://docs.python.org/library/re.html\"\n"
244+" \"https://docs.python.org/2/library/re.html\"\n"
245 " >Python regular expression</a>. When entering backslashes, do "
246 "so\n"
247 " as if you were using Python raw strings (i.e. you generally "
248@@ -6804,7 +6804,7 @@
249 " <p>Do ní¾e zobrazených rámeèkù zapisujte na ka¾dý øádek jednu "
250 "adresu.\n"
251 " Pokud chcete pou¾ít <a href=\n"
252-" \"http://docs.python.org/library/re.html\"\n"
253+" \"https://docs.python.org/2/library/re.html\"\n"
254 " >Regulární výraz Pythonu</a> zaènìte øádek znakem ^. Pokud "
255 "potøebujete zadat \n"
256 " zpìtné lomítko zadejte jej jako jednoduché (tedy není potøeba "
257@@ -7544,7 +7544,7 @@
258 msgid ""
259 "The topic filter categorizes each incoming email message\n"
260 " according to <a\n"
261-" href=\"http://docs.python.org/library/re.html\">regular\n"
262+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
263 " expression filters</a> you specify below. If the message's\n"
264 " <code>Subject:</code> or <code>Keywords:</code> header contains "
265 "a\n"
266@@ -7567,7 +7567,7 @@
267 " configuration variable."
268 msgstr ""
269 "Tématický filtr zatøídí ka¾dou pøijatou zprávu s pou¾itím <a\n"
270-" href=\"http://docs.python.org/library/re.html\">regulárních\n"
271+" href=\"https://docs.python.org/2/library/re.html\">regulárních\n"
272 " výrazù</a> , které zadáte ní¾e. Pokud zpráva obsahuje v "
273 "hlavièce \n"
274 " <code>Subject:</code> a nebo <code>Keywords:</code> výraz "
275@@ -9810,7 +9810,7 @@
276 "Complete\n"
277 "specifications are at:\n"
278 "\n"
279-"http://docs.python.org/library/re.html\n"
280+"https://docs.python.org/2/library/re.html\n"
281 "\n"
282 "Address matches are case-insensitive, but case-preserved addresses are\n"
283 "displayed.\n"
284
285=== modified file 'messages/da/LC_MESSAGES/mailman.po'
286--- messages/da/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
287+++ messages/da/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
288@@ -7063,7 +7063,7 @@
289 "\n"
290 " <p>In the text boxes below, add one address per line; start the\n"
291 " line with a ^ character to designate a <a href=\n"
292-" \"http://docs.python.org/library/re.html\"\n"
293+" \"https://docs.python.org/2/library/re.html\"\n"
294 " >Python regular expression</a>. When entering backslashes, do "
295 "so\n"
296 " as if you were using Python raw strings (i.e. you generally "
297@@ -7098,7 +7098,7 @@
298 "\n"
299 "<p>I tekstboksene nedenfor kan du tilf&oslash;je en e-mailadresse pr. "
300 "linie.\n"
301-"Du kan ogs&aring; tilf&oslash;je <a href=\"http://docs.python.org/library/"
302+"Du kan ogs&aring; tilf&oslash;je <a href=\"https://docs.python.org/2/library/"
303 "re.html\">Python regexp-udtryk</a>.\n"
304 "Begynd i s&aring; fald linien med tegnet ^ for at markere at det er et "
305 "s&aring;dant udtryk.\n"
306@@ -7885,7 +7885,7 @@
307 msgid ""
308 "The topic filter categorizes each incoming email message\n"
309 " according to <a\n"
310-" href=\"http://docs.python.org/library/re.html\">regular\n"
311+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
312 " expression filters</a> you specify below. If the message's\n"
313 " <code>Subject:</code> or <code>Keywords:</code> header contains "
314 "a\n"
315@@ -7908,7 +7908,7 @@
316 " configuration variable."
317 msgstr ""
318 "Emnefilteret kategoriserer hver e-mail som kommer til listen,\n"
319-"efter <a href=\"http://docs.python.org/library/re.html\">de regexp-udtryk</"
320+"efter <a href=\"https://docs.python.org/2/library/re.html\">de regexp-udtryk</"
321 "a>\n"
322 "du skriver nedenfor. Hvis felterne <code>Subject:</code> eller "
323 "<code>Keywords:</code>\n"
324@@ -10570,7 +10570,7 @@
325 "Complete\n"
326 "specifications are at:\n"
327 "\n"
328-"http://docs.python.org/library/re.html\n"
329+"https://docs.python.org/2/library/re.html\n"
330 "\n"
331 "Address matches are case-insensitive, but case-preserved addresses are\n"
332 "displayed.\n"
333@@ -10611,7 +10611,7 @@
334 "benyttes.\n"
335 "Komplet specifikation findes på:\n"
336 "\n"
337-"http://docs.python.org/library/re.html\n"
338+"https://docs.python.org/2/library/re.html\n"
339 "\n"
340 "Adresser sammenlignes uden forskel på små og store bogstaver, men vises med\n"
341 "store/små bogstaver som de er stavet.\n"
342@@ -14165,7 +14165,7 @@
343
344 #~ msgid ""
345 #~ "<li>Find members by\n"
346-#~ " <a href=\"http://docs.python.org/library/re.html#regular-"
347+#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
348 #~ "expression-syntax\"\n"
349 #~ " >Python regular expression</a> (<em>regexp</em>)<br>"
350 #~ msgstr ""
351
352=== modified file 'messages/de/LC_MESSAGES/mailman.po'
353--- messages/de/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
354+++ messages/de/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
355@@ -7645,7 +7645,7 @@
356 "\n"
357 " <p>In the text boxes below, add one address per line; start the\n"
358 " line with a ^ character to designate a <a href=\n"
359-" \"http://docs.python.org/library/re.html\"\n"
360+" \"https://docs.python.org/2/library/re.html\"\n"
361 " >Python regular expression</a>. When entering backslashes, do "
362 "so\n"
363 " as if you were using Python raw strings (i.e. you generally "
364@@ -7679,7 +7679,7 @@
365 "\n"
366 "<p>Fügen Sie eine E-Mail-Adresse pro Zeile hinzu.\n"
367 "Beginnen Sie mit einem ^, um\n"
368-" <a href=\"http://docs.python.org/library/re.html\">reguläre\n"
369+" <a href=\"https://docs.python.org/2/library/re.html\">reguläre\n"
370 " Ausdrücke(RegExp)</a> einzuleiten. Geben Sie einen Backslash so an, wie in\n"
371 " normale Python-Strings (i.d.R. ein einfacher, normaler Backslash).\n"
372 "\n"
373@@ -8579,7 +8579,7 @@
374 msgid ""
375 "The topic filter categorizes each incoming email message\n"
376 " according to <a\n"
377-" href=\"http://docs.python.org/library/re.html\">regular\n"
378+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
379 " expression filters</a> you specify below. If the message's\n"
380 " <code>Subject:</code> or <code>Keywords:</code> header contains "
381 "a\n"
382@@ -8602,7 +8602,7 @@
383 " configuration variable."
384 msgstr ""
385 "Der Themenfilter kategorisiert jede eingehende E-Mail-Nachricht gemäss <a "
386-"href=\"http://docs.python.org/library/re.html\">Filterregeln mit regulären "
387+"href=\"https://docs.python.org/2/library/re.html\">Filterregeln mit regulären "
388 "Ausdrücken</a>, die Sie weiter unten festlegen können. Wenn die "
389 "<code>Subject:</code> oder <code>Keywords:</code> Header der Nachricht mit "
390 "dem Suchthema übereinstimmen, wird die Nachricht in einem thematischen "
391@@ -11457,7 +11457,7 @@
392 "Complete\n"
393 "specifications are at:\n"
394 "\n"
395-"http://docs.python.org/library/re.html\n"
396+"https://docs.python.org/2/library/re.html\n"
397 "\n"
398 "Address matches are case-insensitive, but case-preserved addresses are\n"
399 "displayed.\n"
400@@ -11496,7 +11496,7 @@
401 "Die vom Python re-Modul benutzte Syntax für reguläre Ausdrücke entspricht\n"
402 "der von Perl5. Die kompletten Spezifikationen sind erhältlich unter:\n"
403 "\n"
404-"http://docs.python.org/library/re.html\n"
405+"https://docs.python.org/2/library/re.html\n"
406 "\n"
407 "Die Adresssuche ignoriert Gross-/Kleinschreibung, zeigt jedoch unter-\n"
408 "schiedliche Schreibweisen der Adressen an.\n"
409
410=== modified file 'messages/el/LC_MESSAGES/mailman.po'
411--- messages/el/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
412+++ messages/el/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
413@@ -7394,7 +7394,7 @@
414 "\n"
415 " <p>In the text boxes below, add one address per line; start the\n"
416 " line with a ^ character to designate a <a href=\n"
417-" \"http://docs.python.org/library/re.html\"\n"
418+" \"https://docs.python.org/2/library/re.html\"\n"
419 " >Python regular expression</a>. When entering backslashes, do "
420 "so\n"
421 " as if you were using Python raw strings (i.e. you generally "
422@@ -7438,7 +7438,7 @@
423 " <p>Óôá áêüëïõèá ðëáßóéá êåéìÝíïõ, ðñïóèÝóôå ìéá äéåýèõíóç óå "
424 "êÜèå ãñáììÞ. Áñ÷ßóôå \n"
425 " ôç ãñáììÞ ìå ôïí ÷áñáêôÞñá ^ ãéá íá äçëþóåôå ìéá <a href="
426-"\"http://docs.python.org/library/re.html\">Python regular expression</a>. "
427+"\"https://docs.python.org/2/library/re.html\">Python regular expression</a>. "
428 "¼ôáí åéóÜãåôå áíÜðïäåò êáèÝôïõò (backslashes), \n"
429 "êÜíôå ôï óáí \n"
430 " íá ÷ñçóéìïðïéïýóáôå áðëÝò óõìâïëïóåéñÝò Python (ð.÷. ìðïñåßôå "
431@@ -8281,7 +8281,7 @@
432 msgid ""
433 "The topic filter categorizes each incoming email message\n"
434 " according to <a\n"
435-" href=\"http://docs.python.org/library/re.html\">regular\n"
436+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
437 " expression filters</a> you specify below. If the message's\n"
438 " <code>Subject:</code> or <code>Keywords:</code> header contains "
439 "a\n"
440@@ -8304,7 +8304,7 @@
441 " configuration variable."
442 msgstr ""
443 "Ôï ößëôñï èÝìáôïò êáôçãïñéïðïéåß êÜèå åéóåñ÷üìåíï ìÞíõìá\n"
444-" óýìöùíá ìå ôï <a href=\"http://docs.python.org/library/re.html"
445+" óýìöùíá ìå ôï <a href=\"https://docs.python.org/2/library/re.html"
446 "\">ößëôñá\n"
447 " êáíïíéêþí åêöñÜóåùí</a> ðïõ ïñßæïíôáé ðéï êÜôù. Áí ïé "
448 "åðéêåöáëßäåò\n"
449@@ -11088,7 +11088,7 @@
450 "Complete\n"
451 "specifications are at:\n"
452 "\n"
453-"http://docs.python.org/library/re.html\n"
454+"https://docs.python.org/2/library/re.html\n"
455 "\n"
456 "Address matches are case-insensitive, but case-preserved addresses are\n"
457 "displayed.\n"
458@@ -11132,7 +11132,7 @@
459 "Ïé ðëÞñåéò\n"
460 "ðñïäéáãñáöÝò âñßóêïíôáé óôï:\n"
461 "\n"
462-"http://docs.python.org/library/re.html\n"
463+"https://docs.python.org/2/library/re.html\n"
464 "\n"
465 "Ïé áíôéóôïé÷ßåò äéåõèýíóåùí åßíáé (case-insensitive), áëëÜ ïé (case-"
466 "preserved) äéåõèýíóåéò\n"
467
468=== modified file 'messages/eo/LC_MESSAGES/mailman.po'
469--- messages/eo/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
470+++ messages/eo/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
471@@ -5943,7 +5943,7 @@
472 "\n"
473 " <p>In the text boxes below, add one address per line; start the\n"
474 " line with a ^ character to designate a <a href=\n"
475-" \"http://docs.python.org/library/re.html\"\n"
476+" \"https://docs.python.org/2/library/re.html\"\n"
477 " >Python regular expression</a>. When entering backslashes, do "
478 "so\n"
479 " as if you were using Python raw strings (i.e. you generally "
480@@ -6523,7 +6523,7 @@
481 msgid ""
482 "The topic filter categorizes each incoming email message\n"
483 " according to <a\n"
484-" href=\"http://docs.python.org/library/re.html\">regular\n"
485+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
486 " expression filters</a> you specify below. If the message's\n"
487 " <code>Subject:</code> or <code>Keywords:</code> header contains "
488 "a\n"
489@@ -8648,7 +8648,7 @@
490 "Complete\n"
491 "specifications are at:\n"
492 "\n"
493-"http://docs.python.org/library/re.html\n"
494+"https://docs.python.org/2/library/re.html\n"
495 "\n"
496 "Address matches are case-insensitive, but case-preserved addresses are\n"
497 "displayed.\n"
498
499=== modified file 'messages/es/LC_MESSAGES/mailman.po'
500--- messages/es/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
501+++ messages/es/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
502@@ -7187,7 +7187,7 @@
503 "\n"
504 " <p>In the text boxes below, add one address per line; start the\n"
505 " line with a ^ character to designate a <a href=\n"
506-" \"http://docs.python.org/library/re.html\"\n"
507+" \"https://docs.python.org/2/library/re.html\"\n"
508 " >Python regular expression</a>. When entering backslashes, do "
509 "so\n"
510 " as if you were using Python raw strings (i.e. you generally "
511@@ -7228,7 +7228,7 @@
512 " <p>En la caja de texto de más abajo, agrega una dirección en "
513 "cada línea, empieza la línea\n"
514 " con el carácter ^ para designar una \n"
515-" <a href=\"http://docs.python.org/library/re.html\">\n"
516+" <a href=\"https://docs.python.org/2/library/re.html\">\n"
517 " expresión regular de Python</a>. Cuando metas barras inclinadas "
518 "de izquierda a derecha (\"\\\"),\n"
519 " hazlo como si estuvieras usando cadenas de Python en bruto "
520@@ -8029,7 +8029,7 @@
521 msgid ""
522 "The topic filter categorizes each incoming email message\n"
523 " according to <a\n"
524-" href=\"http://docs.python.org/library/re.html\">regular\n"
525+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
526 " expression filters</a> you specify below. If the message's\n"
527 " <code>Subject:</code> or <code>Keywords:</code> header contains "
528 "a\n"
529@@ -8052,7 +8052,7 @@
530 " configuration variable."
531 msgstr ""
532 "El filtro según el tema, clasifica cada mensaje recibido\n"
533-" según: los <a href=\"http://docs.python.org/library/re.html\">\n"
534+" según: los <a href=\"https://docs.python.org/2/library/re.html\">\n"
535 " filtros de expresiones regulares</a> que especifique abajo. Si "
536 "las cabeceras\n"
537 " <code>Subject:</code> (asunto) o <code>Keywords</code> "
538@@ -10798,7 +10798,7 @@
539 "Complete\n"
540 "specifications are at:\n"
541 "\n"
542-"http://docs.python.org/library/re.html\n"
543+"https://docs.python.org/2/library/re.html\n"
544 "\n"
545 "Address matches are case-insensitive, but case-preserved addresses are\n"
546 "displayed.\n"
547@@ -10840,7 +10840,7 @@
548 "La sintaxis de la expresión regular es al estilo Perl5, usando el modulo "
549 "Python re. Las especificaciones completas están en:\n"
550 "\n"
551-"http://docs.python.org/library/re.html\n"
552+"https://docs.python.org/2/library/re.html\n"
553 "\n"
554 "Al buscar las direcciones no se distinguen mayúsculas de minúsculas, sin "
555 "embargo, \n"
556
557=== modified file 'messages/et/LC_MESSAGES/mailman.po'
558--- messages/et/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
559+++ messages/et/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
560@@ -6620,7 +6620,7 @@
561 "\n"
562 " <p>In the text boxes below, add one address per line; start the\n"
563 " line with a ^ character to designate a <a href=\n"
564-" \"http://docs.python.org/library/re.html\"\n"
565+" \"https://docs.python.org/2/library/re.html\"\n"
566 " >Python regular expression</a>. When entering backslashes, do "
567 "so\n"
568 " as if you were using Python raw strings (i.e. you generally "
569@@ -6651,7 +6651,7 @@
570 "kehtestatud reeglitele</a>\n"
571 "\n"
572 "<p>Sisesta tekstikastidesse aadressid, üks igale reale; ^ märk rea alguses\n"
573-"tähistab <a href=\"http://docs.python.org/library/re.html\">Pythoni "
574+"tähistab <a href=\"https://docs.python.org/2/library/re.html\">Pythoni "
575 "regulaaravaldist</a>. Kurakaldkriipse sisesta nii nagu Pythoni stringe (s.t. "
576 "kasuta ainult ühte kurakaldkriipsu).\n"
577 "\n"
578@@ -7361,7 +7361,7 @@
579 msgid ""
580 "The topic filter categorizes each incoming email message\n"
581 " according to <a\n"
582-" href=\"http://docs.python.org/library/re.html\">regular\n"
583+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
584 " expression filters</a> you specify below. If the message's\n"
585 " <code>Subject:</code> or <code>Keywords:</code> header contains "
586 "a\n"
587@@ -7383,8 +7383,8 @@
588 "\">topics_bodylines_limit</a>\n"
589 " configuration variable."
590 msgstr ""
591-"Teemafilter kategoriseerib sissetulevaid kirju vastavalt <a href=\"http://"
592-"docs.python.org/library/re.html\">regulaaravaldistele</a>. Kui sissetuleva "
593+"Teemafilter kategoriseerib sissetulevaid kirju vastavalt <a href=\"https://"
594+"docs.python.org/2/library/re.html\">regulaaravaldistele</a>. Kui sissetuleva "
595 "kirja <code>Subject:</code> või <code>Keywords:</code> päis vastab mõnele "
596 "reeglile siis paigutatakse see vastavasse <em>registrisse</em>. Liikmell on "
597 "võimalik valida talle huvi pakkuvat registrit (või registreid). Kirju, mis "
598@@ -9861,7 +9861,7 @@
599 "Complete\n"
600 "specifications are at:\n"
601 "\n"
602-"http://docs.python.org/library/re.html\n"
603+"https://docs.python.org/2/library/re.html\n"
604 "\n"
605 "Address matches are case-insensitive, but case-preserved addresses are\n"
606 "displayed.\n"
607@@ -9902,7 +9902,7 @@
608 "moodul,\n"
609 "mille täielik ülevaade on aadressil:\n"
610 "\n"
611-"http://docs.python.org/library/re.html\n"
612+"https://docs.python.org/2/library/re.html\n"
613 "\n"
614 "Otsing on tõstutundetu kui aadressid kuvatakse nii nagu nad listis kirjas "
615 "on.\n"
616
617=== modified file 'messages/eu/LC_MESSAGES/mailman.po'
618--- messages/eu/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
619+++ messages/eu/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
620@@ -7011,7 +7011,7 @@
621 "\n"
622 " <p>In the text boxes below, add one address per line; start the\n"
623 " line with a ^ character to designate a <a href=\n"
624-" \"http://docs.python.org/library/re.html\"\n"
625+" \"https://docs.python.org/2/library/re.html\"\n"
626 " >Python regular expression</a>. When entering backslashes, do "
627 "so\n"
628 " as if you were using Python raw strings (i.e. you generally "
629@@ -7052,7 +7052,7 @@
630 " <p>Beheko testu-kutxetan, gehitu helbide bat lerroko; lerroa "
631 "hasi\n"
632 " ^ karakterearekin, <a href=\n"
633-" \"http://docs.python.org/library/re.html\"\n"
634+" \"https://docs.python.org/2/library/re.html\"\n"
635 " >Python adierazpen erregularren</a> kasuan. '\\' ikurrak "
636 "sartzean,\n"
637 " Python lerro gordinak erabiltzen ari bazina bezala egin ezazu "
638@@ -7836,7 +7836,7 @@
639 msgid ""
640 "The topic filter categorizes each incoming email message\n"
641 " according to <a\n"
642-" href=\"http://docs.python.org/library/re.html\">regular\n"
643+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
644 " expression filters</a> you specify below. If the message's\n"
645 " <code>Subject:</code> or <code>Keywords:</code> header contains "
646 "a\n"
647@@ -7859,7 +7859,7 @@
648 " configuration variable."
649 msgstr ""
650 "Gaien iragazkiak, heltzen diren mezu guztiak sailkatu egiten ditu\n"
651-" behean adierazitako <a href=\"http://docs.python.org/library/re."
652+" behean adierazitako <a href=\"https://docs.python.org/2/library/re."
653 "html\">adierazpen\n"
654 " erregularren iragazkiaren</a> arabera.\n"
655 " <code>Subject:</code> (gaia) edo <code>Keywords</code> (gako-"
656@@ -10290,7 +10290,7 @@
657 "Complete\n"
658 "specifications are at:\n"
659 "\n"
660-"http://docs.python.org/library/re.html\n"
661+"https://docs.python.org/2/library/re.html\n"
662 "\n"
663 "Address matches are case-insensitive, but case-preserved addresses are\n"
664 "displayed.\n"
665
666=== modified file 'messages/fa/LC_MESSAGES/mailman.po'
667--- messages/fa/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
668+++ messages/fa/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
669@@ -5844,7 +5844,7 @@
670 "\n"
671 " <p>In the text boxes below, add one address per line; start the\n"
672 " line with a ^ character to designate a <a href=\n"
673-" \"http://docs.python.org/library/re.html\"\n"
674+" \"https://docs.python.org/2/library/re.html\"\n"
675 " >Python regular expression</a>. When entering backslashes, do "
676 "so\n"
677 " as if you were using Python raw strings (i.e. you generally "
678@@ -6426,7 +6426,7 @@
679 msgid ""
680 "The topic filter categorizes each incoming email message\n"
681 " according to <a\n"
682-" href=\"http://docs.python.org/library/re.html\">regular\n"
683+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
684 " expression filters</a> you specify below. If the message's\n"
685 " <code>Subject:</code> or <code>Keywords:</code> header contains "
686 "a\n"
687@@ -8479,7 +8479,7 @@
688 "Complete\n"
689 "specifications are at:\n"
690 "\n"
691-"http://docs.python.org/library/re.html\n"
692+"https://docs.python.org/2/library/re.html\n"
693 "\n"
694 "Address matches are case-insensitive, but case-preserved addresses are\n"
695 "displayed.\n"
696
697=== modified file 'messages/fi/LC_MESSAGES/mailman.po'
698--- messages/fi/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
699+++ messages/fi/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
700@@ -7003,7 +7003,7 @@
701 "\n"
702 " <p>In the text boxes below, add one address per line; start the\n"
703 " line with a ^ character to designate a <a href=\n"
704-" \"http://docs.python.org/library/re.html\"\n"
705+" \"https://docs.python.org/2/library/re.html\"\n"
706 " >Python regular expression</a>. When entering backslashes, do "
707 "so\n"
708 " as if you were using Python raw strings (i.e. you generally "
709@@ -7039,7 +7039,7 @@
710 "\n"
711 " <p>Alla olevissa tekstilaatikoissa, lisää yksi osoite riville;\n"
712 " aloita rivi ^ merkillä, joka määrittelee <a href=\n"
713-" \"http://docs.python.org/library/re.html\"\n"
714+" \"https://docs.python.org/2/library/re.html\"\n"
715 " >Pythonin yleisen ilmaisun</a>. Jos kirjoitat takakeno- "
716 "viivoja\n"
717 " merkitse ne kuin käyttäisit Pythonin raakamerkkijonoa (esim. jos "
718@@ -7838,7 +7838,7 @@
719 msgid ""
720 "The topic filter categorizes each incoming email message\n"
721 " according to <a\n"
722-" href=\"http://docs.python.org/library/re.html\">regular\n"
723+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
724 " expression filters</a> you specify below. If the message's\n"
725 " <code>Subject:</code> or <code>Keywords:</code> header contains "
726 "a\n"
727@@ -7862,7 +7862,7 @@
728 msgstr ""
729 "Aiheen suodattimet luokittelee jokaisen tulevan sähköpostin\n"
730 " <a\n"
731-" href=\"http://docs.python.org/library/re.html\">tavallisen\n"
732+" href=\"https://docs.python.org/2/library/re.html\">tavallisen\n"
733 " ilmaisun suodattimen</a> mukaan kuten määrittelet alla. Jos\n"
734 " viestin <code>Aihe:</code> tai <code>Avainsanat:</code> kentät "
735 "täsmäävät\n"
736@@ -10527,7 +10527,7 @@
737 "Complete\n"
738 "specifications are at:\n"
739 "\n"
740-"http://docs.python.org/library/re.html\n"
741+"https://docs.python.org/2/library/re.html\n"
742 "\n"
743 "Address matches are case-insensitive, but case-preserved addresses are\n"
744 "displayed.\n"
745@@ -10568,7 +10568,7 @@
746 "Complete\n"
747 "specifications are at:\n"
748 "\n"
749-"http://docs.python.org/library/re.html\n"
750+"https://docs.python.org/2/library/re.html\n"
751 "\n"
752 "Address matches are case-insensitive, but case-preserved addresses are\n"
753 "displayed.\n"
754
755=== modified file 'messages/fr/LC_MESSAGES/mailman.po'
756--- messages/fr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
757+++ messages/fr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
758@@ -7057,7 +7057,7 @@
759 "\n"
760 " <p>In the text boxes below, add one address per line; start the\n"
761 " line with a ^ character to designate a <a href=\n"
762-" \"http://docs.python.org/library/re.html\"\n"
763+" \"https://docs.python.org/2/library/re.html\"\n"
764 " >Python regular expression</a>. When entering backslashes, do "
765 "so\n"
766 " as if you were using Python raw strings (i.e. you generally "
767@@ -7099,7 +7099,7 @@
768 " <p>Dans la zone de texte ci-dessous, ajouter une adresse par "
769 "ligne;\n"
770 " commencer la ligne avec le caractère ^ pour designer une <a\n"
771-" href=\"http://docs.python.org/library/re.html\">expression\n"
772+" href=\"https://docs.python.org/2/library/re.html\">expression\n"
773 " régulière Python</a>. Si vous utilisez des backslashs, faites-le "
774 "comme\n"
775 " si vous utilisiez des chaînes Python brutes (i.e. en utilisant "
776@@ -7922,7 +7922,7 @@
777 msgid ""
778 "The topic filter categorizes each incoming email message\n"
779 " according to <a\n"
780-" href=\"http://docs.python.org/library/re.html\">regular\n"
781+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
782 " expression filters</a> you specify below. If the message's\n"
783 " <code>Subject:</code> or <code>Keywords:</code> header contains "
784 "a\n"
785@@ -7946,7 +7946,7 @@
786 msgstr ""
787 "Le filtre de thème place chaque courriel qui arrive dans une catégorie\n"
788 " sur la base <a\n"
789-" href=\"http://docs.python.org/library/re.html\">\n"
790+" href=\"https://docs.python.org/2/library/re.html\">\n"
791 " des filtres d'expressions régulières</a> que vous avez définis "
792 "ci-dessous.\n"
793 " Si l'en-tête <code>Objet:</code> ou <code>Mots Clés:</code> "
794@@ -10626,7 +10626,7 @@
795 "Complete\n"
796 "specifications are at:\n"
797 "\n"
798-"http://docs.python.org/library/re.html\n"
799+"https://docs.python.org/2/library/re.html\n"
800 "\n"
801 "Address matches are case-insensitive, but case-preserved addresses are\n"
802 "displayed.\n"
803@@ -10665,7 +10665,7 @@
804 "utilisées. La syntaxe des expressions régulières est celle de Perl5\n"
805 "avec l'utilisation du module re de Python. Les spécifications\n"
806 "complètes sont disponible à\n"
807-"http://docs.python.org/library/re.html\n"
808+"https://docs.python.org/2/library/re.html\n"
809 "\n"
810 "La comparaison des adresses se fait avec non respect de la casse tandis\n"
811 "que les résultats trouvés seront affichés avec leurs casses\n"
812
813=== modified file 'messages/gl/LC_MESSAGES/mailman.po'
814--- messages/gl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
815+++ messages/gl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
816@@ -6840,7 +6840,7 @@
817 "\n"
818 " <p>In the text boxes below, add one address per line; start the\n"
819 " line with a ^ character to designate a <a href=\n"
820-" \"http://docs.python.org/library/re.html\"\n"
821+" \"https://docs.python.org/2/library/re.html\"\n"
822 " >Python regular expression</a>. When entering backslashes, do "
823 "so\n"
824 " as if you were using Python raw strings (i.e. you generally "
825@@ -6879,7 +6879,7 @@
826 " <p>Na caixa de texto de máis abaixo, engada un enderezo en cada "
827 "liña, comece a liña\n"
828 " co carácter ^ para designar unha \n"
829-" <a href=\"http://docs.python.org/library/re.html\">\n"
830+" <a href=\"https://docs.python.org/2/library/re.html\">\n"
831 " expresión regular de Python</a>. Cando inclúa barras inclinadas "
832 "de esquerda a dereita (\"\\\"),\n"
833 " fágao como se estivese a empregar cadeas de Python en bruto "
834@@ -7630,7 +7630,7 @@
835 msgid ""
836 "The topic filter categorizes each incoming email message\n"
837 " according to <a\n"
838-" href=\"http://docs.python.org/library/re.html\">regular\n"
839+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
840 " expression filters</a> you specify below. If the message's\n"
841 " <code>Subject:</code> or <code>Keywords:</code> header contains "
842 "a\n"
843@@ -7653,7 +7653,7 @@
844 " configuration variable."
845 msgstr ""
846 "O filtro segundo o tema, clasifica cada mensaxe recibida\n"
847-" segundo os <a href=\"http://docs.python.org/library/re.html\">\n"
848+" segundo os <a href=\"https://docs.python.org/2/library/re.html\">\n"
849 " filtros de expresións regulares</a> que especifique abaixo. Se "
850 "as cabeceiras\n"
851 " <code>Subject:</code> (asunto) ou <code>Keywords</code> "
852@@ -10229,7 +10229,7 @@
853 "Complete\n"
854 "specifications are at:\n"
855 "\n"
856-"http://docs.python.org/library/re.html\n"
857+"https://docs.python.org/2/library/re.html\n"
858 "\n"
859 "Address matches are case-insensitive, but case-preserved addresses are\n"
860 "displayed.\n"
861@@ -10269,7 +10269,7 @@
862 "A sintaxe da expresión regular é ao estilo Perl5, usando o módulo Python "
863 "re. As especificacións completas están en:\n"
864 "\n"
865-"http://docs.python.org/library/re.html\n"
866+"https://docs.python.org/2/library/re.html\n"
867 "\n"
868 "Na busca de enderezos non se distinguen as maiúsculas das minúsculas mais \n"
869 "amósanse os enderezos tal e como se achan.\n"
870
871=== modified file 'messages/he/LC_MESSAGES/mailman.po'
872--- messages/he/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
873+++ messages/he/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
874@@ -6675,7 +6675,7 @@
875 "\n"
876 " <p>In the text boxes below, add one address per line; start the\n"
877 " line with a ^ character to designate a <a href=\n"
878-" \"http://docs.python.org/library/re.html\"\n"
879+" \"https://docs.python.org/2/library/re.html\"\n"
880 " >Python regular expression</a>. When entering backslashes, do "
881 "so\n"
882 " as if you were using Python raw strings (i.e. you generally "
883@@ -7452,7 +7452,7 @@
884 msgid ""
885 "The topic filter categorizes each incoming email message\n"
886 " according to <a\n"
887-" href=\"http://docs.python.org/library/re.html\">regular\n"
888+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
889 " expression filters</a> you specify below. If the message's\n"
890 " <code>Subject:</code> or <code>Keywords:</code> header contains "
891 "a\n"
892@@ -7475,7 +7475,7 @@
893 " configuration variable."
894 msgstr ""
895 "מסנן הנוש�י� מ�פיין כל מסר דו�\"ל שנכנס בהת�� ל\n"
896-" <a href=\"http://docs.python.org/library/re.html\">\n"
897+" <a href=\"https://docs.python.org/2/library/re.html\">\n"
898 " מסנני ביטוי� רגולריי�</a> ש�תה מגדיר למטה. �� כותרת ה-"
899 "<code>נוש�:</code>\n"
900 " �ו <code>מלות-המפתח:</code> מכילה הת�מה מול מסנן נוש�, המסר "
901@@ -10037,7 +10037,7 @@
902 "Complete\n"
903 "specifications are at:\n"
904 "\n"
905-"http://docs.python.org/library/re.html\n"
906+"https://docs.python.org/2/library/re.html\n"
907 "\n"
908 "Address matches are case-insensitive, but case-preserved addresses are\n"
909 "displayed.\n"
910@@ -10077,7 +10077,7 @@
911 "התחביר של הביטיי� הרגולריי� דומה לתחביר של Perl5, ב�מצעות מודול ה-re של "
912 "Python.\n"
913 "ניתן למצ�ו הגדרה מל�ה ב-:\n"
914-"http://docs.python.org/library/re.html\n"
915+"https://docs.python.org/2/library/re.html\n"
916 "\n"
917 "הת�מה של כתובות �ינה רגישה לר�שיות התווי�, �ך הכתובות מוצגות ע� שמירה על "
918 "ר�שיות.\n"
919
920=== modified file 'messages/hr/LC_MESSAGES/mailman.po'
921--- messages/hr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
922+++ messages/hr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
923@@ -7018,7 +7018,7 @@
924 "\n"
925 " <p>In the text boxes below, add one address per line; start the\n"
926 " line with a ^ character to designate a <a href=\n"
927-" \"http://docs.python.org/library/re.html\"\n"
928+" \"https://docs.python.org/2/library/re.html\"\n"
929 " >Python regular expression</a>. When entering backslashes, do "
930 "so\n"
931 " as if you were using Python raw strings (i.e. you generally "
932@@ -7060,7 +7060,7 @@
933 " <p>U donjim tekst poljima, dodajte jednu adresu po liniji; "
934 "zapoènite liniju\n"
935 " sa ^ znakom da biste konstruirali <a href=\n"
936-" \"http://docs.python.org/library/re.html\"\n"
937+" \"https://docs.python.org/2/library/re.html\"\n"
938 " >Python regular expression</a>. Kada koristite kosu crtu, "
939 "unesite je kao da\n"
940 " unosite obièan Python tekst (npr. samo jednu kosu crtu)\n"
941@@ -7835,7 +7835,7 @@
942 msgid ""
943 "The topic filter categorizes each incoming email message\n"
944 " according to <a\n"
945-" href=\"http://docs.python.org/library/re.html\">regular\n"
946+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
947 " expression filters</a> you specify below. If the message's\n"
948 " <code>Subject:</code> or <code>Keywords:</code> header contains "
949 "a\n"
950@@ -7859,7 +7859,7 @@
951 msgstr ""
952 "Filter naslova kategorizira svaku dolaznu e-mail poruku\n"
953 " sukladno <a\n"
954-" href=\"http://docs.python.org/library/re.html\">regular\n"
955+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
956 " expression filterima</a> koje navodite dolje. Ako\n"
957 " <code>Subject:</code> ili <code>Keywords:</code> zaglavlja "
958 "poruke\n"
959@@ -10129,7 +10129,7 @@
960 "Complete\n"
961 "specifications are at:\n"
962 "\n"
963-"http://docs.python.org/library/re.html\n"
964+"https://docs.python.org/2/library/re.html\n"
965 "\n"
966 "Address matches are case-insensitive, but case-preserved addresses are\n"
967 "displayed.\n"
968
969=== modified file 'messages/hu/LC_MESSAGES/mailman.po'
970--- messages/hu/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
971+++ messages/hu/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
972@@ -6807,7 +6807,7 @@
973 "\n"
974 " <p>In the text boxes below, add one address per line; start the\n"
975 " line with a ^ character to designate a <a href=\n"
976-" \"http://docs.python.org/library/re.html\"\n"
977+" \"https://docs.python.org/2/library/re.html\"\n"
978 " >Python regular expression</a>. When entering backslashes, do "
979 "so\n"
980 " as if you were using Python raw strings (i.e. you generally "
981@@ -6844,7 +6844,7 @@
982 "külsõ\n"
983 "beküldési szabályok</a> lesznek érvényesek.\n"
984 "<p>A szövegdobozban soronként egy címet adjunk meg; a <a href=\n"
985-" \"http://docs.python.org/library/re.html\"\n"
986+" \"https://docs.python.org/2/library/re.html\"\n"
987 ">Python reguláris kifejezések</a> jelölésére a sorokat ^ jellel kezdjük. "
988 "Backslasht (\"\\\") mint egy hagyományos\n"
989 "karaktert adhatunk meg, úgy ahogy a Pythonban karakternél szokásos (ez "
990@@ -7602,7 +7602,7 @@
991 msgid ""
992 "The topic filter categorizes each incoming email message\n"
993 " according to <a\n"
994-" href=\"http://docs.python.org/library/re.html\">regular\n"
995+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
996 " expression filters</a> you specify below. If the message's\n"
997 " <code>Subject:</code> or <code>Keywords:</code> header contains "
998 "a\n"
999@@ -7626,7 +7626,7 @@
1000 msgstr ""
1001 "A témaszûrõ minden egyes bejövõ levelet megvizsgál a késõbbiekben megadott "
1002 "<a\n"
1003-"href=\"http://docs.python.org/library/re.html\">reguláris\n"
1004+"href=\"https://docs.python.org/2/library/re.html\">reguláris\n"
1005 "szûrõ kifejezések</a> alapján. Ha a levél <code>Subject:</code> vagy\n"
1006 "\t<code>Keywords:</code> fejléce egyezést mutat valamelyik szûrési\n"
1007 "\tfeltétellel, akkor az üzenet egy ún. téma <em>tárolóba</em> kerül.\n"
1008@@ -10218,7 +10218,7 @@
1009 "Complete\n"
1010 "specifications are at:\n"
1011 "\n"
1012-"http://docs.python.org/library/re.html\n"
1013+"https://docs.python.org/2/library/re.html\n"
1014 "\n"
1015 "Address matches are case-insensitive, but case-preserved addresses are\n"
1016 "displayed.\n"
1017@@ -10256,7 +10256,7 @@
1018 "\n"
1019 "A hagyományos kifejezésinek Perl5-típusúnak kell lennie, a keresést a\n"
1020 "Python re modulja végzi. Részletes leírása a következõ címen található:\n"
1021-"http://docs.python.org/library/re.html\n"
1022+"https://docs.python.org/2/library/re.html\n"
1023 "\n"
1024 "Keresésnél a kis- és nagybetûk nem számítanak, de a talált címek a\n"
1025 "feliratkozáskor megadott formában jelennek meg.\n"
1026
1027=== modified file 'messages/ia/LC_MESSAGES/mailman.po'
1028--- messages/ia/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1029+++ messages/ia/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1030@@ -7071,7 +7071,7 @@
1031 "\n"
1032 " <p>In the text boxes below, add one address per line; start the\n"
1033 " line with a ^ character to designate a <a href=\n"
1034-" \"http://docs.python.org/library/re.html\"\n"
1035+" \"https://docs.python.org/2/library/re.html\"\n"
1036 " >Python regular expression</a>. When entering backslashes, do "
1037 "so\n"
1038 " as if you were using Python raw strings (i.e. you generally "
1039@@ -7110,7 +7110,7 @@
1040 " <p>In le cassas textual infra, adde un adresse per linea; "
1041 "comencia le\n"
1042 " linea con un signo ^ pro designar un <a href=\n"
1043-" \"http://docs.python.org/library/re.html\"\n"
1044+" \"https://docs.python.org/2/library/re.html\"\n"
1045 " >expression Python regular</a>. Scribe barras inverse como si\n"
1046 " usar catenas rude de Python (i.e. on generalmente usa\n"
1047 " solmente un singule barra inverse).\n"
1048@@ -7902,7 +7902,7 @@
1049 msgid ""
1050 "The topic filter categorizes each incoming email message\n"
1051 " according to <a\n"
1052-" href=\"http://docs.python.org/library/re.html\">regular\n"
1053+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1054 " expression filters</a> you specify below. If the message's\n"
1055 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1056 "a\n"
1057@@ -7926,7 +7926,7 @@
1058 msgstr ""
1059 "Le filtro de themas categorisa cata message entrante in\n"
1060 " base a <a\n"
1061-" href=\"http://docs.python.org/library/re.html\">filtros\n"
1062+" href=\"https://docs.python.org/2/library/re.html\">filtros\n"
1063 " con expressiones regular</a> que tu scribe infra. Si le "
1064 "capite\n"
1065 " <code>Subject:</code> o <code>Keywords:</code> del message\n"
1066@@ -10193,7 +10193,7 @@
1067 "Complete\n"
1068 "specifications are at:\n"
1069 "\n"
1070-"http://docs.python.org/library/re.html\n"
1071+"https://docs.python.org/2/library/re.html\n"
1072 "\n"
1073 "Address matches are case-insensitive, but case-preserved addresses are\n"
1074 "displayed.\n"
1075
1076=== modified file 'messages/it/LC_MESSAGES/mailman.po'
1077--- messages/it/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1078+++ messages/it/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1079@@ -7405,7 +7405,7 @@
1080 "\n"
1081 " <p>In the text boxes below, add one address per line; start the\n"
1082 " line with a ^ character to designate a <a href=\n"
1083-" \"http://docs.python.org/library/re.html\"\n"
1084+" \"https://docs.python.org/2/library/re.html\"\n"
1085 " >Python regular expression</a>. When entering backslashes, do "
1086 "so\n"
1087 " as if you were using Python raw strings (i.e. you generally "
1088@@ -7443,7 +7443,7 @@
1089 "\n"
1090 " <p>Nei campi sottostanti aggiungi un indirizzo per riga; \n"
1091 " inizia la riga con un carattere ^ per indicare una\n"
1092-" <a href=\"http://docs.python.org/library/re.html\"\n"
1093+" <a href=\"https://docs.python.org/2/library/re.html\"\n"
1094 " >Espressione regolare Python</a>. Quando inserisci "
1095 "backslash,\n"
1096 " fallo come se stessi inserendo stringhe grezze Python (ad \n"
1097@@ -8256,7 +8256,7 @@
1098 msgid ""
1099 "The topic filter categorizes each incoming email message\n"
1100 " according to <a\n"
1101-" href=\"http://docs.python.org/library/re.html\">regular\n"
1102+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1103 " expression filters</a> you specify below. If the message's\n"
1104 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1105 "a\n"
1106@@ -8280,7 +8280,7 @@
1107 msgstr ""
1108 "Il filtro per argomenti categorizza ogni messaggio entrante\n"
1109 " in base a\n"
1110-"<a href=\"http://docs.python.org/library/re.html\">\n"
1111+"<a href=\"https://docs.python.org/2/library/re.html\">\n"
1112 " espressioni regolari</a> che puoi specificare pi&ugrave;\n"
1113 " in basso. Se i campi <code>Subject:</code> oppure\n"
1114 " <code>Keywords:</code> nel messaggio contengono parole\n"
1115@@ -11028,7 +11028,7 @@
1116 "Complete\n"
1117 "specifications are at:\n"
1118 "\n"
1119-"http://docs.python.org/library/re.html\n"
1120+"https://docs.python.org/2/library/re.html\n"
1121 "\n"
1122 "Address matches are case-insensitive, but case-preserved addresses are\n"
1123 "displayed.\n"
1124@@ -11069,7 +11069,7 @@
1125 "usando il modulo Python re. La specifica completa si può trovare\n"
1126 "all'indirizzo:\n"
1127 "\n"
1128-"http://docs.python.org/library/re.html\n"
1129+"https://docs.python.org/2/library/re.html\n"
1130 "\n"
1131 "La ricerca degli indirizzi è non sensibile a maiuscole/minuscole\n"
1132 "ma vengono mostrati gli indirizzi senza alterazioni.\n"
1133
1134=== modified file 'messages/ja/LC_MESSAGES/mailman.po'
1135--- messages/ja/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1136+++ messages/ja/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1137@@ -6632,7 +6632,7 @@
1138 "\n"
1139 " <p>In the text boxes below, add one address per line; start the\n"
1140 " line with a ^ character to designate a <a href=\n"
1141-" \"http://docs.python.org/library/re.html\"\n"
1142+" \"https://docs.python.org/2/library/re.html\"\n"
1143 " >Python regular expression</a>. When entering backslashes, do "
1144 "so\n"
1145 " as if you were using Python raw strings (i.e. you generally "
1146@@ -6661,7 +6661,7 @@
1147 "Èó²ñ°÷¤ËÂФ¹¤ëµ¬Â§</a>¤Ë½¾¤Ã¤Æ¤Õ¤ë¤¤¤Ë¤«¤±¤é¤ì¤Þ¤¹.\n"
1148 "<p>²¼¤Î¥Æ¥­¥¹¥È¥Ü¥Ã¥¯¥¹¤Ç, 1¹Ô¤Ë1¤Ä¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤òÅÐÏ¿¤Ç¤­¤Þ¤¹;\n"
1149 "¹Ô¤ÎºÇ½é¤Ë ^ ¤òµ­½Ò¤¹¤ë¤È\n"
1150-"<a href=\"http://docs.python.org/library/re.html\">Python¤Î\n"
1151+"<a href=\"https://docs.python.org/2/library/re.html\">Python¤Î\n"
1152 "Àµµ¬É½¸½</a>¤Ë¤Ê¤ê¤Þ¤¹. \n"
1153 "¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤Ï, Python ¤Î raw stringµ­Ë¡¤Î¤ä¤ê¤«¤¿¤Ç\n"
1154 "ÆþÎϤ·¤Æ¤¯¤À¤µ¤¤. (¤Ä¤Þ¤ê, ñ¤Ë1¤Ä¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤òÆþ¤ì¤ë¤À¤±¤Ç¤¹)\n"
1155@@ -7486,7 +7486,7 @@
1156 msgid ""
1157 "The topic filter categorizes each incoming email message\n"
1158 " according to <a\n"
1159-" href=\"http://docs.python.org/library/re.html\">regular\n"
1160+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1161 " expression filters</a> you specify below. If the message's\n"
1162 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1163 "a\n"
1164@@ -7509,7 +7509,7 @@
1165 " configuration variable."
1166 msgstr ""
1167 "ÏÃÂê¥Õ¥£¥ë¥¿¤Ï, °Ê²¼¤ËÄêµÁ¤¹¤ë\n"
1168-"<a href=\"http://docs.python.org/library/re.html\">Àµµ¬É½¸½\n"
1169+"<a href=\"https://docs.python.org/2/library/re.html\">Àµµ¬É½¸½\n"
1170 "¥Õ¥£¥ë¥¿</a> ¤ÇÅê¹Æ¤µ¤ì¤¿¥á¡¼¥ë¤òʬÎष¤Þ¤¹.\n"
1171 "¥á¡¼¥ë¤Î <code>Subject:</code> ¤« <code>Keywords:</code> ¥Ø¥Ã¥À¤¬\n"
1172 "ÏÃÂê¥Õ¥£¥ë¥¿¤ËŬ¹ç¤·¤¿¥á¡¼¥ë¤Ï, ÏÃÂꤴ¤È¤Ëºî¤é¤ì¤¿<em>¥Ð¥¹¥±¥Ã¥È</em>\n"
1173@@ -10082,7 +10082,7 @@
1174 "Complete\n"
1175 "specifications are at:\n"
1176 "\n"
1177-"http://docs.python.org/library/re.html\n"
1178+"https://docs.python.org/2/library/re.html\n"
1179 "\n"
1180 "Address matches are case-insensitive, but case-preserved addresses are\n"
1181 "displayed.\n"
1182@@ -10121,7 +10121,7 @@
1183 "Àµµ¬É½¸½¤Ï Perl5 ¤Ë»÷¤Æ¤¤¤ë¤¬, Python ¤Î re ¥â¥¸¥å¡¼¥ë¤ò»È¤¦. re\n"
1184 "¥â¥¸¥å¡¼¥ë¤Î»ÅÍͤϰʲ¼¤Î¥Ú¡¼¥¸¤Ë¤¢¤ë:\n"
1185 "\n"
1186-"http://docs.python.org/library/re.html\n"
1187+"https://docs.python.org/2/library/re.html\n"
1188 "\n"
1189 "¥á¡¼¥ë¥¢¥É¥ì¥¹¤ÏÂçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤ò¤»¤º¤Ë¸¡º÷¤¹¤ë¤¬, ·ë²Ì¤Îɽ¼¨¤Ï\n"
1190 "Âçʸ»ú¤ò´Þ¤ó¤À·Á¤Ç¹Ô¤ï¤ì¤ë.\n"
1191
1192=== modified file 'messages/ko/LC_MESSAGES/mailman.po'
1193--- messages/ko/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1194+++ messages/ko/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1195@@ -6269,7 +6269,7 @@
1196 "\n"
1197 " <p>In the text boxes below, add one address per line; start the\n"
1198 " line with a ^ character to designate a <a href=\n"
1199-" \"http://docs.python.org/library/re.html\"\n"
1200+" \"https://docs.python.org/2/library/re.html\"\n"
1201 " >Python regular expression</a>. When entering backslashes, do "
1202 "so\n"
1203 " as if you were using Python raw strings (i.e. you generally "
1204@@ -6294,7 +6294,7 @@
1205 "°ÅÀýµÇ°Å³ª, ȤÀº ¹ö·ÁÁý´Ï´Ù.\n"
1206 "\n"
1207 "<p> ¾Æ·¡ÀÇ ÅؽºÆ® ¹Ú½º¿¡¼­ ÁÙ(line)¸¶´Ù ÇϳªÀÇ ÁÖ¼Ò¸¦ ³ÖÀ» ¼ö ÀÖÀ¸¸ç ^ ¹®ÀÚ"
1208-"·Î ½ÃÀÛÇÏ´Â ÁÙÀº <a href=\"http://docs.python.org/library/re.html\">Python Á¤"
1209+"·Î ½ÃÀÛÇÏ´Â ÁÙÀº <a href=\"https://docs.python.org/2/library/re.html\">Python Á¤"
1210 "±Ô Ç¥Çö½Ä</a>À» ³ªÅ¸³À´Ï´Ù. ¹é½½·¡½¬¸¦ ³ÖÀ½À¸·Î½á Python ÀÇ raw ¹®ÀÚ¿­À» »ç¿ë"
1211 "ÇÒ ¼ö ÀÖ½À´Ï´Ù.(¿¹¸¦ µé¾î ´ç½ÅÀº ÀϹÝÀûÀ¸·Î ÇϳªÀÇ ¹é½½·¡½¬¸¦ »ç¿ëÇÕ´Ï´Ù.)<p>"
1212 "ºñÁ¤±Ô½Ä ÆÐÅÏÀÌ Ç×»ó óÀ½¿¡ ¿Àµµ·Ï ÇϽʽÿÀ."
1213@@ -6976,7 +6976,7 @@
1214 msgid ""
1215 "The topic filter categorizes each incoming email message\n"
1216 " according to <a\n"
1217-" href=\"http://docs.python.org/library/re.html\">regular\n"
1218+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1219 " expression filters</a> you specify below. If the message's\n"
1220 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1221 "a\n"
1222@@ -6998,7 +6998,7 @@
1223 "\">topics_bodylines_limit</a>\n"
1224 " configuration variable."
1225 msgstr ""
1226-"ÁÖÁ¦ °É·¯³»±â´Â ´ç½ÅÀÌ ¾Æ·¡¿¡¼­ Á¤ÇÑ href=\"http://docs.python.org/library/"
1227+"ÁÖÁ¦ °É·¯³»±â´Â ´ç½ÅÀÌ ¾Æ·¡¿¡¼­ Á¤ÇÑ href=\"https://docs.python.org/2/library/"
1228 "re.html\">Á¤±Ô Ç¥Çö½Ä - °É·¯³»±â</a>¿¡ µû¶ó µé¾î¿À´Â E¸ÞÀÏ ¸Þ¼¼¸¦ ºÐ·ùÇÒ ¼ö "
1229 "ÀÖ½À´Ï´Ù. ¸¸¾à ¸Þ¼¼ÁöÀÇ Çì´õ <code>Á¦¸ñ:</code> ȤÀº <code>Å°¿öµå:</code>°¡ "
1230 "°É·¯³»±â ³»¿ë°ú ¸Â°Ô µÇ¸é ¸Þ¼¼Áö´Â ³í¸®ÀûÀ¸·Î ÁÖÁ¦ <em>¼ÒÄí¸®(¿ªÀÚ ÁÖ: ¹Ù±¸"
1231@@ -9132,7 +9132,7 @@
1232 "Complete\n"
1233 "specifications are at:\n"
1234 "\n"
1235-"http://docs.python.org/library/re.html\n"
1236+"https://docs.python.org/2/library/re.html\n"
1237 "\n"
1238 "Address matches are case-insensitive, but case-preserved addresses are\n"
1239 "displayed.\n"
1240@@ -11352,11 +11352,11 @@
1241
1242 #~ msgid ""
1243 #~ "<li>Find members by\n"
1244-#~ " <a href=\"http://docs.python.org/library/re.html#regular-"
1245+#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
1246 #~ "expression-syntax\"\n"
1247 #~ " >Python regular expression</a> (<em>regexp</em>)<br>"
1248 #~ msgstr ""
1249-#~ "<li><a href=\"http://docs.python.org/library/re.html#regular-expression-"
1250+#~ "<li><a href=\"https://docs.python.org/2/library/re.html#regular-expression-"
1251 #~ "syntax\">\n"
1252 #~ "Python Á¤±Ô Ç¥Çö½Ä</a> (<em>regexp</em>)·Î ȸ¿ø ã±â<br>"
1253
1254
1255=== modified file 'messages/lt/LC_MESSAGES/mailman.po'
1256--- messages/lt/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1257+++ messages/lt/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1258@@ -5915,7 +5915,7 @@
1259 "\n"
1260 " <p>In the text boxes below, add one address per line; start the\n"
1261 " line with a ^ character to designate a <a href=\n"
1262-" \"http://docs.python.org/library/re.html\"\n"
1263+" \"https://docs.python.org/2/library/re.html\"\n"
1264 " >Python regular expression</a>. When entering backslashes, do "
1265 "so\n"
1266 " as if you were using Python raw strings (i.e. you generally "
1267@@ -6495,7 +6495,7 @@
1268 msgid ""
1269 "The topic filter categorizes each incoming email message\n"
1270 " according to <a\n"
1271-" href=\"http://docs.python.org/library/re.html\">regular\n"
1272+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1273 " expression filters</a> you specify below. If the message's\n"
1274 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1275 "a\n"
1276@@ -8535,7 +8535,7 @@
1277 "Complete\n"
1278 "specifications are at:\n"
1279 "\n"
1280-"http://docs.python.org/library/re.html\n"
1281+"https://docs.python.org/2/library/re.html\n"
1282 "\n"
1283 "Address matches are case-insensitive, but case-preserved addresses are\n"
1284 "displayed.\n"
1285
1286=== modified file 'messages/mailman.pot'
1287--- messages/mailman.pot 2018-07-11 04:23:52 +0000
1288+++ messages/mailman.pot 2018-07-15 05:58:13 +0000
1289@@ -5243,7 +5243,7 @@
1290 "\n"
1291 " <p>In the text boxes below, add one address per line; start the\n"
1292 " line with a ^ character to designate a <a href=\n"
1293-" \"http://docs.python.org/library/re.html\"\n"
1294+" \"https://docs.python.org/2/library/re.html\"\n"
1295 " >Python regular expression</a>. When entering backslashes, do so\n"
1296 " as if you were using Python raw strings (i.e. you generally just\n"
1297 " use a single backslash).\n"
1298@@ -5770,7 +5770,7 @@
1299 msgid ""
1300 "The topic filter categorizes each incoming email message\n"
1301 " according to <a\n"
1302-" href=\"http://docs.python.org/library/re.html\">regular\n"
1303+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1304 " expression filters</a> you specify below. If the message's\n"
1305 " <code>Subject:</code> or <code>Keywords:</code> header contains a\n"
1306 " match against a topic filter, the message is logically placed\n"
1307@@ -7685,7 +7685,7 @@
1308 "Regular expression syntax is Perl5-like, using the Python re module. Complete\n"
1309 "specifications are at:\n"
1310 "\n"
1311-"http://docs.python.org/library/re.html\n"
1312+"https://docs.python.org/2/library/re.html\n"
1313 "\n"
1314 "Address matches are case-insensitive, but case-preserved addresses are\n"
1315 "displayed.\n"
1316
1317=== modified file 'messages/nl/LC_MESSAGES/mailman.po'
1318--- messages/nl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1319+++ messages/nl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1320@@ -7101,7 +7101,7 @@
1321 "\n"
1322 " <p>In the text boxes below, add one address per line; start the\n"
1323 " line with a ^ character to designate a <a href=\n"
1324-" \"http://docs.python.org/library/re.html\"\n"
1325+" \"https://docs.python.org/2/library/re.html\"\n"
1326 " >Python regular expression</a>. When entering backslashes, do "
1327 "so\n"
1328 " as if you were using Python raw strings (i.e. you generally "
1329@@ -7139,7 +7139,7 @@
1330 " <p>In de onderstaande tekstvelden dient u per regel ��n adres\n"
1331 " in te vullen. Start de regel met een ^ teken om er de juiste\n"
1332 " <a href=\n"
1333-" \"http://docs.python.org/library/re.html\"\n"
1334+" \"https://docs.python.org/2/library/re.html\"\n"
1335 " >reguliere Python uitdrukking</a> van te maken. Bij gebruik\n"
1336 " van 'backslashes' (schuine strepen) kunt u deze invoeren alsof\n"
1337 " het Python raw strings zijn (m.a.w. in het algemeen gebruikt\n"
1338@@ -7930,7 +7930,7 @@
1339 msgid ""
1340 "The topic filter categorizes each incoming email message\n"
1341 " according to <a\n"
1342-" href=\"http://docs.python.org/library/re.html\">regular\n"
1343+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1344 " expression filters</a> you specify below. If the message's\n"
1345 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1346 "a\n"
1347@@ -7954,7 +7954,7 @@
1348 msgstr ""
1349 "De onderwerpfilter categoriseert elk binnengekomen e-mailbericht\n"
1350 " volgens de <a\n"
1351-" href=\"http://docs.python.org/library/re.html\">reguliere\n"
1352+" href=\"https://docs.python.org/2/library/re.html\">reguliere\n"
1353 " uitdrukkingsfilters</a> die u hieronder specificeert. Als de\n"
1354 " <code>Subject:</code> (onderwerp) of <code>Keywords:</code>\n"
1355 " (sleutelwoorden) headers van het bericht overeenkomen met\n"
1356@@ -10178,7 +10178,7 @@
1357 "Complete\n"
1358 "specifications are at:\n"
1359 "\n"
1360-"http://docs.python.org/library/re.html\n"
1361+"https://docs.python.org/2/library/re.html\n"
1362 "\n"
1363 "Address matches are case-insensitive, but case-preserved addresses are\n"
1364 "displayed.\n"
1365
1366=== modified file 'messages/no/LC_MESSAGES/mailman.po'
1367--- messages/no/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1368+++ messages/no/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1369@@ -6914,7 +6914,7 @@
1370 "\n"
1371 " <p>In the text boxes below, add one address per line; start the\n"
1372 " line with a ^ character to designate a <a href=\n"
1373-" \"http://docs.python.org/library/re.html\"\n"
1374+" \"https://docs.python.org/2/library/re.html\"\n"
1375 " >Python regular expression</a>. When entering backslashes, do "
1376 "so\n"
1377 " as if you were using Python raw strings (i.e. you generally "
1378@@ -6949,7 +6949,7 @@
1379 "\">generelle regler for ikke-medlemmer</a> sier.\n"
1380 "\n"
1381 "<p>I tekstboksene nedenfor legger du inn en epostadresse per linje.\n"
1382-"Du kan ogs&aring; legge inn <a href=\"http://docs.python.org/library/re.html"
1383+"Du kan ogs&aring; legge inn <a href=\"https://docs.python.org/2/library/re.html"
1384 "\">Python regexp-uttrykk</a>.\n"
1385 "Begynn is&aring;fall linjen med tegnet ^ for &aring; markere at det er et "
1386 "slikt uttrykk.\n"
1387@@ -7714,7 +7714,7 @@
1388 msgid ""
1389 "The topic filter categorizes each incoming email message\n"
1390 " according to <a\n"
1391-" href=\"http://docs.python.org/library/re.html\">regular\n"
1392+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1393 " expression filters</a> you specify below. If the message's\n"
1394 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1395 "a\n"
1396@@ -7737,7 +7737,7 @@
1397 " configuration variable."
1398 msgstr ""
1399 "Emnefilteret kategoriserer hver epost som kommer til listen,\n"
1400-"etter <a href=\"http://docs.python.org/library/re.html\">regexp-uttrykkene</"
1401+"etter <a href=\"https://docs.python.org/2/library/re.html\">regexp-uttrykkene</"
1402 "a>\n"
1403 "du skriver inn nedenfor. Hvis feltene <code>Subject:</code> eller "
1404 "<code>Keywords:</code>\n"
1405@@ -10339,7 +10339,7 @@
1406 "Complete\n"
1407 "specifications are at:\n"
1408 "\n"
1409-"http://docs.python.org/library/re.html\n"
1410+"https://docs.python.org/2/library/re.html\n"
1411 "\n"
1412 "Address matches are case-insensitive, but case-preserved addresses are\n"
1413 "displayed.\n"
1414@@ -10379,7 +10379,7 @@
1415 "benyttes.\n"
1416 "Komplett spesifikasjon finnes på:\n"
1417 "\n"
1418-"http://docs.python.org/library/re.html\n"
1419+"https://docs.python.org/2/library/re.html\n"
1420 "\n"
1421 "Adresser sammenlignes uten forskjell på små og store bokstaver, men vises "
1422 "med\n"
1423@@ -13554,7 +13554,7 @@
1424
1425 #~ msgid ""
1426 #~ "<li>Find members by\n"
1427-#~ " <a href=\"http://docs.python.org/library/re.html#regular-"
1428+#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
1429 #~ "expression-syntax\"\n"
1430 #~ " >Python regular expression</a> (<em>regexp</em>)<br>"
1431 #~ msgstr ""
1432
1433=== modified file 'messages/pl/LC_MESSAGES/mailman.po'
1434--- messages/pl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1435+++ messages/pl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1436@@ -6645,7 +6645,7 @@
1437 "\n"
1438 " <p>In the text boxes below, add one address per line; start the\n"
1439 " line with a ^ character to designate a <a href=\n"
1440-" \"http://docs.python.org/library/re.html\"\n"
1441+" \"https://docs.python.org/2/library/re.html\"\n"
1442 " >Python regular expression</a>. When entering backslashes, do "
1443 "so\n"
1444 " as if you were using Python raw strings (i.e. you generally "
1445@@ -6679,7 +6679,7 @@
1446 "\">ogólnej\n"
1447 " zasadzie stosowanej dla nie subskrybentów</a>.<p>W polach nale¿y "
1448 "wpisywaæ po jednym adresie w linii. Znak ^ napocz±tku nowej linii oznacza <a "
1449-"href=\"http://docs.python.org/library/re.html\"> wyra¿enie regularne w "
1450+"href=\"https://docs.python.org/2/library/re.html\"> wyra¿enie regularne w "
1451 "Pythonie</a>. <p>Pamiêtaj, ¿e linie bez u¿ycia wyra¿eñ regularnych s± "
1452 "dopasowywane wcze¶niej."
1453
1454@@ -7468,7 +7468,7 @@
1455 msgid ""
1456 "The topic filter categorizes each incoming email message\n"
1457 " according to <a\n"
1458-" href=\"http://docs.python.org/library/re.html\">regular\n"
1459+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1460 " expression filters</a> you specify below. If the message's\n"
1461 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1462 "a\n"
1463@@ -7492,7 +7492,7 @@
1464 msgstr ""
1465 "Filtr tematyczny dzieli wszystkie przychodz±ce wiadomo¶ci \n"
1466 " na kategorie wed³ug <a\n"
1467-"href=\"http://docs.python.org/library/re.html\">wyra¿enia\n"
1468+"href=\"https://docs.python.org/2/library/re.html\">wyra¿enia\n"
1469 " regularnego </a>, które okre¶lisz. Je¿eli pola nag³ówka\n"
1470 " <code>Subject:</code> lub <code>Keywords:</code> zostan±\n"
1471 " dopasowane do tego wyra¿enia, wiadomo¶æ jest umieszczana\n"
1472@@ -9696,7 +9696,7 @@
1473 "Complete\n"
1474 "specifications are at:\n"
1475 "\n"
1476-"http://docs.python.org/library/re.html\n"
1477+"https://docs.python.org/2/library/re.html\n"
1478 "\n"
1479 "Address matches are case-insensitive, but case-preserved addresses are\n"
1480 "displayed.\n"
1481
1482=== modified file 'messages/pt/LC_MESSAGES/mailman.po'
1483--- messages/pt/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1484+++ messages/pt/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1485@@ -6883,7 +6883,7 @@
1486 "\n"
1487 " <p>In the text boxes below, add one address per line; start the\n"
1488 " line with a ^ character to designate a <a href=\n"
1489-" \"http://docs.python.org/library/re.html\"\n"
1490+" \"https://docs.python.org/2/library/re.html\"\n"
1491 " >Python regular expression</a>. When entering backslashes, do "
1492 "so\n"
1493 " as if you were using Python raw strings (i.e. you generally "
1494@@ -6923,7 +6923,7 @@
1495 "\n"
1496 " <p>Nas caixas de texto abaixo, adicione um endereço por linha;\n"
1497 " inicie a linha com o caracter ^ para designar uma\n"
1498-" <a href=\"http://docs.python.org/library/re.html\">Expressão "
1499+" <a href=\"https://docs.python.org/2/library/re.html\">Expressão "
1500 "regular em Python</a>. Quando acrescentar contrabarras, faça como se \n"
1501 " estivesse usando strings raw do Python (i.e. você geralmente \n"
1502 " utilizaria apenas uma barra invertida).\n"
1503@@ -7687,7 +7687,7 @@
1504 msgid ""
1505 "The topic filter categorizes each incoming email message\n"
1506 " according to <a\n"
1507-" href=\"http://docs.python.org/library/re.html\">regular\n"
1508+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1509 " expression filters</a> you specify below. If the message's\n"
1510 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1511 "a\n"
1512@@ -7711,7 +7711,7 @@
1513 msgstr ""
1514 "O filtro de tópico categoriza cada mensagem de entrada de \n"
1515 " acordo com \n"
1516-" href=\"http://docs.python.org/library/re.html\">filtros\n"
1517+" href=\"https://docs.python.org/2/library/re.html\">filtros\n"
1518 " de expressões regulares</a> que poderá especificar abaixo. \n"
1519 " caso o cabeçalho <code>Subject:</code> ou <code>Keywords:</code> "
1520 "da \n"
1521@@ -10368,7 +10368,7 @@
1522 "Complete\n"
1523 "specifications are at:\n"
1524 "\n"
1525-"http://docs.python.org/library/re.html\n"
1526+"https://docs.python.org/2/library/re.html\n"
1527 "\n"
1528 "Address matches are case-insensitive, but case-preserved addresses are\n"
1529 "displayed.\n"
1530@@ -10408,7 +10408,7 @@
1531 "A sintaxe de expressões regulares é no estilo Perl5, usando o módulo\n"
1532 "Python. As especificações completas podem ser encontradas em:\n"
1533 "\n"
1534-"http://docs.python.org/library/re.html\n"
1535+"https://docs.python.org/2/library/re.html\n"
1536 "\n"
1537 "Endereços que conferem são case-insensitive, mas endereços case-sensitive\n"
1538 "são mostrados.\n"
1539
1540=== modified file 'messages/pt_BR/LC_MESSAGES/mailman.po'
1541--- messages/pt_BR/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1542+++ messages/pt_BR/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1543@@ -7090,7 +7090,7 @@
1544 "\n"
1545 " <p>In the text boxes below, add one address per line; start the\n"
1546 " line with a ^ character to designate a <a href=\n"
1547-" \"http://docs.python.org/library/re.html\"\n"
1548+" \"https://docs.python.org/2/library/re.html\"\n"
1549 " >Python regular expression</a>. When entering backslashes, do "
1550 "so\n"
1551 " as if you were using Python raw strings (i.e. you generally "
1552@@ -7130,7 +7130,7 @@
1553 "\n"
1554 " <p>Nas caixas de texto abaixo, adicione um endereço por linha;\n"
1555 " inicie a linha com o caracter ^ para designar uma\n"
1556-" <a href=\"http://docs.python.org/library/re.html\">Expressão "
1557+" <a href=\"https://docs.python.org/2/library/re.html\">Expressão "
1558 "regular em Python</a>. Quando acrescentar contra-barras, faça como se \n"
1559 " estivesse usando strings raw do Python (p.e. você geralmente \n"
1560 " utilizaria apenas uma barra invertida).\n"
1561@@ -8044,7 +8044,7 @@
1562 msgid ""
1563 "The topic filter categorizes each incoming email message\n"
1564 " according to <a\n"
1565-" href=\"http://docs.python.org/library/re.html\">regular\n"
1566+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1567 " expression filters</a> you specify below. If the message's\n"
1568 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1569 "a\n"
1570@@ -8068,7 +8068,7 @@
1571 msgstr ""
1572 "O filtro de tópico categoriza cada mensagem de entrada de \n"
1573 " acordo com \n"
1574-" href=\"http://docs.python.org/library/re.html\">filtros\n"
1575+" href=\"https://docs.python.org/2/library/re.html\">filtros\n"
1576 " de expressões regulares</a> que poderá especificar abaixo. \n"
1577 " Caso o cabeçalho <code>Subject:</code> ou <code>Keywords:</code> "
1578 "da \n"
1579@@ -10728,7 +10728,7 @@
1580 "Complete\n"
1581 "specifications are at:\n"
1582 "\n"
1583-"http://docs.python.org/library/re.html\n"
1584+"https://docs.python.org/2/library/re.html\n"
1585 "\n"
1586 "Address matches are case-insensitive, but case-preserved addresses are\n"
1587 "displayed.\n"
1588@@ -10768,7 +10768,7 @@
1589 "A sintaxe de expressões regulares é no estilo Perl5, usando o módulo\n"
1590 "Python. As especificações completas podem ser encontradas em:\n"
1591 "\n"
1592-"http://docs.python.org/library/re.html\n"
1593+"https://docs.python.org/2/library/re.html\n"
1594 "\n"
1595 "Endereços que conferem não são sensíveis a caixa, mas ao exibir os endereços "
1596 "a caixa (alta ou baixa) é preservada\n"
1597
1598=== modified file 'messages/ro/LC_MESSAGES/mailman.po'
1599--- messages/ro/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1600+++ messages/ro/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1601@@ -6704,7 +6704,7 @@
1602 "\n"
1603 " <p>In the text boxes below, add one address per line; start the\n"
1604 " line with a ^ character to designate a <a href=\n"
1605-" \"http://docs.python.org/library/re.html\"\n"
1606+" \"https://docs.python.org/2/library/re.html\"\n"
1607 " >Python regular expression</a>. When entering backslashes, do "
1608 "so\n"
1609 " as if you were using Python raw strings (i.e. you generally "
1610@@ -7454,7 +7454,7 @@
1611 msgid ""
1612 "The topic filter categorizes each incoming email message\n"
1613 " according to <a\n"
1614-" href=\"http://docs.python.org/library/re.html\">regular\n"
1615+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1616 " expression filters</a> you specify below. If the message's\n"
1617 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1618 "a\n"
1619@@ -7477,7 +7477,7 @@
1620 " configuration variable."
1621 msgstr ""
1622 "Filtrul de topici categorizează fiecare e-mail sosit pe baza <a href="
1623-"\"http://docs.python.org/library/re.html\">expresiilor regulate de filtrare</"
1624+"\"https://docs.python.org/2/library/re.html\">expresiilor regulate de filtrare</"
1625 "a> pe care le specificaţi mai jos.\n"
1626 "\n"
1627 "Dacă unul din headerele <code>Subject:</code>sau <code>Keywords:</code>\n"
1628@@ -10024,7 +10024,7 @@
1629 "Complete\n"
1630 "specifications are at:\n"
1631 "\n"
1632-"http://docs.python.org/library/re.html\n"
1633+"https://docs.python.org/2/library/re.html\n"
1634 "\n"
1635 "Address matches are case-insensitive, but case-preserved addresses are\n"
1636 "displayed.\n"
1637@@ -10065,7 +10065,7 @@
1638 "Complete\n"
1639 "specifications are at:\n"
1640 "\n"
1641-"http://docs.python.org/library/re.html\n"
1642+"https://docs.python.org/2/library/re.html\n"
1643 "\n"
1644 "Address matches are case-insensitive, but case-preserved addresses are\n"
1645 "displayed.\n"
1646
1647=== modified file 'messages/ru/LC_MESSAGES/mailman.po'
1648--- messages/ru/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1649+++ messages/ru/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1650@@ -6980,7 +6980,7 @@
1651 "\n"
1652 " <p>In the text boxes below, add one address per line; start the\n"
1653 " line with a ^ character to designate a <a href=\n"
1654-" \"http://docs.python.org/library/re.html\"\n"
1655+" \"https://docs.python.org/2/library/re.html\"\n"
1656 " >Python regular expression</a>. When entering backslashes, do "
1657 "so\n"
1658 " as if you were using Python raw strings (i.e. you generally "
1659@@ -7016,7 +7016,7 @@
1660 "\n"
1661 "<p>В тек�товых пол�х ниже добавл�йте по одному адре�у в �троку, �троки,\n"
1662 "начинающие�� � ^, будут �читать�� <a\n"
1663-"href=\"http://docs.python.org/library/re.html\">регул�рными\n"
1664+"href=\"https://docs.python.org/2/library/re.html\">регул�рными\n"
1665 "выражени�ми �зыка Python</a>. Обратные наклонные черты должны вводить��\n"
1666 "так же, как и в обычных �троках Python (то е�ть, �корее в�его, вам\n"
1667 "понадобит�� пи�ать только один такой �имвол).\n"
1668@@ -7896,7 +7896,7 @@
1669 msgid ""
1670 "The topic filter categorizes each incoming email message\n"
1671 " according to <a\n"
1672-" href=\"http://docs.python.org/library/re.html\">regular\n"
1673+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1674 " expression filters</a> you specify below. If the message's\n"
1675 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1676 "a\n"
1677@@ -7919,7 +7919,7 @@
1678 " configuration variable."
1679 msgstr ""
1680 "Фильтр разделов �ортирует в�е вход�щие �ообщени� в �оответ�твии �\n"
1681-"<a href=\"http://docs.python.org/library/re.html\">\n"
1682+"<a href=\"https://docs.python.org/2/library/re.html\">\n"
1683 "регул�рными выражени�ми</a>, указываемыми ниже. Е�ли в заголовках\n"
1684 "<code>Subject:</code> или <code>Keywords:</code> �ообщени�\n"
1685 "�одержит�� под�трока, �оответ�твующа� фильтру, �ообщение помещает��\n"
1686@@ -10585,7 +10585,7 @@
1687 "Complete\n"
1688 "specifications are at:\n"
1689 "\n"
1690-"http://docs.python.org/library/re.html\n"
1691+"https://docs.python.org/2/library/re.html\n"
1692 "\n"
1693 "Address matches are case-insensitive, but case-preserved addresses are\n"
1694 "displayed.\n"
1695@@ -10625,7 +10625,7 @@
1696 "выражений в Perl5, и�пользует�� модуль re. Полное опи�ание �интак�и�а\n"
1697 "находит�� по адре�у:\n"
1698 "\n"
1699-"http://docs.python.org/library/re.html\n"
1700+"https://docs.python.org/2/library/re.html\n"
1701 "\n"
1702 "При �равнении адре�ов реги�тр не учитывает��, но е�ли в найденном адре�е\n"
1703 "е�ть заглавные буквы, они печатают�� вме�то �трочных.\n"
1704
1705=== modified file 'messages/sk/LC_MESSAGES/mailman.po'
1706--- messages/sk/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1707+++ messages/sk/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1708@@ -6802,7 +6802,7 @@
1709 "\n"
1710 " <p>In the text boxes below, add one address per line; start the\n"
1711 " line with a ^ character to designate a <a href=\n"
1712-" \"http://docs.python.org/library/re.html\"\n"
1713+" \"https://docs.python.org/2/library/re.html\"\n"
1714 " >Python regular expression</a>. When entering backslashes, do "
1715 "so\n"
1716 " as if you were using Python raw strings (i.e. you generally "
1717@@ -6836,7 +6836,7 @@
1718 "\n"
1719 " <p>V nižšie uvedených textových poliach zadajte jednu adresu\n"
1720 " na riadok. Ak chcete použiť <a href=\n"
1721-" \"http://docs.python.org/library/re.html\"\n"
1722+" \"https://docs.python.org/2/library/re.html\"\n"
1723 " >regulárny výraz Python</a>, za�nite riadok znakom ^. Ak\n"
1724 " vkladáte backslash, urobte ako pri reťazcoch Python (spravidla\n"
1725 " použijete jeden backslash).\n"
1726@@ -7597,7 +7597,7 @@
1727 msgid ""
1728 "The topic filter categorizes each incoming email message\n"
1729 " according to <a\n"
1730-" href=\"http://docs.python.org/library/re.html\">regular\n"
1731+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1732 " expression filters</a> you specify below. If the message's\n"
1733 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1734 "a\n"
1735@@ -7620,7 +7620,7 @@
1736 " configuration variable."
1737 msgstr ""
1738 "Tematický filter zatriedi každú prijatú správu s použitím <a\n"
1739-" href=\"http://docs.python.org/library/re.html\">regulárnych\n"
1740+" href=\"https://docs.python.org/2/library/re.html\">regulárnych\n"
1741 " výrazov</a>, ktoré uvediete nižšie. Ak správa obsahuje v "
1742 "hlavi�ke \n"
1743 " <code>Subject:</code> alebo <code>Keywords:</code> výraz "
1744@@ -9945,7 +9945,7 @@
1745 "Complete\n"
1746 "specifications are at:\n"
1747 "\n"
1748-"http://docs.python.org/library/re.html\n"
1749+"https://docs.python.org/2/library/re.html\n"
1750 "\n"
1751 "Address matches are case-insensitive, but case-preserved addresses are\n"
1752 "displayed.\n"
1753
1754=== modified file 'messages/sl/LC_MESSAGES/mailman.po'
1755--- messages/sl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1756+++ messages/sl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1757@@ -7550,7 +7550,7 @@
1758 "\n"
1759 " <p>In the text boxes below, add one address per line; start the\n"
1760 " line with a ^ character to designate a <a href=\n"
1761-" \"http://docs.python.org/library/re.html\"\n"
1762+" \"https://docs.python.org/2/library/re.html\"\n"
1763 " >Python regular expression</a>. When entering backslashes, do "
1764 "so\n"
1765 " as if you were using Python raw strings (i.e. you generally "
1766@@ -7588,7 +7588,7 @@
1767 "\n"
1768 " <p>V spodnja polja vnesite naslove, vsakega v svojo vrstico,\n"
1769 " ki jo zaènete z znakom ^, ki bo predstavljal <a href=\n"
1770-" \"http://docs.python.org/library/re.html\"\n"
1771+" \"https://docs.python.org/2/library/re.html\"\n"
1772 " >Python regularni izraz</a>. Pri vna¹anju po¹evnic nazaj, jih\n"
1773 " uporabljajte kot grobe Python nize (ponavadi se uporablja\n"
1774 " enojna po¹evnico nazaj).\n"
1775@@ -8368,7 +8368,7 @@
1776 msgid ""
1777 "The topic filter categorizes each incoming email message\n"
1778 " according to <a\n"
1779-" href=\"http://docs.python.org/library/re.html\">regular\n"
1780+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1781 " expression filters</a> you specify below. If the message's\n"
1782 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1783 "a\n"
1784@@ -8392,7 +8392,7 @@
1785 msgstr ""
1786 "Filter za teme razvrsti vsako prejeto sporoèilo glede na\n"
1787 " <a\n"
1788-" href=\"http://docs.python.org/library/re.html\">filtre\n"
1789+" href=\"https://docs.python.org/2/library/re.html\">filtre\n"
1790 " regularnih izrazov</a>, ki jih izberete spodaj. Èe polje\n"
1791 " <code>Zadeva:</code> ali <code>Kljuène besede:</code> vsebuje\n"
1792 " regularni izraz iz tematskega filtra, bo sporoèilo samodejno\n"
1793@@ -11189,7 +11189,7 @@
1794 "Complete\n"
1795 "specifications are at:\n"
1796 "\n"
1797-"http://docs.python.org/library/re.html\n"
1798+"https://docs.python.org/2/library/re.html\n"
1799 "\n"
1800 "Address matches are case-insensitive, but case-preserved addresses are\n"
1801 "displayed.\n"
1802@@ -11229,7 +11229,7 @@
1803 "modul.\n"
1804 "Celotne specifikacije najdete na:\n"
1805 "\n"
1806-"http://docs.python.org/library/re.html\n"
1807+"https://docs.python.org/2/library/re.html\n"
1808 "\n"
1809 "Iskanje naslovov razlikuje velike in male èrke, prikazani pa so naslovi v\n"
1810 "originalni obliki.\n"
1811@@ -15678,12 +15678,12 @@
1812 # Mailman/Cgi/admin.py:460
1813 #~ msgid ""
1814 #~ "<li>Find members by\n"
1815-#~ " <a href=\"http://docs.python.org/library/re.html#regular-"
1816+#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
1817 #~ "expression-syntax\"\n"
1818 #~ " >Python regular expression</a> (<em>regexp</em>)<br>"
1819 #~ msgstr ""
1820 #~ "<li>Najdi èlane s pomoèjo\n"
1821-#~ " <a href=\"http://docs.python.org/library/re.html#regular-"
1822+#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
1823 #~ "expression-syntax\"\n"
1824 #~ " >regularnih izrazov Python</a> (<em>regexp</em>)<br>"
1825
1826
1827=== modified file 'messages/sr/LC_MESSAGES/mailman.po'
1828--- messages/sr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1829+++ messages/sr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1830@@ -5689,7 +5689,7 @@
1831 "\n"
1832 " <p>In the text boxes below, add one address per line; start the\n"
1833 " line with a ^ character to designate a <a href=\n"
1834-" \"http://docs.python.org/library/re.html\"\n"
1835+" \"https://docs.python.org/2/library/re.html\"\n"
1836 " >Python regular expression</a>. When entering backslashes, do "
1837 "so\n"
1838 " as if you were using Python raw strings (i.e. you generally "
1839@@ -6271,7 +6271,7 @@
1840 msgid ""
1841 "The topic filter categorizes each incoming email message\n"
1842 " according to <a\n"
1843-" href=\"http://docs.python.org/library/re.html\">regular\n"
1844+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1845 " expression filters</a> you specify below. If the message's\n"
1846 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1847 "a\n"
1848@@ -8282,7 +8282,7 @@
1849 "Complete\n"
1850 "specifications are at:\n"
1851 "\n"
1852-"http://docs.python.org/library/re.html\n"
1853+"https://docs.python.org/2/library/re.html\n"
1854 "\n"
1855 "Address matches are case-insensitive, but case-preserved addresses are\n"
1856 "displayed.\n"
1857
1858=== modified file 'messages/sv/LC_MESSAGES/mailman.po'
1859--- messages/sv/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1860+++ messages/sv/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1861@@ -8693,7 +8693,7 @@
1862 "\n"
1863 " <p>In the text boxes below, add one address per line; start the\n"
1864 " line with a ^ character to designate a <a href=\n"
1865-" \"http://docs.python.org/library/re.html\"\n"
1866+" \"https://docs.python.org/2/library/re.html\"\n"
1867 " >Python regular expression</a>. When entering backslashes, do "
1868 "so\n"
1869 " as if you were using Python raw strings (i.e. you generally "
1870@@ -8728,7 +8728,7 @@
1871 "\">de allmänna reglerna för icke-medlemmar</a> säger.\n"
1872 "\n"
1873 "<p>I textrutorna nedan lägger du in en e-postadress per rad.\n"
1874-"Du kan också lägga in <a href=\"http://docs.python.org/library/re.html"
1875+"Du kan också lägga in <a href=\"https://docs.python.org/2/library/re.html"
1876 "\">Python regexp-uttryck</a>.\n"
1877 "Börja i så fall raden med tecknet ^ för att markera att det är ett sådant "
1878 "uttryck.\n"
1879@@ -9571,7 +9571,7 @@
1880 msgid ""
1881 "The topic filter categorizes each incoming email message\n"
1882 " according to <a\n"
1883-" href=\"http://docs.python.org/library/re.html\">regular\n"
1884+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1885 " expression filters</a> you specify below. If the message's\n"
1886 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1887 "a\n"
1888@@ -9594,7 +9594,7 @@
1889 " configuration variable."
1890 msgstr ""
1891 "Ämnesfiltret kategoriserar varje e-postbrev som kommer till listan,\n"
1892-"efter <a href=\"http://docs.python.org/library/re.html\">regexp-uttrycken</"
1893+"efter <a href=\"https://docs.python.org/2/library/re.html\">regexp-uttrycken</"
1894 "a>\n"
1895 "du skriver in nedan. Om fälten <code>Subject:</code> eller <code>Keywords:</"
1896 "code>\n"
1897@@ -12813,7 +12813,7 @@
1898 "Complete\n"
1899 "specifications are at:\n"
1900 "\n"
1901-"http://docs.python.org/library/re.html\n"
1902+"https://docs.python.org/2/library/re.html\n"
1903 "\n"
1904 "Address matches are case-insensitive, but case-preserved addresses are\n"
1905 "displayed.\n"
1906@@ -12853,7 +12853,7 @@
1907 "Syntax för regexp-uttryck är som Perl5, när Pythons \"re\" modul används.\n"
1908 "Komplett specifikation finns på:\n"
1909 "\n"
1910-"http://docs.python.org/library/re.html\n"
1911+"https://docs.python.org/2/library/re.html\n"
1912 "\n"
1913 "Adresser jämförs utan skillnad på små och stora bokstäver, men visas med\n"
1914 "stora/små bokstäver som de stavas.\n"
1915@@ -16310,12 +16310,12 @@
1916
1917 #~ msgid ""
1918 #~ "<li>Find members by\n"
1919-#~ " <a href=\"http://docs.python.org/library/re.html#regular-"
1920+#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
1921 #~ "expression-syntax\"\n"
1922 #~ " >Python regular expression</a> (<em>regexp</em>)<br>"
1923 #~ msgstr ""
1924-#~ "<li>Hitta medlemmar genom att söka med en <a href=\"http://docs.python."
1925-#~ "org/library/re.html#regular-expression-syntax\">Python regular "
1926+#~ "<li>Hitta medlemmar genom att söka med en <a href=\"https://docs.python."
1927+#~ "org/2/library/re.html#regular-expression-syntax\">Python regular "
1928 #~ "expression</a> (<em>regexp</em>)<br>"
1929
1930 #~ msgid "Send welcome message to this batch?"
1931
1932=== modified file 'messages/tr/LC_MESSAGES/mailman.po'
1933--- messages/tr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1934+++ messages/tr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1935@@ -6920,7 +6920,7 @@
1936 "\n"
1937 " <p>In the text boxes below, add one address per line; start the\n"
1938 " line with a ^ character to designate a <a href=\n"
1939-" \"http://docs.python.org/library/re.html\"\n"
1940+" \"https://docs.python.org/2/library/re.html\"\n"
1941 " >Python regular expression</a>. When entering backslashes, do "
1942 "so\n"
1943 " as if you were using Python raw strings (i.e. you generally "
1944@@ -6964,7 +6964,7 @@
1945 "þekilde\n"
1946 " adres ekleyebilirsiniz; satýra bir ^ karakteri ile baþlayarak "
1947 "bir\n"
1948-" <a href=\"http://docs.python.org/library/re.html\">Python\n"
1949+" <a href=\"https://docs.python.org/2/library/re.html\">Python\n"
1950 " regular expression</a> belirtebilirsiniz. Ters geri çizgi "
1951 "girerken\n"
1952 " Python ham dizgisi gibi girin (yani genel olarak tek bir ters "
1953@@ -7763,7 +7763,7 @@
1954 msgid ""
1955 "The topic filter categorizes each incoming email message\n"
1956 " according to <a\n"
1957-" href=\"http://docs.python.org/library/re.html\">regular\n"
1958+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1959 " expression filters</a> you specify below. If the message's\n"
1960 " <code>Subject:</code> or <code>Keywords:</code> header contains "
1961 "a\n"
1962@@ -7786,7 +7786,7 @@
1963 " configuration variable."
1964 msgstr ""
1965 "Konu filtresi gelen her mesajý aþaðýda belirleyeceðiniz <a\n"
1966-" href=\"http://docs.python.org/library/re.html\">regular\n"
1967+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
1968 " expression filtrelerine</a> göre kategorilere ayýrýr. Eðer "
1969 "mesajýn\n"
1970 " <code>Konu:</code> veya <code>Keywords:</code> baþlýðý bir "
1971@@ -10049,7 +10049,7 @@
1972 "Complete\n"
1973 "specifications are at:\n"
1974 "\n"
1975-"http://docs.python.org/library/re.html\n"
1976+"https://docs.python.org/2/library/re.html\n"
1977 "\n"
1978 "Address matches are case-insensitive, but case-preserved addresses are\n"
1979 "displayed.\n"
1980
1981=== modified file 'messages/uk/LC_MESSAGES/mailman.po'
1982--- messages/uk/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
1983+++ messages/uk/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
1984@@ -6803,7 +6803,7 @@
1985 "\n"
1986 " <p>In the text boxes below, add one address per line; start the\n"
1987 " line with a ^ character to designate a <a href=\n"
1988-" \"http://docs.python.org/library/re.html\"\n"
1989+" \"https://docs.python.org/2/library/re.html\"\n"
1990 " >Python regular expression</a>. When entering backslashes, do "
1991 "so\n"
1992 " as if you were using Python raw strings (i.e. you generally "
1993@@ -6838,7 +6838,7 @@
1994 "\n"
1995 " <p>�ижче у тек�тових пол�х, додайте, по одній в р�дку, адре�и.\n"
1996 " Якщо р�док починаєть�� з �имволу ^ - це означає <a href=\n"
1997-" \"http://docs.python.org/library/re.html\"\n"
1998+" \"https://docs.python.org/2/library/re.html\"\n"
1999 " >регул�рний вираз мови Python</a>. Якщо ви вводите зворотній\n"
2000 " �леш, робіть це так, �к у �имвольних р�дках Python (тобто\n"
2001 " про�то викори�товуйте один �имвол зворотного �лешу).\n"
2002@@ -7598,7 +7598,7 @@
2003 msgid ""
2004 "The topic filter categorizes each incoming email message\n"
2005 " according to <a\n"
2006-" href=\"http://docs.python.org/library/re.html\">regular\n"
2007+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
2008 " expression filters</a> you specify below. If the message's\n"
2009 " <code>Subject:</code> or <code>Keywords:</code> header contains "
2010 "a\n"
2011@@ -7621,7 +7621,7 @@
2012 " configuration variable."
2013 msgstr ""
2014 "Фільтр тем виділ�є категорії повідомлень відповідно до наведених нижче\n"
2015-" <a href=\"http://docs.python.org/library/re.html\">фільтрів\n"
2016+" <a href=\"https://docs.python.org/2/library/re.html\">фільтрів\n"
2017 " регул�рних виразів</a>. Якщо заголовки повідомленн� \n"
2018 " <code>Subject:</code> чи <code>Keywords:</code> відповідають\n"
2019 " фільтру тем, повідомленн� логічно розміщують�� у\n"
2020@@ -10219,7 +10219,7 @@
2021 "Complete\n"
2022 "specifications are at:\n"
2023 "\n"
2024-"http://docs.python.org/library/re.html\n"
2025+"https://docs.python.org/2/library/re.html\n"
2026 "\n"
2027 "Address matches are case-insensitive, but case-preserved addresses are\n"
2028 "displayed.\n"
2029@@ -10258,7 +10258,7 @@
2030 "Синтак�и� регул�рних виразів �хожий на Perl5, викори�товуєть�� модуль re\n"
2031 "мови Python. Повна �пецифікаці� на:\n"
2032 "\n"
2033-"http://docs.python.org/library/re.html\n"
2034+"https://docs.python.org/2/library/re.html\n"
2035 "\n"
2036 "Пошук ведеть�� без урахуванн� регі�тру літер, але адре�и вивод�ть�� із\n"
2037 "збереженн�м регі�тру.\n"
2038
2039=== modified file 'messages/vi/LC_MESSAGES/mailman.po'
2040--- messages/vi/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
2041+++ messages/vi/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
2042@@ -6840,7 +6840,7 @@
2043 "\n"
2044 " <p>In the text boxes below, add one address per line; start the\n"
2045 " line with a ^ character to designate a <a href=\n"
2046-" \"http://docs.python.org/library/re.html\"\n"
2047+" \"https://docs.python.org/2/library/re.html\"\n"
2048 " >Python regular expression</a>. When entering backslashes, do "
2049 "so\n"
2050 " as if you were using Python raw strings (i.e. you generally "
2051@@ -6874,7 +6874,7 @@
2052 "\n"
2053 " <p>Trong những trư�ng bên dưới, hãy thêm\n"
2054 "một địa chỉ thư trên mỗi dòng; bắt đầu dòng với dấu mũ ^\n"
2055-"để ngụ ý cần thiết khớp với <a href=\"http://docs.python.org/library/re.html"
2056+"để ngụ ý cần thiết khớp với <a href=\"https://docs.python.org/2/library/re.html"
2057 "\">biểu thức chính quy Python</a>.\n"
2058 "Khi gõ sổ chéo ngược, hãy dùng chỉ một sổ chéo ngược đơn,\n"
2059 "như là dùng chuỗi thô Python.\n"
2060@@ -7645,7 +7645,7 @@
2061 msgid ""
2062 "The topic filter categorizes each incoming email message\n"
2063 " according to <a\n"
2064-" href=\"http://docs.python.org/library/re.html\">regular\n"
2065+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
2066 " expression filters</a> you specify below. If the message's\n"
2067 " <code>Subject:</code> or <code>Keywords:</code> header contains "
2068 "a\n"
2069@@ -7668,7 +7668,7 @@
2070 " configuration variable."
2071 msgstr ""
2072 "Bộ l�c chủ đ� phân loại mỗi thư mới đến tùy theo những\n"
2073-"<a href=\"http://docs.python.org/library/re.html\">bộ l�c biểu thức chính "
2074+"<a href=\"https://docs.python.org/2/library/re.html\">bộ l�c biểu thức chính "
2075 "quy</a> bạn ghi rõ bên dưới.\n"
2076 "Nếu dòng đầu <code>Subject:</code> (Chủ đ�) hoặc <code>Keywords:</code>\n"
2077 "(Từ khoá) chứa đi�u khớp bộ l�c chủ đ� nào, thư được l�c hợp lý vào một\n"
2078@@ -10291,7 +10291,7 @@
2079 "Complete\n"
2080 "specifications are at:\n"
2081 "\n"
2082-"http://docs.python.org/library/re.html\n"
2083+"https://docs.python.org/2/library/re.html\n"
2084 "\n"
2085 "Address matches are case-insensitive, but case-preserved addresses are\n"
2086 "displayed.\n"
2087@@ -10332,7 +10332,7 @@
2088 "Python.\n"
2089 "Có đặc tả hoàn toàn tại :\n"
2090 "\n"
2091-"http://docs.python.org/library/re.html\n"
2092+"https://docs.python.org/2/library/re.html\n"
2093 "\n"
2094 "Việc khớp địa chỉ không phân biệt chữ hoa/thư�ng, còn địa chỉ có\n"
2095 "chữ hoa/thư�ng đã bảo tồn có phải được hiển thị.\n"
2096
2097=== modified file 'messages/zh_CN/LC_MESSAGES/mailman.po'
2098--- messages/zh_CN/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
2099+++ messages/zh_CN/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
2100@@ -6500,7 +6500,7 @@
2101 "\n"
2102 " <p>In the text boxes below, add one address per line; start the\n"
2103 " line with a ^ character to designate a <a href=\n"
2104-" \"http://docs.python.org/library/re.html\"\n"
2105+" \"https://docs.python.org/2/library/re.html\"\n"
2106 " >Python regular expression</a>. When entering backslashes, do "
2107 "so\n"
2108 " as if you were using Python raw strings (i.e. you generally "
2109@@ -6535,7 +6535,7 @@
2110 "\n"
2111 " <p>下�的文本框中,�行�能添加一个地�。行首的字符 ^ 说明��的"
2112 "是\n"
2113-" 一个<a href=\"http://docs.python.org/library/re.html\"\n"
2114+" 一个<a href=\"https://docs.python.org/2/library/re.html\"\n"
2115 " >Python正则表达�</a>。�斜线请按照Python原始字符串的形�输入(也"
2116 "就是\n"
2117 " 说您�需�输入一个�斜线就�以了)。\n"
2118@@ -7256,7 +7256,7 @@
2119 msgid ""
2120 "The topic filter categorizes each incoming email message\n"
2121 " according to <a\n"
2122-" href=\"http://docs.python.org/library/re.html\">regular\n"
2123+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
2124 " expression filters</a> you specify below. If the message's\n"
2125 " <code>Subject:</code> or <code>Keywords:</code> header contains "
2126 "a\n"
2127@@ -7279,7 +7279,7 @@
2128 " configuration variable."
2129 msgstr ""
2130 "主题过滤器根�您在下�指定的<a\n"
2131-" href=\"http://docs.python.org/library/re.html\">\n"
2132+" href=\"https://docs.python.org/2/library/re.html\">\n"
2133 " 正则表达�</a>�对收到的邮件进行分类。如果�邮件的<code>Subject:"
2134 "</code>\n"
2135 " 头或<code>Keywords:</code>头匹�一个主题过滤器,那么此邮件将在逻"
2136@@ -9785,7 +9785,7 @@
2137 "Complete\n"
2138 "specifications are at:\n"
2139 "\n"
2140-"http://docs.python.org/library/re.html\n"
2141+"https://docs.python.org/2/library/re.html\n"
2142 "\n"
2143 "Address matches are case-insensitive, but case-preserved addresses are\n"
2144 "displayed.\n"
2145@@ -9822,7 +9822,7 @@
2146 "\n"
2147 "正则表达�语法类似于Perl5,使用了Python的re模�。完整的定义��:\n"
2148 "\n"
2149-"http://docs.python.org/library/re.html\n"
2150+"https://docs.python.org/2/library/re.html\n"
2151 "\n"
2152 "地�匹�是大�写无关的,但是显示的地�将�留原有形�。\n"
2153 "\n"
2154
2155=== modified file 'messages/zh_TW/LC_MESSAGES/mailman.po'
2156--- messages/zh_TW/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
2157+++ messages/zh_TW/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
2158@@ -6079,7 +6079,7 @@
2159 "\n"
2160 " <p>In the text boxes below, add one address per line; start the\n"
2161 " line with a ^ character to designate a <a href=\n"
2162-" \"http://docs.python.org/library/re.html\"\n"
2163+" \"https://docs.python.org/2/library/re.html\"\n"
2164 " >Python regular expression</a>. When entering backslashes, do "
2165 "so\n"
2166 " as if you were using Python raw strings (i.e. you generally "
2167@@ -6104,7 +6104,7 @@
2168 "a>的�濾。\n"
2169 "\n"
2170 " <p>在下�的文字框中�行填入一個地�,在行首寫 ^ 字元代表是\n"
2171-"<a href=\"http://docs.python.org/library/re.html\">Python 正�表示�</a>。\n"
2172+"<a href=\"https://docs.python.org/2/library/re.html\">Python 正�表示�</a>。\n"
2173 "�填入�斜線�譯註:╲】的話,請直接打�斜線��,�用多加一個�斜線逸出。\n"
2174 "\n"
2175 " <p>請注�,會先��正�表示�的比�。"
2176@@ -6764,7 +6764,7 @@
2177 msgid ""
2178 "The topic filter categorizes each incoming email message\n"
2179 " according to <a\n"
2180-" href=\"http://docs.python.org/library/re.html\">regular\n"
2181+" href=\"https://docs.python.org/2/library/re.html\">regular\n"
2182 " expression filters</a> you specify below. If the message's\n"
2183 " <code>Subject:</code> or <code>Keywords:</code> header contains "
2184 "a\n"
2185@@ -8901,7 +8901,7 @@
2186 "Complete\n"
2187 "specifications are at:\n"
2188 "\n"
2189-"http://docs.python.org/library/re.html\n"
2190+"https://docs.python.org/2/library/re.html\n"
2191 "\n"
2192 "Address matches are case-insensitive, but case-preserved addresses are\n"
2193 "displayed.\n"
2194
2195=== modified file 'misc/sitelist.cfg'
2196--- misc/sitelist.cfg 2009-01-11 16:06:13 +0000
2197+++ misc/sitelist.cfg 2018-07-15 05:58:13 +0000
2198@@ -248,7 +248,7 @@
2199 #
2200 # <p>In the text boxes below, add one address per line; start the line
2201 # with a ^ character to designate a <a href=
2202-# "http://docs.python.org/library/re.html" >Python regular
2203+# "https://docs.python.org/2/library/re.html" >Python regular
2204 # expression</a>. When entering backslashes, do so as if you were using
2205 # Python raw strings (i.e. you generally just use a single backslash).
2206 #
2207
2208=== modified file 'templates/ar/headfoot.html'
2209--- templates/ar/headfoot.html 2009-12-14 22:41:45 +0000
2210+++ templates/ar/headfoot.html 2018-07-15 05:58:13 +0000
2211@@ -1,4 +1,4 @@
2212-يمكن لهذا النص أن يتضمن<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">محار� تنسيق بايثون</a>
2213+يمكن لهذا النص أن يتضمن<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">محار� تنسيق بايثون</a>
2214 والتي سيتم حلها مع مواص�ات القائمة. قائمة الاستبدالات المسموحة هي:
2215
2216 <ul>
2217
2218=== modified file 'templates/ast/headfoot.html'
2219--- templates/ast/headfoot.html 2009-12-08 23:25:52 +0000
2220+++ templates/ast/headfoot.html 2018-07-15 05:58:13 +0000
2221@@ -1,5 +1,5 @@
2222 Esti testu puede incluyir
2223-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">cadenes de formatu Python</a> que sustituyir&aacute;nse polos atributos de la llista. La llista de sustituciones permit&iacute;es son:
2224+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">cadenes de formatu Python</a> que sustituyir&aacute;nse polos atributos de la llista. La llista de sustituciones permit&iacute;es son:
2225
2226 <ul>
2227 <li><b>real_name</b> - El nome 'presentable' de la llista. Davezu ye'l nome de la llista cola primer lletra en may&uacute;scula.
2228
2229=== modified file 'templates/ca/headfoot.html'
2230--- templates/ca/headfoot.html 2009-01-11 16:06:13 +0000
2231+++ templates/ca/headfoot.html 2018-07-15 05:58:13 +0000
2232@@ -1,5 +1,5 @@
2233 Aquest text pot incloure
2234-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">cadenes
2235+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">cadenes
2236 de format del Python</a>, les quals es resoldran com atributs de la llista.
2237 La llista de les substitucions permeses &eacute;s la seg&uuml;ent:
2238
2239
2240=== modified file 'templates/cs/headfoot.html'
2241--- templates/cs/headfoot.html 2016-11-14 07:13:01 +0000
2242+++ templates/cs/headfoot.html 2018-07-15 05:58:13 +0000
2243@@ -1,5 +1,5 @@
2244 Tento text mù¾e obsahovat <a
2245-href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">form&aacute;tovac&iacute;
2246+href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">form&aacute;tovac&iacute;
2247 pø&iacute;kazy Pythonu</a> kter&eacute; se nahrazuj&iacute; odpov&iacute;daj&iacute;c&iacute;mi hodnotami, pøi
2248 generov&aacute;n&iacute; str&aacute;nky. Nejdùle¾itìj&scaron;&iacute; promìnn&eacute; jsou:
2249
2250
2251=== modified file 'templates/da/headfoot.html'
2252--- templates/da/headfoot.html 2009-01-11 16:06:13 +0000
2253+++ templates/da/headfoot.html 2018-07-15 05:58:13 +0000
2254@@ -1,6 +1,6 @@
2255 Teksten kan indeholde formateringskoder
2256 som udskiftes med v&aelig;rdier fra listens ops&aelig;tning. For detaljer, se
2257-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Pythons
2258+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Pythons
2259 formateringsregler (engelsk)</a>. Gyldige koder er:
2260
2261 <ul>
2262
2263=== modified file 'templates/de/headfoot.html'
2264--- templates/de/headfoot.html 2015-09-08 12:10:20 +0000
2265+++ templates/de/headfoot.html 2018-07-15 05:58:13 +0000
2266@@ -1,6 +1,6 @@
2267 <!-- updated to en 2.1 -->
2268 Dieser Text kann sogenannte
2269-"<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">
2270+"<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
2271 Python format strings</a>" enthalten, die durch listenspezifische Werte
2272 ersetzt werden.
2273
2274
2275=== modified file 'templates/el/headfoot.html'
2276--- templates/el/headfoot.html 2012-06-20 23:32:30 +0000
2277+++ templates/el/headfoot.html 2018-07-15 05:58:13 +0000
2278@@ -1,6 +1,6 @@
2279
2280 Áõôü ôï êåßìåíï ìðïñåß íá ðåñéÝ÷åé
2281-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">÷áñáêôÞñåò óå
2282+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">÷áñáêôÞñåò óå
2283 Python format</a> ïé ïðïßïé áíáëýïíôáé ìå ôç ÷ñÞóç ìéáò ëßóôáò ôéìþí. Ç ëßóôá ôùí
2284 õðïêáôÜóôáôùí ðïõ åðéôñÝðïíôáé åßíáé:
2285
2286
2287=== modified file 'templates/en/headfoot.html'
2288--- templates/en/headfoot.html 2009-01-11 16:06:13 +0000
2289+++ templates/en/headfoot.html 2018-07-15 05:58:13 +0000
2290@@ -1,5 +1,5 @@
2291 This text can include
2292-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2293+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2294 format strings</a> which are resolved against list attributes. The
2295 list of substitutions allowed are:
2296
2297
2298=== modified file 'templates/es/headfoot.html'
2299--- templates/es/headfoot.html 2016-11-14 07:13:01 +0000
2300+++ templates/es/headfoot.html 2018-07-15 05:58:13 +0000
2301@@ -1,5 +1,5 @@
2302 Este texto puede incluir
2303-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">
2304+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
2305 cadenas de formato Python
2306 </a>
2307 que ser&aacute;n sustituidas por los atributos de la lista. La lista de
2308
2309=== modified file 'templates/et/headfoot.html'
2310--- templates/et/headfoot.html 2016-11-14 07:13:01 +0000
2311+++ templates/et/headfoot.html 2018-07-15 05:58:13 +0000
2312@@ -1,5 +1,5 @@
2313 See tekst v&otilde;ib sisaldada
2314-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Pythoni
2315+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Pythoni
2316 vormingustringe</a>, mis asendatakse selle listi atribuutidega. Lubatud
2317 asendused on j&auml;rgmised:
2318 <ul>
2319
2320=== modified file 'templates/eu/headfoot.html'
2321--- templates/eu/headfoot.html 2013-09-15 04:10:27 +0000
2322+++ templates/eu/headfoot.html 2018-07-15 05:58:13 +0000
2323@@ -1,5 +1,5 @@
2324 Testu honek
2325-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2326+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2327 kateak</a> izan ditzake; zerrendako atributuen bidez ordezkatuko dira.
2328 Onartzen diren ordezkapenak hauexek dira:
2329
2330
2331=== modified file 'templates/fi/headfoot.html'
2332--- templates/fi/headfoot.html 2016-11-14 07:13:01 +0000
2333+++ templates/fi/headfoot.html 2018-07-15 05:58:13 +0000
2334@@ -1,5 +1,5 @@
2335 <br>
2336-Teksti voi sis&auml;lt&auml;&auml; <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations"> muotoiltuja
2337+Teksti voi sis&auml;lt&auml;&auml; <a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations"> muotoiltuja
2338 merkkijonoja. Muotoilussa k&Atilde;&curren;ytett&Atilde;&curren;vi&Atilde;&curren; arvoja ovat:
2339
2340 <ul>
2341
2342=== modified file 'templates/fr/headfoot.html'
2343--- templates/fr/headfoot.html 2009-01-11 16:06:13 +0000
2344+++ templates/fr/headfoot.html 2018-07-15 05:58:13 +0000
2345@@ -1,5 +1,5 @@
2346 Ce texte peut contenir <a
2347-href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">des formats
2348+href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">des formats
2349 de cha&icirc;nes Python </a>qui sont remplac&eacute;es par les attributs
2350 de la liste. La liste des substitutions valides est:
2351 <ul>
2352
2353=== modified file 'templates/gl/headfoot.html'
2354--- templates/gl/headfoot.html 2016-01-10 03:33:25 +0000
2355+++ templates/gl/headfoot.html 2018-07-15 05:58:13 +0000
2356@@ -1,5 +1,5 @@
2357 Este texto pode inclu&iacute;r
2358-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">
2359+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
2360 cadeas de formato Python
2361 </a>
2362 que se substituir&aacute;n polos atributos da rolda. A relaci&oacute;n de
2363
2364=== modified file 'templates/he/headfoot.html'
2365--- templates/he/headfoot.html 2009-01-11 16:06:13 +0000
2366+++ templates/he/headfoot.html 2018-07-15 05:58:13 +0000
2367@@ -1,5 +1,5 @@
2368 טקסט זה יכול לכלול
2369-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">מחרוזות
2370+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">מחרוזות
2371 בפורמ�ט Python</a> �שר מפוענחות מול תכונות הרשימה. רשימת
2372 תתי-המצבי� המותרי�:
2373 <ul>
2374
2375=== modified file 'templates/hr/headfoot.html'
2376--- templates/hr/headfoot.html 2009-01-11 16:06:13 +0000
2377+++ templates/hr/headfoot.html 2018-07-15 05:58:13 +0000
2378@@ -1,5 +1,5 @@
2379 Ovaj tekst mo¾e ukljuèiti
2380-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2381+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2382 format stringova</a> koji su razluèeni prema atributima liste. Lista dozvoljenih
2383 zamjena je:
2384
2385
2386=== modified file 'templates/hu/headfoot.html'
2387--- templates/hu/headfoot.html 2016-11-14 07:13:01 +0000
2388+++ templates/hu/headfoot.html 2018-07-15 05:58:13 +0000
2389@@ -1,4 +1,4 @@
2390-Ez a sz&ouml;veg olyan <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python-t&iacute;pus&uacute; v&aacute;ltoz&oacute;k</a>at mutat be, amelyekkel a lista egyes jellemz&#337;ire lehet hivatkozni.
2391+Ez a sz&ouml;veg olyan <a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python-t&iacute;pus&uacute; v&aacute;ltoz&oacute;k</a>at mutat be, amelyekkel a lista egyes jellemz&#337;ire lehet hivatkozni.
2392 Az al&aacute;bbi v&aacute;ltoz&oacute;k jelent&eacute;se:
2393
2394 <ul>
2395
2396=== modified file 'templates/ia/headfoot.html'
2397--- templates/ia/headfoot.html 2009-01-11 16:06:13 +0000
2398+++ templates/ia/headfoot.html 2018-07-15 05:58:13 +0000
2399@@ -1,5 +1,5 @@
2400 Iste texto pote includer
2401-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">stringas
2402+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">stringas
2403 in formato Python</a> que es completate per un lista de attributos. Le lista
2404 de substitutiones permittite es:
2405
2406
2407=== modified file 'templates/it/headfoot.html'
2408--- templates/it/headfoot.html 2009-01-11 16:06:13 +0000
2409+++ templates/it/headfoot.html 2018-07-15 05:58:13 +0000
2410@@ -1,5 +1,5 @@
2411 Questo testo pu&ograve; includere <a
2412-href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Stringhe
2413+href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Stringhe
2414 di formato Python</a> che saranno sostituite automaticamente dai
2415 valori degli attributi della lista. L'elenco degli attributi permessi
2416 &egrave;:
2417
2418=== modified file 'templates/ja/headfoot.html'
2419--- templates/ja/headfoot.html 2009-01-11 16:06:13 +0000
2420+++ templates/ja/headfoot.html 2018-07-15 05:58:13 +0000
2421@@ -1,5 +1,5 @@
2422 ¤³¤Î¥Æ¥­¥¹¥È¤Ë¤Ï, ¥ê¥¹¥È¤Î°À­¤ÈÃÖ¤­´¹¤¨¤é¤ì¤ë
2423-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">
2424+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
2425 Python¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó</a>¤òÁÞÆþ¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
2426 ¤³¤³¤Ç»È¤¨¤ëÃÖ´¹Ê¸»úÎó¤Ï°Ê²¼¤ÎÄ̤ê¤Ç¤¹¡¥
2427
2428
2429=== modified file 'templates/ko/headfoot.html'
2430--- templates/ko/headfoot.html 2009-01-11 16:06:13 +0000
2431+++ templates/ko/headfoot.html 2018-07-15 05:58:13 +0000
2432@@ -1,6 +1,6 @@
2433 ÀÌ ¹®¼­´Â ¸ÞÀϸµ ¸®½ºÆ®¿¡ ¿¹¾àµÇ¾î Àִ Ư¼ºÀÇ <b>%(attribute)s</b>
2434 Çü½ÄÀ» Æ÷ÇÔÇÏ°í ÀÖ½À´Ï´Ù. ´õ ÀÚ¼¼ÇÑ ¼³¸íÀº
2435-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">PythonÀÇ
2436+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">PythonÀÇ
2437 ¹®ÀÚ¿­ Çü½Ä ±ÔÄ¢</a>À» º¸½Ã±â ¹Ù¶ø´Ï´Ù. ¸î¸î À¯¿ëÇÑ ¼Ó¼ºÀº ¾Æ·¡¿Í °°½À´Ï´Ù.
2438
2439 <ul>
2440
2441=== modified file 'templates/lt/headfoot.html'
2442--- templates/lt/headfoot.html 2016-11-14 07:13:01 +0000
2443+++ templates/lt/headfoot.html 2018-07-15 05:58:13 +0000
2444@@ -1,5 +1,5 @@
2445 Á &scaron;á tekstà gali bûti átrauktos
2446-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2447+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2448 formato eilutës</a> kurios yra apdorojamos pagal poþymius.
2449 Èia pateikiame pakeitimø sàra&scaron;à:
2450
2451
2452=== modified file 'templates/nl/headfoot.html'
2453--- templates/nl/headfoot.html 2009-01-11 16:06:13 +0000
2454+++ templates/nl/headfoot.html 2018-07-15 05:58:13 +0000
2455@@ -1,5 +1,5 @@
2456 De tekst mag de volgende
2457-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations" target="_blank">Python
2458+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations" target="_blank">Python
2459 format strings</a> bevatten, die automatisch herleid worden naar attributen die elders
2460 gedefinieerd zijn voor deze lijst. De mogelijke vervangende strings zijn:
2461
2462
2463=== modified file 'templates/no/headfoot.html'
2464--- templates/no/headfoot.html 2009-01-11 16:06:13 +0000
2465+++ templates/no/headfoot.html 2018-07-15 05:58:13 +0000
2466@@ -1,6 +1,6 @@
2467 Teksten kan inneholde formateringskoder
2468 som byttes ut med verdier fra listens oppsett. For detaljer, se
2469-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Pythons
2470+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Pythons
2471 formateringsregler (engelsk)</a>. Gyldige koder er:
2472
2473 <ul>
2474
2475=== modified file 'templates/pt/headfoot.html'
2476--- templates/pt/headfoot.html 2016-11-14 07:13:01 +0000
2477+++ templates/pt/headfoot.html 2018-07-15 05:58:13 +0000
2478@@ -1,5 +1,5 @@
2479 Este texto pode incluir
2480-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">strings
2481+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">strings
2482 de formata&ccedil;&atilde;o em Python</a> as quais s&atilde;o resolvidas em rela&ccedil;&atilde;o &agrave; lista de
2483 atributos ??????? atributos da lista.
2484 As substitui&ccedil;&otilde;es permitidas s&atilde;o:
2485
2486=== modified file 'templates/pt_BR/headfoot.html'
2487--- templates/pt_BR/headfoot.html 2009-01-11 16:06:13 +0000
2488+++ templates/pt_BR/headfoot.html 2018-07-15 05:58:13 +0000
2489@@ -1,5 +1,5 @@
2490 Este texto pode incluir
2491-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">strings no formato
2492+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">strings no formato
2493 do Python</a> que s&atilde;o resolvidos contra atributos da lista. a lista
2494 de substitui&ccedil;&otilde;es permitidas s&atilde;o:
2495
2496
2497=== modified file 'templates/ro/headfoot.html'
2498--- templates/ro/headfoot.html 2016-11-14 07:13:01 +0000
2499+++ templates/ro/headfoot.html 2018-07-15 05:58:13 +0000
2500@@ -1,5 +1,5 @@
2501 Acest text poate include
2502-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">ÅŸiruri
2503+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">ÅŸiruri
2504 de caractere formatate Python</a> care sunt rezolvate vis-a-ais de atributele
2505 listei. Lista substituţiilor permise este:
2506
2507
2508=== modified file 'templates/ru/headfoot.html'
2509--- templates/ru/headfoot.html 2015-02-05 21:15:37 +0000
2510+++ templates/ru/headfoot.html 2018-07-15 05:58:13 +0000
2511@@ -1,5 +1,5 @@
2512 Этот тек�т может включать <a
2513-href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">�троки
2514+href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">�троки
2515 под�тановки Python (тек�т по-англий�ки)</a>, которые замен�ют�� �ледующими атрибутами
2516 �пи�ка ра��ылки:
2517
2518
2519=== modified file 'templates/sk/headfoot.html'
2520--- templates/sk/headfoot.html 2016-11-14 07:13:01 +0000
2521+++ templates/sk/headfoot.html 2018-07-15 05:58:13 +0000
2522@@ -1,5 +1,5 @@
2523 Tento text m&ocirc;že obsahovať <a
2524-href="http://docs.python.org/library/stdtypes.html#string-formatting-operations"
2525+href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations"
2526 ">form&aacute;tovacie
2527 pr&iacute;kazy jazyka Python</a>, ktor&eacute; sa nahradia pr&iacute;slu&scaron;n&yacute;mi
2528 hodnotami pri vytv&aacute;ran&iacute; str&aacute;nky. Nejd&ocirc;ležitej&scaron;ie premenn&eacute; s&uacute;:
2529
2530=== modified file 'templates/sl/headfoot.html'
2531--- templates/sl/headfoot.html 2016-11-14 07:13:01 +0000
2532+++ templates/sl/headfoot.html 2018-07-15 05:58:13 +0000
2533@@ -1,5 +1,5 @@
2534 To besedilo lahko vkljuèuje
2535-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2536+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2537 nize</a>, ki jih uporabljamo namesto atributov seznama. Seznam
2538 mo¾nih nadomestil:
2539
2540
2541=== modified file 'templates/sr/headfoot.html'
2542--- templates/sr/headfoot.html 2013-09-15 04:10:27 +0000
2543+++ templates/sr/headfoot.html 2018-07-15 05:58:13 +0000
2544@@ -1,4 +1,4 @@
2545-Овај тек�т може да �адржи <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python-ово
2546+Овај тек�т може да �адржи <a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python-ово
2547 форматирање</a> које �е утврђује на о�нову атрибута ли�та. Дозвољене замјене ли�те
2548 �у:
2549 <ul>
2550
2551=== modified file 'templates/sv/headfoot.html'
2552--- templates/sv/headfoot.html 2009-01-11 16:06:13 +0000
2553+++ templates/sv/headfoot.html 2018-07-15 05:58:13 +0000
2554@@ -1,4 +1,4 @@
2555-Den h&auml;r texten kan inneh&aring;lla formateringskoder som byts ut mot v&auml;rden fr&aring;n listans upps&auml;ttning. F&ouml;r detaljer, se <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Pythons formateringsregler (engelska)</a>. Giltiga koder &auml;r:
2556+Den h&auml;r texten kan inneh&aring;lla formateringskoder som byts ut mot v&auml;rden fr&aring;n listans upps&auml;ttning. F&ouml;r detaljer, se <a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Pythons formateringsregler (engelska)</a>. Giltiga koder &auml;r:
2557 <ul>
2558 <li><b>real_name</b> - Listans formaterade namn, vanligtvis listnamnet med stor initial eller stora bokst&auml;ver rakt igenom.
2559 <li><b>list_name</b> - Listens namn, s&aring;som det anv&auml;nds i URL:er, d&auml;r det har betydelse om namnet stavas med stora eller sm&aring; bokst&auml;ver.
2560
2561=== modified file 'templates/tr/headfoot.html'
2562--- templates/tr/headfoot.html 2016-11-14 07:13:01 +0000
2563+++ templates/tr/headfoot.html 2018-07-15 05:58:13 +0000
2564@@ -1,5 +1,5 @@
2565 Bu yazý, liste &ouml;zniteliklerine karþý &ccedil;&ouml;z&uuml;lecek
2566-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2567+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2568 bi&ccedil;im dizgileri</a> i&ccedil;erebilir. Ýzin verilen yerine koymalarýn listesi
2569 þunlardýr:
2570
2571
2572=== modified file 'templates/uk/headfoot.html'
2573--- templates/uk/headfoot.html 2009-01-11 16:06:13 +0000
2574+++ templates/uk/headfoot.html 2018-07-15 05:58:13 +0000
2575@@ -1,5 +1,5 @@
2576 Цей тек�т може включати
2577-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">
2578+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
2579 форматовані р�дки</a>, �кі пов'�зані з ознаками �пи�ку. Перелік
2580 дозволених ознак:
2581
2582
2583=== modified file 'templates/vi/headfoot.html'
2584--- templates/vi/headfoot.html 2009-01-11 16:06:13 +0000
2585+++ templates/vi/headfoot.html 2018-07-15 05:58:13 +0000
2586@@ -1,5 +1,5 @@
2587 �oạn này có thể gồm
2588-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">chuỗi dạng thức Python</a> mà được khớp với thuộc tính hộp thư chung. Danh sách các đi�u thay thế có thể là:
2589+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">chuỗi dạng thức Python</a> mà được khớp với thuộc tính hộp thư chung. Danh sách các đi�u thay thế có thể là:
2590
2591 <ul>
2592 <li><b>real_name</b> &mdash; ten « xinh » của hộp thư chung đó, thư�ng là tên hộp thư với chữ hoa đầu từ.
2593
2594=== modified file 'templates/zh_CN/headfoot.html'
2595--- templates/zh_CN/headfoot.html 2009-01-11 16:06:13 +0000
2596+++ templates/zh_CN/headfoot.html 2018-07-15 05:58:13 +0000
2597@@ -1,5 +1,5 @@
2598 此文本�以包括
2599-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2600+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2601 格�字符串</a>,它们将根�列表属性�被解释。�用的替�有:
2602 <ul>
2603 <li><b>real_name</b> - 列表的确切�字; 通常列表�字�大写。
2604
2605=== modified file 'templates/zh_TW/headfoot.html'
2606--- templates/zh_TW/headfoot.html 2009-01-11 16:06:13 +0000
2607+++ templates/zh_TW/headfoot.html 2018-07-15 05:58:13 +0000
2608@@ -1,6 +1,6 @@
2609 本文�包� <b>%(attribute)s</b> 格�字串,其�替�為通信論壇
2610 相應的屬性。詳情請�照
2611-<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python
2612+<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
2613 格�化字串�則</a>. �設屬性如下:
2614
2615 <ul>