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
=== modified file 'Mailman/Cgi/admin.py'
--- Mailman/Cgi/admin.py 2018-06-22 00:34:52 +0000
+++ Mailman/Cgi/admin.py 2018-07-15 05:58:13 +0000
@@ -917,7 +917,7 @@
917 container.AddItem(header)917 container.AddItem(header)
918 # Add a "search for member" button918 # Add a "search for member" button
919 table = Table(width='100%')919 table = Table(width='100%')
920 link = Link('http://docs.python.org/library/re.html'920 link = Link('https://docs.python.org/2/library/re.html'
921 '#regular-expression-syntax',921 '#regular-expression-syntax',
922 _('(help)')).Format()922 _('(help)')).Format()
923 table.AddRow([Label(_('Find member %(link)s:')),923 table.AddRow([Label(_('Find member %(link)s:')),
924924
=== modified file 'Mailman/Gui/Privacy.py'
--- Mailman/Gui/Privacy.py 2018-06-17 23:47:34 +0000
+++ Mailman/Gui/Privacy.py 2018-07-15 05:58:13 +0000
@@ -203,7 +203,7 @@
203203
204 <p>In the text boxes below, add one address per line; start the204 <p>In the text boxes below, add one address per line; start the
205 line with a ^ character to designate a <a href=205 line with a ^ character to designate a <a href=
206 "http://docs.python.org/library/re.html"206 "https://docs.python.org/2/library/re.html"
207 >Python regular expression</a>. When entering backslashes, do so207 >Python regular expression</a>. When entering backslashes, do so
208 as if you were using Python raw strings (i.e. you generally just208 as if you were using Python raw strings (i.e. you generally just
209 use a single backslash).209 use a single backslash).
210210
=== modified file 'Mailman/Gui/Topics.py'
--- Mailman/Gui/Topics.py 2018-06-17 23:47:34 +0000
+++ Mailman/Gui/Topics.py 2018-07-15 05:58:13 +0000
@@ -50,7 +50,7 @@
5050
51 _("""The topic filter categorizes each incoming email message51 _("""The topic filter categorizes each incoming email message
52 according to <a52 according to <a
53 href="http://docs.python.org/library/re.html">regular53 href="https://docs.python.org/2/library/re.html">regular
54 expression filters</a> you specify below. If the message's54 expression filters</a> you specify below. If the message's
55 <code>Subject:</code> or <code>Keywords:</code> header contains a55 <code>Subject:</code> or <code>Keywords:</code> header contains a
56 match against a topic filter, the message is logically placed56 match against a topic filter, the message is logically placed
5757
=== modified file 'bin/find_member'
--- bin/find_member 2018-06-17 23:47:34 +0000
+++ bin/find_member 2018-07-15 05:58:13 +0000
@@ -49,7 +49,7 @@
49Regular expression syntax is Perl5-like, using the Python re module. Complete49Regular expression syntax is Perl5-like, using the Python re module. Complete
50specifications are at:50specifications are at:
5151
52http://docs.python.org/library/re.html52https://docs.python.org/2/library/re.html
5353
54Address matches are case-insensitive, but case-preserved addresses are54Address matches are case-insensitive, but case-preserved addresses are
55displayed.55displayed.
5656
=== modified file 'messages/ar/LC_MESSAGES/mailman.po'
--- messages/ar/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ar/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6404,7 +6404,7 @@
6404"\n"6404"\n"
6405" <p>In the text boxes below, add one address per line; start the\n"6405" <p>In the text boxes below, add one address per line; start the\n"
6406" line with a ^ character to designate a <a href=\n"6406" line with a ^ character to designate a <a href=\n"
6407" \"http://docs.python.org/library/re.html\"\n"6407" \"https://docs.python.org/2/library/re.html\"\n"
6408" >Python regular expression</a>. When entering backslashes, do "6408" >Python regular expression</a>. When entering backslashes, do "
6409"so\n"6409"so\n"
6410" as if you were using Python raw strings (i.e. you generally "6410" as if you were using Python raw strings (i.e. you generally "
@@ -6435,7 +6435,7 @@
6435"\n"6435"\n"
6436" <p>�ي مربعات النص تحت، أض� عناناً واحداً �ي السطر، ابدأ السطر "6436" <p>�ي مربعات النص تحت، أض� عناناً واحداً �ي السطر، ابدأ السطر "
6437"بمحر� ^ لصنع <a href=\n"6437"بمحر� ^ لصنع <a href=\n"
6438" \"http://docs.python.org/library/re.html\"\n"6438" \"https://docs.python.org/2/library/re.html\"\n"
6439" >صيغة بايثون نظامية</a>. عند إدخال محر� التقسيم الخل�ي أدخله "6439" >صيغة بايثون نظامية</a>. عند إدخال محر� التقسيم الخل�ي أدخله "
6440"وكأنك تدخل أحر� بايثون خام (مثلاً أنت عادة تستخدم محر� تقسيم خل�ي واحد).\n"6440"وكأنك تدخل أحر� بايثون خام (مثلاً أنت عادة تستخدم محر� تقسيم خل�ي واحد).\n"
6441" <p>لاحظ أن المقابلات مع الإدخالات غير الصيغ النظامية دائماً تحصل "6441" <p>لاحظ أن المقابلات مع الإدخالات غير الصيغ النظامية دائماً تحصل "
@@ -7139,7 +7139,7 @@
7139msgid ""7139msgid ""
7140"The topic filter categorizes each incoming email message\n"7140"The topic filter categorizes each incoming email message\n"
7141" according to <a\n"7141" according to <a\n"
7142" href=\"http://docs.python.org/library/re.html\">regular\n"7142" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7143" expression filters</a> you specify below. If the message's\n"7143" expression filters</a> you specify below. If the message's\n"
7144" <code>Subject:</code> or <code>Keywords:</code> header contains "7144" <code>Subject:</code> or <code>Keywords:</code> header contains "
7145"a\n"7145"a\n"
@@ -7162,7 +7162,7 @@
7162" configuration variable."7162" configuration variable."
7163msgstr ""7163msgstr ""
7164"يصن� مص�ي الموضوع كل رسالة بريد قائمة حسب <a\n"7164"يصن� مص�ي الموضوع كل رسالة بريد قائمة حسب <a\n"
7165" href=\"http://docs.python.org/library/re.html\">مص�يات صيغ "7165" href=\"https://docs.python.org/2/library/re.html\">مص�يات صيغ "
7166"نظامية</a> تحددها أنت �ي الأس�ل. إذا كانت ترويسة \n"7166"نظامية</a> تحددها أنت �ي الأس�ل. إذا كانت ترويسة \n"
7167" <code>Subject :</code> أو <code>Keywords:</code> الخاصة "7167" <code>Subject :</code> أو <code>Keywords:</code> الخاصة "
7168"بالرسالة تحتوي على تطابق مع مص�ي موضوع �سو� توضع الرسالة �ي <em>جيب</em> "7168"بالرسالة تحتوي على تطابق مع مص�ي موضوع �سو� توضع الرسالة �ي <em>جيب</em> "
@@ -9350,7 +9350,7 @@
9350"Complete\n"9350"Complete\n"
9351"specifications are at:\n"9351"specifications are at:\n"
9352"\n"9352"\n"
9353"http://docs.python.org/library/re.html\n"9353"https://docs.python.org/2/library/re.html\n"
9354"\n"9354"\n"
9355"Address matches are case-insensitive, but case-preserved addresses are\n"9355"Address matches are case-insensitive, but case-preserved addresses are\n"
9356"displayed.\n"9356"displayed.\n"
@@ -12086,7 +12086,7 @@
1208612086
12087#~ msgid ""12087#~ msgid ""
12088#~ "This text can include \n"12088#~ "This text can include \n"
12089#~ "<a href=\"http://docs.python.org/library/stdtypes.html#string-formatting-"12089#~ "<a href=\"https://docs.python.org/2/library/stdtypes.html#string-formatting-"
12090#~ "operations\">Python\n"12090#~ "operations\">Python\n"
12091#~ "format strings</a> which are resolved against list attributes. The\n"12091#~ "format strings</a> which are resolved against list attributes. The\n"
12092#~ "list of substitutions allowed are:\n"12092#~ "list of substitutions allowed are:\n"
@@ -12115,7 +12115,7 @@
12115#~ " <li><b>cgiext</b> - The extension added to CGI scripts.\n"12115#~ " <li><b>cgiext</b> - The extension added to CGI scripts.\n"
12116#~ "</ul>"12116#~ "</ul>"
12117#~ msgstr ""12117#~ msgstr ""
12118#~ "يمكن لهذا النص أن يتضمن<a href=\"http://docs.python.org/library/stdtypes."12118#~ "يمكن لهذا النص أن يتضمن<a href=\"https://docs.python.org/2/library/stdtypes."
12119#~ "html#string-formatting-operations\">محار� تنسيق بايثون</a> \n"12119#~ "html#string-formatting-operations\">محار� تنسيق بايثون</a> \n"
12120#~ "والتي سيتم حلها مع مواص�ات القائمة. قائمة الاستبدالات المسموحة هي:\n"12120#~ "والتي سيتم حلها مع مواص�ات القائمة. قائمة الاستبدالات المسموحة هي:\n"
12121#~ "\n"12121#~ "\n"
1212212122
=== modified file 'messages/ast/LC_MESSAGES/mailman.po'
--- messages/ast/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ast/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7105,7 +7105,7 @@
7105"\n"7105"\n"
7106" <p>In the text boxes below, add one address per line; start the\n"7106" <p>In the text boxes below, add one address per line; start the\n"
7107" line with a ^ character to designate a <a href=\n"7107" line with a ^ character to designate a <a href=\n"
7108" \"http://docs.python.org/library/re.html\"\n"7108" \"https://docs.python.org/2/library/re.html\"\n"
7109" >Python regular expression</a>. When entering backslashes, do "7109" >Python regular expression</a>. When entering backslashes, do "
7110"so\n"7110"so\n"
7111" as if you were using Python raw strings (i.e. you generally "7111" as if you were using Python raw strings (i.e. you generally "
@@ -7146,7 +7146,7 @@
7146" <p>Na caxa de testu de más abaxo, amiesta una direición en cada "7146" <p>Na caxa de testu de más abaxo, amiesta una direición en cada "
7147"llinia, entama la llinia\n"7147"llinia, entama la llinia\n"
7148" col caráuter ^ pa designar una \n"7148" col caráuter ^ pa designar una \n"
7149" <a href=\"http://docs.python.org/library/re.html\">\n"7149" <a href=\"https://docs.python.org/2/library/re.html\">\n"
7150" espresión regular de Python</a>. Cuando introduzas barres "7150" espresión regular de Python</a>. Cuando introduzas barres "
7151"atenllaes de manzorga a mandrecha,\n"7151"atenllaes de manzorga a mandrecha,\n"
7152" fáilo como si tuvieres usando cadenes de Python (davezu namái "7152" fáilo como si tuvieres usando cadenes de Python (davezu namái "
@@ -7958,7 +7958,7 @@
7958msgid ""7958msgid ""
7959"The topic filter categorizes each incoming email message\n"7959"The topic filter categorizes each incoming email message\n"
7960" according to <a\n"7960" according to <a\n"
7961" href=\"http://docs.python.org/library/re.html\">regular\n"7961" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7962" expression filters</a> you specify below. If the message's\n"7962" expression filters</a> you specify below. If the message's\n"
7963" <code>Subject:</code> or <code>Keywords:</code> header contains "7963" <code>Subject:</code> or <code>Keywords:</code> header contains "
7964"a\n"7964"a\n"
@@ -7981,7 +7981,7 @@
7981" configuration variable."7981" configuration variable."
7982msgstr ""7982msgstr ""
7983"La peñera según el tema, clasifica cada mensax recibíu\n"7983"La peñera según el tema, clasifica cada mensax recibíu\n"
7984" según: les <a href=\"http://docs.python.org/library/re.html\">\n"7984" según: les <a href=\"https://docs.python.org/2/library/re.html\">\n"
7985" peñeres d'espresiones regulares</a> qu'especifiques embaxo. Si "7985" peñeres d'espresiones regulares</a> qu'especifiques embaxo. Si "
7986"les cabeceres\n"7986"les cabeceres\n"
7987" <code>Asuntu:</code> o <code>Pallabres clave</code>\n"7987" <code>Asuntu:</code> o <code>Pallabres clave</code>\n"
@@ -10705,7 +10705,7 @@
10705"Complete\n"10705"Complete\n"
10706"specifications are at:\n"10706"specifications are at:\n"
10707"\n"10707"\n"
10708"http://docs.python.org/library/re.html\n"10708"https://docs.python.org/2/library/re.html\n"
10709"\n"10709"\n"
10710"Address matches are case-insensitive, but case-preserved addresses are\n"10710"Address matches are case-insensitive, but case-preserved addresses are\n"
10711"displayed.\n"10711"displayed.\n"
@@ -10745,7 +10745,7 @@
10745"La Usu de la espresión regular ye al estilu Perl5, usando'l modulu Python "10745"La Usu de la espresión regular ye al estilu Perl5, usando'l modulu Python "
10746"re. Les especificaciones completes tan en:\n"10746"re. Les especificaciones completes tan en:\n"
10747"\n"10747"\n"
10748"http://docs.python.org/library/re.html\n"10748"https://docs.python.org/2/library/re.html\n"
10749"\n"10749"\n"
10750"Al guetar les direiciones nun se distinguen mayúscules de minúscules, ensin "10750"Al guetar les direiciones nun se distinguen mayúscules de minúscules, ensin "
10751"embargo, \n"10751"embargo, \n"
1075210752
=== modified file 'messages/ca/LC_MESSAGES/mailman.po'
--- messages/ca/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ca/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7197,7 +7197,7 @@
7197"\n"7197"\n"
7198" <p>In the text boxes below, add one address per line; start the\n"7198" <p>In the text boxes below, add one address per line; start the\n"
7199" line with a ^ character to designate a <a href=\n"7199" line with a ^ character to designate a <a href=\n"
7200" \"http://docs.python.org/library/re.html\"\n"7200" \"https://docs.python.org/2/library/re.html\"\n"
7201" >Python regular expression</a>. When entering backslashes, do "7201" >Python regular expression</a>. When entering backslashes, do "
7202"so\n"7202"so\n"
7203" as if you were using Python raw strings (i.e. you generally "7203" as if you were using Python raw strings (i.e. you generally "
@@ -7239,7 +7239,7 @@
7239" <p>A les caixes de text d'abaix, afegeix una adreça per línia; "7239" <p>A les caixes de text d'abaix, afegeix una adreça per línia; "
7240"comença la\n"7240"comença la\n"
7241" línia amb ^ per a designar <a href=\n"7241" línia amb ^ per a designar <a href=\n"
7242" \"http://www.python.org/doc/current/lib/module-re.html\"\n"7242" \"https://docs.python.org/2/library/re.html\"\n"
7243" >una expressió regular de Python</a>. Quan escriguis barres "7243" >una expressió regular de Python</a>. Quan escriguis barres "
7244"inverses, fes-ho\n"7244"inverses, fes-ho\n"
7245" com si estiguessis al Python (ex. normalment només es fa servir\n"7245" com si estiguessis al Python (ex. normalment només es fa servir\n"
@@ -8055,7 +8055,7 @@
8055msgid ""8055msgid ""
8056"The topic filter categorizes each incoming email message\n"8056"The topic filter categorizes each incoming email message\n"
8057" according to <a\n"8057" according to <a\n"
8058" href=\"http://docs.python.org/library/re.html\">regular\n"8058" href=\"https://docs.python.org/2/library/re.html\">regular\n"
8059" expression filters</a> you specify below. If the message's\n"8059" expression filters</a> you specify below. If the message's\n"
8060" <code>Subject:</code> or <code>Keywords:</code> header contains "8060" <code>Subject:</code> or <code>Keywords:</code> header contains "
8061"a\n"8061"a\n"
@@ -8079,7 +8079,7 @@
8079msgstr ""8079msgstr ""
8080"El filtre segons el tema, classifica cada missatge rebut segons:\n"8080"El filtre segons el tema, classifica cada missatge rebut segons:\n"
8081"<a\n"8081"<a\n"
8082" href=\"http://www.python.org/doc/current/lib/module-re.html"8082" href=\"https://docs.python.org/2/library/re.html"
8083"\">els filtres\n"8083"\">els filtres\n"
8084" d'expressions</a> que especifiqui abaix.\n"8084" d'expressions</a> que especifiqui abaix.\n"
8085" Si les capçaleres <code>Subject:</code> o <code>Keywords</code>\n"8085" Si les capçaleres <code>Subject:</code> o <code>Keywords</code>\n"
@@ -10806,7 +10806,7 @@
10806"Complete\n"10806"Complete\n"
10807"specifications are at:\n"10807"specifications are at:\n"
10808"\n"10808"\n"
10809"http://docs.python.org/library/re.html\n"10809"https://docs.python.org/2/library/re.html\n"
10810"\n"10810"\n"
10811"Address matches are case-insensitive, but case-preserved addresses are\n"10811"Address matches are case-insensitive, but case-preserved addresses are\n"
10812"displayed.\n"10812"displayed.\n"
@@ -10848,7 +10848,7 @@
10848"modul Python. Les \n"10848"modul Python. Les \n"
10849"especificacions són a:\n"10849"especificacions són a:\n"
10850"\n"10850"\n"
10851"http://www.python.org/doc/current/lib/module-re.html\n"10851"https://docs.python.org/2/library/re.html\n"
10852"\n"10852"\n"
10853"Les coincidencies de les adreces son case-insensitive, però les adreces "10853"Les coincidencies de les adreces son case-insensitive, però les adreces "
10854"case-preserved són\n"10854"case-preserved són\n"
1085510855
=== modified file 'messages/cs/LC_MESSAGES/mailman.po'
--- messages/cs/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/cs/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6765,7 +6765,7 @@
6765"\n"6765"\n"
6766" <p>In the text boxes below, add one address per line; start the\n"6766" <p>In the text boxes below, add one address per line; start the\n"
6767" line with a ^ character to designate a <a href=\n"6767" line with a ^ character to designate a <a href=\n"
6768" \"http://docs.python.org/library/re.html\"\n"6768" \"https://docs.python.org/2/library/re.html\"\n"
6769" >Python regular expression</a>. When entering backslashes, do "6769" >Python regular expression</a>. When entering backslashes, do "
6770"so\n"6770"so\n"
6771" as if you were using Python raw strings (i.e. you generally "6771" as if you were using Python raw strings (i.e. you generally "
@@ -6804,7 +6804,7 @@
6804" <p>Do ní¾e zobrazených rámeèkù zapisujte na ka¾dý øádek jednu "6804" <p>Do ní¾e zobrazených rámeèkù zapisujte na ka¾dý øádek jednu "
6805"adresu.\n"6805"adresu.\n"
6806" Pokud chcete pou¾ít <a href=\n"6806" Pokud chcete pou¾ít <a href=\n"
6807" \"http://docs.python.org/library/re.html\"\n"6807" \"https://docs.python.org/2/library/re.html\"\n"
6808" >Regulární výraz Pythonu</a> zaènìte øádek znakem ^. Pokud "6808" >Regulární výraz Pythonu</a> zaènìte øádek znakem ^. Pokud "
6809"potøebujete zadat \n"6809"potøebujete zadat \n"
6810" zpìtné lomítko zadejte jej jako jednoduché (tedy není potøeba "6810" zpìtné lomítko zadejte jej jako jednoduché (tedy není potøeba "
@@ -7544,7 +7544,7 @@
7544msgid ""7544msgid ""
7545"The topic filter categorizes each incoming email message\n"7545"The topic filter categorizes each incoming email message\n"
7546" according to <a\n"7546" according to <a\n"
7547" href=\"http://docs.python.org/library/re.html\">regular\n"7547" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7548" expression filters</a> you specify below. If the message's\n"7548" expression filters</a> you specify below. If the message's\n"
7549" <code>Subject:</code> or <code>Keywords:</code> header contains "7549" <code>Subject:</code> or <code>Keywords:</code> header contains "
7550"a\n"7550"a\n"
@@ -7567,7 +7567,7 @@
7567" configuration variable."7567" configuration variable."
7568msgstr ""7568msgstr ""
7569"Tématický filtr zatøídí ka¾dou pøijatou zprávu s pou¾itím <a\n"7569"Tématický filtr zatøídí ka¾dou pøijatou zprávu s pou¾itím <a\n"
7570" href=\"http://docs.python.org/library/re.html\">regulárních\n"7570" href=\"https://docs.python.org/2/library/re.html\">regulárních\n"
7571" výrazù</a> , které zadáte ní¾e. Pokud zpráva obsahuje v "7571" výrazù</a> , které zadáte ní¾e. Pokud zpráva obsahuje v "
7572"hlavièce \n"7572"hlavièce \n"
7573" <code>Subject:</code> a nebo <code>Keywords:</code> výraz "7573" <code>Subject:</code> a nebo <code>Keywords:</code> výraz "
@@ -9810,7 +9810,7 @@
9810"Complete\n"9810"Complete\n"
9811"specifications are at:\n"9811"specifications are at:\n"
9812"\n"9812"\n"
9813"http://docs.python.org/library/re.html\n"9813"https://docs.python.org/2/library/re.html\n"
9814"\n"9814"\n"
9815"Address matches are case-insensitive, but case-preserved addresses are\n"9815"Address matches are case-insensitive, but case-preserved addresses are\n"
9816"displayed.\n"9816"displayed.\n"
98179817
=== modified file 'messages/da/LC_MESSAGES/mailman.po'
--- messages/da/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/da/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7063,7 +7063,7 @@
7063"\n"7063"\n"
7064" <p>In the text boxes below, add one address per line; start the\n"7064" <p>In the text boxes below, add one address per line; start the\n"
7065" line with a ^ character to designate a <a href=\n"7065" line with a ^ character to designate a <a href=\n"
7066" \"http://docs.python.org/library/re.html\"\n"7066" \"https://docs.python.org/2/library/re.html\"\n"
7067" >Python regular expression</a>. When entering backslashes, do "7067" >Python regular expression</a>. When entering backslashes, do "
7068"so\n"7068"so\n"
7069" as if you were using Python raw strings (i.e. you generally "7069" as if you were using Python raw strings (i.e. you generally "
@@ -7098,7 +7098,7 @@
7098"\n"7098"\n"
7099"<p>I tekstboksene nedenfor kan du tilf&oslash;je en e-mailadresse pr. "7099"<p>I tekstboksene nedenfor kan du tilf&oslash;je en e-mailadresse pr. "
7100"linie.\n"7100"linie.\n"
7101"Du kan ogs&aring; tilf&oslash;je <a href=\"http://docs.python.org/library/"7101"Du kan ogs&aring; tilf&oslash;je <a href=\"https://docs.python.org/2/library/"
7102"re.html\">Python regexp-udtryk</a>.\n"7102"re.html\">Python regexp-udtryk</a>.\n"
7103"Begynd i s&aring; fald linien med tegnet ^ for at markere at det er et "7103"Begynd i s&aring; fald linien med tegnet ^ for at markere at det er et "
7104"s&aring;dant udtryk.\n"7104"s&aring;dant udtryk.\n"
@@ -7885,7 +7885,7 @@
7885msgid ""7885msgid ""
7886"The topic filter categorizes each incoming email message\n"7886"The topic filter categorizes each incoming email message\n"
7887" according to <a\n"7887" according to <a\n"
7888" href=\"http://docs.python.org/library/re.html\">regular\n"7888" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7889" expression filters</a> you specify below. If the message's\n"7889" expression filters</a> you specify below. If the message's\n"
7890" <code>Subject:</code> or <code>Keywords:</code> header contains "7890" <code>Subject:</code> or <code>Keywords:</code> header contains "
7891"a\n"7891"a\n"
@@ -7908,7 +7908,7 @@
7908" configuration variable."7908" configuration variable."
7909msgstr ""7909msgstr ""
7910"Emnefilteret kategoriserer hver e-mail som kommer til listen,\n"7910"Emnefilteret kategoriserer hver e-mail som kommer til listen,\n"
7911"efter <a href=\"http://docs.python.org/library/re.html\">de regexp-udtryk</"7911"efter <a href=\"https://docs.python.org/2/library/re.html\">de regexp-udtryk</"
7912"a>\n"7912"a>\n"
7913"du skriver nedenfor. Hvis felterne <code>Subject:</code> eller "7913"du skriver nedenfor. Hvis felterne <code>Subject:</code> eller "
7914"<code>Keywords:</code>\n"7914"<code>Keywords:</code>\n"
@@ -10570,7 +10570,7 @@
10570"Complete\n"10570"Complete\n"
10571"specifications are at:\n"10571"specifications are at:\n"
10572"\n"10572"\n"
10573"http://docs.python.org/library/re.html\n"10573"https://docs.python.org/2/library/re.html\n"
10574"\n"10574"\n"
10575"Address matches are case-insensitive, but case-preserved addresses are\n"10575"Address matches are case-insensitive, but case-preserved addresses are\n"
10576"displayed.\n"10576"displayed.\n"
@@ -10611,7 +10611,7 @@
10611"benyttes.\n"10611"benyttes.\n"
10612"Komplet specifikation findes på:\n"10612"Komplet specifikation findes på:\n"
10613"\n"10613"\n"
10614"http://docs.python.org/library/re.html\n"10614"https://docs.python.org/2/library/re.html\n"
10615"\n"10615"\n"
10616"Adresser sammenlignes uden forskel på små og store bogstaver, men vises med\n"10616"Adresser sammenlignes uden forskel på små og store bogstaver, men vises med\n"
10617"store/små bogstaver som de er stavet.\n"10617"store/små bogstaver som de er stavet.\n"
@@ -14165,7 +14165,7 @@
1416514165
14166#~ msgid ""14166#~ msgid ""
14167#~ "<li>Find members by\n"14167#~ "<li>Find members by\n"
14168#~ " <a href=\"http://docs.python.org/library/re.html#regular-"14168#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
14169#~ "expression-syntax\"\n"14169#~ "expression-syntax\"\n"
14170#~ " >Python regular expression</a> (<em>regexp</em>)<br>"14170#~ " >Python regular expression</a> (<em>regexp</em>)<br>"
14171#~ msgstr ""14171#~ msgstr ""
1417214172
=== modified file 'messages/de/LC_MESSAGES/mailman.po'
--- messages/de/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/de/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7645,7 +7645,7 @@
7645"\n"7645"\n"
7646" <p>In the text boxes below, add one address per line; start the\n"7646" <p>In the text boxes below, add one address per line; start the\n"
7647" line with a ^ character to designate a <a href=\n"7647" line with a ^ character to designate a <a href=\n"
7648" \"http://docs.python.org/library/re.html\"\n"7648" \"https://docs.python.org/2/library/re.html\"\n"
7649" >Python regular expression</a>. When entering backslashes, do "7649" >Python regular expression</a>. When entering backslashes, do "
7650"so\n"7650"so\n"
7651" as if you were using Python raw strings (i.e. you generally "7651" as if you were using Python raw strings (i.e. you generally "
@@ -7679,7 +7679,7 @@
7679"\n"7679"\n"
7680"<p>Fügen Sie eine E-Mail-Adresse pro Zeile hinzu.\n"7680"<p>Fügen Sie eine E-Mail-Adresse pro Zeile hinzu.\n"
7681"Beginnen Sie mit einem ^, um\n"7681"Beginnen Sie mit einem ^, um\n"
7682" <a href=\"http://docs.python.org/library/re.html\">reguläre\n"7682" <a href=\"https://docs.python.org/2/library/re.html\">reguläre\n"
7683" Ausdrücke(RegExp)</a> einzuleiten. Geben Sie einen Backslash so an, wie in\n"7683" Ausdrücke(RegExp)</a> einzuleiten. Geben Sie einen Backslash so an, wie in\n"
7684" normale Python-Strings (i.d.R. ein einfacher, normaler Backslash).\n"7684" normale Python-Strings (i.d.R. ein einfacher, normaler Backslash).\n"
7685"\n"7685"\n"
@@ -8579,7 +8579,7 @@
8579msgid ""8579msgid ""
8580"The topic filter categorizes each incoming email message\n"8580"The topic filter categorizes each incoming email message\n"
8581" according to <a\n"8581" according to <a\n"
8582" href=\"http://docs.python.org/library/re.html\">regular\n"8582" href=\"https://docs.python.org/2/library/re.html\">regular\n"
8583" expression filters</a> you specify below. If the message's\n"8583" expression filters</a> you specify below. If the message's\n"
8584" <code>Subject:</code> or <code>Keywords:</code> header contains "8584" <code>Subject:</code> or <code>Keywords:</code> header contains "
8585"a\n"8585"a\n"
@@ -8602,7 +8602,7 @@
8602" configuration variable."8602" configuration variable."
8603msgstr ""8603msgstr ""
8604"Der Themenfilter kategorisiert jede eingehende E-Mail-Nachricht gemäss <a "8604"Der Themenfilter kategorisiert jede eingehende E-Mail-Nachricht gemäss <a "
8605"href=\"http://docs.python.org/library/re.html\">Filterregeln mit regulären "8605"href=\"https://docs.python.org/2/library/re.html\">Filterregeln mit regulären "
8606"Ausdrücken</a>, die Sie weiter unten festlegen können. Wenn die "8606"Ausdrücken</a>, die Sie weiter unten festlegen können. Wenn die "
8607"<code>Subject:</code> oder <code>Keywords:</code> Header der Nachricht mit "8607"<code>Subject:</code> oder <code>Keywords:</code> Header der Nachricht mit "
8608"dem Suchthema übereinstimmen, wird die Nachricht in einem thematischen "8608"dem Suchthema übereinstimmen, wird die Nachricht in einem thematischen "
@@ -11457,7 +11457,7 @@
11457"Complete\n"11457"Complete\n"
11458"specifications are at:\n"11458"specifications are at:\n"
11459"\n"11459"\n"
11460"http://docs.python.org/library/re.html\n"11460"https://docs.python.org/2/library/re.html\n"
11461"\n"11461"\n"
11462"Address matches are case-insensitive, but case-preserved addresses are\n"11462"Address matches are case-insensitive, but case-preserved addresses are\n"
11463"displayed.\n"11463"displayed.\n"
@@ -11496,7 +11496,7 @@
11496"Die vom Python re-Modul benutzte Syntax für reguläre Ausdrücke entspricht\n"11496"Die vom Python re-Modul benutzte Syntax für reguläre Ausdrücke entspricht\n"
11497"der von Perl5. Die kompletten Spezifikationen sind erhältlich unter:\n"11497"der von Perl5. Die kompletten Spezifikationen sind erhältlich unter:\n"
11498"\n"11498"\n"
11499"http://docs.python.org/library/re.html\n"11499"https://docs.python.org/2/library/re.html\n"
11500"\n"11500"\n"
11501"Die Adresssuche ignoriert Gross-/Kleinschreibung, zeigt jedoch unter-\n"11501"Die Adresssuche ignoriert Gross-/Kleinschreibung, zeigt jedoch unter-\n"
11502"schiedliche Schreibweisen der Adressen an.\n"11502"schiedliche Schreibweisen der Adressen an.\n"
1150311503
=== modified file 'messages/el/LC_MESSAGES/mailman.po'
--- messages/el/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/el/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7394,7 +7394,7 @@
7394"\n"7394"\n"
7395" <p>In the text boxes below, add one address per line; start the\n"7395" <p>In the text boxes below, add one address per line; start the\n"
7396" line with a ^ character to designate a <a href=\n"7396" line with a ^ character to designate a <a href=\n"
7397" \"http://docs.python.org/library/re.html\"\n"7397" \"https://docs.python.org/2/library/re.html\"\n"
7398" >Python regular expression</a>. When entering backslashes, do "7398" >Python regular expression</a>. When entering backslashes, do "
7399"so\n"7399"so\n"
7400" as if you were using Python raw strings (i.e. you generally "7400" as if you were using Python raw strings (i.e. you generally "
@@ -7438,7 +7438,7 @@
7438" <p>Óôá áêüëïõèá ðëáßóéá êåéìÝíïõ, ðñïóèÝóôå ìéá äéåýèõíóç óå "7438" <p>Óôá áêüëïõèá ðëáßóéá êåéìÝíïõ, ðñïóèÝóôå ìéá äéåýèõíóç óå "
7439"êÜèå ãñáììÞ. Áñ÷ßóôå \n"7439"êÜèå ãñáììÞ. Áñ÷ßóôå \n"
7440" ôç ãñáììÞ ìå ôïí ÷áñáêôÞñá ^ ãéá íá äçëþóåôå ìéá <a href="7440" ôç ãñáììÞ ìå ôïí ÷áñáêôÞñá ^ ãéá íá äçëþóåôå ìéá <a href="
7441"\"http://docs.python.org/library/re.html\">Python regular expression</a>. "7441"\"https://docs.python.org/2/library/re.html\">Python regular expression</a>. "
7442"¼ôáí åéóÜãåôå áíÜðïäåò êáèÝôïõò (backslashes), \n"7442"¼ôáí åéóÜãåôå áíÜðïäåò êáèÝôïõò (backslashes), \n"
7443"êÜíôå ôï óáí \n"7443"êÜíôå ôï óáí \n"
7444" íá ÷ñçóéìïðïéïýóáôå áðëÝò óõìâïëïóåéñÝò Python (ð.÷. ìðïñåßôå "7444" íá ÷ñçóéìïðïéïýóáôå áðëÝò óõìâïëïóåéñÝò Python (ð.÷. ìðïñåßôå "
@@ -8281,7 +8281,7 @@
8281msgid ""8281msgid ""
8282"The topic filter categorizes each incoming email message\n"8282"The topic filter categorizes each incoming email message\n"
8283" according to <a\n"8283" according to <a\n"
8284" href=\"http://docs.python.org/library/re.html\">regular\n"8284" href=\"https://docs.python.org/2/library/re.html\">regular\n"
8285" expression filters</a> you specify below. If the message's\n"8285" expression filters</a> you specify below. If the message's\n"
8286" <code>Subject:</code> or <code>Keywords:</code> header contains "8286" <code>Subject:</code> or <code>Keywords:</code> header contains "
8287"a\n"8287"a\n"
@@ -8304,7 +8304,7 @@
8304" configuration variable."8304" configuration variable."
8305msgstr ""8305msgstr ""
8306"Ôï ößëôñï èÝìáôïò êáôçãïñéïðïéåß êÜèå åéóåñ÷üìåíï ìÞíõìá\n"8306"Ôï ößëôñï èÝìáôïò êáôçãïñéïðïéåß êÜèå åéóåñ÷üìåíï ìÞíõìá\n"
8307" óýìöùíá ìå ôï <a href=\"http://docs.python.org/library/re.html"8307" óýìöùíá ìå ôï <a href=\"https://docs.python.org/2/library/re.html"
8308"\">ößëôñá\n"8308"\">ößëôñá\n"
8309" êáíïíéêþí åêöñÜóåùí</a> ðïõ ïñßæïíôáé ðéï êÜôù. Áí ïé "8309" êáíïíéêþí åêöñÜóåùí</a> ðïõ ïñßæïíôáé ðéï êÜôù. Áí ïé "
8310"åðéêåöáëßäåò\n"8310"åðéêåöáëßäåò\n"
@@ -11088,7 +11088,7 @@
11088"Complete\n"11088"Complete\n"
11089"specifications are at:\n"11089"specifications are at:\n"
11090"\n"11090"\n"
11091"http://docs.python.org/library/re.html\n"11091"https://docs.python.org/2/library/re.html\n"
11092"\n"11092"\n"
11093"Address matches are case-insensitive, but case-preserved addresses are\n"11093"Address matches are case-insensitive, but case-preserved addresses are\n"
11094"displayed.\n"11094"displayed.\n"
@@ -11132,7 +11132,7 @@
11132"Ïé ðëÞñåéò\n"11132"Ïé ðëÞñåéò\n"
11133"ðñïäéáãñáöÝò âñßóêïíôáé óôï:\n"11133"ðñïäéáãñáöÝò âñßóêïíôáé óôï:\n"
11134"\n"11134"\n"
11135"http://docs.python.org/library/re.html\n"11135"https://docs.python.org/2/library/re.html\n"
11136"\n"11136"\n"
11137"Ïé áíôéóôïé÷ßåò äéåõèýíóåùí åßíáé (case-insensitive), áëëÜ ïé (case-"11137"Ïé áíôéóôïé÷ßåò äéåõèýíóåùí åßíáé (case-insensitive), áëëÜ ïé (case-"
11138"preserved) äéåõèýíóåéò\n"11138"preserved) äéåõèýíóåéò\n"
1113911139
=== modified file 'messages/eo/LC_MESSAGES/mailman.po'
--- messages/eo/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/eo/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -5943,7 +5943,7 @@
5943"\n"5943"\n"
5944" <p>In the text boxes below, add one address per line; start the\n"5944" <p>In the text boxes below, add one address per line; start the\n"
5945" line with a ^ character to designate a <a href=\n"5945" line with a ^ character to designate a <a href=\n"
5946" \"http://docs.python.org/library/re.html\"\n"5946" \"https://docs.python.org/2/library/re.html\"\n"
5947" >Python regular expression</a>. When entering backslashes, do "5947" >Python regular expression</a>. When entering backslashes, do "
5948"so\n"5948"so\n"
5949" as if you were using Python raw strings (i.e. you generally "5949" as if you were using Python raw strings (i.e. you generally "
@@ -6523,7 +6523,7 @@
6523msgid ""6523msgid ""
6524"The topic filter categorizes each incoming email message\n"6524"The topic filter categorizes each incoming email message\n"
6525" according to <a\n"6525" according to <a\n"
6526" href=\"http://docs.python.org/library/re.html\">regular\n"6526" href=\"https://docs.python.org/2/library/re.html\">regular\n"
6527" expression filters</a> you specify below. If the message's\n"6527" expression filters</a> you specify below. If the message's\n"
6528" <code>Subject:</code> or <code>Keywords:</code> header contains "6528" <code>Subject:</code> or <code>Keywords:</code> header contains "
6529"a\n"6529"a\n"
@@ -8648,7 +8648,7 @@
8648"Complete\n"8648"Complete\n"
8649"specifications are at:\n"8649"specifications are at:\n"
8650"\n"8650"\n"
8651"http://docs.python.org/library/re.html\n"8651"https://docs.python.org/2/library/re.html\n"
8652"\n"8652"\n"
8653"Address matches are case-insensitive, but case-preserved addresses are\n"8653"Address matches are case-insensitive, but case-preserved addresses are\n"
8654"displayed.\n"8654"displayed.\n"
86558655
=== modified file 'messages/es/LC_MESSAGES/mailman.po'
--- messages/es/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/es/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7187,7 +7187,7 @@
7187"\n"7187"\n"
7188" <p>In the text boxes below, add one address per line; start the\n"7188" <p>In the text boxes below, add one address per line; start the\n"
7189" line with a ^ character to designate a <a href=\n"7189" line with a ^ character to designate a <a href=\n"
7190" \"http://docs.python.org/library/re.html\"\n"7190" \"https://docs.python.org/2/library/re.html\"\n"
7191" >Python regular expression</a>. When entering backslashes, do "7191" >Python regular expression</a>. When entering backslashes, do "
7192"so\n"7192"so\n"
7193" as if you were using Python raw strings (i.e. you generally "7193" as if you were using Python raw strings (i.e. you generally "
@@ -7228,7 +7228,7 @@
7228" <p>En la caja de texto de más abajo, agrega una dirección en "7228" <p>En la caja de texto de más abajo, agrega una dirección en "
7229"cada línea, empieza la línea\n"7229"cada línea, empieza la línea\n"
7230" con el carácter ^ para designar una \n"7230" con el carácter ^ para designar una \n"
7231" <a href=\"http://docs.python.org/library/re.html\">\n"7231" <a href=\"https://docs.python.org/2/library/re.html\">\n"
7232" expresión regular de Python</a>. Cuando metas barras inclinadas "7232" expresión regular de Python</a>. Cuando metas barras inclinadas "
7233"de izquierda a derecha (\"\\\"),\n"7233"de izquierda a derecha (\"\\\"),\n"
7234" hazlo como si estuvieras usando cadenas de Python en bruto "7234" hazlo como si estuvieras usando cadenas de Python en bruto "
@@ -8029,7 +8029,7 @@
8029msgid ""8029msgid ""
8030"The topic filter categorizes each incoming email message\n"8030"The topic filter categorizes each incoming email message\n"
8031" according to <a\n"8031" according to <a\n"
8032" href=\"http://docs.python.org/library/re.html\">regular\n"8032" href=\"https://docs.python.org/2/library/re.html\">regular\n"
8033" expression filters</a> you specify below. If the message's\n"8033" expression filters</a> you specify below. If the message's\n"
8034" <code>Subject:</code> or <code>Keywords:</code> header contains "8034" <code>Subject:</code> or <code>Keywords:</code> header contains "
8035"a\n"8035"a\n"
@@ -8052,7 +8052,7 @@
8052" configuration variable."8052" configuration variable."
8053msgstr ""8053msgstr ""
8054"El filtro según el tema, clasifica cada mensaje recibido\n"8054"El filtro según el tema, clasifica cada mensaje recibido\n"
8055" según: los <a href=\"http://docs.python.org/library/re.html\">\n"8055" según: los <a href=\"https://docs.python.org/2/library/re.html\">\n"
8056" filtros de expresiones regulares</a> que especifique abajo. Si "8056" filtros de expresiones regulares</a> que especifique abajo. Si "
8057"las cabeceras\n"8057"las cabeceras\n"
8058" <code>Subject:</code> (asunto) o <code>Keywords</code> "8058" <code>Subject:</code> (asunto) o <code>Keywords</code> "
@@ -10798,7 +10798,7 @@
10798"Complete\n"10798"Complete\n"
10799"specifications are at:\n"10799"specifications are at:\n"
10800"\n"10800"\n"
10801"http://docs.python.org/library/re.html\n"10801"https://docs.python.org/2/library/re.html\n"
10802"\n"10802"\n"
10803"Address matches are case-insensitive, but case-preserved addresses are\n"10803"Address matches are case-insensitive, but case-preserved addresses are\n"
10804"displayed.\n"10804"displayed.\n"
@@ -10840,7 +10840,7 @@
10840"La sintaxis de la expresión regular es al estilo Perl5, usando el modulo "10840"La sintaxis de la expresión regular es al estilo Perl5, usando el modulo "
10841"Python re. Las especificaciones completas están en:\n"10841"Python re. Las especificaciones completas están en:\n"
10842"\n"10842"\n"
10843"http://docs.python.org/library/re.html\n"10843"https://docs.python.org/2/library/re.html\n"
10844"\n"10844"\n"
10845"Al buscar las direcciones no se distinguen mayúsculas de minúsculas, sin "10845"Al buscar las direcciones no se distinguen mayúsculas de minúsculas, sin "
10846"embargo, \n"10846"embargo, \n"
1084710847
=== modified file 'messages/et/LC_MESSAGES/mailman.po'
--- messages/et/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/et/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6620,7 +6620,7 @@
6620"\n"6620"\n"
6621" <p>In the text boxes below, add one address per line; start the\n"6621" <p>In the text boxes below, add one address per line; start the\n"
6622" line with a ^ character to designate a <a href=\n"6622" line with a ^ character to designate a <a href=\n"
6623" \"http://docs.python.org/library/re.html\"\n"6623" \"https://docs.python.org/2/library/re.html\"\n"
6624" >Python regular expression</a>. When entering backslashes, do "6624" >Python regular expression</a>. When entering backslashes, do "
6625"so\n"6625"so\n"
6626" as if you were using Python raw strings (i.e. you generally "6626" as if you were using Python raw strings (i.e. you generally "
@@ -6651,7 +6651,7 @@
6651"kehtestatud reeglitele</a>\n"6651"kehtestatud reeglitele</a>\n"
6652"\n"6652"\n"
6653"<p>Sisesta tekstikastidesse aadressid, üks igale reale; ^ märk rea alguses\n"6653"<p>Sisesta tekstikastidesse aadressid, üks igale reale; ^ märk rea alguses\n"
6654"tähistab <a href=\"http://docs.python.org/library/re.html\">Pythoni "6654"tähistab <a href=\"https://docs.python.org/2/library/re.html\">Pythoni "
6655"regulaaravaldist</a>. Kurakaldkriipse sisesta nii nagu Pythoni stringe (s.t. "6655"regulaaravaldist</a>. Kurakaldkriipse sisesta nii nagu Pythoni stringe (s.t. "
6656"kasuta ainult ühte kurakaldkriipsu).\n"6656"kasuta ainult ühte kurakaldkriipsu).\n"
6657"\n"6657"\n"
@@ -7361,7 +7361,7 @@
7361msgid ""7361msgid ""
7362"The topic filter categorizes each incoming email message\n"7362"The topic filter categorizes each incoming email message\n"
7363" according to <a\n"7363" according to <a\n"
7364" href=\"http://docs.python.org/library/re.html\">regular\n"7364" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7365" expression filters</a> you specify below. If the message's\n"7365" expression filters</a> you specify below. If the message's\n"
7366" <code>Subject:</code> or <code>Keywords:</code> header contains "7366" <code>Subject:</code> or <code>Keywords:</code> header contains "
7367"a\n"7367"a\n"
@@ -7383,8 +7383,8 @@
7383"\">topics_bodylines_limit</a>\n"7383"\">topics_bodylines_limit</a>\n"
7384" configuration variable."7384" configuration variable."
7385msgstr ""7385msgstr ""
7386"Teemafilter kategoriseerib sissetulevaid kirju vastavalt <a href=\"http://"7386"Teemafilter kategoriseerib sissetulevaid kirju vastavalt <a href=\"https://"
7387"docs.python.org/library/re.html\">regulaaravaldistele</a>. Kui sissetuleva "7387"docs.python.org/2/library/re.html\">regulaaravaldistele</a>. Kui sissetuleva "
7388"kirja <code>Subject:</code> või <code>Keywords:</code> päis vastab mõnele "7388"kirja <code>Subject:</code> või <code>Keywords:</code> päis vastab mõnele "
7389"reeglile siis paigutatakse see vastavasse <em>registrisse</em>. Liikmell on "7389"reeglile siis paigutatakse see vastavasse <em>registrisse</em>. Liikmell on "
7390"võimalik valida talle huvi pakkuvat registrit (või registreid). Kirju, mis "7390"võimalik valida talle huvi pakkuvat registrit (või registreid). Kirju, mis "
@@ -9861,7 +9861,7 @@
9861"Complete\n"9861"Complete\n"
9862"specifications are at:\n"9862"specifications are at:\n"
9863"\n"9863"\n"
9864"http://docs.python.org/library/re.html\n"9864"https://docs.python.org/2/library/re.html\n"
9865"\n"9865"\n"
9866"Address matches are case-insensitive, but case-preserved addresses are\n"9866"Address matches are case-insensitive, but case-preserved addresses are\n"
9867"displayed.\n"9867"displayed.\n"
@@ -9902,7 +9902,7 @@
9902"moodul,\n"9902"moodul,\n"
9903"mille täielik ülevaade on aadressil:\n"9903"mille täielik ülevaade on aadressil:\n"
9904"\n"9904"\n"
9905"http://docs.python.org/library/re.html\n"9905"https://docs.python.org/2/library/re.html\n"
9906"\n"9906"\n"
9907"Otsing on tõstutundetu kui aadressid kuvatakse nii nagu nad listis kirjas "9907"Otsing on tõstutundetu kui aadressid kuvatakse nii nagu nad listis kirjas "
9908"on.\n"9908"on.\n"
99099909
=== modified file 'messages/eu/LC_MESSAGES/mailman.po'
--- messages/eu/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/eu/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7011,7 +7011,7 @@
7011"\n"7011"\n"
7012" <p>In the text boxes below, add one address per line; start the\n"7012" <p>In the text boxes below, add one address per line; start the\n"
7013" line with a ^ character to designate a <a href=\n"7013" line with a ^ character to designate a <a href=\n"
7014" \"http://docs.python.org/library/re.html\"\n"7014" \"https://docs.python.org/2/library/re.html\"\n"
7015" >Python regular expression</a>. When entering backslashes, do "7015" >Python regular expression</a>. When entering backslashes, do "
7016"so\n"7016"so\n"
7017" as if you were using Python raw strings (i.e. you generally "7017" as if you were using Python raw strings (i.e. you generally "
@@ -7052,7 +7052,7 @@
7052" <p>Beheko testu-kutxetan, gehitu helbide bat lerroko; lerroa "7052" <p>Beheko testu-kutxetan, gehitu helbide bat lerroko; lerroa "
7053"hasi\n"7053"hasi\n"
7054" ^ karakterearekin, <a href=\n"7054" ^ karakterearekin, <a href=\n"
7055" \"http://docs.python.org/library/re.html\"\n"7055" \"https://docs.python.org/2/library/re.html\"\n"
7056" >Python adierazpen erregularren</a> kasuan. '\\' ikurrak "7056" >Python adierazpen erregularren</a> kasuan. '\\' ikurrak "
7057"sartzean,\n"7057"sartzean,\n"
7058" Python lerro gordinak erabiltzen ari bazina bezala egin ezazu "7058" Python lerro gordinak erabiltzen ari bazina bezala egin ezazu "
@@ -7836,7 +7836,7 @@
7836msgid ""7836msgid ""
7837"The topic filter categorizes each incoming email message\n"7837"The topic filter categorizes each incoming email message\n"
7838" according to <a\n"7838" according to <a\n"
7839" href=\"http://docs.python.org/library/re.html\">regular\n"7839" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7840" expression filters</a> you specify below. If the message's\n"7840" expression filters</a> you specify below. If the message's\n"
7841" <code>Subject:</code> or <code>Keywords:</code> header contains "7841" <code>Subject:</code> or <code>Keywords:</code> header contains "
7842"a\n"7842"a\n"
@@ -7859,7 +7859,7 @@
7859" configuration variable."7859" configuration variable."
7860msgstr ""7860msgstr ""
7861"Gaien iragazkiak, heltzen diren mezu guztiak sailkatu egiten ditu\n"7861"Gaien iragazkiak, heltzen diren mezu guztiak sailkatu egiten ditu\n"
7862" behean adierazitako <a href=\"http://docs.python.org/library/re."7862" behean adierazitako <a href=\"https://docs.python.org/2/library/re."
7863"html\">adierazpen\n"7863"html\">adierazpen\n"
7864" erregularren iragazkiaren</a> arabera.\n"7864" erregularren iragazkiaren</a> arabera.\n"
7865" <code>Subject:</code> (gaia) edo <code>Keywords</code> (gako-"7865" <code>Subject:</code> (gaia) edo <code>Keywords</code> (gako-"
@@ -10290,7 +10290,7 @@
10290"Complete\n"10290"Complete\n"
10291"specifications are at:\n"10291"specifications are at:\n"
10292"\n"10292"\n"
10293"http://docs.python.org/library/re.html\n"10293"https://docs.python.org/2/library/re.html\n"
10294"\n"10294"\n"
10295"Address matches are case-insensitive, but case-preserved addresses are\n"10295"Address matches are case-insensitive, but case-preserved addresses are\n"
10296"displayed.\n"10296"displayed.\n"
1029710297
=== modified file 'messages/fa/LC_MESSAGES/mailman.po'
--- messages/fa/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/fa/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -5844,7 +5844,7 @@
5844"\n"5844"\n"
5845" <p>In the text boxes below, add one address per line; start the\n"5845" <p>In the text boxes below, add one address per line; start the\n"
5846" line with a ^ character to designate a <a href=\n"5846" line with a ^ character to designate a <a href=\n"
5847" \"http://docs.python.org/library/re.html\"\n"5847" \"https://docs.python.org/2/library/re.html\"\n"
5848" >Python regular expression</a>. When entering backslashes, do "5848" >Python regular expression</a>. When entering backslashes, do "
5849"so\n"5849"so\n"
5850" as if you were using Python raw strings (i.e. you generally "5850" as if you were using Python raw strings (i.e. you generally "
@@ -6426,7 +6426,7 @@
6426msgid ""6426msgid ""
6427"The topic filter categorizes each incoming email message\n"6427"The topic filter categorizes each incoming email message\n"
6428" according to <a\n"6428" according to <a\n"
6429" href=\"http://docs.python.org/library/re.html\">regular\n"6429" href=\"https://docs.python.org/2/library/re.html\">regular\n"
6430" expression filters</a> you specify below. If the message's\n"6430" expression filters</a> you specify below. If the message's\n"
6431" <code>Subject:</code> or <code>Keywords:</code> header contains "6431" <code>Subject:</code> or <code>Keywords:</code> header contains "
6432"a\n"6432"a\n"
@@ -8479,7 +8479,7 @@
8479"Complete\n"8479"Complete\n"
8480"specifications are at:\n"8480"specifications are at:\n"
8481"\n"8481"\n"
8482"http://docs.python.org/library/re.html\n"8482"https://docs.python.org/2/library/re.html\n"
8483"\n"8483"\n"
8484"Address matches are case-insensitive, but case-preserved addresses are\n"8484"Address matches are case-insensitive, but case-preserved addresses are\n"
8485"displayed.\n"8485"displayed.\n"
84868486
=== modified file 'messages/fi/LC_MESSAGES/mailman.po'
--- messages/fi/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/fi/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7003,7 +7003,7 @@
7003"\n"7003"\n"
7004" <p>In the text boxes below, add one address per line; start the\n"7004" <p>In the text boxes below, add one address per line; start the\n"
7005" line with a ^ character to designate a <a href=\n"7005" line with a ^ character to designate a <a href=\n"
7006" \"http://docs.python.org/library/re.html\"\n"7006" \"https://docs.python.org/2/library/re.html\"\n"
7007" >Python regular expression</a>. When entering backslashes, do "7007" >Python regular expression</a>. When entering backslashes, do "
7008"so\n"7008"so\n"
7009" as if you were using Python raw strings (i.e. you generally "7009" as if you were using Python raw strings (i.e. you generally "
@@ -7039,7 +7039,7 @@
7039"\n"7039"\n"
7040" <p>Alla olevissa tekstilaatikoissa, lisää yksi osoite riville;\n"7040" <p>Alla olevissa tekstilaatikoissa, lisää yksi osoite riville;\n"
7041" aloita rivi ^ merkillä, joka määrittelee <a href=\n"7041" aloita rivi ^ merkillä, joka määrittelee <a href=\n"
7042" \"http://docs.python.org/library/re.html\"\n"7042" \"https://docs.python.org/2/library/re.html\"\n"
7043" >Pythonin yleisen ilmaisun</a>. Jos kirjoitat takakeno- "7043" >Pythonin yleisen ilmaisun</a>. Jos kirjoitat takakeno- "
7044"viivoja\n"7044"viivoja\n"
7045" merkitse ne kuin käyttäisit Pythonin raakamerkkijonoa (esim. jos "7045" merkitse ne kuin käyttäisit Pythonin raakamerkkijonoa (esim. jos "
@@ -7838,7 +7838,7 @@
7838msgid ""7838msgid ""
7839"The topic filter categorizes each incoming email message\n"7839"The topic filter categorizes each incoming email message\n"
7840" according to <a\n"7840" according to <a\n"
7841" href=\"http://docs.python.org/library/re.html\">regular\n"7841" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7842" expression filters</a> you specify below. If the message's\n"7842" expression filters</a> you specify below. If the message's\n"
7843" <code>Subject:</code> or <code>Keywords:</code> header contains "7843" <code>Subject:</code> or <code>Keywords:</code> header contains "
7844"a\n"7844"a\n"
@@ -7862,7 +7862,7 @@
7862msgstr ""7862msgstr ""
7863"Aiheen suodattimet luokittelee jokaisen tulevan sähköpostin\n"7863"Aiheen suodattimet luokittelee jokaisen tulevan sähköpostin\n"
7864" <a\n"7864" <a\n"
7865" href=\"http://docs.python.org/library/re.html\">tavallisen\n"7865" href=\"https://docs.python.org/2/library/re.html\">tavallisen\n"
7866" ilmaisun suodattimen</a> mukaan kuten määrittelet alla. Jos\n"7866" ilmaisun suodattimen</a> mukaan kuten määrittelet alla. Jos\n"
7867" viestin <code>Aihe:</code> tai <code>Avainsanat:</code> kentät "7867" viestin <code>Aihe:</code> tai <code>Avainsanat:</code> kentät "
7868"täsmäävät\n"7868"täsmäävät\n"
@@ -10527,7 +10527,7 @@
10527"Complete\n"10527"Complete\n"
10528"specifications are at:\n"10528"specifications are at:\n"
10529"\n"10529"\n"
10530"http://docs.python.org/library/re.html\n"10530"https://docs.python.org/2/library/re.html\n"
10531"\n"10531"\n"
10532"Address matches are case-insensitive, but case-preserved addresses are\n"10532"Address matches are case-insensitive, but case-preserved addresses are\n"
10533"displayed.\n"10533"displayed.\n"
@@ -10568,7 +10568,7 @@
10568"Complete\n"10568"Complete\n"
10569"specifications are at:\n"10569"specifications are at:\n"
10570"\n"10570"\n"
10571"http://docs.python.org/library/re.html\n"10571"https://docs.python.org/2/library/re.html\n"
10572"\n"10572"\n"
10573"Address matches are case-insensitive, but case-preserved addresses are\n"10573"Address matches are case-insensitive, but case-preserved addresses are\n"
10574"displayed.\n"10574"displayed.\n"
1057510575
=== modified file 'messages/fr/LC_MESSAGES/mailman.po'
--- messages/fr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/fr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7057,7 +7057,7 @@
7057"\n"7057"\n"
7058" <p>In the text boxes below, add one address per line; start the\n"7058" <p>In the text boxes below, add one address per line; start the\n"
7059" line with a ^ character to designate a <a href=\n"7059" line with a ^ character to designate a <a href=\n"
7060" \"http://docs.python.org/library/re.html\"\n"7060" \"https://docs.python.org/2/library/re.html\"\n"
7061" >Python regular expression</a>. When entering backslashes, do "7061" >Python regular expression</a>. When entering backslashes, do "
7062"so\n"7062"so\n"
7063" as if you were using Python raw strings (i.e. you generally "7063" as if you were using Python raw strings (i.e. you generally "
@@ -7099,7 +7099,7 @@
7099" <p>Dans la zone de texte ci-dessous, ajouter une adresse par "7099" <p>Dans la zone de texte ci-dessous, ajouter une adresse par "
7100"ligne;\n"7100"ligne;\n"
7101" commencer la ligne avec le caractère ^ pour designer une <a\n"7101" commencer la ligne avec le caractère ^ pour designer une <a\n"
7102" href=\"http://docs.python.org/library/re.html\">expression\n"7102" href=\"https://docs.python.org/2/library/re.html\">expression\n"
7103" régulière Python</a>. Si vous utilisez des backslashs, faites-le "7103" régulière Python</a>. Si vous utilisez des backslashs, faites-le "
7104"comme\n"7104"comme\n"
7105" si vous utilisiez des chaînes Python brutes (i.e. en utilisant "7105" si vous utilisiez des chaînes Python brutes (i.e. en utilisant "
@@ -7922,7 +7922,7 @@
7922msgid ""7922msgid ""
7923"The topic filter categorizes each incoming email message\n"7923"The topic filter categorizes each incoming email message\n"
7924" according to <a\n"7924" according to <a\n"
7925" href=\"http://docs.python.org/library/re.html\">regular\n"7925" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7926" expression filters</a> you specify below. If the message's\n"7926" expression filters</a> you specify below. If the message's\n"
7927" <code>Subject:</code> or <code>Keywords:</code> header contains "7927" <code>Subject:</code> or <code>Keywords:</code> header contains "
7928"a\n"7928"a\n"
@@ -7946,7 +7946,7 @@
7946msgstr ""7946msgstr ""
7947"Le filtre de thème place chaque courriel qui arrive dans une catégorie\n"7947"Le filtre de thème place chaque courriel qui arrive dans une catégorie\n"
7948" sur la base <a\n"7948" sur la base <a\n"
7949" href=\"http://docs.python.org/library/re.html\">\n"7949" href=\"https://docs.python.org/2/library/re.html\">\n"
7950" des filtres d'expressions régulières</a> que vous avez définis "7950" des filtres d'expressions régulières</a> que vous avez définis "
7951"ci-dessous.\n"7951"ci-dessous.\n"
7952" Si l'en-tête <code>Objet:</code> ou <code>Mots Clés:</code> "7952" Si l'en-tête <code>Objet:</code> ou <code>Mots Clés:</code> "
@@ -10626,7 +10626,7 @@
10626"Complete\n"10626"Complete\n"
10627"specifications are at:\n"10627"specifications are at:\n"
10628"\n"10628"\n"
10629"http://docs.python.org/library/re.html\n"10629"https://docs.python.org/2/library/re.html\n"
10630"\n"10630"\n"
10631"Address matches are case-insensitive, but case-preserved addresses are\n"10631"Address matches are case-insensitive, but case-preserved addresses are\n"
10632"displayed.\n"10632"displayed.\n"
@@ -10665,7 +10665,7 @@
10665"utilisées. La syntaxe des expressions régulières est celle de Perl5\n"10665"utilisées. La syntaxe des expressions régulières est celle de Perl5\n"
10666"avec l'utilisation du module re de Python. Les spécifications\n"10666"avec l'utilisation du module re de Python. Les spécifications\n"
10667"complètes sont disponible à\n"10667"complètes sont disponible à\n"
10668"http://docs.python.org/library/re.html\n"10668"https://docs.python.org/2/library/re.html\n"
10669"\n"10669"\n"
10670"La comparaison des adresses se fait avec non respect de la casse tandis\n"10670"La comparaison des adresses se fait avec non respect de la casse tandis\n"
10671"que les résultats trouvés seront affichés avec leurs casses\n"10671"que les résultats trouvés seront affichés avec leurs casses\n"
1067210672
=== modified file 'messages/gl/LC_MESSAGES/mailman.po'
--- messages/gl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/gl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6840,7 +6840,7 @@
6840"\n"6840"\n"
6841" <p>In the text boxes below, add one address per line; start the\n"6841" <p>In the text boxes below, add one address per line; start the\n"
6842" line with a ^ character to designate a <a href=\n"6842" line with a ^ character to designate a <a href=\n"
6843" \"http://docs.python.org/library/re.html\"\n"6843" \"https://docs.python.org/2/library/re.html\"\n"
6844" >Python regular expression</a>. When entering backslashes, do "6844" >Python regular expression</a>. When entering backslashes, do "
6845"so\n"6845"so\n"
6846" as if you were using Python raw strings (i.e. you generally "6846" as if you were using Python raw strings (i.e. you generally "
@@ -6879,7 +6879,7 @@
6879" <p>Na caixa de texto de máis abaixo, engada un enderezo en cada "6879" <p>Na caixa de texto de máis abaixo, engada un enderezo en cada "
6880"liña, comece a liña\n"6880"liña, comece a liña\n"
6881" co carácter ^ para designar unha \n"6881" co carácter ^ para designar unha \n"
6882" <a href=\"http://docs.python.org/library/re.html\">\n"6882" <a href=\"https://docs.python.org/2/library/re.html\">\n"
6883" expresión regular de Python</a>. Cando inclúa barras inclinadas "6883" expresión regular de Python</a>. Cando inclúa barras inclinadas "
6884"de esquerda a dereita (\"\\\"),\n"6884"de esquerda a dereita (\"\\\"),\n"
6885" fágao como se estivese a empregar cadeas de Python en bruto "6885" fágao como se estivese a empregar cadeas de Python en bruto "
@@ -7630,7 +7630,7 @@
7630msgid ""7630msgid ""
7631"The topic filter categorizes each incoming email message\n"7631"The topic filter categorizes each incoming email message\n"
7632" according to <a\n"7632" according to <a\n"
7633" href=\"http://docs.python.org/library/re.html\">regular\n"7633" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7634" expression filters</a> you specify below. If the message's\n"7634" expression filters</a> you specify below. If the message's\n"
7635" <code>Subject:</code> or <code>Keywords:</code> header contains "7635" <code>Subject:</code> or <code>Keywords:</code> header contains "
7636"a\n"7636"a\n"
@@ -7653,7 +7653,7 @@
7653" configuration variable."7653" configuration variable."
7654msgstr ""7654msgstr ""
7655"O filtro segundo o tema, clasifica cada mensaxe recibida\n"7655"O filtro segundo o tema, clasifica cada mensaxe recibida\n"
7656" segundo os <a href=\"http://docs.python.org/library/re.html\">\n"7656" segundo os <a href=\"https://docs.python.org/2/library/re.html\">\n"
7657" filtros de expresións regulares</a> que especifique abaixo. Se "7657" filtros de expresións regulares</a> que especifique abaixo. Se "
7658"as cabeceiras\n"7658"as cabeceiras\n"
7659" <code>Subject:</code> (asunto) ou <code>Keywords</code> "7659" <code>Subject:</code> (asunto) ou <code>Keywords</code> "
@@ -10229,7 +10229,7 @@
10229"Complete\n"10229"Complete\n"
10230"specifications are at:\n"10230"specifications are at:\n"
10231"\n"10231"\n"
10232"http://docs.python.org/library/re.html\n"10232"https://docs.python.org/2/library/re.html\n"
10233"\n"10233"\n"
10234"Address matches are case-insensitive, but case-preserved addresses are\n"10234"Address matches are case-insensitive, but case-preserved addresses are\n"
10235"displayed.\n"10235"displayed.\n"
@@ -10269,7 +10269,7 @@
10269"A sintaxe da expresión regular é ao estilo Perl5, usando o módulo Python "10269"A sintaxe da expresión regular é ao estilo Perl5, usando o módulo Python "
10270"re. As especificacións completas están en:\n"10270"re. As especificacións completas están en:\n"
10271"\n"10271"\n"
10272"http://docs.python.org/library/re.html\n"10272"https://docs.python.org/2/library/re.html\n"
10273"\n"10273"\n"
10274"Na busca de enderezos non se distinguen as maiúsculas das minúsculas mais \n"10274"Na busca de enderezos non se distinguen as maiúsculas das minúsculas mais \n"
10275"amósanse os enderezos tal e como se achan.\n"10275"amósanse os enderezos tal e como se achan.\n"
1027610276
=== modified file 'messages/he/LC_MESSAGES/mailman.po'
--- messages/he/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/he/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6675,7 +6675,7 @@
6675"\n"6675"\n"
6676" <p>In the text boxes below, add one address per line; start the\n"6676" <p>In the text boxes below, add one address per line; start the\n"
6677" line with a ^ character to designate a <a href=\n"6677" line with a ^ character to designate a <a href=\n"
6678" \"http://docs.python.org/library/re.html\"\n"6678" \"https://docs.python.org/2/library/re.html\"\n"
6679" >Python regular expression</a>. When entering backslashes, do "6679" >Python regular expression</a>. When entering backslashes, do "
6680"so\n"6680"so\n"
6681" as if you were using Python raw strings (i.e. you generally "6681" as if you were using Python raw strings (i.e. you generally "
@@ -7452,7 +7452,7 @@
7452msgid ""7452msgid ""
7453"The topic filter categorizes each incoming email message\n"7453"The topic filter categorizes each incoming email message\n"
7454" according to <a\n"7454" according to <a\n"
7455" href=\"http://docs.python.org/library/re.html\">regular\n"7455" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7456" expression filters</a> you specify below. If the message's\n"7456" expression filters</a> you specify below. If the message's\n"
7457" <code>Subject:</code> or <code>Keywords:</code> header contains "7457" <code>Subject:</code> or <code>Keywords:</code> header contains "
7458"a\n"7458"a\n"
@@ -7475,7 +7475,7 @@
7475" configuration variable."7475" configuration variable."
7476msgstr ""7476msgstr ""
7477"מסנן הנוש�י� מ�פיין כל מסר דו�\"ל שנכנס בהת�� ל\n"7477"מסנן הנוש�י� מ�פיין כל מסר דו�\"ל שנכנס בהת�� ל\n"
7478" <a href=\"http://docs.python.org/library/re.html\">\n"7478" <a href=\"https://docs.python.org/2/library/re.html\">\n"
7479" מסנני ביטוי� רגולריי�</a> ש�תה מגדיר למטה. �� כותרת ה-"7479" מסנני ביטוי� רגולריי�</a> ש�תה מגדיר למטה. �� כותרת ה-"
7480"<code>נוש�:</code>\n"7480"<code>נוש�:</code>\n"
7481" �ו <code>מלות-המפתח:</code> מכילה הת�מה מול מסנן נוש�, המסר "7481" �ו <code>מלות-המפתח:</code> מכילה הת�מה מול מסנן נוש�, המסר "
@@ -10037,7 +10037,7 @@
10037"Complete\n"10037"Complete\n"
10038"specifications are at:\n"10038"specifications are at:\n"
10039"\n"10039"\n"
10040"http://docs.python.org/library/re.html\n"10040"https://docs.python.org/2/library/re.html\n"
10041"\n"10041"\n"
10042"Address matches are case-insensitive, but case-preserved addresses are\n"10042"Address matches are case-insensitive, but case-preserved addresses are\n"
10043"displayed.\n"10043"displayed.\n"
@@ -10077,7 +10077,7 @@
10077"התחביר של הביטיי� הרגולריי� דומה לתחביר של Perl5, ב�מצעות מודול ה-re של "10077"התחביר של הביטיי� הרגולריי� דומה לתחביר של Perl5, ב�מצעות מודול ה-re של "
10078"Python.\n"10078"Python.\n"
10079"ניתן למצ�ו הגדרה מל�ה ב-:\n"10079"ניתן למצ�ו הגדרה מל�ה ב-:\n"
10080"http://docs.python.org/library/re.html\n"10080"https://docs.python.org/2/library/re.html\n"
10081"\n"10081"\n"
10082"הת�מה של כתובות �ינה רגישה לר�שיות התווי�, �ך הכתובות מוצגות ע� שמירה על "10082"הת�מה של כתובות �ינה רגישה לר�שיות התווי�, �ך הכתובות מוצגות ע� שמירה על "
10083"ר�שיות.\n"10083"ר�שיות.\n"
1008410084
=== modified file 'messages/hr/LC_MESSAGES/mailman.po'
--- messages/hr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/hr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7018,7 +7018,7 @@
7018"\n"7018"\n"
7019" <p>In the text boxes below, add one address per line; start the\n"7019" <p>In the text boxes below, add one address per line; start the\n"
7020" line with a ^ character to designate a <a href=\n"7020" line with a ^ character to designate a <a href=\n"
7021" \"http://docs.python.org/library/re.html\"\n"7021" \"https://docs.python.org/2/library/re.html\"\n"
7022" >Python regular expression</a>. When entering backslashes, do "7022" >Python regular expression</a>. When entering backslashes, do "
7023"so\n"7023"so\n"
7024" as if you were using Python raw strings (i.e. you generally "7024" as if you were using Python raw strings (i.e. you generally "
@@ -7060,7 +7060,7 @@
7060" <p>U donjim tekst poljima, dodajte jednu adresu po liniji; "7060" <p>U donjim tekst poljima, dodajte jednu adresu po liniji; "
7061"zapoènite liniju\n"7061"zapoènite liniju\n"
7062" sa ^ znakom da biste konstruirali <a href=\n"7062" sa ^ znakom da biste konstruirali <a href=\n"
7063" \"http://docs.python.org/library/re.html\"\n"7063" \"https://docs.python.org/2/library/re.html\"\n"
7064" >Python regular expression</a>. Kada koristite kosu crtu, "7064" >Python regular expression</a>. Kada koristite kosu crtu, "
7065"unesite je kao da\n"7065"unesite je kao da\n"
7066" unosite obièan Python tekst (npr. samo jednu kosu crtu)\n"7066" unosite obièan Python tekst (npr. samo jednu kosu crtu)\n"
@@ -7835,7 +7835,7 @@
7835msgid ""7835msgid ""
7836"The topic filter categorizes each incoming email message\n"7836"The topic filter categorizes each incoming email message\n"
7837" according to <a\n"7837" according to <a\n"
7838" href=\"http://docs.python.org/library/re.html\">regular\n"7838" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7839" expression filters</a> you specify below. If the message's\n"7839" expression filters</a> you specify below. If the message's\n"
7840" <code>Subject:</code> or <code>Keywords:</code> header contains "7840" <code>Subject:</code> or <code>Keywords:</code> header contains "
7841"a\n"7841"a\n"
@@ -7859,7 +7859,7 @@
7859msgstr ""7859msgstr ""
7860"Filter naslova kategorizira svaku dolaznu e-mail poruku\n"7860"Filter naslova kategorizira svaku dolaznu e-mail poruku\n"
7861" sukladno <a\n"7861" sukladno <a\n"
7862" href=\"http://docs.python.org/library/re.html\">regular\n"7862" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7863" expression filterima</a> koje navodite dolje. Ako\n"7863" expression filterima</a> koje navodite dolje. Ako\n"
7864" <code>Subject:</code> ili <code>Keywords:</code> zaglavlja "7864" <code>Subject:</code> ili <code>Keywords:</code> zaglavlja "
7865"poruke\n"7865"poruke\n"
@@ -10129,7 +10129,7 @@
10129"Complete\n"10129"Complete\n"
10130"specifications are at:\n"10130"specifications are at:\n"
10131"\n"10131"\n"
10132"http://docs.python.org/library/re.html\n"10132"https://docs.python.org/2/library/re.html\n"
10133"\n"10133"\n"
10134"Address matches are case-insensitive, but case-preserved addresses are\n"10134"Address matches are case-insensitive, but case-preserved addresses are\n"
10135"displayed.\n"10135"displayed.\n"
1013610136
=== modified file 'messages/hu/LC_MESSAGES/mailman.po'
--- messages/hu/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/hu/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6807,7 +6807,7 @@
6807"\n"6807"\n"
6808" <p>In the text boxes below, add one address per line; start the\n"6808" <p>In the text boxes below, add one address per line; start the\n"
6809" line with a ^ character to designate a <a href=\n"6809" line with a ^ character to designate a <a href=\n"
6810" \"http://docs.python.org/library/re.html\"\n"6810" \"https://docs.python.org/2/library/re.html\"\n"
6811" >Python regular expression</a>. When entering backslashes, do "6811" >Python regular expression</a>. When entering backslashes, do "
6812"so\n"6812"so\n"
6813" as if you were using Python raw strings (i.e. you generally "6813" as if you were using Python raw strings (i.e. you generally "
@@ -6844,7 +6844,7 @@
6844"külsõ\n"6844"külsõ\n"
6845"beküldési szabályok</a> lesznek érvényesek.\n"6845"beküldési szabályok</a> lesznek érvényesek.\n"
6846"<p>A szövegdobozban soronként egy címet adjunk meg; a <a href=\n"6846"<p>A szövegdobozban soronként egy címet adjunk meg; a <a href=\n"
6847" \"http://docs.python.org/library/re.html\"\n"6847" \"https://docs.python.org/2/library/re.html\"\n"
6848">Python reguláris kifejezések</a> jelölésére a sorokat ^ jellel kezdjük. "6848">Python reguláris kifejezések</a> jelölésére a sorokat ^ jellel kezdjük. "
6849"Backslasht (\"\\\") mint egy hagyományos\n"6849"Backslasht (\"\\\") mint egy hagyományos\n"
6850"karaktert adhatunk meg, úgy ahogy a Pythonban karakternél szokásos (ez "6850"karaktert adhatunk meg, úgy ahogy a Pythonban karakternél szokásos (ez "
@@ -7602,7 +7602,7 @@
7602msgid ""7602msgid ""
7603"The topic filter categorizes each incoming email message\n"7603"The topic filter categorizes each incoming email message\n"
7604" according to <a\n"7604" according to <a\n"
7605" href=\"http://docs.python.org/library/re.html\">regular\n"7605" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7606" expression filters</a> you specify below. If the message's\n"7606" expression filters</a> you specify below. If the message's\n"
7607" <code>Subject:</code> or <code>Keywords:</code> header contains "7607" <code>Subject:</code> or <code>Keywords:</code> header contains "
7608"a\n"7608"a\n"
@@ -7626,7 +7626,7 @@
7626msgstr ""7626msgstr ""
7627"A témaszûrõ minden egyes bejövõ levelet megvizsgál a késõbbiekben megadott "7627"A témaszûrõ minden egyes bejövõ levelet megvizsgál a késõbbiekben megadott "
7628"<a\n"7628"<a\n"
7629"href=\"http://docs.python.org/library/re.html\">reguláris\n"7629"href=\"https://docs.python.org/2/library/re.html\">reguláris\n"
7630"szûrõ kifejezések</a> alapján. Ha a levél <code>Subject:</code> vagy\n"7630"szûrõ kifejezések</a> alapján. Ha a levél <code>Subject:</code> vagy\n"
7631"\t<code>Keywords:</code> fejléce egyezést mutat valamelyik szûrési\n"7631"\t<code>Keywords:</code> fejléce egyezést mutat valamelyik szûrési\n"
7632"\tfeltétellel, akkor az üzenet egy ún. téma <em>tárolóba</em> kerül.\n"7632"\tfeltétellel, akkor az üzenet egy ún. téma <em>tárolóba</em> kerül.\n"
@@ -10218,7 +10218,7 @@
10218"Complete\n"10218"Complete\n"
10219"specifications are at:\n"10219"specifications are at:\n"
10220"\n"10220"\n"
10221"http://docs.python.org/library/re.html\n"10221"https://docs.python.org/2/library/re.html\n"
10222"\n"10222"\n"
10223"Address matches are case-insensitive, but case-preserved addresses are\n"10223"Address matches are case-insensitive, but case-preserved addresses are\n"
10224"displayed.\n"10224"displayed.\n"
@@ -10256,7 +10256,7 @@
10256"\n"10256"\n"
10257"A hagyományos kifejezésinek Perl5-típusúnak kell lennie, a keresést a\n"10257"A hagyományos kifejezésinek Perl5-típusúnak kell lennie, a keresést a\n"
10258"Python re modulja végzi. Részletes leírása a következõ címen található:\n"10258"Python re modulja végzi. Részletes leírása a következõ címen található:\n"
10259"http://docs.python.org/library/re.html\n"10259"https://docs.python.org/2/library/re.html\n"
10260"\n"10260"\n"
10261"Keresésnél a kis- és nagybetûk nem számítanak, de a talált címek a\n"10261"Keresésnél a kis- és nagybetûk nem számítanak, de a talált címek a\n"
10262"feliratkozáskor megadott formában jelennek meg.\n"10262"feliratkozáskor megadott formában jelennek meg.\n"
1026310263
=== modified file 'messages/ia/LC_MESSAGES/mailman.po'
--- messages/ia/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ia/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7071,7 +7071,7 @@
7071"\n"7071"\n"
7072" <p>In the text boxes below, add one address per line; start the\n"7072" <p>In the text boxes below, add one address per line; start the\n"
7073" line with a ^ character to designate a <a href=\n"7073" line with a ^ character to designate a <a href=\n"
7074" \"http://docs.python.org/library/re.html\"\n"7074" \"https://docs.python.org/2/library/re.html\"\n"
7075" >Python regular expression</a>. When entering backslashes, do "7075" >Python regular expression</a>. When entering backslashes, do "
7076"so\n"7076"so\n"
7077" as if you were using Python raw strings (i.e. you generally "7077" as if you were using Python raw strings (i.e. you generally "
@@ -7110,7 +7110,7 @@
7110" <p>In le cassas textual infra, adde un adresse per linea; "7110" <p>In le cassas textual infra, adde un adresse per linea; "
7111"comencia le\n"7111"comencia le\n"
7112" linea con un signo ^ pro designar un <a href=\n"7112" linea con un signo ^ pro designar un <a href=\n"
7113" \"http://docs.python.org/library/re.html\"\n"7113" \"https://docs.python.org/2/library/re.html\"\n"
7114" >expression Python regular</a>. Scribe barras inverse como si\n"7114" >expression Python regular</a>. Scribe barras inverse como si\n"
7115" usar catenas rude de Python (i.e. on generalmente usa\n"7115" usar catenas rude de Python (i.e. on generalmente usa\n"
7116" solmente un singule barra inverse).\n"7116" solmente un singule barra inverse).\n"
@@ -7902,7 +7902,7 @@
7902msgid ""7902msgid ""
7903"The topic filter categorizes each incoming email message\n"7903"The topic filter categorizes each incoming email message\n"
7904" according to <a\n"7904" according to <a\n"
7905" href=\"http://docs.python.org/library/re.html\">regular\n"7905" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7906" expression filters</a> you specify below. If the message's\n"7906" expression filters</a> you specify below. If the message's\n"
7907" <code>Subject:</code> or <code>Keywords:</code> header contains "7907" <code>Subject:</code> or <code>Keywords:</code> header contains "
7908"a\n"7908"a\n"
@@ -7926,7 +7926,7 @@
7926msgstr ""7926msgstr ""
7927"Le filtro de themas categorisa cata message entrante in\n"7927"Le filtro de themas categorisa cata message entrante in\n"
7928" base a <a\n"7928" base a <a\n"
7929" href=\"http://docs.python.org/library/re.html\">filtros\n"7929" href=\"https://docs.python.org/2/library/re.html\">filtros\n"
7930" con expressiones regular</a> que tu scribe infra. Si le "7930" con expressiones regular</a> que tu scribe infra. Si le "
7931"capite\n"7931"capite\n"
7932" <code>Subject:</code> o <code>Keywords:</code> del message\n"7932" <code>Subject:</code> o <code>Keywords:</code> del message\n"
@@ -10193,7 +10193,7 @@
10193"Complete\n"10193"Complete\n"
10194"specifications are at:\n"10194"specifications are at:\n"
10195"\n"10195"\n"
10196"http://docs.python.org/library/re.html\n"10196"https://docs.python.org/2/library/re.html\n"
10197"\n"10197"\n"
10198"Address matches are case-insensitive, but case-preserved addresses are\n"10198"Address matches are case-insensitive, but case-preserved addresses are\n"
10199"displayed.\n"10199"displayed.\n"
1020010200
=== modified file 'messages/it/LC_MESSAGES/mailman.po'
--- messages/it/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/it/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7405,7 +7405,7 @@
7405"\n"7405"\n"
7406" <p>In the text boxes below, add one address per line; start the\n"7406" <p>In the text boxes below, add one address per line; start the\n"
7407" line with a ^ character to designate a <a href=\n"7407" line with a ^ character to designate a <a href=\n"
7408" \"http://docs.python.org/library/re.html\"\n"7408" \"https://docs.python.org/2/library/re.html\"\n"
7409" >Python regular expression</a>. When entering backslashes, do "7409" >Python regular expression</a>. When entering backslashes, do "
7410"so\n"7410"so\n"
7411" as if you were using Python raw strings (i.e. you generally "7411" as if you were using Python raw strings (i.e. you generally "
@@ -7443,7 +7443,7 @@
7443"\n"7443"\n"
7444" <p>Nei campi sottostanti aggiungi un indirizzo per riga; \n"7444" <p>Nei campi sottostanti aggiungi un indirizzo per riga; \n"
7445" inizia la riga con un carattere ^ per indicare una\n"7445" inizia la riga con un carattere ^ per indicare una\n"
7446" <a href=\"http://docs.python.org/library/re.html\"\n"7446" <a href=\"https://docs.python.org/2/library/re.html\"\n"
7447" >Espressione regolare Python</a>. Quando inserisci "7447" >Espressione regolare Python</a>. Quando inserisci "
7448"backslash,\n"7448"backslash,\n"
7449" fallo come se stessi inserendo stringhe grezze Python (ad \n"7449" fallo come se stessi inserendo stringhe grezze Python (ad \n"
@@ -8256,7 +8256,7 @@
8256msgid ""8256msgid ""
8257"The topic filter categorizes each incoming email message\n"8257"The topic filter categorizes each incoming email message\n"
8258" according to <a\n"8258" according to <a\n"
8259" href=\"http://docs.python.org/library/re.html\">regular\n"8259" href=\"https://docs.python.org/2/library/re.html\">regular\n"
8260" expression filters</a> you specify below. If the message's\n"8260" expression filters</a> you specify below. If the message's\n"
8261" <code>Subject:</code> or <code>Keywords:</code> header contains "8261" <code>Subject:</code> or <code>Keywords:</code> header contains "
8262"a\n"8262"a\n"
@@ -8280,7 +8280,7 @@
8280msgstr ""8280msgstr ""
8281"Il filtro per argomenti categorizza ogni messaggio entrante\n"8281"Il filtro per argomenti categorizza ogni messaggio entrante\n"
8282" in base a\n"8282" in base a\n"
8283"<a href=\"http://docs.python.org/library/re.html\">\n"8283"<a href=\"https://docs.python.org/2/library/re.html\">\n"
8284" espressioni regolari</a> che puoi specificare pi&ugrave;\n"8284" espressioni regolari</a> che puoi specificare pi&ugrave;\n"
8285" in basso. Se i campi <code>Subject:</code> oppure\n"8285" in basso. Se i campi <code>Subject:</code> oppure\n"
8286" <code>Keywords:</code> nel messaggio contengono parole\n"8286" <code>Keywords:</code> nel messaggio contengono parole\n"
@@ -11028,7 +11028,7 @@
11028"Complete\n"11028"Complete\n"
11029"specifications are at:\n"11029"specifications are at:\n"
11030"\n"11030"\n"
11031"http://docs.python.org/library/re.html\n"11031"https://docs.python.org/2/library/re.html\n"
11032"\n"11032"\n"
11033"Address matches are case-insensitive, but case-preserved addresses are\n"11033"Address matches are case-insensitive, but case-preserved addresses are\n"
11034"displayed.\n"11034"displayed.\n"
@@ -11069,7 +11069,7 @@
11069"usando il modulo Python re. La specifica completa si può trovare\n"11069"usando il modulo Python re. La specifica completa si può trovare\n"
11070"all'indirizzo:\n"11070"all'indirizzo:\n"
11071"\n"11071"\n"
11072"http://docs.python.org/library/re.html\n"11072"https://docs.python.org/2/library/re.html\n"
11073"\n"11073"\n"
11074"La ricerca degli indirizzi è non sensibile a maiuscole/minuscole\n"11074"La ricerca degli indirizzi è non sensibile a maiuscole/minuscole\n"
11075"ma vengono mostrati gli indirizzi senza alterazioni.\n"11075"ma vengono mostrati gli indirizzi senza alterazioni.\n"
1107611076
=== modified file 'messages/ja/LC_MESSAGES/mailman.po'
--- messages/ja/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ja/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6632,7 +6632,7 @@
6632"\n"6632"\n"
6633" <p>In the text boxes below, add one address per line; start the\n"6633" <p>In the text boxes below, add one address per line; start the\n"
6634" line with a ^ character to designate a <a href=\n"6634" line with a ^ character to designate a <a href=\n"
6635" \"http://docs.python.org/library/re.html\"\n"6635" \"https://docs.python.org/2/library/re.html\"\n"
6636" >Python regular expression</a>. When entering backslashes, do "6636" >Python regular expression</a>. When entering backslashes, do "
6637"so\n"6637"so\n"
6638" as if you were using Python raw strings (i.e. you generally "6638" as if you were using Python raw strings (i.e. you generally "
@@ -6661,7 +6661,7 @@
6661"Èó²ñ°÷¤ËÂФ¹¤ëµ¬Â§</a>¤Ë½¾¤Ã¤Æ¤Õ¤ë¤¤¤Ë¤«¤±¤é¤ì¤Þ¤¹.\n"6661"Èó²ñ°÷¤ËÂФ¹¤ëµ¬Â§</a>¤Ë½¾¤Ã¤Æ¤Õ¤ë¤¤¤Ë¤«¤±¤é¤ì¤Þ¤¹.\n"
6662"<p>²¼¤Î¥Æ¥­¥¹¥È¥Ü¥Ã¥¯¥¹¤Ç, 1¹Ô¤Ë1¤Ä¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤òÅÐÏ¿¤Ç¤­¤Þ¤¹;\n"6662"<p>²¼¤Î¥Æ¥­¥¹¥È¥Ü¥Ã¥¯¥¹¤Ç, 1¹Ô¤Ë1¤Ä¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤òÅÐÏ¿¤Ç¤­¤Þ¤¹;\n"
6663"¹Ô¤ÎºÇ½é¤Ë ^ ¤òµ­½Ò¤¹¤ë¤È\n"6663"¹Ô¤ÎºÇ½é¤Ë ^ ¤òµ­½Ò¤¹¤ë¤È\n"
6664"<a href=\"http://docs.python.org/library/re.html\">Python¤Î\n"6664"<a href=\"https://docs.python.org/2/library/re.html\">Python¤Î\n"
6665"Àµµ¬É½¸½</a>¤Ë¤Ê¤ê¤Þ¤¹. \n"6665"Àµµ¬É½¸½</a>¤Ë¤Ê¤ê¤Þ¤¹. \n"
6666"¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤Ï, Python ¤Î raw stringµ­Ë¡¤Î¤ä¤ê¤«¤¿¤Ç\n"6666"¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤Ï, Python ¤Î raw stringµ­Ë¡¤Î¤ä¤ê¤«¤¿¤Ç\n"
6667"ÆþÎϤ·¤Æ¤¯¤À¤µ¤¤. (¤Ä¤Þ¤ê, ñ¤Ë1¤Ä¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤òÆþ¤ì¤ë¤À¤±¤Ç¤¹)\n"6667"ÆþÎϤ·¤Æ¤¯¤À¤µ¤¤. (¤Ä¤Þ¤ê, ñ¤Ë1¤Ä¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤òÆþ¤ì¤ë¤À¤±¤Ç¤¹)\n"
@@ -7486,7 +7486,7 @@
7486msgid ""7486msgid ""
7487"The topic filter categorizes each incoming email message\n"7487"The topic filter categorizes each incoming email message\n"
7488" according to <a\n"7488" according to <a\n"
7489" href=\"http://docs.python.org/library/re.html\">regular\n"7489" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7490" expression filters</a> you specify below. If the message's\n"7490" expression filters</a> you specify below. If the message's\n"
7491" <code>Subject:</code> or <code>Keywords:</code> header contains "7491" <code>Subject:</code> or <code>Keywords:</code> header contains "
7492"a\n"7492"a\n"
@@ -7509,7 +7509,7 @@
7509" configuration variable."7509" configuration variable."
7510msgstr ""7510msgstr ""
7511"ÏÃÂê¥Õ¥£¥ë¥¿¤Ï, °Ê²¼¤ËÄêµÁ¤¹¤ë\n"7511"ÏÃÂê¥Õ¥£¥ë¥¿¤Ï, °Ê²¼¤ËÄêµÁ¤¹¤ë\n"
7512"<a href=\"http://docs.python.org/library/re.html\">Àµµ¬É½¸½\n"7512"<a href=\"https://docs.python.org/2/library/re.html\">Àµµ¬É½¸½\n"
7513"¥Õ¥£¥ë¥¿</a> ¤ÇÅê¹Æ¤µ¤ì¤¿¥á¡¼¥ë¤òʬÎष¤Þ¤¹.\n"7513"¥Õ¥£¥ë¥¿</a> ¤ÇÅê¹Æ¤µ¤ì¤¿¥á¡¼¥ë¤òʬÎष¤Þ¤¹.\n"
7514"¥á¡¼¥ë¤Î <code>Subject:</code> ¤« <code>Keywords:</code> ¥Ø¥Ã¥À¤¬\n"7514"¥á¡¼¥ë¤Î <code>Subject:</code> ¤« <code>Keywords:</code> ¥Ø¥Ã¥À¤¬\n"
7515"ÏÃÂê¥Õ¥£¥ë¥¿¤ËŬ¹ç¤·¤¿¥á¡¼¥ë¤Ï, ÏÃÂꤴ¤È¤Ëºî¤é¤ì¤¿<em>¥Ð¥¹¥±¥Ã¥È</em>\n"7515"ÏÃÂê¥Õ¥£¥ë¥¿¤ËŬ¹ç¤·¤¿¥á¡¼¥ë¤Ï, ÏÃÂꤴ¤È¤Ëºî¤é¤ì¤¿<em>¥Ð¥¹¥±¥Ã¥È</em>\n"
@@ -10082,7 +10082,7 @@
10082"Complete\n"10082"Complete\n"
10083"specifications are at:\n"10083"specifications are at:\n"
10084"\n"10084"\n"
10085"http://docs.python.org/library/re.html\n"10085"https://docs.python.org/2/library/re.html\n"
10086"\n"10086"\n"
10087"Address matches are case-insensitive, but case-preserved addresses are\n"10087"Address matches are case-insensitive, but case-preserved addresses are\n"
10088"displayed.\n"10088"displayed.\n"
@@ -10121,7 +10121,7 @@
10121"Àµµ¬É½¸½¤Ï Perl5 ¤Ë»÷¤Æ¤¤¤ë¤¬, Python ¤Î re ¥â¥¸¥å¡¼¥ë¤ò»È¤¦. re\n"10121"Àµµ¬É½¸½¤Ï Perl5 ¤Ë»÷¤Æ¤¤¤ë¤¬, Python ¤Î re ¥â¥¸¥å¡¼¥ë¤ò»È¤¦. re\n"
10122"¥â¥¸¥å¡¼¥ë¤Î»ÅÍͤϰʲ¼¤Î¥Ú¡¼¥¸¤Ë¤¢¤ë:\n"10122"¥â¥¸¥å¡¼¥ë¤Î»ÅÍͤϰʲ¼¤Î¥Ú¡¼¥¸¤Ë¤¢¤ë:\n"
10123"\n"10123"\n"
10124"http://docs.python.org/library/re.html\n"10124"https://docs.python.org/2/library/re.html\n"
10125"\n"10125"\n"
10126"¥á¡¼¥ë¥¢¥É¥ì¥¹¤ÏÂçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤ò¤»¤º¤Ë¸¡º÷¤¹¤ë¤¬, ·ë²Ì¤Îɽ¼¨¤Ï\n"10126"¥á¡¼¥ë¥¢¥É¥ì¥¹¤ÏÂçʸ»ú¾®Ê¸»ú¤Î¶èÊ̤ò¤»¤º¤Ë¸¡º÷¤¹¤ë¤¬, ·ë²Ì¤Îɽ¼¨¤Ï\n"
10127"Âçʸ»ú¤ò´Þ¤ó¤À·Á¤Ç¹Ô¤ï¤ì¤ë.\n"10127"Âçʸ»ú¤ò´Þ¤ó¤À·Á¤Ç¹Ô¤ï¤ì¤ë.\n"
1012810128
=== modified file 'messages/ko/LC_MESSAGES/mailman.po'
--- messages/ko/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ko/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6269,7 +6269,7 @@
6269"\n"6269"\n"
6270" <p>In the text boxes below, add one address per line; start the\n"6270" <p>In the text boxes below, add one address per line; start the\n"
6271" line with a ^ character to designate a <a href=\n"6271" line with a ^ character to designate a <a href=\n"
6272" \"http://docs.python.org/library/re.html\"\n"6272" \"https://docs.python.org/2/library/re.html\"\n"
6273" >Python regular expression</a>. When entering backslashes, do "6273" >Python regular expression</a>. When entering backslashes, do "
6274"so\n"6274"so\n"
6275" as if you were using Python raw strings (i.e. you generally "6275" as if you were using Python raw strings (i.e. you generally "
@@ -6294,7 +6294,7 @@
6294"°ÅÀýµÇ°Å³ª, ȤÀº ¹ö·ÁÁý´Ï´Ù.\n"6294"°ÅÀýµÇ°Å³ª, ȤÀº ¹ö·ÁÁý´Ï´Ù.\n"
6295"\n"6295"\n"
6296"<p> ¾Æ·¡ÀÇ ÅؽºÆ® ¹Ú½º¿¡¼­ ÁÙ(line)¸¶´Ù ÇϳªÀÇ ÁÖ¼Ò¸¦ ³ÖÀ» ¼ö ÀÖÀ¸¸ç ^ ¹®ÀÚ"6296"<p> ¾Æ·¡ÀÇ ÅؽºÆ® ¹Ú½º¿¡¼­ ÁÙ(line)¸¶´Ù ÇϳªÀÇ ÁÖ¼Ò¸¦ ³ÖÀ» ¼ö ÀÖÀ¸¸ç ^ ¹®ÀÚ"
6297"·Î ½ÃÀÛÇÏ´Â ÁÙÀº <a href=\"http://docs.python.org/library/re.html\">Python Á¤"6297"·Î ½ÃÀÛÇÏ´Â ÁÙÀº <a href=\"https://docs.python.org/2/library/re.html\">Python Á¤"
6298"±Ô Ç¥Çö½Ä</a>À» ³ªÅ¸³À´Ï´Ù. ¹é½½·¡½¬¸¦ ³ÖÀ½À¸·Î½á Python ÀÇ raw ¹®ÀÚ¿­À» »ç¿ë"6298"±Ô Ç¥Çö½Ä</a>À» ³ªÅ¸³À´Ï´Ù. ¹é½½·¡½¬¸¦ ³ÖÀ½À¸·Î½á Python ÀÇ raw ¹®ÀÚ¿­À» »ç¿ë"
6299"ÇÒ ¼ö ÀÖ½À´Ï´Ù.(¿¹¸¦ µé¾î ´ç½ÅÀº ÀϹÝÀûÀ¸·Î ÇϳªÀÇ ¹é½½·¡½¬¸¦ »ç¿ëÇÕ´Ï´Ù.)<p>"6299"ÇÒ ¼ö ÀÖ½À´Ï´Ù.(¿¹¸¦ µé¾î ´ç½ÅÀº ÀϹÝÀûÀ¸·Î ÇϳªÀÇ ¹é½½·¡½¬¸¦ »ç¿ëÇÕ´Ï´Ù.)<p>"
6300"ºñÁ¤±Ô½Ä ÆÐÅÏÀÌ Ç×»ó óÀ½¿¡ ¿Àµµ·Ï ÇϽʽÿÀ."6300"ºñÁ¤±Ô½Ä ÆÐÅÏÀÌ Ç×»ó óÀ½¿¡ ¿Àµµ·Ï ÇϽʽÿÀ."
@@ -6976,7 +6976,7 @@
6976msgid ""6976msgid ""
6977"The topic filter categorizes each incoming email message\n"6977"The topic filter categorizes each incoming email message\n"
6978" according to <a\n"6978" according to <a\n"
6979" href=\"http://docs.python.org/library/re.html\">regular\n"6979" href=\"https://docs.python.org/2/library/re.html\">regular\n"
6980" expression filters</a> you specify below. If the message's\n"6980" expression filters</a> you specify below. If the message's\n"
6981" <code>Subject:</code> or <code>Keywords:</code> header contains "6981" <code>Subject:</code> or <code>Keywords:</code> header contains "
6982"a\n"6982"a\n"
@@ -6998,7 +6998,7 @@
6998"\">topics_bodylines_limit</a>\n"6998"\">topics_bodylines_limit</a>\n"
6999" configuration variable."6999" configuration variable."
7000msgstr ""7000msgstr ""
7001"ÁÖÁ¦ °É·¯³»±â´Â ´ç½ÅÀÌ ¾Æ·¡¿¡¼­ Á¤ÇÑ href=\"http://docs.python.org/library/"7001"ÁÖÁ¦ °É·¯³»±â´Â ´ç½ÅÀÌ ¾Æ·¡¿¡¼­ Á¤ÇÑ href=\"https://docs.python.org/2/library/"
7002"re.html\">Á¤±Ô Ç¥Çö½Ä - °É·¯³»±â</a>¿¡ µû¶ó µé¾î¿À´Â E¸ÞÀÏ ¸Þ¼¼¸¦ ºÐ·ùÇÒ ¼ö "7002"re.html\">Á¤±Ô Ç¥Çö½Ä - °É·¯³»±â</a>¿¡ µû¶ó µé¾î¿À´Â E¸ÞÀÏ ¸Þ¼¼¸¦ ºÐ·ùÇÒ ¼ö "
7003"ÀÖ½À´Ï´Ù. ¸¸¾à ¸Þ¼¼ÁöÀÇ Çì´õ <code>Á¦¸ñ:</code> ȤÀº <code>Å°¿öµå:</code>°¡ "7003"ÀÖ½À´Ï´Ù. ¸¸¾à ¸Þ¼¼ÁöÀÇ Çì´õ <code>Á¦¸ñ:</code> ȤÀº <code>Å°¿öµå:</code>°¡ "
7004"°É·¯³»±â ³»¿ë°ú ¸Â°Ô µÇ¸é ¸Þ¼¼Áö´Â ³í¸®ÀûÀ¸·Î ÁÖÁ¦ <em>¼ÒÄí¸®(¿ªÀÚ ÁÖ: ¹Ù±¸"7004"°É·¯³»±â ³»¿ë°ú ¸Â°Ô µÇ¸é ¸Þ¼¼Áö´Â ³í¸®ÀûÀ¸·Î ÁÖÁ¦ <em>¼ÒÄí¸®(¿ªÀÚ ÁÖ: ¹Ù±¸"
@@ -9132,7 +9132,7 @@
9132"Complete\n"9132"Complete\n"
9133"specifications are at:\n"9133"specifications are at:\n"
9134"\n"9134"\n"
9135"http://docs.python.org/library/re.html\n"9135"https://docs.python.org/2/library/re.html\n"
9136"\n"9136"\n"
9137"Address matches are case-insensitive, but case-preserved addresses are\n"9137"Address matches are case-insensitive, but case-preserved addresses are\n"
9138"displayed.\n"9138"displayed.\n"
@@ -11352,11 +11352,11 @@
1135211352
11353#~ msgid ""11353#~ msgid ""
11354#~ "<li>Find members by\n"11354#~ "<li>Find members by\n"
11355#~ " <a href=\"http://docs.python.org/library/re.html#regular-"11355#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
11356#~ "expression-syntax\"\n"11356#~ "expression-syntax\"\n"
11357#~ " >Python regular expression</a> (<em>regexp</em>)<br>"11357#~ " >Python regular expression</a> (<em>regexp</em>)<br>"
11358#~ msgstr ""11358#~ msgstr ""
11359#~ "<li><a href=\"http://docs.python.org/library/re.html#regular-expression-"11359#~ "<li><a href=\"https://docs.python.org/2/library/re.html#regular-expression-"
11360#~ "syntax\">\n"11360#~ "syntax\">\n"
11361#~ "Python Á¤±Ô Ç¥Çö½Ä</a> (<em>regexp</em>)·Î ȸ¿ø ã±â<br>"11361#~ "Python Á¤±Ô Ç¥Çö½Ä</a> (<em>regexp</em>)·Î ȸ¿ø ã±â<br>"
1136211362
1136311363
=== modified file 'messages/lt/LC_MESSAGES/mailman.po'
--- messages/lt/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/lt/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -5915,7 +5915,7 @@
5915"\n"5915"\n"
5916" <p>In the text boxes below, add one address per line; start the\n"5916" <p>In the text boxes below, add one address per line; start the\n"
5917" line with a ^ character to designate a <a href=\n"5917" line with a ^ character to designate a <a href=\n"
5918" \"http://docs.python.org/library/re.html\"\n"5918" \"https://docs.python.org/2/library/re.html\"\n"
5919" >Python regular expression</a>. When entering backslashes, do "5919" >Python regular expression</a>. When entering backslashes, do "
5920"so\n"5920"so\n"
5921" as if you were using Python raw strings (i.e. you generally "5921" as if you were using Python raw strings (i.e. you generally "
@@ -6495,7 +6495,7 @@
6495msgid ""6495msgid ""
6496"The topic filter categorizes each incoming email message\n"6496"The topic filter categorizes each incoming email message\n"
6497" according to <a\n"6497" according to <a\n"
6498" href=\"http://docs.python.org/library/re.html\">regular\n"6498" href=\"https://docs.python.org/2/library/re.html\">regular\n"
6499" expression filters</a> you specify below. If the message's\n"6499" expression filters</a> you specify below. If the message's\n"
6500" <code>Subject:</code> or <code>Keywords:</code> header contains "6500" <code>Subject:</code> or <code>Keywords:</code> header contains "
6501"a\n"6501"a\n"
@@ -8535,7 +8535,7 @@
8535"Complete\n"8535"Complete\n"
8536"specifications are at:\n"8536"specifications are at:\n"
8537"\n"8537"\n"
8538"http://docs.python.org/library/re.html\n"8538"https://docs.python.org/2/library/re.html\n"
8539"\n"8539"\n"
8540"Address matches are case-insensitive, but case-preserved addresses are\n"8540"Address matches are case-insensitive, but case-preserved addresses are\n"
8541"displayed.\n"8541"displayed.\n"
85428542
=== modified file 'messages/mailman.pot'
--- messages/mailman.pot 2018-07-11 04:23:52 +0000
+++ messages/mailman.pot 2018-07-15 05:58:13 +0000
@@ -5243,7 +5243,7 @@
5243"\n"5243"\n"
5244" <p>In the text boxes below, add one address per line; start the\n"5244" <p>In the text boxes below, add one address per line; start the\n"
5245" line with a ^ character to designate a <a href=\n"5245" line with a ^ character to designate a <a href=\n"
5246" \"http://docs.python.org/library/re.html\"\n"5246" \"https://docs.python.org/2/library/re.html\"\n"
5247" >Python regular expression</a>. When entering backslashes, do so\n"5247" >Python regular expression</a>. When entering backslashes, do so\n"
5248" as if you were using Python raw strings (i.e. you generally just\n"5248" as if you were using Python raw strings (i.e. you generally just\n"
5249" use a single backslash).\n"5249" use a single backslash).\n"
@@ -5770,7 +5770,7 @@
5770msgid ""5770msgid ""
5771"The topic filter categorizes each incoming email message\n"5771"The topic filter categorizes each incoming email message\n"
5772" according to <a\n"5772" according to <a\n"
5773" href=\"http://docs.python.org/library/re.html\">regular\n"5773" href=\"https://docs.python.org/2/library/re.html\">regular\n"
5774" expression filters</a> you specify below. If the message's\n"5774" expression filters</a> you specify below. If the message's\n"
5775" <code>Subject:</code> or <code>Keywords:</code> header contains a\n"5775" <code>Subject:</code> or <code>Keywords:</code> header contains a\n"
5776" match against a topic filter, the message is logically placed\n"5776" match against a topic filter, the message is logically placed\n"
@@ -7685,7 +7685,7 @@
7685"Regular expression syntax is Perl5-like, using the Python re module. Complete\n"7685"Regular expression syntax is Perl5-like, using the Python re module. Complete\n"
7686"specifications are at:\n"7686"specifications are at:\n"
7687"\n"7687"\n"
7688"http://docs.python.org/library/re.html\n"7688"https://docs.python.org/2/library/re.html\n"
7689"\n"7689"\n"
7690"Address matches are case-insensitive, but case-preserved addresses are\n"7690"Address matches are case-insensitive, but case-preserved addresses are\n"
7691"displayed.\n"7691"displayed.\n"
76927692
=== modified file 'messages/nl/LC_MESSAGES/mailman.po'
--- messages/nl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/nl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7101,7 +7101,7 @@
7101"\n"7101"\n"
7102" <p>In the text boxes below, add one address per line; start the\n"7102" <p>In the text boxes below, add one address per line; start the\n"
7103" line with a ^ character to designate a <a href=\n"7103" line with a ^ character to designate a <a href=\n"
7104" \"http://docs.python.org/library/re.html\"\n"7104" \"https://docs.python.org/2/library/re.html\"\n"
7105" >Python regular expression</a>. When entering backslashes, do "7105" >Python regular expression</a>. When entering backslashes, do "
7106"so\n"7106"so\n"
7107" as if you were using Python raw strings (i.e. you generally "7107" as if you were using Python raw strings (i.e. you generally "
@@ -7139,7 +7139,7 @@
7139" <p>In de onderstaande tekstvelden dient u per regel ��n adres\n"7139" <p>In de onderstaande tekstvelden dient u per regel ��n adres\n"
7140" in te vullen. Start de regel met een ^ teken om er de juiste\n"7140" in te vullen. Start de regel met een ^ teken om er de juiste\n"
7141" <a href=\n"7141" <a href=\n"
7142" \"http://docs.python.org/library/re.html\"\n"7142" \"https://docs.python.org/2/library/re.html\"\n"
7143" >reguliere Python uitdrukking</a> van te maken. Bij gebruik\n"7143" >reguliere Python uitdrukking</a> van te maken. Bij gebruik\n"
7144" van 'backslashes' (schuine strepen) kunt u deze invoeren alsof\n"7144" van 'backslashes' (schuine strepen) kunt u deze invoeren alsof\n"
7145" het Python raw strings zijn (m.a.w. in het algemeen gebruikt\n"7145" het Python raw strings zijn (m.a.w. in het algemeen gebruikt\n"
@@ -7930,7 +7930,7 @@
7930msgid ""7930msgid ""
7931"The topic filter categorizes each incoming email message\n"7931"The topic filter categorizes each incoming email message\n"
7932" according to <a\n"7932" according to <a\n"
7933" href=\"http://docs.python.org/library/re.html\">regular\n"7933" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7934" expression filters</a> you specify below. If the message's\n"7934" expression filters</a> you specify below. If the message's\n"
7935" <code>Subject:</code> or <code>Keywords:</code> header contains "7935" <code>Subject:</code> or <code>Keywords:</code> header contains "
7936"a\n"7936"a\n"
@@ -7954,7 +7954,7 @@
7954msgstr ""7954msgstr ""
7955"De onderwerpfilter categoriseert elk binnengekomen e-mailbericht\n"7955"De onderwerpfilter categoriseert elk binnengekomen e-mailbericht\n"
7956" volgens de <a\n"7956" volgens de <a\n"
7957" href=\"http://docs.python.org/library/re.html\">reguliere\n"7957" href=\"https://docs.python.org/2/library/re.html\">reguliere\n"
7958" uitdrukkingsfilters</a> die u hieronder specificeert. Als de\n"7958" uitdrukkingsfilters</a> die u hieronder specificeert. Als de\n"
7959" <code>Subject:</code> (onderwerp) of <code>Keywords:</code>\n"7959" <code>Subject:</code> (onderwerp) of <code>Keywords:</code>\n"
7960" (sleutelwoorden) headers van het bericht overeenkomen met\n"7960" (sleutelwoorden) headers van het bericht overeenkomen met\n"
@@ -10178,7 +10178,7 @@
10178"Complete\n"10178"Complete\n"
10179"specifications are at:\n"10179"specifications are at:\n"
10180"\n"10180"\n"
10181"http://docs.python.org/library/re.html\n"10181"https://docs.python.org/2/library/re.html\n"
10182"\n"10182"\n"
10183"Address matches are case-insensitive, but case-preserved addresses are\n"10183"Address matches are case-insensitive, but case-preserved addresses are\n"
10184"displayed.\n"10184"displayed.\n"
1018510185
=== modified file 'messages/no/LC_MESSAGES/mailman.po'
--- messages/no/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/no/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6914,7 +6914,7 @@
6914"\n"6914"\n"
6915" <p>In the text boxes below, add one address per line; start the\n"6915" <p>In the text boxes below, add one address per line; start the\n"
6916" line with a ^ character to designate a <a href=\n"6916" line with a ^ character to designate a <a href=\n"
6917" \"http://docs.python.org/library/re.html\"\n"6917" \"https://docs.python.org/2/library/re.html\"\n"
6918" >Python regular expression</a>. When entering backslashes, do "6918" >Python regular expression</a>. When entering backslashes, do "
6919"so\n"6919"so\n"
6920" as if you were using Python raw strings (i.e. you generally "6920" as if you were using Python raw strings (i.e. you generally "
@@ -6949,7 +6949,7 @@
6949"\">generelle regler for ikke-medlemmer</a> sier.\n"6949"\">generelle regler for ikke-medlemmer</a> sier.\n"
6950"\n"6950"\n"
6951"<p>I tekstboksene nedenfor legger du inn en epostadresse per linje.\n"6951"<p>I tekstboksene nedenfor legger du inn en epostadresse per linje.\n"
6952"Du kan ogs&aring; legge inn <a href=\"http://docs.python.org/library/re.html"6952"Du kan ogs&aring; legge inn <a href=\"https://docs.python.org/2/library/re.html"
6953"\">Python regexp-uttrykk</a>.\n"6953"\">Python regexp-uttrykk</a>.\n"
6954"Begynn is&aring;fall linjen med tegnet ^ for &aring; markere at det er et "6954"Begynn is&aring;fall linjen med tegnet ^ for &aring; markere at det er et "
6955"slikt uttrykk.\n"6955"slikt uttrykk.\n"
@@ -7714,7 +7714,7 @@
7714msgid ""7714msgid ""
7715"The topic filter categorizes each incoming email message\n"7715"The topic filter categorizes each incoming email message\n"
7716" according to <a\n"7716" according to <a\n"
7717" href=\"http://docs.python.org/library/re.html\">regular\n"7717" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7718" expression filters</a> you specify below. If the message's\n"7718" expression filters</a> you specify below. If the message's\n"
7719" <code>Subject:</code> or <code>Keywords:</code> header contains "7719" <code>Subject:</code> or <code>Keywords:</code> header contains "
7720"a\n"7720"a\n"
@@ -7737,7 +7737,7 @@
7737" configuration variable."7737" configuration variable."
7738msgstr ""7738msgstr ""
7739"Emnefilteret kategoriserer hver epost som kommer til listen,\n"7739"Emnefilteret kategoriserer hver epost som kommer til listen,\n"
7740"etter <a href=\"http://docs.python.org/library/re.html\">regexp-uttrykkene</"7740"etter <a href=\"https://docs.python.org/2/library/re.html\">regexp-uttrykkene</"
7741"a>\n"7741"a>\n"
7742"du skriver inn nedenfor. Hvis feltene <code>Subject:</code> eller "7742"du skriver inn nedenfor. Hvis feltene <code>Subject:</code> eller "
7743"<code>Keywords:</code>\n"7743"<code>Keywords:</code>\n"
@@ -10339,7 +10339,7 @@
10339"Complete\n"10339"Complete\n"
10340"specifications are at:\n"10340"specifications are at:\n"
10341"\n"10341"\n"
10342"http://docs.python.org/library/re.html\n"10342"https://docs.python.org/2/library/re.html\n"
10343"\n"10343"\n"
10344"Address matches are case-insensitive, but case-preserved addresses are\n"10344"Address matches are case-insensitive, but case-preserved addresses are\n"
10345"displayed.\n"10345"displayed.\n"
@@ -10379,7 +10379,7 @@
10379"benyttes.\n"10379"benyttes.\n"
10380"Komplett spesifikasjon finnes på:\n"10380"Komplett spesifikasjon finnes på:\n"
10381"\n"10381"\n"
10382"http://docs.python.org/library/re.html\n"10382"https://docs.python.org/2/library/re.html\n"
10383"\n"10383"\n"
10384"Adresser sammenlignes uten forskjell på små og store bokstaver, men vises "10384"Adresser sammenlignes uten forskjell på små og store bokstaver, men vises "
10385"med\n"10385"med\n"
@@ -13554,7 +13554,7 @@
1355413554
13555#~ msgid ""13555#~ msgid ""
13556#~ "<li>Find members by\n"13556#~ "<li>Find members by\n"
13557#~ " <a href=\"http://docs.python.org/library/re.html#regular-"13557#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
13558#~ "expression-syntax\"\n"13558#~ "expression-syntax\"\n"
13559#~ " >Python regular expression</a> (<em>regexp</em>)<br>"13559#~ " >Python regular expression</a> (<em>regexp</em>)<br>"
13560#~ msgstr ""13560#~ msgstr ""
1356113561
=== modified file 'messages/pl/LC_MESSAGES/mailman.po'
--- messages/pl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/pl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6645,7 +6645,7 @@
6645"\n"6645"\n"
6646" <p>In the text boxes below, add one address per line; start the\n"6646" <p>In the text boxes below, add one address per line; start the\n"
6647" line with a ^ character to designate a <a href=\n"6647" line with a ^ character to designate a <a href=\n"
6648" \"http://docs.python.org/library/re.html\"\n"6648" \"https://docs.python.org/2/library/re.html\"\n"
6649" >Python regular expression</a>. When entering backslashes, do "6649" >Python regular expression</a>. When entering backslashes, do "
6650"so\n"6650"so\n"
6651" as if you were using Python raw strings (i.e. you generally "6651" as if you were using Python raw strings (i.e. you generally "
@@ -6679,7 +6679,7 @@
6679"\">ogólnej\n"6679"\">ogólnej\n"
6680" zasadzie stosowanej dla nie subskrybentów</a>.<p>W polach nale¿y "6680" zasadzie stosowanej dla nie subskrybentów</a>.<p>W polach nale¿y "
6681"wpisywaæ po jednym adresie w linii. Znak ^ napocz±tku nowej linii oznacza <a "6681"wpisywaæ po jednym adresie w linii. Znak ^ napocz±tku nowej linii oznacza <a "
6682"href=\"http://docs.python.org/library/re.html\"> wyra¿enie regularne w "6682"href=\"https://docs.python.org/2/library/re.html\"> wyra¿enie regularne w "
6683"Pythonie</a>. <p>Pamiêtaj, ¿e linie bez u¿ycia wyra¿eñ regularnych s± "6683"Pythonie</a>. <p>Pamiêtaj, ¿e linie bez u¿ycia wyra¿eñ regularnych s± "
6684"dopasowywane wcze¶niej."6684"dopasowywane wcze¶niej."
66856685
@@ -7468,7 +7468,7 @@
7468msgid ""7468msgid ""
7469"The topic filter categorizes each incoming email message\n"7469"The topic filter categorizes each incoming email message\n"
7470" according to <a\n"7470" according to <a\n"
7471" href=\"http://docs.python.org/library/re.html\">regular\n"7471" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7472" expression filters</a> you specify below. If the message's\n"7472" expression filters</a> you specify below. If the message's\n"
7473" <code>Subject:</code> or <code>Keywords:</code> header contains "7473" <code>Subject:</code> or <code>Keywords:</code> header contains "
7474"a\n"7474"a\n"
@@ -7492,7 +7492,7 @@
7492msgstr ""7492msgstr ""
7493"Filtr tematyczny dzieli wszystkie przychodz±ce wiadomo¶ci \n"7493"Filtr tematyczny dzieli wszystkie przychodz±ce wiadomo¶ci \n"
7494" na kategorie wed³ug <a\n"7494" na kategorie wed³ug <a\n"
7495"href=\"http://docs.python.org/library/re.html\">wyra¿enia\n"7495"href=\"https://docs.python.org/2/library/re.html\">wyra¿enia\n"
7496" regularnego </a>, które okre¶lisz. Je¿eli pola nag³ówka\n"7496" regularnego </a>, które okre¶lisz. Je¿eli pola nag³ówka\n"
7497" <code>Subject:</code> lub <code>Keywords:</code> zostan±\n"7497" <code>Subject:</code> lub <code>Keywords:</code> zostan±\n"
7498" dopasowane do tego wyra¿enia, wiadomo¶æ jest umieszczana\n"7498" dopasowane do tego wyra¿enia, wiadomo¶æ jest umieszczana\n"
@@ -9696,7 +9696,7 @@
9696"Complete\n"9696"Complete\n"
9697"specifications are at:\n"9697"specifications are at:\n"
9698"\n"9698"\n"
9699"http://docs.python.org/library/re.html\n"9699"https://docs.python.org/2/library/re.html\n"
9700"\n"9700"\n"
9701"Address matches are case-insensitive, but case-preserved addresses are\n"9701"Address matches are case-insensitive, but case-preserved addresses are\n"
9702"displayed.\n"9702"displayed.\n"
97039703
=== modified file 'messages/pt/LC_MESSAGES/mailman.po'
--- messages/pt/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/pt/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6883,7 +6883,7 @@
6883"\n"6883"\n"
6884" <p>In the text boxes below, add one address per line; start the\n"6884" <p>In the text boxes below, add one address per line; start the\n"
6885" line with a ^ character to designate a <a href=\n"6885" line with a ^ character to designate a <a href=\n"
6886" \"http://docs.python.org/library/re.html\"\n"6886" \"https://docs.python.org/2/library/re.html\"\n"
6887" >Python regular expression</a>. When entering backslashes, do "6887" >Python regular expression</a>. When entering backslashes, do "
6888"so\n"6888"so\n"
6889" as if you were using Python raw strings (i.e. you generally "6889" as if you were using Python raw strings (i.e. you generally "
@@ -6923,7 +6923,7 @@
6923"\n"6923"\n"
6924" <p>Nas caixas de texto abaixo, adicione um endereço por linha;\n"6924" <p>Nas caixas de texto abaixo, adicione um endereço por linha;\n"
6925" inicie a linha com o caracter ^ para designar uma\n"6925" inicie a linha com o caracter ^ para designar uma\n"
6926" <a href=\"http://docs.python.org/library/re.html\">Expressão "6926" <a href=\"https://docs.python.org/2/library/re.html\">Expressão "
6927"regular em Python</a>. Quando acrescentar contrabarras, faça como se \n"6927"regular em Python</a>. Quando acrescentar contrabarras, faça como se \n"
6928" estivesse usando strings raw do Python (i.e. você geralmente \n"6928" estivesse usando strings raw do Python (i.e. você geralmente \n"
6929" utilizaria apenas uma barra invertida).\n"6929" utilizaria apenas uma barra invertida).\n"
@@ -7687,7 +7687,7 @@
7687msgid ""7687msgid ""
7688"The topic filter categorizes each incoming email message\n"7688"The topic filter categorizes each incoming email message\n"
7689" according to <a\n"7689" according to <a\n"
7690" href=\"http://docs.python.org/library/re.html\">regular\n"7690" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7691" expression filters</a> you specify below. If the message's\n"7691" expression filters</a> you specify below. If the message's\n"
7692" <code>Subject:</code> or <code>Keywords:</code> header contains "7692" <code>Subject:</code> or <code>Keywords:</code> header contains "
7693"a\n"7693"a\n"
@@ -7711,7 +7711,7 @@
7711msgstr ""7711msgstr ""
7712"O filtro de tópico categoriza cada mensagem de entrada de \n"7712"O filtro de tópico categoriza cada mensagem de entrada de \n"
7713" acordo com \n"7713" acordo com \n"
7714" href=\"http://docs.python.org/library/re.html\">filtros\n"7714" href=\"https://docs.python.org/2/library/re.html\">filtros\n"
7715" de expressões regulares</a> que poderá especificar abaixo. \n"7715" de expressões regulares</a> que poderá especificar abaixo. \n"
7716" caso o cabeçalho <code>Subject:</code> ou <code>Keywords:</code> "7716" caso o cabeçalho <code>Subject:</code> ou <code>Keywords:</code> "
7717"da \n"7717"da \n"
@@ -10368,7 +10368,7 @@
10368"Complete\n"10368"Complete\n"
10369"specifications are at:\n"10369"specifications are at:\n"
10370"\n"10370"\n"
10371"http://docs.python.org/library/re.html\n"10371"https://docs.python.org/2/library/re.html\n"
10372"\n"10372"\n"
10373"Address matches are case-insensitive, but case-preserved addresses are\n"10373"Address matches are case-insensitive, but case-preserved addresses are\n"
10374"displayed.\n"10374"displayed.\n"
@@ -10408,7 +10408,7 @@
10408"A sintaxe de expressões regulares é no estilo Perl5, usando o módulo\n"10408"A sintaxe de expressões regulares é no estilo Perl5, usando o módulo\n"
10409"Python. As especificações completas podem ser encontradas em:\n"10409"Python. As especificações completas podem ser encontradas em:\n"
10410"\n"10410"\n"
10411"http://docs.python.org/library/re.html\n"10411"https://docs.python.org/2/library/re.html\n"
10412"\n"10412"\n"
10413"Endereços que conferem são case-insensitive, mas endereços case-sensitive\n"10413"Endereços que conferem são case-insensitive, mas endereços case-sensitive\n"
10414"são mostrados.\n"10414"são mostrados.\n"
1041510415
=== modified file 'messages/pt_BR/LC_MESSAGES/mailman.po'
--- messages/pt_BR/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/pt_BR/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7090,7 +7090,7 @@
7090"\n"7090"\n"
7091" <p>In the text boxes below, add one address per line; start the\n"7091" <p>In the text boxes below, add one address per line; start the\n"
7092" line with a ^ character to designate a <a href=\n"7092" line with a ^ character to designate a <a href=\n"
7093" \"http://docs.python.org/library/re.html\"\n"7093" \"https://docs.python.org/2/library/re.html\"\n"
7094" >Python regular expression</a>. When entering backslashes, do "7094" >Python regular expression</a>. When entering backslashes, do "
7095"so\n"7095"so\n"
7096" as if you were using Python raw strings (i.e. you generally "7096" as if you were using Python raw strings (i.e. you generally "
@@ -7130,7 +7130,7 @@
7130"\n"7130"\n"
7131" <p>Nas caixas de texto abaixo, adicione um endereço por linha;\n"7131" <p>Nas caixas de texto abaixo, adicione um endereço por linha;\n"
7132" inicie a linha com o caracter ^ para designar uma\n"7132" inicie a linha com o caracter ^ para designar uma\n"
7133" <a href=\"http://docs.python.org/library/re.html\">Expressão "7133" <a href=\"https://docs.python.org/2/library/re.html\">Expressão "
7134"regular em Python</a>. Quando acrescentar contra-barras, faça como se \n"7134"regular em Python</a>. Quando acrescentar contra-barras, faça como se \n"
7135" estivesse usando strings raw do Python (p.e. você geralmente \n"7135" estivesse usando strings raw do Python (p.e. você geralmente \n"
7136" utilizaria apenas uma barra invertida).\n"7136" utilizaria apenas uma barra invertida).\n"
@@ -8044,7 +8044,7 @@
8044msgid ""8044msgid ""
8045"The topic filter categorizes each incoming email message\n"8045"The topic filter categorizes each incoming email message\n"
8046" according to <a\n"8046" according to <a\n"
8047" href=\"http://docs.python.org/library/re.html\">regular\n"8047" href=\"https://docs.python.org/2/library/re.html\">regular\n"
8048" expression filters</a> you specify below. If the message's\n"8048" expression filters</a> you specify below. If the message's\n"
8049" <code>Subject:</code> or <code>Keywords:</code> header contains "8049" <code>Subject:</code> or <code>Keywords:</code> header contains "
8050"a\n"8050"a\n"
@@ -8068,7 +8068,7 @@
8068msgstr ""8068msgstr ""
8069"O filtro de tópico categoriza cada mensagem de entrada de \n"8069"O filtro de tópico categoriza cada mensagem de entrada de \n"
8070" acordo com \n"8070" acordo com \n"
8071" href=\"http://docs.python.org/library/re.html\">filtros\n"8071" href=\"https://docs.python.org/2/library/re.html\">filtros\n"
8072" de expressões regulares</a> que poderá especificar abaixo. \n"8072" de expressões regulares</a> que poderá especificar abaixo. \n"
8073" Caso o cabeçalho <code>Subject:</code> ou <code>Keywords:</code> "8073" Caso o cabeçalho <code>Subject:</code> ou <code>Keywords:</code> "
8074"da \n"8074"da \n"
@@ -10728,7 +10728,7 @@
10728"Complete\n"10728"Complete\n"
10729"specifications are at:\n"10729"specifications are at:\n"
10730"\n"10730"\n"
10731"http://docs.python.org/library/re.html\n"10731"https://docs.python.org/2/library/re.html\n"
10732"\n"10732"\n"
10733"Address matches are case-insensitive, but case-preserved addresses are\n"10733"Address matches are case-insensitive, but case-preserved addresses are\n"
10734"displayed.\n"10734"displayed.\n"
@@ -10768,7 +10768,7 @@
10768"A sintaxe de expressões regulares é no estilo Perl5, usando o módulo\n"10768"A sintaxe de expressões regulares é no estilo Perl5, usando o módulo\n"
10769"Python. As especificações completas podem ser encontradas em:\n"10769"Python. As especificações completas podem ser encontradas em:\n"
10770"\n"10770"\n"
10771"http://docs.python.org/library/re.html\n"10771"https://docs.python.org/2/library/re.html\n"
10772"\n"10772"\n"
10773"Endereços que conferem não são sensíveis a caixa, mas ao exibir os endereços "10773"Endereços que conferem não são sensíveis a caixa, mas ao exibir os endereços "
10774"a caixa (alta ou baixa) é preservada\n"10774"a caixa (alta ou baixa) é preservada\n"
1077510775
=== modified file 'messages/ro/LC_MESSAGES/mailman.po'
--- messages/ro/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ro/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6704,7 +6704,7 @@
6704"\n"6704"\n"
6705" <p>In the text boxes below, add one address per line; start the\n"6705" <p>In the text boxes below, add one address per line; start the\n"
6706" line with a ^ character to designate a <a href=\n"6706" line with a ^ character to designate a <a href=\n"
6707" \"http://docs.python.org/library/re.html\"\n"6707" \"https://docs.python.org/2/library/re.html\"\n"
6708" >Python regular expression</a>. When entering backslashes, do "6708" >Python regular expression</a>. When entering backslashes, do "
6709"so\n"6709"so\n"
6710" as if you were using Python raw strings (i.e. you generally "6710" as if you were using Python raw strings (i.e. you generally "
@@ -7454,7 +7454,7 @@
7454msgid ""7454msgid ""
7455"The topic filter categorizes each incoming email message\n"7455"The topic filter categorizes each incoming email message\n"
7456" according to <a\n"7456" according to <a\n"
7457" href=\"http://docs.python.org/library/re.html\">regular\n"7457" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7458" expression filters</a> you specify below. If the message's\n"7458" expression filters</a> you specify below. If the message's\n"
7459" <code>Subject:</code> or <code>Keywords:</code> header contains "7459" <code>Subject:</code> or <code>Keywords:</code> header contains "
7460"a\n"7460"a\n"
@@ -7477,7 +7477,7 @@
7477" configuration variable."7477" configuration variable."
7478msgstr ""7478msgstr ""
7479"Filtrul de topici categorizează fiecare e-mail sosit pe baza <a href="7479"Filtrul de topici categorizează fiecare e-mail sosit pe baza <a href="
7480"\"http://docs.python.org/library/re.html\">expresiilor regulate de filtrare</"7480"\"https://docs.python.org/2/library/re.html\">expresiilor regulate de filtrare</"
7481"a> pe care le specificaţi mai jos.\n"7481"a> pe care le specificaţi mai jos.\n"
7482"\n"7482"\n"
7483"Dacă unul din headerele <code>Subject:</code>sau <code>Keywords:</code>\n"7483"Dacă unul din headerele <code>Subject:</code>sau <code>Keywords:</code>\n"
@@ -10024,7 +10024,7 @@
10024"Complete\n"10024"Complete\n"
10025"specifications are at:\n"10025"specifications are at:\n"
10026"\n"10026"\n"
10027"http://docs.python.org/library/re.html\n"10027"https://docs.python.org/2/library/re.html\n"
10028"\n"10028"\n"
10029"Address matches are case-insensitive, but case-preserved addresses are\n"10029"Address matches are case-insensitive, but case-preserved addresses are\n"
10030"displayed.\n"10030"displayed.\n"
@@ -10065,7 +10065,7 @@
10065"Complete\n"10065"Complete\n"
10066"specifications are at:\n"10066"specifications are at:\n"
10067"\n"10067"\n"
10068"http://docs.python.org/library/re.html\n"10068"https://docs.python.org/2/library/re.html\n"
10069"\n"10069"\n"
10070"Address matches are case-insensitive, but case-preserved addresses are\n"10070"Address matches are case-insensitive, but case-preserved addresses are\n"
10071"displayed.\n"10071"displayed.\n"
1007210072
=== modified file 'messages/ru/LC_MESSAGES/mailman.po'
--- messages/ru/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/ru/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6980,7 +6980,7 @@
6980"\n"6980"\n"
6981" <p>In the text boxes below, add one address per line; start the\n"6981" <p>In the text boxes below, add one address per line; start the\n"
6982" line with a ^ character to designate a <a href=\n"6982" line with a ^ character to designate a <a href=\n"
6983" \"http://docs.python.org/library/re.html\"\n"6983" \"https://docs.python.org/2/library/re.html\"\n"
6984" >Python regular expression</a>. When entering backslashes, do "6984" >Python regular expression</a>. When entering backslashes, do "
6985"so\n"6985"so\n"
6986" as if you were using Python raw strings (i.e. you generally "6986" as if you were using Python raw strings (i.e. you generally "
@@ -7016,7 +7016,7 @@
7016"\n"7016"\n"
7017"<p>В тек�товых пол�х ниже добавл�йте по одному адре�у в �троку, �троки,\n"7017"<p>В тек�товых пол�х ниже добавл�йте по одному адре�у в �троку, �троки,\n"
7018"начинающие�� � ^, будут �читать�� <a\n"7018"начинающие�� � ^, будут �читать�� <a\n"
7019"href=\"http://docs.python.org/library/re.html\">регул�рными\n"7019"href=\"https://docs.python.org/2/library/re.html\">регул�рными\n"
7020"выражени�ми �зыка Python</a>. Обратные наклонные черты должны вводить��\n"7020"выражени�ми �зыка Python</a>. Обратные наклонные черты должны вводить��\n"
7021"так же, как и в обычных �троках Python (то е�ть, �корее в�его, вам\n"7021"так же, как и в обычных �троках Python (то е�ть, �корее в�его, вам\n"
7022"понадобит�� пи�ать только один такой �имвол).\n"7022"понадобит�� пи�ать только один такой �имвол).\n"
@@ -7896,7 +7896,7 @@
7896msgid ""7896msgid ""
7897"The topic filter categorizes each incoming email message\n"7897"The topic filter categorizes each incoming email message\n"
7898" according to <a\n"7898" according to <a\n"
7899" href=\"http://docs.python.org/library/re.html\">regular\n"7899" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7900" expression filters</a> you specify below. If the message's\n"7900" expression filters</a> you specify below. If the message's\n"
7901" <code>Subject:</code> or <code>Keywords:</code> header contains "7901" <code>Subject:</code> or <code>Keywords:</code> header contains "
7902"a\n"7902"a\n"
@@ -7919,7 +7919,7 @@
7919" configuration variable."7919" configuration variable."
7920msgstr ""7920msgstr ""
7921"Фильтр разделов �ортирует в�е вход�щие �ообщени� в �оответ�твии �\n"7921"Фильтр разделов �ортирует в�е вход�щие �ообщени� в �оответ�твии �\n"
7922"<a href=\"http://docs.python.org/library/re.html\">\n"7922"<a href=\"https://docs.python.org/2/library/re.html\">\n"
7923"регул�рными выражени�ми</a>, указываемыми ниже. Е�ли в заголовках\n"7923"регул�рными выражени�ми</a>, указываемыми ниже. Е�ли в заголовках\n"
7924"<code>Subject:</code> или <code>Keywords:</code> �ообщени�\n"7924"<code>Subject:</code> или <code>Keywords:</code> �ообщени�\n"
7925"�одержит�� под�трока, �оответ�твующа� фильтру, �ообщение помещает��\n"7925"�одержит�� под�трока, �оответ�твующа� фильтру, �ообщение помещает��\n"
@@ -10585,7 +10585,7 @@
10585"Complete\n"10585"Complete\n"
10586"specifications are at:\n"10586"specifications are at:\n"
10587"\n"10587"\n"
10588"http://docs.python.org/library/re.html\n"10588"https://docs.python.org/2/library/re.html\n"
10589"\n"10589"\n"
10590"Address matches are case-insensitive, but case-preserved addresses are\n"10590"Address matches are case-insensitive, but case-preserved addresses are\n"
10591"displayed.\n"10591"displayed.\n"
@@ -10625,7 +10625,7 @@
10625"выражений в Perl5, и�пользует�� модуль re. Полное опи�ание �интак�и�а\n"10625"выражений в Perl5, и�пользует�� модуль re. Полное опи�ание �интак�и�а\n"
10626"находит�� по адре�у:\n"10626"находит�� по адре�у:\n"
10627"\n"10627"\n"
10628"http://docs.python.org/library/re.html\n"10628"https://docs.python.org/2/library/re.html\n"
10629"\n"10629"\n"
10630"При �равнении адре�ов реги�тр не учитывает��, но е�ли в найденном адре�е\n"10630"При �равнении адре�ов реги�тр не учитывает��, но е�ли в найденном адре�е\n"
10631"е�ть заглавные буквы, они печатают�� вме�то �трочных.\n"10631"е�ть заглавные буквы, они печатают�� вме�то �трочных.\n"
1063210632
=== modified file 'messages/sk/LC_MESSAGES/mailman.po'
--- messages/sk/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/sk/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6802,7 +6802,7 @@
6802"\n"6802"\n"
6803" <p>In the text boxes below, add one address per line; start the\n"6803" <p>In the text boxes below, add one address per line; start the\n"
6804" line with a ^ character to designate a <a href=\n"6804" line with a ^ character to designate a <a href=\n"
6805" \"http://docs.python.org/library/re.html\"\n"6805" \"https://docs.python.org/2/library/re.html\"\n"
6806" >Python regular expression</a>. When entering backslashes, do "6806" >Python regular expression</a>. When entering backslashes, do "
6807"so\n"6807"so\n"
6808" as if you were using Python raw strings (i.e. you generally "6808" as if you were using Python raw strings (i.e. you generally "
@@ -6836,7 +6836,7 @@
6836"\n"6836"\n"
6837" <p>V nižšie uvedených textových poliach zadajte jednu adresu\n"6837" <p>V nižšie uvedených textových poliach zadajte jednu adresu\n"
6838" na riadok. Ak chcete použiť <a href=\n"6838" na riadok. Ak chcete použiť <a href=\n"
6839" \"http://docs.python.org/library/re.html\"\n"6839" \"https://docs.python.org/2/library/re.html\"\n"
6840" >regulárny výraz Python</a>, za�nite riadok znakom ^. Ak\n"6840" >regulárny výraz Python</a>, za�nite riadok znakom ^. Ak\n"
6841" vkladáte backslash, urobte ako pri reťazcoch Python (spravidla\n"6841" vkladáte backslash, urobte ako pri reťazcoch Python (spravidla\n"
6842" použijete jeden backslash).\n"6842" použijete jeden backslash).\n"
@@ -7597,7 +7597,7 @@
7597msgid ""7597msgid ""
7598"The topic filter categorizes each incoming email message\n"7598"The topic filter categorizes each incoming email message\n"
7599" according to <a\n"7599" according to <a\n"
7600" href=\"http://docs.python.org/library/re.html\">regular\n"7600" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7601" expression filters</a> you specify below. If the message's\n"7601" expression filters</a> you specify below. If the message's\n"
7602" <code>Subject:</code> or <code>Keywords:</code> header contains "7602" <code>Subject:</code> or <code>Keywords:</code> header contains "
7603"a\n"7603"a\n"
@@ -7620,7 +7620,7 @@
7620" configuration variable."7620" configuration variable."
7621msgstr ""7621msgstr ""
7622"Tematický filter zatriedi každú prijatú správu s použitím <a\n"7622"Tematický filter zatriedi každú prijatú správu s použitím <a\n"
7623" href=\"http://docs.python.org/library/re.html\">regulárnych\n"7623" href=\"https://docs.python.org/2/library/re.html\">regulárnych\n"
7624" výrazov</a>, ktoré uvediete nižšie. Ak správa obsahuje v "7624" výrazov</a>, ktoré uvediete nižšie. Ak správa obsahuje v "
7625"hlavi�ke \n"7625"hlavi�ke \n"
7626" <code>Subject:</code> alebo <code>Keywords:</code> výraz "7626" <code>Subject:</code> alebo <code>Keywords:</code> výraz "
@@ -9945,7 +9945,7 @@
9945"Complete\n"9945"Complete\n"
9946"specifications are at:\n"9946"specifications are at:\n"
9947"\n"9947"\n"
9948"http://docs.python.org/library/re.html\n"9948"https://docs.python.org/2/library/re.html\n"
9949"\n"9949"\n"
9950"Address matches are case-insensitive, but case-preserved addresses are\n"9950"Address matches are case-insensitive, but case-preserved addresses are\n"
9951"displayed.\n"9951"displayed.\n"
99529952
=== modified file 'messages/sl/LC_MESSAGES/mailman.po'
--- messages/sl/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/sl/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -7550,7 +7550,7 @@
7550"\n"7550"\n"
7551" <p>In the text boxes below, add one address per line; start the\n"7551" <p>In the text boxes below, add one address per line; start the\n"
7552" line with a ^ character to designate a <a href=\n"7552" line with a ^ character to designate a <a href=\n"
7553" \"http://docs.python.org/library/re.html\"\n"7553" \"https://docs.python.org/2/library/re.html\"\n"
7554" >Python regular expression</a>. When entering backslashes, do "7554" >Python regular expression</a>. When entering backslashes, do "
7555"so\n"7555"so\n"
7556" as if you were using Python raw strings (i.e. you generally "7556" as if you were using Python raw strings (i.e. you generally "
@@ -7588,7 +7588,7 @@
7588"\n"7588"\n"
7589" <p>V spodnja polja vnesite naslove, vsakega v svojo vrstico,\n"7589" <p>V spodnja polja vnesite naslove, vsakega v svojo vrstico,\n"
7590" ki jo zaènete z znakom ^, ki bo predstavljal <a href=\n"7590" ki jo zaènete z znakom ^, ki bo predstavljal <a href=\n"
7591" \"http://docs.python.org/library/re.html\"\n"7591" \"https://docs.python.org/2/library/re.html\"\n"
7592" >Python regularni izraz</a>. Pri vna¹anju po¹evnic nazaj, jih\n"7592" >Python regularni izraz</a>. Pri vna¹anju po¹evnic nazaj, jih\n"
7593" uporabljajte kot grobe Python nize (ponavadi se uporablja\n"7593" uporabljajte kot grobe Python nize (ponavadi se uporablja\n"
7594" enojna po¹evnico nazaj).\n"7594" enojna po¹evnico nazaj).\n"
@@ -8368,7 +8368,7 @@
8368msgid ""8368msgid ""
8369"The topic filter categorizes each incoming email message\n"8369"The topic filter categorizes each incoming email message\n"
8370" according to <a\n"8370" according to <a\n"
8371" href=\"http://docs.python.org/library/re.html\">regular\n"8371" href=\"https://docs.python.org/2/library/re.html\">regular\n"
8372" expression filters</a> you specify below. If the message's\n"8372" expression filters</a> you specify below. If the message's\n"
8373" <code>Subject:</code> or <code>Keywords:</code> header contains "8373" <code>Subject:</code> or <code>Keywords:</code> header contains "
8374"a\n"8374"a\n"
@@ -8392,7 +8392,7 @@
8392msgstr ""8392msgstr ""
8393"Filter za teme razvrsti vsako prejeto sporoèilo glede na\n"8393"Filter za teme razvrsti vsako prejeto sporoèilo glede na\n"
8394" <a\n"8394" <a\n"
8395" href=\"http://docs.python.org/library/re.html\">filtre\n"8395" href=\"https://docs.python.org/2/library/re.html\">filtre\n"
8396" regularnih izrazov</a>, ki jih izberete spodaj. Èe polje\n"8396" regularnih izrazov</a>, ki jih izberete spodaj. Èe polje\n"
8397" <code>Zadeva:</code> ali <code>Kljuène besede:</code> vsebuje\n"8397" <code>Zadeva:</code> ali <code>Kljuène besede:</code> vsebuje\n"
8398" regularni izraz iz tematskega filtra, bo sporoèilo samodejno\n"8398" regularni izraz iz tematskega filtra, bo sporoèilo samodejno\n"
@@ -11189,7 +11189,7 @@
11189"Complete\n"11189"Complete\n"
11190"specifications are at:\n"11190"specifications are at:\n"
11191"\n"11191"\n"
11192"http://docs.python.org/library/re.html\n"11192"https://docs.python.org/2/library/re.html\n"
11193"\n"11193"\n"
11194"Address matches are case-insensitive, but case-preserved addresses are\n"11194"Address matches are case-insensitive, but case-preserved addresses are\n"
11195"displayed.\n"11195"displayed.\n"
@@ -11229,7 +11229,7 @@
11229"modul.\n"11229"modul.\n"
11230"Celotne specifikacije najdete na:\n"11230"Celotne specifikacije najdete na:\n"
11231"\n"11231"\n"
11232"http://docs.python.org/library/re.html\n"11232"https://docs.python.org/2/library/re.html\n"
11233"\n"11233"\n"
11234"Iskanje naslovov razlikuje velike in male èrke, prikazani pa so naslovi v\n"11234"Iskanje naslovov razlikuje velike in male èrke, prikazani pa so naslovi v\n"
11235"originalni obliki.\n"11235"originalni obliki.\n"
@@ -15678,12 +15678,12 @@
15678# Mailman/Cgi/admin.py:46015678# Mailman/Cgi/admin.py:460
15679#~ msgid ""15679#~ msgid ""
15680#~ "<li>Find members by\n"15680#~ "<li>Find members by\n"
15681#~ " <a href=\"http://docs.python.org/library/re.html#regular-"15681#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
15682#~ "expression-syntax\"\n"15682#~ "expression-syntax\"\n"
15683#~ " >Python regular expression</a> (<em>regexp</em>)<br>"15683#~ " >Python regular expression</a> (<em>regexp</em>)<br>"
15684#~ msgstr ""15684#~ msgstr ""
15685#~ "<li>Najdi èlane s pomoèjo\n"15685#~ "<li>Najdi èlane s pomoèjo\n"
15686#~ " <a href=\"http://docs.python.org/library/re.html#regular-"15686#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
15687#~ "expression-syntax\"\n"15687#~ "expression-syntax\"\n"
15688#~ " >regularnih izrazov Python</a> (<em>regexp</em>)<br>"15688#~ " >regularnih izrazov Python</a> (<em>regexp</em>)<br>"
1568915689
1569015690
=== modified file 'messages/sr/LC_MESSAGES/mailman.po'
--- messages/sr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/sr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -5689,7 +5689,7 @@
5689"\n"5689"\n"
5690" <p>In the text boxes below, add one address per line; start the\n"5690" <p>In the text boxes below, add one address per line; start the\n"
5691" line with a ^ character to designate a <a href=\n"5691" line with a ^ character to designate a <a href=\n"
5692" \"http://docs.python.org/library/re.html\"\n"5692" \"https://docs.python.org/2/library/re.html\"\n"
5693" >Python regular expression</a>. When entering backslashes, do "5693" >Python regular expression</a>. When entering backslashes, do "
5694"so\n"5694"so\n"
5695" as if you were using Python raw strings (i.e. you generally "5695" as if you were using Python raw strings (i.e. you generally "
@@ -6271,7 +6271,7 @@
6271msgid ""6271msgid ""
6272"The topic filter categorizes each incoming email message\n"6272"The topic filter categorizes each incoming email message\n"
6273" according to <a\n"6273" according to <a\n"
6274" href=\"http://docs.python.org/library/re.html\">regular\n"6274" href=\"https://docs.python.org/2/library/re.html\">regular\n"
6275" expression filters</a> you specify below. If the message's\n"6275" expression filters</a> you specify below. If the message's\n"
6276" <code>Subject:</code> or <code>Keywords:</code> header contains "6276" <code>Subject:</code> or <code>Keywords:</code> header contains "
6277"a\n"6277"a\n"
@@ -8282,7 +8282,7 @@
8282"Complete\n"8282"Complete\n"
8283"specifications are at:\n"8283"specifications are at:\n"
8284"\n"8284"\n"
8285"http://docs.python.org/library/re.html\n"8285"https://docs.python.org/2/library/re.html\n"
8286"\n"8286"\n"
8287"Address matches are case-insensitive, but case-preserved addresses are\n"8287"Address matches are case-insensitive, but case-preserved addresses are\n"
8288"displayed.\n"8288"displayed.\n"
82898289
=== modified file 'messages/sv/LC_MESSAGES/mailman.po'
--- messages/sv/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/sv/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -8693,7 +8693,7 @@
8693"\n"8693"\n"
8694" <p>In the text boxes below, add one address per line; start the\n"8694" <p>In the text boxes below, add one address per line; start the\n"
8695" line with a ^ character to designate a <a href=\n"8695" line with a ^ character to designate a <a href=\n"
8696" \"http://docs.python.org/library/re.html\"\n"8696" \"https://docs.python.org/2/library/re.html\"\n"
8697" >Python regular expression</a>. When entering backslashes, do "8697" >Python regular expression</a>. When entering backslashes, do "
8698"so\n"8698"so\n"
8699" as if you were using Python raw strings (i.e. you generally "8699" as if you were using Python raw strings (i.e. you generally "
@@ -8728,7 +8728,7 @@
8728"\">de allmänna reglerna för icke-medlemmar</a> säger.\n"8728"\">de allmänna reglerna för icke-medlemmar</a> säger.\n"
8729"\n"8729"\n"
8730"<p>I textrutorna nedan lägger du in en e-postadress per rad.\n"8730"<p>I textrutorna nedan lägger du in en e-postadress per rad.\n"
8731"Du kan också lägga in <a href=\"http://docs.python.org/library/re.html"8731"Du kan också lägga in <a href=\"https://docs.python.org/2/library/re.html"
8732"\">Python regexp-uttryck</a>.\n"8732"\">Python regexp-uttryck</a>.\n"
8733"Börja i så fall raden med tecknet ^ för att markera att det är ett sådant "8733"Börja i så fall raden med tecknet ^ för att markera att det är ett sådant "
8734"uttryck.\n"8734"uttryck.\n"
@@ -9571,7 +9571,7 @@
9571msgid ""9571msgid ""
9572"The topic filter categorizes each incoming email message\n"9572"The topic filter categorizes each incoming email message\n"
9573" according to <a\n"9573" according to <a\n"
9574" href=\"http://docs.python.org/library/re.html\">regular\n"9574" href=\"https://docs.python.org/2/library/re.html\">regular\n"
9575" expression filters</a> you specify below. If the message's\n"9575" expression filters</a> you specify below. If the message's\n"
9576" <code>Subject:</code> or <code>Keywords:</code> header contains "9576" <code>Subject:</code> or <code>Keywords:</code> header contains "
9577"a\n"9577"a\n"
@@ -9594,7 +9594,7 @@
9594" configuration variable."9594" configuration variable."
9595msgstr ""9595msgstr ""
9596"Ämnesfiltret kategoriserar varje e-postbrev som kommer till listan,\n"9596"Ämnesfiltret kategoriserar varje e-postbrev som kommer till listan,\n"
9597"efter <a href=\"http://docs.python.org/library/re.html\">regexp-uttrycken</"9597"efter <a href=\"https://docs.python.org/2/library/re.html\">regexp-uttrycken</"
9598"a>\n"9598"a>\n"
9599"du skriver in nedan. Om fälten <code>Subject:</code> eller <code>Keywords:</"9599"du skriver in nedan. Om fälten <code>Subject:</code> eller <code>Keywords:</"
9600"code>\n"9600"code>\n"
@@ -12813,7 +12813,7 @@
12813"Complete\n"12813"Complete\n"
12814"specifications are at:\n"12814"specifications are at:\n"
12815"\n"12815"\n"
12816"http://docs.python.org/library/re.html\n"12816"https://docs.python.org/2/library/re.html\n"
12817"\n"12817"\n"
12818"Address matches are case-insensitive, but case-preserved addresses are\n"12818"Address matches are case-insensitive, but case-preserved addresses are\n"
12819"displayed.\n"12819"displayed.\n"
@@ -12853,7 +12853,7 @@
12853"Syntax för regexp-uttryck är som Perl5, när Pythons \"re\" modul används.\n"12853"Syntax för regexp-uttryck är som Perl5, när Pythons \"re\" modul används.\n"
12854"Komplett specifikation finns på:\n"12854"Komplett specifikation finns på:\n"
12855"\n"12855"\n"
12856"http://docs.python.org/library/re.html\n"12856"https://docs.python.org/2/library/re.html\n"
12857"\n"12857"\n"
12858"Adresser jämförs utan skillnad på små och stora bokstäver, men visas med\n"12858"Adresser jämförs utan skillnad på små och stora bokstäver, men visas med\n"
12859"stora/små bokstäver som de stavas.\n"12859"stora/små bokstäver som de stavas.\n"
@@ -16310,12 +16310,12 @@
1631016310
16311#~ msgid ""16311#~ msgid ""
16312#~ "<li>Find members by\n"16312#~ "<li>Find members by\n"
16313#~ " <a href=\"http://docs.python.org/library/re.html#regular-"16313#~ " <a href=\"https://docs.python.org/2/library/re.html#regular-"
16314#~ "expression-syntax\"\n"16314#~ "expression-syntax\"\n"
16315#~ " >Python regular expression</a> (<em>regexp</em>)<br>"16315#~ " >Python regular expression</a> (<em>regexp</em>)<br>"
16316#~ msgstr ""16316#~ msgstr ""
16317#~ "<li>Hitta medlemmar genom att söka med en <a href=\"http://docs.python."16317#~ "<li>Hitta medlemmar genom att söka med en <a href=\"https://docs.python."
16318#~ "org/library/re.html#regular-expression-syntax\">Python regular "16318#~ "org/2/library/re.html#regular-expression-syntax\">Python regular "
16319#~ "expression</a> (<em>regexp</em>)<br>"16319#~ "expression</a> (<em>regexp</em>)<br>"
1632016320
16321#~ msgid "Send welcome message to this batch?"16321#~ msgid "Send welcome message to this batch?"
1632216322
=== modified file 'messages/tr/LC_MESSAGES/mailman.po'
--- messages/tr/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/tr/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6920,7 +6920,7 @@
6920"\n"6920"\n"
6921" <p>In the text boxes below, add one address per line; start the\n"6921" <p>In the text boxes below, add one address per line; start the\n"
6922" line with a ^ character to designate a <a href=\n"6922" line with a ^ character to designate a <a href=\n"
6923" \"http://docs.python.org/library/re.html\"\n"6923" \"https://docs.python.org/2/library/re.html\"\n"
6924" >Python regular expression</a>. When entering backslashes, do "6924" >Python regular expression</a>. When entering backslashes, do "
6925"so\n"6925"so\n"
6926" as if you were using Python raw strings (i.e. you generally "6926" as if you were using Python raw strings (i.e. you generally "
@@ -6964,7 +6964,7 @@
6964"þekilde\n"6964"þekilde\n"
6965" adres ekleyebilirsiniz; satýra bir ^ karakteri ile baþlayarak "6965" adres ekleyebilirsiniz; satýra bir ^ karakteri ile baþlayarak "
6966"bir\n"6966"bir\n"
6967" <a href=\"http://docs.python.org/library/re.html\">Python\n"6967" <a href=\"https://docs.python.org/2/library/re.html\">Python\n"
6968" regular expression</a> belirtebilirsiniz. Ters geri çizgi "6968" regular expression</a> belirtebilirsiniz. Ters geri çizgi "
6969"girerken\n"6969"girerken\n"
6970" Python ham dizgisi gibi girin (yani genel olarak tek bir ters "6970" Python ham dizgisi gibi girin (yani genel olarak tek bir ters "
@@ -7763,7 +7763,7 @@
7763msgid ""7763msgid ""
7764"The topic filter categorizes each incoming email message\n"7764"The topic filter categorizes each incoming email message\n"
7765" according to <a\n"7765" according to <a\n"
7766" href=\"http://docs.python.org/library/re.html\">regular\n"7766" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7767" expression filters</a> you specify below. If the message's\n"7767" expression filters</a> you specify below. If the message's\n"
7768" <code>Subject:</code> or <code>Keywords:</code> header contains "7768" <code>Subject:</code> or <code>Keywords:</code> header contains "
7769"a\n"7769"a\n"
@@ -7786,7 +7786,7 @@
7786" configuration variable."7786" configuration variable."
7787msgstr ""7787msgstr ""
7788"Konu filtresi gelen her mesajý aþaðýda belirleyeceðiniz <a\n"7788"Konu filtresi gelen her mesajý aþaðýda belirleyeceðiniz <a\n"
7789" href=\"http://docs.python.org/library/re.html\">regular\n"7789" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7790" expression filtrelerine</a> göre kategorilere ayýrýr. Eðer "7790" expression filtrelerine</a> göre kategorilere ayýrýr. Eðer "
7791"mesajýn\n"7791"mesajýn\n"
7792" <code>Konu:</code> veya <code>Keywords:</code> baþlýðý bir "7792" <code>Konu:</code> veya <code>Keywords:</code> baþlýðý bir "
@@ -10049,7 +10049,7 @@
10049"Complete\n"10049"Complete\n"
10050"specifications are at:\n"10050"specifications are at:\n"
10051"\n"10051"\n"
10052"http://docs.python.org/library/re.html\n"10052"https://docs.python.org/2/library/re.html\n"
10053"\n"10053"\n"
10054"Address matches are case-insensitive, but case-preserved addresses are\n"10054"Address matches are case-insensitive, but case-preserved addresses are\n"
10055"displayed.\n"10055"displayed.\n"
1005610056
=== modified file 'messages/uk/LC_MESSAGES/mailman.po'
--- messages/uk/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/uk/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6803,7 +6803,7 @@
6803"\n"6803"\n"
6804" <p>In the text boxes below, add one address per line; start the\n"6804" <p>In the text boxes below, add one address per line; start the\n"
6805" line with a ^ character to designate a <a href=\n"6805" line with a ^ character to designate a <a href=\n"
6806" \"http://docs.python.org/library/re.html\"\n"6806" \"https://docs.python.org/2/library/re.html\"\n"
6807" >Python regular expression</a>. When entering backslashes, do "6807" >Python regular expression</a>. When entering backslashes, do "
6808"so\n"6808"so\n"
6809" as if you were using Python raw strings (i.e. you generally "6809" as if you were using Python raw strings (i.e. you generally "
@@ -6838,7 +6838,7 @@
6838"\n"6838"\n"
6839" <p>�ижче у тек�тових пол�х, додайте, по одній в р�дку, адре�и.\n"6839" <p>�ижче у тек�тових пол�х, додайте, по одній в р�дку, адре�и.\n"
6840" Якщо р�док починаєть�� з �имволу ^ - це означає <a href=\n"6840" Якщо р�док починаєть�� з �имволу ^ - це означає <a href=\n"
6841" \"http://docs.python.org/library/re.html\"\n"6841" \"https://docs.python.org/2/library/re.html\"\n"
6842" >регул�рний вираз мови Python</a>. Якщо ви вводите зворотній\n"6842" >регул�рний вираз мови Python</a>. Якщо ви вводите зворотній\n"
6843" �леш, робіть це так, �к у �имвольних р�дках Python (тобто\n"6843" �леш, робіть це так, �к у �имвольних р�дках Python (тобто\n"
6844" про�то викори�товуйте один �имвол зворотного �лешу).\n"6844" про�то викори�товуйте один �имвол зворотного �лешу).\n"
@@ -7598,7 +7598,7 @@
7598msgid ""7598msgid ""
7599"The topic filter categorizes each incoming email message\n"7599"The topic filter categorizes each incoming email message\n"
7600" according to <a\n"7600" according to <a\n"
7601" href=\"http://docs.python.org/library/re.html\">regular\n"7601" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7602" expression filters</a> you specify below. If the message's\n"7602" expression filters</a> you specify below. If the message's\n"
7603" <code>Subject:</code> or <code>Keywords:</code> header contains "7603" <code>Subject:</code> or <code>Keywords:</code> header contains "
7604"a\n"7604"a\n"
@@ -7621,7 +7621,7 @@
7621" configuration variable."7621" configuration variable."
7622msgstr ""7622msgstr ""
7623"Фільтр тем виділ�є категорії повідомлень відповідно до наведених нижче\n"7623"Фільтр тем виділ�є категорії повідомлень відповідно до наведених нижче\n"
7624" <a href=\"http://docs.python.org/library/re.html\">фільтрів\n"7624" <a href=\"https://docs.python.org/2/library/re.html\">фільтрів\n"
7625" регул�рних виразів</a>. Якщо заголовки повідомленн� \n"7625" регул�рних виразів</a>. Якщо заголовки повідомленн� \n"
7626" <code>Subject:</code> чи <code>Keywords:</code> відповідають\n"7626" <code>Subject:</code> чи <code>Keywords:</code> відповідають\n"
7627" фільтру тем, повідомленн� логічно розміщують�� у\n"7627" фільтру тем, повідомленн� логічно розміщують�� у\n"
@@ -10219,7 +10219,7 @@
10219"Complete\n"10219"Complete\n"
10220"specifications are at:\n"10220"specifications are at:\n"
10221"\n"10221"\n"
10222"http://docs.python.org/library/re.html\n"10222"https://docs.python.org/2/library/re.html\n"
10223"\n"10223"\n"
10224"Address matches are case-insensitive, but case-preserved addresses are\n"10224"Address matches are case-insensitive, but case-preserved addresses are\n"
10225"displayed.\n"10225"displayed.\n"
@@ -10258,7 +10258,7 @@
10258"Синтак�и� регул�рних виразів �хожий на Perl5, викори�товуєть�� модуль re\n"10258"Синтак�и� регул�рних виразів �хожий на Perl5, викори�товуєть�� модуль re\n"
10259"мови Python. Повна �пецифікаці� на:\n"10259"мови Python. Повна �пецифікаці� на:\n"
10260"\n"10260"\n"
10261"http://docs.python.org/library/re.html\n"10261"https://docs.python.org/2/library/re.html\n"
10262"\n"10262"\n"
10263"Пошук ведеть�� без урахуванн� регі�тру літер, але адре�и вивод�ть�� із\n"10263"Пошук ведеть�� без урахуванн� регі�тру літер, але адре�и вивод�ть�� із\n"
10264"збереженн�м регі�тру.\n"10264"збереженн�м регі�тру.\n"
1026510265
=== modified file 'messages/vi/LC_MESSAGES/mailman.po'
--- messages/vi/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/vi/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6840,7 +6840,7 @@
6840"\n"6840"\n"
6841" <p>In the text boxes below, add one address per line; start the\n"6841" <p>In the text boxes below, add one address per line; start the\n"
6842" line with a ^ character to designate a <a href=\n"6842" line with a ^ character to designate a <a href=\n"
6843" \"http://docs.python.org/library/re.html\"\n"6843" \"https://docs.python.org/2/library/re.html\"\n"
6844" >Python regular expression</a>. When entering backslashes, do "6844" >Python regular expression</a>. When entering backslashes, do "
6845"so\n"6845"so\n"
6846" as if you were using Python raw strings (i.e. you generally "6846" as if you were using Python raw strings (i.e. you generally "
@@ -6874,7 +6874,7 @@
6874"\n"6874"\n"
6875" <p>Trong những trư�ng bên dưới, hãy thêm\n"6875" <p>Trong những trư�ng bên dưới, hãy thêm\n"
6876"một địa chỉ thư trên mỗi dòng; bắt đầu dòng với dấu mũ ^\n"6876"một địa chỉ thư trên mỗi dòng; bắt đầu dòng với dấu mũ ^\n"
6877"để ngụ ý cần thiết khớp với <a href=\"http://docs.python.org/library/re.html"6877"để ngụ ý cần thiết khớp với <a href=\"https://docs.python.org/2/library/re.html"
6878"\">biểu thức chính quy Python</a>.\n"6878"\">biểu thức chính quy Python</a>.\n"
6879"Khi gõ sổ chéo ngược, hãy dùng chỉ một sổ chéo ngược đơn,\n"6879"Khi gõ sổ chéo ngược, hãy dùng chỉ một sổ chéo ngược đơn,\n"
6880"như là dùng chuỗi thô Python.\n"6880"như là dùng chuỗi thô Python.\n"
@@ -7645,7 +7645,7 @@
7645msgid ""7645msgid ""
7646"The topic filter categorizes each incoming email message\n"7646"The topic filter categorizes each incoming email message\n"
7647" according to <a\n"7647" according to <a\n"
7648" href=\"http://docs.python.org/library/re.html\">regular\n"7648" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7649" expression filters</a> you specify below. If the message's\n"7649" expression filters</a> you specify below. If the message's\n"
7650" <code>Subject:</code> or <code>Keywords:</code> header contains "7650" <code>Subject:</code> or <code>Keywords:</code> header contains "
7651"a\n"7651"a\n"
@@ -7668,7 +7668,7 @@
7668" configuration variable."7668" configuration variable."
7669msgstr ""7669msgstr ""
7670"Bộ l�c chủ đ� phân loại mỗi thư mới đến tùy theo những\n"7670"Bộ l�c chủ đ� phân loại mỗi thư mới đến tùy theo những\n"
7671"<a href=\"http://docs.python.org/library/re.html\">bộ l�c biểu thức chính "7671"<a href=\"https://docs.python.org/2/library/re.html\">bộ l�c biểu thức chính "
7672"quy</a> bạn ghi rõ bên dưới.\n"7672"quy</a> bạn ghi rõ bên dưới.\n"
7673"Nếu dòng đầu <code>Subject:</code> (Chủ đ�) hoặc <code>Keywords:</code>\n"7673"Nếu dòng đầu <code>Subject:</code> (Chủ đ�) hoặc <code>Keywords:</code>\n"
7674"(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"7674"(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"
@@ -10291,7 +10291,7 @@
10291"Complete\n"10291"Complete\n"
10292"specifications are at:\n"10292"specifications are at:\n"
10293"\n"10293"\n"
10294"http://docs.python.org/library/re.html\n"10294"https://docs.python.org/2/library/re.html\n"
10295"\n"10295"\n"
10296"Address matches are case-insensitive, but case-preserved addresses are\n"10296"Address matches are case-insensitive, but case-preserved addresses are\n"
10297"displayed.\n"10297"displayed.\n"
@@ -10332,7 +10332,7 @@
10332"Python.\n"10332"Python.\n"
10333"Có đặc tả hoàn toàn tại :\n"10333"Có đặc tả hoàn toàn tại :\n"
10334"\n"10334"\n"
10335"http://docs.python.org/library/re.html\n"10335"https://docs.python.org/2/library/re.html\n"
10336"\n"10336"\n"
10337"Việc khớp địa chỉ không phân biệt chữ hoa/thư�ng, còn địa chỉ có\n"10337"Việc khớp địa chỉ không phân biệt chữ hoa/thư�ng, còn địa chỉ có\n"
10338"chữ hoa/thư�ng đã bảo tồn có phải được hiển thị.\n"10338"chữ hoa/thư�ng đã bảo tồn có phải được hiển thị.\n"
1033910339
=== modified file 'messages/zh_CN/LC_MESSAGES/mailman.po'
--- messages/zh_CN/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/zh_CN/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6500,7 +6500,7 @@
6500"\n"6500"\n"
6501" <p>In the text boxes below, add one address per line; start the\n"6501" <p>In the text boxes below, add one address per line; start the\n"
6502" line with a ^ character to designate a <a href=\n"6502" line with a ^ character to designate a <a href=\n"
6503" \"http://docs.python.org/library/re.html\"\n"6503" \"https://docs.python.org/2/library/re.html\"\n"
6504" >Python regular expression</a>. When entering backslashes, do "6504" >Python regular expression</a>. When entering backslashes, do "
6505"so\n"6505"so\n"
6506" as if you were using Python raw strings (i.e. you generally "6506" as if you were using Python raw strings (i.e. you generally "
@@ -6535,7 +6535,7 @@
6535"\n"6535"\n"
6536" <p>下�的文本框中,�行�能添加一个地�。行首的字符 ^ 说明��的"6536" <p>下�的文本框中,�行�能添加一个地�。行首的字符 ^ 说明��的"
6537"是\n"6537"是\n"
6538" 一个<a href=\"http://docs.python.org/library/re.html\"\n"6538" 一个<a href=\"https://docs.python.org/2/library/re.html\"\n"
6539" >Python正则表达�</a>。�斜线请按照Python原始字符串的形�输入(也"6539" >Python正则表达�</a>。�斜线请按照Python原始字符串的形�输入(也"
6540"就是\n"6540"就是\n"
6541" 说您�需�输入一个�斜线就�以了)。\n"6541" 说您�需�输入一个�斜线就�以了)。\n"
@@ -7256,7 +7256,7 @@
7256msgid ""7256msgid ""
7257"The topic filter categorizes each incoming email message\n"7257"The topic filter categorizes each incoming email message\n"
7258" according to <a\n"7258" according to <a\n"
7259" href=\"http://docs.python.org/library/re.html\">regular\n"7259" href=\"https://docs.python.org/2/library/re.html\">regular\n"
7260" expression filters</a> you specify below. If the message's\n"7260" expression filters</a> you specify below. If the message's\n"
7261" <code>Subject:</code> or <code>Keywords:</code> header contains "7261" <code>Subject:</code> or <code>Keywords:</code> header contains "
7262"a\n"7262"a\n"
@@ -7279,7 +7279,7 @@
7279" configuration variable."7279" configuration variable."
7280msgstr ""7280msgstr ""
7281"主题过滤器根�您在下�指定的<a\n"7281"主题过滤器根�您在下�指定的<a\n"
7282" href=\"http://docs.python.org/library/re.html\">\n"7282" href=\"https://docs.python.org/2/library/re.html\">\n"
7283" 正则表达�</a>�对收到的邮件进行分类。如果�邮件的<code>Subject:"7283" 正则表达�</a>�对收到的邮件进行分类。如果�邮件的<code>Subject:"
7284"</code>\n"7284"</code>\n"
7285" 头或<code>Keywords:</code>头匹�一个主题过滤器,那么此邮件将在逻"7285" 头或<code>Keywords:</code>头匹�一个主题过滤器,那么此邮件将在逻"
@@ -9785,7 +9785,7 @@
9785"Complete\n"9785"Complete\n"
9786"specifications are at:\n"9786"specifications are at:\n"
9787"\n"9787"\n"
9788"http://docs.python.org/library/re.html\n"9788"https://docs.python.org/2/library/re.html\n"
9789"\n"9789"\n"
9790"Address matches are case-insensitive, but case-preserved addresses are\n"9790"Address matches are case-insensitive, but case-preserved addresses are\n"
9791"displayed.\n"9791"displayed.\n"
@@ -9822,7 +9822,7 @@
9822"\n"9822"\n"
9823"正则表达�语法类似于Perl5,使用了Python的re模�。完整的定义��:\n"9823"正则表达�语法类似于Perl5,使用了Python的re模�。完整的定义��:\n"
9824"\n"9824"\n"
9825"http://docs.python.org/library/re.html\n"9825"https://docs.python.org/2/library/re.html\n"
9826"\n"9826"\n"
9827"地�匹�是大�写无关的,但是显示的地�将�留原有形�。\n"9827"地�匹�是大�写无关的,但是显示的地�将�留原有形�。\n"
9828"\n"9828"\n"
98299829
=== modified file 'messages/zh_TW/LC_MESSAGES/mailman.po'
--- messages/zh_TW/LC_MESSAGES/mailman.po 2018-07-11 04:23:52 +0000
+++ messages/zh_TW/LC_MESSAGES/mailman.po 2018-07-15 05:58:13 +0000
@@ -6079,7 +6079,7 @@
6079"\n"6079"\n"
6080" <p>In the text boxes below, add one address per line; start the\n"6080" <p>In the text boxes below, add one address per line; start the\n"
6081" line with a ^ character to designate a <a href=\n"6081" line with a ^ character to designate a <a href=\n"
6082" \"http://docs.python.org/library/re.html\"\n"6082" \"https://docs.python.org/2/library/re.html\"\n"
6083" >Python regular expression</a>. When entering backslashes, do "6083" >Python regular expression</a>. When entering backslashes, do "
6084"so\n"6084"so\n"
6085" as if you were using Python raw strings (i.e. you generally "6085" as if you were using Python raw strings (i.e. you generally "
@@ -6104,7 +6104,7 @@
6104"a>的�濾。\n"6104"a>的�濾。\n"
6105"\n"6105"\n"
6106" <p>在下�的文字框中�行填入一個地�,在行首寫 ^ 字元代表是\n"6106" <p>在下�的文字框中�行填入一個地�,在行首寫 ^ 字元代表是\n"
6107"<a href=\"http://docs.python.org/library/re.html\">Python 正�表示�</a>。\n"6107"<a href=\"https://docs.python.org/2/library/re.html\">Python 正�表示�</a>。\n"
6108"�填入�斜線�譯註:╲】的話,請直接打�斜線��,�用多加一個�斜線逸出。\n"6108"�填入�斜線�譯註:╲】的話,請直接打�斜線��,�用多加一個�斜線逸出。\n"
6109"\n"6109"\n"
6110" <p>請注�,會先��正�表示�的比�。"6110" <p>請注�,會先��正�表示�的比�。"
@@ -6764,7 +6764,7 @@
6764msgid ""6764msgid ""
6765"The topic filter categorizes each incoming email message\n"6765"The topic filter categorizes each incoming email message\n"
6766" according to <a\n"6766" according to <a\n"
6767" href=\"http://docs.python.org/library/re.html\">regular\n"6767" href=\"https://docs.python.org/2/library/re.html\">regular\n"
6768" expression filters</a> you specify below. If the message's\n"6768" expression filters</a> you specify below. If the message's\n"
6769" <code>Subject:</code> or <code>Keywords:</code> header contains "6769" <code>Subject:</code> or <code>Keywords:</code> header contains "
6770"a\n"6770"a\n"
@@ -8901,7 +8901,7 @@
8901"Complete\n"8901"Complete\n"
8902"specifications are at:\n"8902"specifications are at:\n"
8903"\n"8903"\n"
8904"http://docs.python.org/library/re.html\n"8904"https://docs.python.org/2/library/re.html\n"
8905"\n"8905"\n"
8906"Address matches are case-insensitive, but case-preserved addresses are\n"8906"Address matches are case-insensitive, but case-preserved addresses are\n"
8907"displayed.\n"8907"displayed.\n"
89088908
=== modified file 'misc/sitelist.cfg'
--- misc/sitelist.cfg 2009-01-11 16:06:13 +0000
+++ misc/sitelist.cfg 2018-07-15 05:58:13 +0000
@@ -248,7 +248,7 @@
248# 248#
249# <p>In the text boxes below, add one address per line; start the line249# <p>In the text boxes below, add one address per line; start the line
250# with a ^ character to designate a <a href=250# with a ^ character to designate a <a href=
251# "http://docs.python.org/library/re.html" >Python regular251# "https://docs.python.org/2/library/re.html" >Python regular
252# expression</a>. When entering backslashes, do so as if you were using252# expression</a>. When entering backslashes, do so as if you were using
253# Python raw strings (i.e. you generally just use a single backslash).253# Python raw strings (i.e. you generally just use a single backslash).
254# 254#
255255
=== modified file 'templates/ar/headfoot.html'
--- templates/ar/headfoot.html 2009-12-14 22:41:45 +0000
+++ templates/ar/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,4 +1,4 @@
1يمكن لهذا النص أن يتضمن<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">محار� تنسيق بايثون</a> 1يمكن لهذا النص أن يتضمن<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">محار� تنسيق بايثون</a>
2والتي سيتم حلها مع مواص�ات القائمة. قائمة الاستبدالات المسموحة هي:2والتي سيتم حلها مع مواص�ات القائمة. قائمة الاستبدالات المسموحة هي:
33
4<ul>4<ul>
55
=== modified file 'templates/ast/headfoot.html'
--- templates/ast/headfoot.html 2009-12-08 23:25:52 +0000
+++ templates/ast/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Esti testu puede incluyir 1Esti testu puede incluyir
2<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:2<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:
33
4<ul>4<ul>
5 <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.5 <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.
66
=== modified file 'templates/ca/headfoot.html'
--- templates/ca/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/ca/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Aquest text pot incloure 1Aquest text pot incloure
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">cadenes 2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">cadenes
3de format del Python</a>, les quals es resoldran com atributs de la llista. 3de format del Python</a>, les quals es resoldran com atributs de la llista.
4La llista de les substitucions permeses &eacute;s la seg&uuml;ent: 4La llista de les substitucions permeses &eacute;s la seg&uuml;ent:
55
66
=== modified file 'templates/cs/headfoot.html'
--- templates/cs/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/cs/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Tento text mù¾e obsahovat <a1Tento text mù¾e obsahovat <a
2href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">form&aacute;tovac&iacute;2href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">form&aacute;tovac&iacute;
3pø&iacute;kazy Pythonu</a> kter&eacute; se nahrazuj&iacute; odpov&iacute;daj&iacute;c&iacute;mi hodnotami, pøi3pø&iacute;kazy Pythonu</a> kter&eacute; se nahrazuj&iacute; odpov&iacute;daj&iacute;c&iacute;mi hodnotami, pøi
4generov&aacute;n&iacute; str&aacute;nky. Nejdùle¾itìj&scaron;&iacute; promìnn&eacute; jsou:4generov&aacute;n&iacute; str&aacute;nky. Nejdùle¾itìj&scaron;&iacute; promìnn&eacute; jsou:
55
66
=== modified file 'templates/da/headfoot.html'
--- templates/da/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/da/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,6 +1,6 @@
1Teksten kan indeholde formateringskoder1Teksten kan indeholde formateringskoder
2som udskiftes med v&aelig;rdier fra listens ops&aelig;tning. For detaljer, se2som udskiftes med v&aelig;rdier fra listens ops&aelig;tning. For detaljer, se
3<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Pythons3<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Pythons
4formateringsregler (engelsk)</a>. Gyldige koder er:4formateringsregler (engelsk)</a>. Gyldige koder er:
55
6<ul>6<ul>
77
=== modified file 'templates/de/headfoot.html'
--- templates/de/headfoot.html 2015-09-08 12:10:20 +0000
+++ templates/de/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,6 +1,6 @@
1<!-- updated to en 2.1 -->1<!-- updated to en 2.1 -->
2Dieser Text kann sogenannte2Dieser Text kann sogenannte
3"<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">3"<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
4Python format strings</a>" enthalten, die durch listenspezifische Werte4Python format strings</a>" enthalten, die durch listenspezifische Werte
5ersetzt werden.5ersetzt werden.
66
77
=== modified file 'templates/el/headfoot.html'
--- templates/el/headfoot.html 2012-06-20 23:32:30 +0000
+++ templates/el/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,6 +1,6 @@
11
2Áõôü ôï êåßìåíï ìðïñåß íá ðåñéÝ÷åé 2Áõôü ôï êåßìåíï ìðïñåß íá ðåñéÝ÷åé
3<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">÷áñáêôÞñåò óå 3<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">÷áñáêôÞñåò óå
4Python format</a> ïé ïðïßïé áíáëýïíôáé ìå ôç ÷ñÞóç ìéáò ëßóôáò ôéìþí. Ç ëßóôá ôùí 4Python format</a> ïé ïðïßïé áíáëýïíôáé ìå ôç ÷ñÞóç ìéáò ëßóôáò ôéìþí. Ç ëßóôá ôùí
5õðïêáôÜóôáôùí ðïõ åðéôñÝðïíôáé åßíáé:5õðïêáôÜóôáôùí ðïõ åðéôñÝðïíôáé åßíáé:
66
77
=== modified file 'templates/en/headfoot.html'
--- templates/en/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/en/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1This text can include 1This text can include
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
3format strings</a> which are resolved against list attributes. The3format strings</a> which are resolved against list attributes. The
4list of substitutions allowed are:4list of substitutions allowed are:
55
66
=== modified file 'templates/es/headfoot.html'
--- templates/es/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/es/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Este texto puede incluir 1Este texto puede incluir
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
3cadenas de formato Python3cadenas de formato Python
4</a>4</a>
5que ser&aacute;n sustituidas por los atributos de la lista. La lista de5que ser&aacute;n sustituidas por los atributos de la lista. La lista de
66
=== modified file 'templates/et/headfoot.html'
--- templates/et/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/et/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1See tekst v&otilde;ib sisaldada1See tekst v&otilde;ib sisaldada
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Pythoni2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Pythoni
3vormingustringe</a>, mis asendatakse selle listi atribuutidega. Lubatud3vormingustringe</a>, mis asendatakse selle listi atribuutidega. Lubatud
4asendused on j&auml;rgmised:4asendused on j&auml;rgmised:
5<ul>5<ul>
66
=== modified file 'templates/eu/headfoot.html'
--- templates/eu/headfoot.html 2013-09-15 04:10:27 +0000
+++ templates/eu/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Testu honek 1Testu honek
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
3kateak</a> izan ditzake; zerrendako atributuen bidez ordezkatuko dira. 3kateak</a> izan ditzake; zerrendako atributuen bidez ordezkatuko dira.
4Onartzen diren ordezkapenak hauexek dira:4Onartzen diren ordezkapenak hauexek dira:
55
66
=== modified file 'templates/fi/headfoot.html'
--- templates/fi/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/fi/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1<br>1<br>
2Teksti voi sis&auml;lt&auml;&auml; <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations"> muotoiltuja2Teksti voi sis&auml;lt&auml;&auml; <a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations"> muotoiltuja
3merkkijonoja. Muotoilussa k&Atilde;&curren;ytett&Atilde;&curren;vi&Atilde;&curren; arvoja ovat:3merkkijonoja. Muotoilussa k&Atilde;&curren;ytett&Atilde;&curren;vi&Atilde;&curren; arvoja ovat:
44
5<ul>5<ul>
66
=== modified file 'templates/fr/headfoot.html'
--- templates/fr/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/fr/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Ce texte peut contenir <a 1Ce texte peut contenir <a
2href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">des formats 2href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">des formats
3de cha&icirc;nes Python </a>qui sont remplac&eacute;es par les attributs 3de cha&icirc;nes Python </a>qui sont remplac&eacute;es par les attributs
4de la liste. La liste des substitutions valides est: 4de la liste. La liste des substitutions valides est:
5<ul>5<ul>
66
=== modified file 'templates/gl/headfoot.html'
--- templates/gl/headfoot.html 2016-01-10 03:33:25 +0000
+++ templates/gl/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Este texto pode inclu&iacute;r 1Este texto pode inclu&iacute;r
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
3cadeas de formato Python3cadeas de formato Python
4</a>4</a>
5que se substituir&aacute;n polos atributos da rolda. A relaci&oacute;n de5que se substituir&aacute;n polos atributos da rolda. A relaci&oacute;n de
66
=== modified file 'templates/he/headfoot.html'
--- templates/he/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/he/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1טקסט זה יכול לכלול 1טקסט זה יכול לכלול
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">מחרוזות2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">מחרוזות
3בפורמ�ט Python</a> �שר מפוענחות מול תכונות הרשימה. רשימת3בפורמ�ט Python</a> �שר מפוענחות מול תכונות הרשימה. רשימת
4תתי-המצבי� המותרי�:4תתי-המצבי� המותרי�:
5<ul>5<ul>
66
=== modified file 'templates/hr/headfoot.html'
--- templates/hr/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/hr/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1 Ovaj tekst mo¾e ukljuèiti 1 Ovaj tekst mo¾e ukljuèiti
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
3format stringova</a> koji su razluèeni prema atributima liste. Lista dozvoljenih 3format stringova</a> koji su razluèeni prema atributima liste. Lista dozvoljenih
4zamjena je: 4zamjena je:
55
66
=== modified file 'templates/hu/headfoot.html'
--- templates/hu/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/hu/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,4 +1,4 @@
1Ez 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.1Ez 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.
2Az al&aacute;bbi v&aacute;ltoz&oacute;k jelent&eacute;se:2Az al&aacute;bbi v&aacute;ltoz&oacute;k jelent&eacute;se:
33
4<ul>4<ul>
55
=== modified file 'templates/ia/headfoot.html'
--- templates/ia/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/ia/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Iste texto pote includer1Iste texto pote includer
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">stringas2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">stringas
3in formato Python</a> que es completate per un lista de attributos. Le lista3in formato Python</a> que es completate per un lista de attributos. Le lista
4de substitutiones permittite es:4de substitutiones permittite es:
55
66
=== modified file 'templates/it/headfoot.html'
--- templates/it/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/it/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Questo testo pu&ograve; includere <a1Questo testo pu&ograve; includere <a
2href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Stringhe2href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Stringhe
3di formato Python</a> che saranno sostituite automaticamente dai3di formato Python</a> che saranno sostituite automaticamente dai
4valori degli attributi della lista. L'elenco degli attributi permessi4valori degli attributi della lista. L'elenco degli attributi permessi
5&egrave;:5&egrave;:
66
=== modified file 'templates/ja/headfoot.html'
--- templates/ja/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/ja/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1¤³¤Î¥Æ¥­¥¹¥È¤Ë¤Ï, ¥ê¥¹¥È¤Î°À­¤ÈÃÖ¤­´¹¤¨¤é¤ì¤ë1¤³¤Î¥Æ¥­¥¹¥È¤Ë¤Ï, ¥ê¥¹¥È¤Î°À­¤ÈÃÖ¤­´¹¤¨¤é¤ì¤ë
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
3Python¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó</a>¤òÁÞÆþ¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£3Python¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó</a>¤òÁÞÆþ¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
4¤³¤³¤Ç»È¤¨¤ëÃÖ´¹Ê¸»úÎó¤Ï°Ê²¼¤ÎÄ̤ê¤Ç¤¹¡¥4¤³¤³¤Ç»È¤¨¤ëÃÖ´¹Ê¸»úÎó¤Ï°Ê²¼¤ÎÄ̤ê¤Ç¤¹¡¥
55
66
=== modified file 'templates/ko/headfoot.html'
--- templates/ko/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/ko/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,6 +1,6 @@
1ÀÌ ¹®¼­´Â ¸ÞÀϸµ ¸®½ºÆ®¿¡ ¿¹¾àµÇ¾î Àִ Ư¼ºÀÇ <b>%(attribute)s</b>1ÀÌ ¹®¼­´Â ¸ÞÀϸµ ¸®½ºÆ®¿¡ ¿¹¾àµÇ¾î Àִ Ư¼ºÀÇ <b>%(attribute)s</b>
2Çü½ÄÀ» Æ÷ÇÔÇÏ°í ÀÖ½À´Ï´Ù. ´õ ÀÚ¼¼ÇÑ ¼³¸íÀº 2Çü½ÄÀ» Æ÷ÇÔÇÏ°í ÀÖ½À´Ï´Ù. ´õ ÀÚ¼¼ÇÑ ¼³¸íÀº
3<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">PythonÀÇ3<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">PythonÀÇ
4¹®ÀÚ¿­ Çü½Ä ±ÔÄ¢</a>À» º¸½Ã±â ¹Ù¶ø´Ï´Ù. ¸î¸î À¯¿ëÇÑ ¼Ó¼ºÀº ¾Æ·¡¿Í °°½À´Ï´Ù.4¹®ÀÚ¿­ Çü½Ä ±ÔÄ¢</a>À» º¸½Ã±â ¹Ù¶ø´Ï´Ù. ¸î¸î À¯¿ëÇÑ ¼Ó¼ºÀº ¾Æ·¡¿Í °°½À´Ï´Ù.
55
6<ul>6<ul>
77
=== modified file 'templates/lt/headfoot.html'
--- templates/lt/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/lt/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Á &scaron;á tekstà gali bûti átrauktos1Á &scaron;á tekstà gali bûti átrauktos
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
3formato eilutës</a> kurios yra apdorojamos pagal poþymius. 3formato eilutës</a> kurios yra apdorojamos pagal poþymius.
4Èia pateikiame pakeitimø sàra&scaron;à:4Èia pateikiame pakeitimø sàra&scaron;à:
55
66
=== modified file 'templates/nl/headfoot.html'
--- templates/nl/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/nl/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1De tekst mag de volgende1De tekst mag de volgende
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations" target="_blank">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations" target="_blank">Python
3format strings</a> bevatten, die automatisch herleid worden naar attributen die elders3format strings</a> bevatten, die automatisch herleid worden naar attributen die elders
4gedefinieerd zijn voor deze lijst. De mogelijke vervangende strings zijn:4gedefinieerd zijn voor deze lijst. De mogelijke vervangende strings zijn:
55
66
=== modified file 'templates/no/headfoot.html'
--- templates/no/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/no/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,6 +1,6 @@
1Teksten kan inneholde formateringskoder1Teksten kan inneholde formateringskoder
2som byttes ut med verdier fra listens oppsett. For detaljer, se2som byttes ut med verdier fra listens oppsett. For detaljer, se
3<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Pythons3<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Pythons
4formateringsregler (engelsk)</a>. Gyldige koder er:4formateringsregler (engelsk)</a>. Gyldige koder er:
55
6<ul>6<ul>
77
=== modified file 'templates/pt/headfoot.html'
--- templates/pt/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/pt/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Este texto pode incluir1Este texto pode incluir
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">strings 2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">strings
3de formata&ccedil;&atilde;o em Python</a> as quais s&atilde;o resolvidas em rela&ccedil;&atilde;o &agrave; lista de3de formata&ccedil;&atilde;o em Python</a> as quais s&atilde;o resolvidas em rela&ccedil;&atilde;o &agrave; lista de
4atributos ??????? atributos da lista.4atributos ??????? atributos da lista.
5As substitui&ccedil;&otilde;es permitidas s&atilde;o:5As substitui&ccedil;&otilde;es permitidas s&atilde;o:
66
=== modified file 'templates/pt_BR/headfoot.html'
--- templates/pt_BR/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/pt_BR/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Este texto pode incluir1Este texto pode incluir
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">strings no formato2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">strings no formato
3do Python</a> que s&atilde;o resolvidos contra atributos da lista. a lista 3do Python</a> que s&atilde;o resolvidos contra atributos da lista. a lista
4de substitui&ccedil;&otilde;es permitidas s&atilde;o:4de substitui&ccedil;&otilde;es permitidas s&atilde;o:
55
66
=== modified file 'templates/ro/headfoot.html'
--- templates/ro/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/ro/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Acest text poate include1Acest text poate include
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">ÅŸiruri2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">ÅŸiruri
3de caractere formatate Python</a> care sunt rezolvate vis-a-ais de atributele3de caractere formatate Python</a> care sunt rezolvate vis-a-ais de atributele
4listei. Lista substituţiilor permise este:4listei. Lista substituţiilor permise este:
55
66
=== modified file 'templates/ru/headfoot.html'
--- templates/ru/headfoot.html 2015-02-05 21:15:37 +0000
+++ templates/ru/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Этот тек�т может включать <a1Этот тек�т может включать <a
2href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">�троки2href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">�троки
3под�тановки Python (тек�т по-англий�ки)</a>, которые замен�ют�� �ледующими атрибутами3под�тановки Python (тек�т по-англий�ки)</a>, которые замен�ют�� �ледующими атрибутами
4�пи�ка ра��ылки:4�пи�ка ра��ылки:
55
66
=== modified file 'templates/sk/headfoot.html'
--- templates/sk/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/sk/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Tento text m&ocirc;že obsahovať <a1Tento text m&ocirc;že obsahovať <a
2href="http://docs.python.org/library/stdtypes.html#string-formatting-operations"2href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations"
3">form&aacute;tovacie3">form&aacute;tovacie
4pr&iacute;kazy jazyka Python</a>, ktor&eacute; sa nahradia pr&iacute;slu&scaron;n&yacute;mi4pr&iacute;kazy jazyka Python</a>, ktor&eacute; sa nahradia pr&iacute;slu&scaron;n&yacute;mi
5hodnotami pri vytv&aacute;ran&iacute; str&aacute;nky. Nejd&ocirc;ležitej&scaron;ie premenn&eacute; s&uacute;:5hodnotami pri vytv&aacute;ran&iacute; str&aacute;nky. Nejd&ocirc;ležitej&scaron;ie premenn&eacute; s&uacute;:
66
=== modified file 'templates/sl/headfoot.html'
--- templates/sl/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/sl/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1To besedilo lahko vkljuèuje1To besedilo lahko vkljuèuje
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
3nize</a>, ki jih uporabljamo namesto atributov seznama. Seznam3nize</a>, ki jih uporabljamo namesto atributov seznama. Seznam
4mo¾nih nadomestil:4mo¾nih nadomestil:
55
66
=== modified file 'templates/sr/headfoot.html'
--- templates/sr/headfoot.html 2013-09-15 04:10:27 +0000
+++ templates/sr/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,4 +1,4 @@
1Овај тек�т може да �адржи <a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python-ово 1Овај тек�т може да �адржи <a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python-ово
2форматирање</a> које �е утврђује на о�нову атрибута ли�та. Дозвољене замјене ли�те 2форматирање</a> које �е утврђује на о�нову атрибута ли�та. Дозвољене замјене ли�те
3�у: 3�у:
4<ul>4<ul>
55
=== modified file 'templates/sv/headfoot.html'
--- templates/sv/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/sv/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,4 +1,4 @@
1Den 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:1Den 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:
2<ul>2<ul>
3 <li><b>real_name</b> - Listans formaterade namn, vanligtvis listnamnet med stor initial eller stora bokst&auml;ver rakt igenom.3 <li><b>real_name</b> - Listans formaterade namn, vanligtvis listnamnet med stor initial eller stora bokst&auml;ver rakt igenom.
4 <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.4 <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.
55
=== modified file 'templates/tr/headfoot.html'
--- templates/tr/headfoot.html 2016-11-14 07:13:01 +0000
+++ templates/tr/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Bu yazý, liste &ouml;zniteliklerine karþý &ccedil;&ouml;z&uuml;lecek1Bu yazý, liste &ouml;zniteliklerine karþý &ccedil;&ouml;z&uuml;lecek
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
3bi&ccedil;im dizgileri</a> i&ccedil;erebilir. Ýzin verilen yerine koymalarýn listesi3bi&ccedil;im dizgileri</a> i&ccedil;erebilir. Ýzin verilen yerine koymalarýn listesi
4þunlardýr:4þunlardýr:
55
66
=== modified file 'templates/uk/headfoot.html'
--- templates/uk/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/uk/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1Цей тек�т може включати 1Цей тек�т може включати
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">
3форматовані р�дки</a>, �кі пов'�зані з ознаками �пи�ку. Перелік3форматовані р�дки</a>, �кі пов'�зані з ознаками �пи�ку. Перелік
4дозволених ознак:4дозволених ознак:
55
66
=== modified file 'templates/vi/headfoot.html'
--- templates/vi/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/vi/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1�oạn này có thể gồm 1�oạn này có thể gồm
2<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à:2<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à:
33
4<ul>4<ul>
5 <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ừ.5 <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ừ.
66
=== modified file 'templates/zh_CN/headfoot.html'
--- templates/zh_CN/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/zh_CN/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,5 +1,5 @@
1此文本�以包括1此文本�以包括
2<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python2<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
3格�字符串</a>,它们将根�列表属性�被解释。�用的替�有:3格�字符串</a>,它们将根�列表属性�被解释。�用的替�有:
4<ul>4<ul>
5 <li><b>real_name</b> - 列表的确切�字; 通常列表�字�大写。5 <li><b>real_name</b> - 列表的确切�字; 通常列表�字�大写。
66
=== modified file 'templates/zh_TW/headfoot.html'
--- templates/zh_TW/headfoot.html 2009-01-11 16:06:13 +0000
+++ templates/zh_TW/headfoot.html 2018-07-15 05:58:13 +0000
@@ -1,6 +1,6 @@
1本文�包� <b>%(attribute)s</b> 格�字串,其�替�為通信論壇1本文�包� <b>%(attribute)s</b> 格�字串,其�替�為通信論壇
2相應的屬性。詳情請�照2相應的屬性。詳情請�照
3<a href="http://docs.python.org/library/stdtypes.html#string-formatting-operations">Python3<a href="https://docs.python.org/2/library/stdtypes.html#string-formatting-operations">Python
4格�化字串�則</a>. �設屬性如下:4格�化字串�則</a>. �設屬性如下:
55
6<ul>6<ul>