mirror of
https://github.com/weechat/weechat.git
synced 2026-07-06 09:43:13 +02:00
spelling: anymore
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Sébastien Helleu
parent
d3ceabf5de
commit
ef107fd66d
@@ -494,7 +494,7 @@ buflist_config_init ()
|
||||
N_("add newline between the buffers displayed, so each buffer is "
|
||||
"displayed on a separate line (recommended); if disabled, "
|
||||
"newlines must be manually added in the formats with \"${\\n}\", "
|
||||
"and the mouse actions are not possible any more"),
|
||||
"and the mouse actions are not possible anymore"),
|
||||
NULL, 0, 0, "on", NULL, 0,
|
||||
NULL, NULL, NULL,
|
||||
&buflist_config_change_buflist, NULL, NULL,
|
||||
@@ -530,7 +530,7 @@ buflist_config_init ()
|
||||
"enabled", "boolean",
|
||||
N_("enable buflist; it is recommended to use this option instead of "
|
||||
"just hiding the bar because it also removes some internal hooks "
|
||||
"that are not needed any more when the bar is hidden; you can "
|
||||
"that are not needed anymore when the bar is hidden; you can "
|
||||
"also use the command \"/buflist toggle\" or use the default key "
|
||||
"alt+shift+b"),
|
||||
NULL, 0, 0, "on", NULL, 0,
|
||||
|
||||
@@ -138,7 +138,7 @@ exec_command_list ()
|
||||
|
||||
/*
|
||||
* Searches a running command by id, and displays an error if command is not
|
||||
* found or not running any more.
|
||||
* found or not running anymore.
|
||||
*
|
||||
* Returns the command found, or NULL if not found or not running.
|
||||
*/
|
||||
|
||||
@@ -1286,7 +1286,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
|
||||
/*
|
||||
* prevent guile to use its own gmp allocator, because it can conflict
|
||||
* with other plugins using GnuTLS like relay, which can crash WeeChat
|
||||
* on unload (or exit); this is not needed any more with Guile ≥ 3.0.8
|
||||
* on unload (or exit); this is not needed anymore with Guile ≥ 3.0.8
|
||||
*/
|
||||
scm_install_gmp_memory_functions = 0;
|
||||
#endif /* defined(HAVE_GUILE_GMP_MEMORY_FUNCTIONS) && (SCM_MAJOR_VERSION < 3 || (SCM_MAJOR_VERSION == 3 && SCM_MINOR_VERSION == 0 && SCM_MICRO_VERSION < 8)) */
|
||||
|
||||
@@ -6095,7 +6095,7 @@ IRC_COMMAND_CALLBACK(server)
|
||||
|
||||
weechat_printf (
|
||||
NULL,
|
||||
_("%s: server %s%s%s is not temporary any more"),
|
||||
_("%s: server %s%s%s is not temporary anymore"),
|
||||
IRC_PLUGIN_NAME,
|
||||
IRC_COLOR_CHAT_SERVER,
|
||||
argv[2],
|
||||
|
||||
@@ -489,7 +489,7 @@ irc_upgrade_read_cb (const void *pointer, void *data,
|
||||
if (str)
|
||||
irc_upgrade_current_server->isupport = strdup (str);
|
||||
/*
|
||||
* "prefix" is not any more in this infolist (since
|
||||
* "prefix" is not anymore in this infolist (since
|
||||
* WeeChat 0.3.4), but we read it to keep compatibility
|
||||
* with old WeeChat versions, on /upgrade)
|
||||
*/
|
||||
@@ -806,7 +806,7 @@ irc_upgrade_read_cb (const void *pointer, void *data,
|
||||
if (ptr_nick)
|
||||
{
|
||||
/*
|
||||
* "flags" is not any more in this infolist (since
|
||||
* "flags" is not anymore in this infolist (since
|
||||
* WeeChat 0.3.4), but we read it to keep compatibility
|
||||
* with old WeeChat versions, on /upgrade)
|
||||
* We try to restore prefixes with old flags, but
|
||||
|
||||
@@ -843,7 +843,7 @@ script_action_run_hold (const char *name, int quiet)
|
||||
{
|
||||
weechat_printf (NULL,
|
||||
_("%s: script \"%s\" is not "
|
||||
"held any more"),
|
||||
"held anymore"),
|
||||
SCRIPT_PLUGIN_NAME, name);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -359,7 +359,7 @@ script_command_init ()
|
||||
N_("raw[installremove]: install or remove script(s), depending on current "
|
||||
"state"),
|
||||
N_("raw[hold]: hold/unhold script(s) (a script held will not be "
|
||||
"upgraded any more and cannot be removed)"),
|
||||
"upgraded anymore and cannot be removed)"),
|
||||
N_("raw[-q]: quiet mode: do not display messages"),
|
||||
N_("raw[upgrade]: upgrade all installed scripts which are obsolete "
|
||||
"(new version available)"),
|
||||
|
||||
@@ -265,7 +265,7 @@ spell_speller_remove_unused_cb (void *data,
|
||||
|
||||
used_spellers = (struct t_hashtable *)data;
|
||||
|
||||
/* if speller is not in "used_spellers", remove it (not used any more) */
|
||||
/* if speller is not in "used_spellers", remove it (not used anymore) */
|
||||
if (!weechat_hashtable_has_key (used_spellers, key))
|
||||
weechat_hashtable_remove (hashtable, key);
|
||||
}
|
||||
|
||||
@@ -366,7 +366,7 @@ trigger_config_create_trigger_option (const char *trigger_name, int index_option
|
||||
trigger_config_file, trigger_config_section_trigger,
|
||||
option_name, "boolean",
|
||||
N_("if disabled, the hooks are removed from trigger, so it is "
|
||||
"not called any more"),
|
||||
"not called anymore"),
|
||||
NULL, 0, 0, value, NULL, 0,
|
||||
NULL, NULL, NULL,
|
||||
&trigger_config_change_trigger_enabled, NULL, NULL,
|
||||
|
||||
Reference in New Issue
Block a user