1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 00:33:13 +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."),
+6 -6
View File
@@ -3344,7 +3344,7 @@ config_weechat_init_options ()
config_look_buffer_search_case_sensitive = config_file_new_option (
weechat_config_file, weechat_config_section_look,
"buffer_search_case_sensitive", "boolean",
N_("default text search in buffer: case sensitive or not"),
N_("default text search in buffer: case-sensitive or not"),
NULL, 0, 0, "off", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
config_look_buffer_search_history = config_file_new_option (
@@ -3629,7 +3629,7 @@ config_weechat_init_options ()
"highlight", "string",
N_("comma separated list of words to highlight; case-insensitive "
"comparison (use \"(?-i)\" at beginning of words to make them "
"case sensitive), words may begin or end with \"*\" for partial "
"case-sensitive), words may begin or end with \"*\" for partial "
"match; example: \"test,(?-i)*toto*,flash*\""),
NULL, 0, 0, "", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
@@ -3641,7 +3641,7 @@ config_weechat_init_options ()
"highlight options (if the string is found in the message, the "
"highlight is disabled and the other options are ignored), "
"regular expression is case-insensitive (use \"(?-i)\" at "
"beginning to make it case sensitive), examples: "
"beginning to make it case-sensitive), examples: "
"\"<flash.*>\", \"(?-i)<Flash.*>\""),
NULL, 0, 0, "", NULL, 0,
NULL, NULL, NULL,
@@ -3663,7 +3663,7 @@ config_weechat_init_options ()
"has highlight or not, at least one match in string must be "
"surrounded by delimiters (chars different from: alphanumeric, "
"\"-\", \"_\" and \"|\"), regular expression is case-insensitive "
"(use \"(?-i)\" at beginning to make it case sensitive), "
"(use \"(?-i)\" at beginning to make it case-sensitive), "
"examples: \"flashcode|flashy\", \"(?-i)FlashCode|flashy\""),
NULL, 0, 0, "", NULL, 0,
NULL, NULL, NULL,
@@ -5064,7 +5064,7 @@ config_weechat_init_options ()
config_completion_case_sensitive = config_file_new_option (
weechat_config_file, weechat_config_section_completion,
"case_sensitive", "boolean",
N_("if enabled, the completion is case sensitive by default"),
N_("if enabled, the completion is case-sensitive by default"),
NULL, 0, 0, "on", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
config_completion_command_inline = config_file_new_option (
@@ -5095,7 +5095,7 @@ config_weechat_init_options ()
config_completion_nick_case_sensitive = config_file_new_option (
weechat_config_file, weechat_config_section_completion,
"nick_case_sensitive", "boolean",
N_("case sensitive completion for nicks"),
N_("case-sensitive completion for nicks"),
NULL, 0, 0, "off", NULL, 0,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
config_completion_nick_completer = config_file_new_option (
+1 -1
View File
@@ -998,7 +998,7 @@ hdata_hashtable (struct t_hdata *hdata, void *pointer, const char *name)
/*
* Compares a hdata variable of two objects.
*
* If case_sensitive == 1, the comparison of strings is case sensitive.
* If case_sensitive == 1, the comparison of strings is case-sensitive.
*
* Returns:
* -1: variable1 < variable2
+2 -2
View File
@@ -164,7 +164,7 @@ weelist_add (struct t_weelist *weelist, const char *data, const char *where,
}
/*
* Searches for data in a list (case sensitive).
* Searches for data in a list (case-sensitive).
*
* Returns pointer to item found, NULL if not found.
*/
@@ -188,7 +188,7 @@ weelist_search (struct t_weelist *weelist, const char *data)
}
/*
* Searches for data in a list (case sensitive).
* Searches for data in a list (case-sensitive).
*
* Returns position of item found (>= 0), -1 if not found.
*/
+3 -3
View File
@@ -516,7 +516,7 @@ string_toupper_range (const char *string, int range)
}
/*
* Compares two chars (case sensitive).
* Compares two chars (case-sensitive).
*
* Returns: arithmetic result of subtracting the first UTF-8 char in string2
* from the first UTF-8 char in string1:
@@ -607,7 +607,7 @@ string_charcasecmp_range (const char *string1, const char *string2, int range)
}
/*
* Compares two strings (case sensitive).
* Compares two strings (case-sensitive).
*
* Returns: arithmetic result of subtracting the last compared UTF-8 char in
* string2 from the last compared UTF-8 char in string1:
@@ -641,7 +641,7 @@ string_strcmp (const char *string1, const char *string2)
}
/*
* Compares two strings with max length (case sensitive).
* Compares two strings with max length (case-sensitive).
*
* Returns: arithmetic result of subtracting the last compared UTF-8 char in
* string2 from the last compared UTF-8 char in string1:
+1 -1
View File
@@ -942,7 +942,7 @@ hook_command_display_error_unknown (const char *command)
NULL,
0, GUI_FILTER_TAG_NO_FILTER,
(found_diff_case_only > 0) ?
_("%sUnknown command \"%s\" (commands are case sensitive, "
_("%sUnknown command \"%s\" (commands are case-sensitive, "
"type /help for help), "
"commands with similar name: %s") :
_("%sUnknown command \"%s\" (type /help for help), "