Fix a few more grammatical nits and do some general rewording.
Submitted by: Michael Chin-Yuan Wu <keichii@mail.utexas.edu>
This commit is contained in:
parent
8eb85bd360
commit
4c198a98b2
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=6767
2 changed files with 68 additions and 36 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
|
||||
$FreeBSD: doc/en_US.ISO_8859-1/books/handbook/l10n/chapter.sgml,v 1.25 2000/03/11 07:10:15 ache Exp $
|
||||
$FreeBSD: doc/en_US.ISO_8859-1/books/handbook/l10n/chapter.sgml,v 1.26 2000/03/12 03:59:28 ache Exp $
|
||||
-->
|
||||
|
||||
<chapter id="l10n">
|
||||
|
|
@ -393,20 +393,31 @@ keychange="<replaceable>fkey_number sequence</replaceable>"</programlisting>
|
|||
character matrix in pseudographics area, i.e., to move letters out
|
||||
of that area if screen font uses a bit 8 column.</para>
|
||||
|
||||
<para>If you turn on &man.moused.8; via
|
||||
following setting in <filename>/etc/rc.conf</filename>:</para>
|
||||
<para>If you have the following settings, insert the
|
||||
kernel config specified in the paragraph after the list.</para>
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>Console uses a screen font that utilizes 8-bit column font
|
||||
character.</para>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
<para>The moused daemon is enabled by setting the following in
|
||||
your <filename>/etc/rc.conf</filename>:</para>
|
||||
|
||||
<programlisting>moused_enable="YES"</programlisting>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para>A workaround for expanding 8-bit to 9-bit on a VGA adapter
|
||||
is usually needed for the above settings. This workaround
|
||||
disables 8-bit to 9-bit expanison of the font character with the
|
||||
mouse cursor the sc0 console driver. To enable the workaround,
|
||||
insert the following line into the kernel config.</para>
|
||||
|
||||
<programlisting>
|
||||
moused_enable="YES"</programlisting>
|
||||
|
||||
<para>and if your screen font uses bit 8 column of font character
|
||||
matrix, then be sure that you compile your kernel with the following
|
||||
options in your kernel configuration file to avoid bit 8 to bit 9
|
||||
expansion of the font character with the mouse cursor on VGA
|
||||
adapters.</para>
|
||||
|
||||
<programlisting>
|
||||
options SC_MOUSE_CHAR=0x03</programlisting>
|
||||
options SC_MOUSE_CHAR=0x03</programlisting>
|
||||
|
||||
<para>The <replaceable>keymap_name</replaceable> here is taken from
|
||||
the <filename>/usr/share/syscons/keymaps</filename> directory,
|
||||
|
|
@ -534,11 +545,16 @@ options SC_MOUSE_CHAR=0x03</programlisting>
|
|||
<sect2>
|
||||
<title>Kernel and File Systems</title>
|
||||
|
||||
<para>The FreeBSD FFS filesystem is 8-bit clean so can be used with
|
||||
any 8-bit wide character set, but there is no character set name
|
||||
stored in the filesystem; i.e., it is raw 8-bit and does not know
|
||||
anything about encoding order. FFS does not support any form of
|
||||
16-bit wide character sets yet.</para>
|
||||
<para>The FreeBSD FFS filesystem is 8-bit clean, so it can be used
|
||||
with any 8-bit wide character set, but there is no character set
|
||||
name stored in the filesystem; i.e., it is raw 8-bit and does not
|
||||
know anything about encoding order. Officially, FFS does not
|
||||
support any form of 16-bit wide character sets yet. However, many
|
||||
16-bit wide character sets have independent patches for FFS
|
||||
enabling such support. They are only temporary unportable
|
||||
solutions or hacks and we have decided to not include them in the
|
||||
source tree. Refer to respective languages' websites for more
|
||||
informations and the patch files.</para>
|
||||
|
||||
<para>The FreeBSD MSDOS filesystem has the configurable ability to
|
||||
convert between MSDOS, Unicode character sets and chosen
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
|
||||
$FreeBSD: doc/en_US.ISO_8859-1/books/handbook/l10n/chapter.sgml,v 1.25 2000/03/11 07:10:15 ache Exp $
|
||||
$FreeBSD: doc/en_US.ISO_8859-1/books/handbook/l10n/chapter.sgml,v 1.26 2000/03/12 03:59:28 ache Exp $
|
||||
-->
|
||||
|
||||
<chapter id="l10n">
|
||||
|
|
@ -393,20 +393,31 @@ keychange="<replaceable>fkey_number sequence</replaceable>"</programlisting>
|
|||
character matrix in pseudographics area, i.e., to move letters out
|
||||
of that area if screen font uses a bit 8 column.</para>
|
||||
|
||||
<para>If you turn on &man.moused.8; via
|
||||
following setting in <filename>/etc/rc.conf</filename>:</para>
|
||||
<para>If you have the following settings, insert the
|
||||
kernel config specified in the paragraph after the list.</para>
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>Console uses a screen font that utilizes 8-bit column font
|
||||
character.</para>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
<para>The moused daemon is enabled by setting the following in
|
||||
your <filename>/etc/rc.conf</filename>:</para>
|
||||
|
||||
<programlisting>moused_enable="YES"</programlisting>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para>A workaround for expanding 8-bit to 9-bit on a VGA adapter
|
||||
is usually needed for the above settings. This workaround
|
||||
disables 8-bit to 9-bit expanison of the font character with the
|
||||
mouse cursor the sc0 console driver. To enable the workaround,
|
||||
insert the following line into the kernel config.</para>
|
||||
|
||||
<programlisting>
|
||||
moused_enable="YES"</programlisting>
|
||||
|
||||
<para>and if your screen font uses bit 8 column of font character
|
||||
matrix, then be sure that you compile your kernel with the following
|
||||
options in your kernel configuration file to avoid bit 8 to bit 9
|
||||
expansion of the font character with the mouse cursor on VGA
|
||||
adapters.</para>
|
||||
|
||||
<programlisting>
|
||||
options SC_MOUSE_CHAR=0x03</programlisting>
|
||||
options SC_MOUSE_CHAR=0x03</programlisting>
|
||||
|
||||
<para>The <replaceable>keymap_name</replaceable> here is taken from
|
||||
the <filename>/usr/share/syscons/keymaps</filename> directory,
|
||||
|
|
@ -534,11 +545,16 @@ options SC_MOUSE_CHAR=0x03</programlisting>
|
|||
<sect2>
|
||||
<title>Kernel and File Systems</title>
|
||||
|
||||
<para>The FreeBSD FFS filesystem is 8-bit clean so can be used with
|
||||
any 8-bit wide character set, but there is no character set name
|
||||
stored in the filesystem; i.e., it is raw 8-bit and does not know
|
||||
anything about encoding order. FFS does not support any form of
|
||||
16-bit wide character sets yet.</para>
|
||||
<para>The FreeBSD FFS filesystem is 8-bit clean, so it can be used
|
||||
with any 8-bit wide character set, but there is no character set
|
||||
name stored in the filesystem; i.e., it is raw 8-bit and does not
|
||||
know anything about encoding order. Officially, FFS does not
|
||||
support any form of 16-bit wide character sets yet. However, many
|
||||
16-bit wide character sets have independent patches for FFS
|
||||
enabling such support. They are only temporary unportable
|
||||
solutions or hacks and we have decided to not include them in the
|
||||
source tree. Refer to respective languages' websites for more
|
||||
informations and the patch files.</para>
|
||||
|
||||
<para>The FreeBSD MSDOS filesystem has the configurable ability to
|
||||
convert between MSDOS, Unicode character sets and chosen
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue