Skip to content

Commit 6176edf

Browse files
committed
Update French translations
1 parent 8dca8b8 commit 6176edf

File tree

10 files changed

+1234
-760
lines changed

10 files changed

+1234
-760
lines changed

weechat/doc/_i18n_doc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def __i18n_doc_doc():
1414
gettext_noop("FAQ")
1515
gettext_noop("Plugin API reference")
1616
gettext_noop("Quick Start guide")
17-
gettext_noop("Relay: API")
1817
gettext_noop("Relay: api")
1918
gettext_noop("Relay: weechat")
2019
gettext_noop("Scripting guide")

weechat/doc/_i18n_security.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def __i18n_doc_security():
1414
gettext_noop("A buffer overflow happens when a new IRC message 005 is received with longer nick prefixes.\n<br>\nNote: a \"normal\" IRC server should not send again a message 005 with new nick prefixes, so the problem should be limited to malicious IRC servers.")
1515
gettext_noop("A buffer overflow happens when decoding some IRC colors in strings.")
1616
gettext_noop("A buffer overflows happens in build of strings in different places.")
17+
gettext_noop("A crash happens when decoding a malformed HTTP message in relay plugin, protocol \"api\".\n<br>\nThis happens even if the client is not authenticated, the HTTP message is parsed before the authentication.")
1718
gettext_noop("A crash happens when decoding a malformed websocket frame in relay plugin.\n<br>\nThis happens even if a password is set in relay plugin, the malformed websocket frame can be received before the authentication of the client.")
1819
gettext_noop("A crash happens when receiving some WeeChat internal color codes in IRC messages.")
1920
gettext_noop("API")
@@ -39,6 +40,7 @@ def __i18n_doc_security():
3940
gettext_noop("Core, Plugins")
4041
gettext_noop("Crash in API function infobar_printf.")
4142
gettext_noop("Crash on IRC commands sent via Relay.")
43+
gettext_noop("Crash on malformed HTTP message in relay plugin, protocol \"api\".")
4244
gettext_noop("Crash on malformed IRC message 352 (WHO).")
4345
gettext_noop("Crash on malformed websocket frame in relay plugin.")
4446
gettext_noop("Crash on nicks monitored with /notify.")
@@ -60,6 +62,7 @@ def __i18n_doc_security():
6062
gettext_noop("Integer overflow in loops on lists.")
6163
gettext_noop("Integer overflow with decimal numbers in calculation of expression.")
6264
gettext_noop("Logger")
65+
gettext_noop("NULL Pointer Dereference")
6366
gettext_noop("Out-of-bounds read")
6467
gettext_noop("Out-of-bounds write")
6568
gettext_noop("Possible man-in-the-middle attack in TLS connection to IRC server.")
@@ -72,6 +75,7 @@ def __i18n_doc_security():
7275
gettext_noop("Strings are built with uncontrolled format when IRC commands are redirected by relay plugin. If the output or redirected command contains formatting chars like \"%\", this can lead to a crash of WeeChat.")
7376
gettext_noop("Strings are built with uncontrolled format when nicks containing \"%\" are monitored with command <code>/notify</code>.")
7477
gettext_noop("Strings are built with uncontrolled format when unknown IRC commands are sent to server, if option <code>irc.network.send_unknown_commands</code> is enabled.")
78+
gettext_noop("There are multiple ways to mitigate this issue:\n<ul>\n <li>Rremove all relays with protocol \"api\", see: <code>/help relay</code></li>\n <li>Unload relay plugin with command: <code>/plugin unload relay</code> and see: <code>/help weechat.plugin.autoload</code></li>\n <li>Secure relay to allow only some trusted IP addresses, see: <code>/help relay.network.allowed_ips</code></li>\n</ul>")
7579
gettext_noop("There are multiple ways to mitigate this issue:\n<ul>\n <li>Rremove all relays, see: <code>/help relay</code></li>\n <li>Unload relay plugin with command: <code>/plugin unload relay</code> and see: <code>/help weechat.plugin.autoload</code></li>\n <li>Secure relay to allow only some trusted IP addresses, see: <code>/help relay.network.allowed_ips</code></li>\n</ul>")
7680
gettext_noop("There are multiple ways to mitigate this issue:\n<ul>\n <li>Turn off option to send unknown commands: <code>/set irc.network.send_unknown_commands off</code></li>\n <li>Do not use formatting chars like \"%\" when sending unknown commands to server.</li>\n</ul>")
7781
gettext_noop("Turn of handling of colors in incoming IRC messages:\n\n<p><pre><code>/set irc.network.colors_receive off</code></pre></p>")

0 commit comments

Comments
 (0)