diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-04-24 17:24:56 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-04-24 17:24:56 +0200 |
commit | e3d2728571be0b56dc67253137366d96e3e7282a (patch) | |
tree | 298f5f9896373ac2a73c2eb61e38eae43eb72a17 /doc | |
parent | 3464865a000c70b54bc9332d66944855294a128f (diff) | |
download | weechat-e3d2728571be0b56dc67253137366d96e3e7282a.zip |
Fix typo: splited/splitted -> split
Diffstat (limited to 'doc')
-rw-r--r-- | doc/de/autogen/weechat_options.xml | 2 | ||||
-rw-r--r-- | doc/de/dev/plugin_c_api.de.xml | 14 | ||||
-rw-r--r-- | doc/en/autogen/weechat_options.xml | 2 | ||||
-rw-r--r-- | doc/en/dev/plugin_c_api.en.xml | 14 | ||||
-rw-r--r-- | doc/en/weechat_quickstart.en.txt | 2 | ||||
-rw-r--r-- | doc/fr/dev/plugin_c_api.fr.xml | 14 |
6 files changed, 24 insertions, 24 deletions
diff --git a/doc/de/autogen/weechat_options.xml b/doc/de/autogen/weechat_options.xml index 67df5783d..c67f3d06e 100644 --- a/doc/de/autogen/weechat_options.xml +++ b/doc/de/autogen/weechat_options.xml @@ -496,7 +496,7 @@ </listitem> </itemizedlist> -<command>weechat.color.separator</command>: background color for window separators (when splitted) +<command>weechat.color.separator</command>: background color for window separators (when split) <itemizedlist> <listitem> <para>type: color</para> diff --git a/doc/de/dev/plugin_c_api.de.xml b/doc/de/dev/plugin_c_api.de.xml index 14577d71d..f35947871 100644 --- a/doc/de/dev/plugin_c_api.de.xml +++ b/doc/de/dev/plugin_c_api.de.xml @@ -1006,7 +1006,7 @@ char **weechat_string_split_command (const char *command, char separator); <note> <para> Result has to be free by a call to - "weechat_string_free_splitted_command" after use. + "weechat_string_free_split_command" after use. </para> </note> <para> @@ -1015,24 +1015,24 @@ char **weechat_string_split_command (const char *command, char separator); </para> </section> - <section id="secPluginCApi_weechat_string_splitted_command"> - <title>weechat_string_free_splitted_command</title> + <section id="secPluginCApi_weechat_string_split_command"> + <title>weechat_string_free_split_command</title> <para> Prototype: <programlisting> -void weechat_string_free_splitted_command (char **splitted_command); +void weechat_string_free_split_command (char **split_command); </programlisting> </para> <para> - Free memory used by a splitted command. + Free memory used by a split command. </para> <para> Arguments: <itemizedlist> <listitem> <para> - <option>splitted_command</option>: command splitted by + <option>split_command</option>: command split by "weechat_string_split_commaand" function </para> </listitem> @@ -1046,7 +1046,7 @@ void weechat_string_free_splitted_command (char **splitted_command); <screen> char **argv = weechat_string_split_command ("/command1;/command2", ';'); ... -weechat_string_free_splitted_command (argv); +weechat_string_free_split_command (argv); </screen> </para> </section> diff --git a/doc/en/autogen/weechat_options.xml b/doc/en/autogen/weechat_options.xml index 2cb331b86..8801ca7d0 100644 --- a/doc/en/autogen/weechat_options.xml +++ b/doc/en/autogen/weechat_options.xml @@ -496,7 +496,7 @@ </listitem> </itemizedlist> -<command>weechat.color.separator</command>: background color for window separators (when splitted) +<command>weechat.color.separator</command>: background color for window separators (when split) <itemizedlist> <listitem> <para>type: color</para> diff --git a/doc/en/dev/plugin_c_api.en.xml b/doc/en/dev/plugin_c_api.en.xml index 9b668e6f3..211163bdf 100644 --- a/doc/en/dev/plugin_c_api.en.xml +++ b/doc/en/dev/plugin_c_api.en.xml @@ -1005,7 +1005,7 @@ char **weechat_string_split_command (const char *command, char separator); <note> <para> Result has to be free by a call to - "weechat_string_free_splitted_command" after use. + "weechat_string_free_split_command" after use. </para> </note> <para> @@ -1014,24 +1014,24 @@ char **weechat_string_split_command (const char *command, char separator); </para> </section> - <section id="secPluginCApi_weechat_string_splitted_command"> - <title>weechat_string_free_splitted_command</title> + <section id="secPluginCApi_weechat_string_split_command"> + <title>weechat_string_free_split_command</title> <para> Prototype: <programlisting> -void weechat_string_free_splitted_command (char **splitted_command); +void weechat_string_free_split_command (char **split_command); </programlisting> </para> <para> - Free memory used by a splitted command. + Free memory used by a split command. </para> <para> Arguments: <itemizedlist> <listitem> <para> - <option>splitted_command</option>: command splitted by + <option>split_command</option>: command split by "weechat_string_split_commaand" function </para> </listitem> @@ -1045,7 +1045,7 @@ void weechat_string_free_splitted_command (char **splitted_command); <screen> char **argv = weechat_string_split_command ("/command1;/command2", ';'); ... -weechat_string_free_splitted_command (argv); +weechat_string_free_split_command (argv); </screen> </para> </section> diff --git a/doc/en/weechat_quickstart.en.txt b/doc/en/weechat_quickstart.en.txt index 611137508..065d4cfac 100644 --- a/doc/en/weechat_quickstart.en.txt +++ b/doc/en/weechat_quickstart.en.txt @@ -155,7 +155,7 @@ WeeChat quick start guide (english version, for WeeChat >= 0.2.7) WeeChat uses many keys by default. All these keys are in documentation, but you should know at least some vital keys: - alt + left/right arrows (or F5/F6): switch to previous/next buffer - - F7/F8: switch to previous/next window (when screen is splited) + - F7/F8: switch to previous/next window (when screen is split) - F9/F10: scroll title bar - F11/F12: scroll nicklist - tab: complete text in input bar, like in your shell diff --git a/doc/fr/dev/plugin_c_api.fr.xml b/doc/fr/dev/plugin_c_api.fr.xml index a7f41af52..0c00862ff 100644 --- a/doc/fr/dev/plugin_c_api.fr.xml +++ b/doc/fr/dev/plugin_c_api.fr.xml @@ -1006,7 +1006,7 @@ char **weechat_string_split_command (const char *command, char separator); <note> <para> Result has to be free by a call to - "weechat_string_free_splitted_command" after use. + "weechat_string_free_split_command" after use. </para> </note> <para> @@ -1015,24 +1015,24 @@ char **weechat_string_split_command (const char *command, char separator); </para> </section> - <section id="secPluginCApi_weechat_string_splitted_command"> - <title>weechat_string_free_splitted_command</title> + <section id="secPluginCApi_weechat_string_split_command"> + <title>weechat_string_free_split_command</title> <para> Prototype: <programlisting> -void weechat_string_free_splitted_command (char **splitted_command); +void weechat_string_free_split_command (char **split_command); </programlisting> </para> <para> - Free memory used by a splitted command. + Free memory used by a split command. </para> <para> Arguments: <itemizedlist> <listitem> <para> - <option>splitted_command</option>: command splitted by + <option>split_command</option>: command split by "weechat_string_split_commaand" function </para> </listitem> @@ -1046,7 +1046,7 @@ void weechat_string_free_splitted_command (char **splitted_command); <screen> char **argv = weechat_string_split_command ("/command1;/command2", ';'); ... -weechat_string_free_splitted_command (argv); +weechat_string_free_split_command (argv); </screen> </para> </section> |