diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-01-26 10:15:35 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-01-26 10:15:35 +0100 |
commit | 6d217ca8c54b53a3741992c63eefb704fc9de906 (patch) | |
tree | 6ed90c91b7a6e162c29ed8e15e084a4d54c98214 /po/pt.po | |
parent | 73a4901fe1f3ed884efcbb49d204d1466215f89c (diff) | |
download | weechat-6d217ca8c54b53a3741992c63eefb704fc9de906.zip |
doc: fix regex examples to be compatible with FreeBSD
The following special sequences are not supported in regular expressions on
FreeBSD:
- "\w": replaced with "[a-zA-Z0-9_]"
- "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice
only spaces could be a problem when we use this sequence).
Diffstat (limited to 'po/pt.po')
-rw-r--r-- | po/pt.po | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: WeeChat\n" "Report-Msgid-Bugs-To: flashcode@flashtux.org\n" -"POT-Creation-Date: 2019-01-20 18:39+0100\n" +"POT-Creation-Date: 2019-01-26 09:58+0100\n" "PO-Revision-Date: 2019-01-20 18:45+0100\n" "Last-Translator: Vasco Almeida <vascomalmeida@sapo.pt>\n" "Language-Team: Portuguese <>\n" @@ -13132,8 +13132,8 @@ msgid "" " add text attributes *bold*, _underline_ and /italic/ (only in user " "messages):\n" " /trigger add effects modifier weechat_print \"${tg_tag_nick}\" \"==" -"\\*(\\S+)\\*==*${color:bold}${re:1}${color:-bold}*== ==_(\\S+)_==_${color:" -"underline}${re:1}${color:-underline}_== ==/(\\S+)/==/${color:" +"\\*([^ ]+)\\*==*${color:bold}${re:1}${color:-bold}*== ==_([^ ]+)_==_${color:" +"underline}${re:1}${color:-underline}_== ==/([^ ]+)/==/${color:" "italic}${re:1}${color:-italic}/\"\n" " hide nicklist bar on small terminals:\n" " /trigger add resize_small signal signal_sigwinch \"${info:term_width} < " |