1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 14:56:39 +02:00

spelling: case-sensitive

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-09-06 08:25:21 -04:00
committed by Sébastien Helleu
parent 0505a0ff76
commit c28696e602
24 changed files with 82 additions and 82 deletions
+5 -5
View File
@@ -8524,12 +8524,12 @@ command_init ()
N_("Comparison operators (by order of priority):"),
N_(" =~ is matching POSIX extended regex"),
N_(" !~ is NOT matching POSIX extended regex"),
N_(" ==* is matching mask, case sensitive (wildcard \"*\" is allowed)"),
N_(" !!* is NOT matching mask, case sensitive (wildcard \"*\" is allowed)"),
N_(" ==* is matching mask, case-sensitive (wildcard \"*\" is allowed)"),
N_(" !!* is NOT matching mask, case-sensitive (wildcard \"*\" is allowed)"),
N_(" =* is matching mask, case-insensitive (wildcard \"*\" is allowed)"),
N_(" !* is NOT matching mask, case-insensitive (wildcard \"*\" is allowed)"),
N_(" ==- is included, case sensitive"),
N_(" !!- is NOT included, case sensitive"),
N_(" ==- is included, case-sensitive"),
N_(" !!- is NOT included, case-sensitive"),
N_(" =- is included, case-insensitive"),
N_(" !- is NOT included, case-insensitive"),
N_(" == equal"),
@@ -8638,7 +8638,7 @@ command_init ()
N_("> - two regular expressions are created: "
"one for prefix and one for message"),
N_("> - regex are case-insensitive, they can start by "
"\"(?-i)\" to become case sensitive"),
"\"(?-i)\" to become case-sensitive"),
"",
N_("The default key alt+\"=\" toggles filtering on/off globally and "
"alt+\"-\" toggles filtering on/off in the current buffer."),