Doc refresh after Japanese & INSTALL updates

...from Shin-ichi
This commit is contained in:
Bill Kendrick 2021-11-03 20:54:49 -07:00
parent 6145fb8bc2
commit 0eb9409ea5
19 changed files with 529 additions and 771 deletions

View file

@ -149,7 +149,7 @@ Compiling and Installation
Windows Users
October 25, 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
November 3, 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
<shin1@wmail.plala.or.jp>
Compiling Set-Up
@ -197,7 +197,7 @@ Compiling and Installation
64bit (x86_64) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -207,18 +207,18 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-x86_64-librsvg
$ pacman -S mingw-w64-x86_64-fribidi
$ pacman -S mingw-w64-x86_64-libimagequant
$ pacman -S mingw-w64-x86_64-fltk
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 64bit environment
Install SDL_Pango on the 64bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "64bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 64-bit"
@ -241,17 +241,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw64 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw64 && make && make install
Proceed to the next "MinGW 32bit (i686) toolchains" section, or skip
to the "ImageMagick" section if you need only a 64bit build
environment.
@ -268,7 +257,7 @@ Compiling and Installation
32bit (i686) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -278,7 +267,7 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-i686-librsvg
$ pacman -S mingw-w64-i686-fribidi
$ pacman -S mingw-w64-i686-libimagequant
@ -287,9 +276,9 @@ Compiling and Installation
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 32bit environment
Install SDL_Pango on the 32bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "32bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 32-bit"
@ -312,17 +301,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw32 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw32 && make && make install
-------------------------------------------------------
ImageMagick
@ -383,11 +361,24 @@ Compiling and Installation
Inno Setup is used to build executable installer for Tux Paint.
Therefore you have to install it in the first place.
Inno Setup officially supports translations for only about 20
languages. However, one of the great points of Tux Paint is it
supports so many languages. Therefore, the set up script
"tuxpaint.iss" to build the installer is written to use much more
translations including unofficial one which are available on "Inno
Setup Translations". You have to download translation files (.isl)
required and put them in "Languages" directory under the directory
in which Inno Setup is installed.
Before building an installer, edit the "tuxpaint.iss" file and
enable one of the lines starting with "#define BuildTarget=",
depending on the architecture of the installer you want to create.
Then, you can easily build an executable installer by right-clicking
on the "tuxpaint.iss" icon in the "win32" directory and selecting
"Compile" on the list. It will run for a while, and eventually you
will find a "tuxpaint-X.Y.Z-win32-installer.exe" file in the same
directory.
will find a "tuxpaint-X.Y.Z-windows-<arch>-installer.exe" file in
the same directory.
-------------------------------------------------------
@ -396,9 +387,8 @@ Compiling and Installation
Double-click the Tux Paint installer executable (.EXE file) and
follow the instructions.
First, you will be asked to agree to the license. (It is the GNU
General Public License (GPL), which is also available as
"COPYING.txt".)
First, you will be asked to read the license. (It is the GNU General
Public License (GPL), which is also available as "COPYING.txt".)
You will then be asked whether you want to install shortcuts to Tux
Paint in your Windows Start Menu and on your Windows Desktop. (Both

View file

@ -242,7 +242,7 @@
</h3>
<p style="font-size: small;">
<em>
October 25, 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
November 3, 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
</em>
</p>
<blockquote>
@ -305,7 +305,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -313,12 +313,12 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-x86_64-librsvg<br/>
$ pacman -S mingw-w64-x86_64-fribidi<br/>
$ pacman -S mingw-w64-x86_64-libimagequant<br/>
$ pacman -S mingw-w64-x86_64-fltk<br/>
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
</code>
</blockquote>
</p>
@ -328,11 +328,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 64bit environment </h4>
Install SDL_Pango on the 64bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "64bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 64-bit" </p>
@ -360,21 +360,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw64 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
<p>
@ -403,7 +388,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -411,7 +396,7 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-i686-librsvg<br/>
$ pacman -S mingw-w64-i686-fribidi<br/>
$ pacman -S mingw-w64-i686-libimagequant<br/>
@ -426,11 +411,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 32bit environment </h4>
Install SDL_Pango on the 32bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "32bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 32-bit" </p>
@ -458,21 +443,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw32 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
@ -534,9 +504,11 @@
<p>
<a href="https://jrsoftware.org/isinfo.php">Inno Setup</a> is used to build executable installer for Tux Paint. Therefore you have to install it in the first place. </p>
<p>
</p>
Inno Setup officially supports translations for only about 20 languages. However, one of the great points of Tux Paint is it supports so many languages. Therefore, the set up script "<code>tuxpaint.iss</code>" to build the installer is written to use much more translations including unofficial one which are available on "<a href="https://jrsoftware.org/files/istrans/">Inno Setup Translations</a>". You have to download translation files (<code>.isl</code>) required and put them in "Languages" directory under the directory in which Inno Setup is installed. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-win32-installer.exe</code>" file in the same directory. </p>
Before building an installer, edit the "<code>tuxpaint.iss</code>" file and enable one of the lines starting with "<code>#define BuildTarget=</code>", depending on the architecture of the installer you want to create. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-windows-&lt;arch&gt;-installer.exe</code>" file in the same directory. </p>
</blockquote>
<hr size="1" noshade width="75%" />
@ -546,7 +518,7 @@
<p>
Double-click the Tux Paint installer executable (.EXE file) and follow the instructions.
<p>
First, you will be asked to agree to the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
First, you will be asked to read the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
<p>
You will then be asked whether you want to install shortcuts to Tux Paint in your Windows Start Menu and on your Windows Desktop. (Both options are set by default.) </p>

View file

@ -149,7 +149,7 @@ Compiling and Installation
Windows Users
octubre 25, 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
noviembre 3, 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
<shin1@wmail.plala.or.jp>
Compiling Set-Up
@ -197,7 +197,7 @@ Compiling and Installation
64bit (x86_64) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -207,18 +207,18 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-x86_64-librsvg
$ pacman -S mingw-w64-x86_64-fribidi
$ pacman -S mingw-w64-x86_64-libimagequant
$ pacman -S mingw-w64-x86_64-fltk
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 64bit environment
Install SDL_Pango on the 64bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "64bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 64-bit"
@ -241,17 +241,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw64 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw64 && make && make install
Proceed to the next "MinGW 32bit (i686) toolchains" section, or skip
to the "ImageMagick" section if you need only a 64bit build
environment.
@ -268,7 +257,7 @@ Compiling and Installation
32bit (i686) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -278,7 +267,7 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-i686-librsvg
$ pacman -S mingw-w64-i686-fribidi
$ pacman -S mingw-w64-i686-libimagequant
@ -287,9 +276,9 @@ Compiling and Installation
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 32bit environment
Install SDL_Pango on the 32bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "32bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 32-bit"
@ -312,17 +301,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw32 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw32 && make && make install
-------------------------------------------------------
ImageMagick
@ -383,11 +361,24 @@ Compiling and Installation
Inno Setup is used to build executable installer for Tux Paint.
Therefore you have to install it in the first place.
Inno Setup officially supports translations for only about 20
languages. However, one of the great points of Tux Paint is it
supports so many languages. Therefore, the set up script
"tuxpaint.iss" to build the installer is written to use much more
translations including unofficial one which are available on "Inno
Setup Translations". You have to download translation files (.isl)
required and put them in "Languages" directory under the directory
in which Inno Setup is installed.
Before building an installer, edit the "tuxpaint.iss" file and
enable one of the lines starting with "#define BuildTarget=",
depending on the architecture of the installer you want to create.
Then, you can easily build an executable installer by right-clicking
on the "tuxpaint.iss" icon in the "win32" directory and selecting
"Compile" on the list. It will run for a while, and eventually you
will find a "tuxpaint-X.Y.Z-win32-installer.exe" file in the same
directory.
will find a "tuxpaint-X.Y.Z-windows-<arch>-installer.exe" file in
the same directory.
-------------------------------------------------------
@ -396,9 +387,8 @@ Compiling and Installation
Double-click the Tux Paint installer executable (.EXE file) and
follow the instructions.
First, you will be asked to agree to the license. (It is the GNU
General Public License (GPL), which is also available as
"COPYING.txt".)
First, you will be asked to read the license. (It is the GNU General
Public License (GPL), which is also available as "COPYING.txt".)
You will then be asked whether you want to install shortcuts to Tux
Paint in your Windows Start Menu and on your Windows Desktop. (Both

View file

@ -242,7 +242,7 @@
</h3>
<p style="font-size: small;">
<em>
octubre 25, 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
noviembre 3, 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
</em>
</p>
<blockquote>
@ -305,7 +305,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -313,12 +313,12 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-x86_64-librsvg<br/>
$ pacman -S mingw-w64-x86_64-fribidi<br/>
$ pacman -S mingw-w64-x86_64-libimagequant<br/>
$ pacman -S mingw-w64-x86_64-fltk<br/>
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
</code>
</blockquote>
</p>
@ -328,11 +328,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 64bit environment </h4>
Install SDL_Pango on the 64bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "64bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 64-bit" </p>
@ -360,21 +360,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw64 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
<p>
@ -403,7 +388,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -411,7 +396,7 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-i686-librsvg<br/>
$ pacman -S mingw-w64-i686-fribidi<br/>
$ pacman -S mingw-w64-i686-libimagequant<br/>
@ -426,11 +411,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 32bit environment </h4>
Install SDL_Pango on the 32bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "32bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 32-bit" </p>
@ -458,21 +443,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw32 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
@ -534,9 +504,11 @@
<p>
<a href="https://jrsoftware.org/isinfo.php">Inno Setup</a> is used to build executable installer for Tux Paint. Therefore you have to install it in the first place. </p>
<p>
</p>
Inno Setup officially supports translations for only about 20 languages. However, one of the great points of Tux Paint is it supports so many languages. Therefore, the set up script "<code>tuxpaint.iss</code>" to build the installer is written to use much more translations including unofficial one which are available on "<a href="https://jrsoftware.org/files/istrans/">Inno Setup Translations</a>". You have to download translation files (<code>.isl</code>) required and put them in "Languages" directory under the directory in which Inno Setup is installed. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-win32-installer.exe</code>" file in the same directory. </p>
Before building an installer, edit the "<code>tuxpaint.iss</code>" file and enable one of the lines starting with "<code>#define BuildTarget=</code>", depending on the architecture of the installer you want to create. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-windows-&lt;arch&gt;-installer.exe</code>" file in the same directory. </p>
</blockquote>
<hr size="1" noshade width="75%" />
@ -546,7 +518,7 @@
<p>
Double-click the Tux Paint installer executable (.EXE file) and follow the instructions.
<p>
First, you will be asked to agree to the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
First, you will be asked to read the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
<p>
You will then be asked whether you want to install shortcuts to Tux Paint in your Windows Start Menu and on your Windows Desktop. (Both options are set by default.) </p>

View file

@ -152,7 +152,7 @@ Compilation et installation
Utilisateurs de Windows
octobre 25, 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
novembre 3, 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
<shin1@wmail.plala.or.jp>
Réglages pour compilation
@ -200,9 +200,8 @@ Compilation et installation
bibliothèques de dépendance 64bit (x86_64) pour Tux Paint
Vous pouvez installer les outils et bibliothèques nécessaires pour
la compilation de Tux Paint sur MSYS2/MINGW en utilisant "pacman",
sauf pour SDL_Pango et SDL_gfx.
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" est un petit outil qui examine les fichiers exécutables de
windows en vue de lister les fichiers DLL (.dll) qui leur sont
@ -213,19 +212,19 @@ Compilation et installation
Config.". Vous pouvez ne pas l'installer si vous compilez seulement
"Tux Paint".
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-x86_64-librsvg
$ pacman -S mingw-w64-x86_64-fribidi
$ pacman -S mingw-w64-x86_64-libimagequant
$ pacman -S mingw-w64-x86_64-fltk
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
Nota : Fermez l'interpréteur de commandes avant de passer à la
suite.
Installer SDL_Pango et SDL_gfx pour l'environnement 64bit
Install SDL_Pango on the 64bit environment
SDL_Pango et SDL_gfx doivent être installés manuellement.
SDL_Pango should be installed manually.
Cette fois-ci, utilisez le shell MinGW "64bit". Ouvrez le shell
depuis le "Menu de Démarrage" -> "MSYS2 64bit" -> "MSYS2 MinGW
@ -250,17 +249,6 @@ Compilation et installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw64 && make && make install
SDL_gfx
Télécharger fichier source de SDL_gfx-2.0.25 depuis La page
SDL_gfx sur Sourceforge.net.
Réinstallez SDL_gfx comme suit.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw64 && make && make install
Aller à la prochaine section "chaines d'outils MinGW 32bit (i686)", ou
bien aller directement à la section "ImageMagick" si vous n'avez
besoin que d'un environnement de travail 64bit.
@ -276,9 +264,8 @@ Compilation et installation
bibliothèques de dépendance 32bit (i686) pour Tux Paint
Vous pouvez installer les outils et bibliothèques nécessaires pour
la compilation de Tux Paint sur MSYS2/MINGW en utilisant "pacman",
sauf pour SDL_Pango et SDL_gfx.
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" est un petit outil qui examine les fichiers exécutables de
windows en vue de lister les fichiers DLL (.dll) qui leur sont
@ -289,7 +276,7 @@ Compilation et installation
Config.". Vous pouvez ne pas l'installer si vous compilez seulement
"Tux Paint".
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-i686-librsvg
$ pacman -S mingw-w64-i686-fribidi
$ pacman -S mingw-w64-i686-libimagequant
@ -299,9 +286,9 @@ Compilation et installation
Nota : Fermez l'interpréteur de commandes avant de passer à la
suite.
Installer SDL_Pango et SDL_gfx pour l'environnement 32bit
Install SDL_Pango on the 32bit environment
SDL_Pango et SDL_gfx doivent être installés manuellement.
SDL_Pango should be installed manually.
Cette fois-ci, utilisez le shell MinGW "32bit". Ouvrez le shell
depuis le "Menu de Démarrage" -> "MSYS2 64bit" -> "MSYS2 MinGW
@ -326,17 +313,6 @@ Compilation et installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw32 && make && make install
SDL_gfx
Télécharger fichier source de SDL_gfx-2.0.25 depuis La page
SDL_gfx sur Sourceforge.net.
Réinstallez SDL_gfx comme suit.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw32 && make && make install
-------------------------------------------------------
ImageMagick
@ -400,11 +376,26 @@ Compilation et installation
Inno Setup est utilisé pour construire l'installeur exécutable de
Tux Paint. Vous devez donc l'installer en premier.
Officiellement Inno Setup prend en compte des traductions dans
environ 20 langues. Cependant, un des points majeurs de Tux Paint
est qu'il supporte beaucoup de langues. Aussi, le script de mise au
point "tuxpaint.iss" qui sert pour construire le programme
d'installation est écrit en beaucoup plus de langues, y compris des
non-officielles qui sont disponibles sur "Inno Setup Translations".
Vous devez télécharger les fichiers de traduction (.isl) qui sont
requis et les mettre dans le répertoire "Languages" sous le
répertoire dans lequel Inno Setup est installé.
Before building an installer, edit the "tuxpaint.iss" file and
enable one of the lines starting with "#define BuildTarget=",
depending on the architecture of the installer you want to create.
Alors, vous pouvez facilement construire un installateur exécutable
en cliquant-droit sur l'icône "tuxpaint.iss" du répertoires "win32"
et sélectionner "Compile" dans la liste. Cela prendra un certain
temps, et éventuellement vous obtiendrez un fichier
"tuxpaint-X.Y.Z-win32-installer.exe" dans le même répertoire.
"tuxpaint-X.Y.Z-windows-<arch>-installer.exe" dans le même
répertoire.
-------------------------------------------------------
@ -413,9 +404,8 @@ Compilation et installation
Double-cliquez sur l'exécutable du programme d'installation de Tux
Paint (fichier .EXE) et suivez les instructions.
Tout d'abord, il vous sera demandé d'accepter la licence. (Il s'agit
de la licence publique générale GNU (GPL), qui est également
disponible en tant que "COPYING.txt".)
First, you will be asked to read the license. (It is the GNU General
Public License (GPL), which is also available as "COPYING.txt".)
Il vous sera ensuite demandé si vous souhaitez installer des
raccourcis à Tux Paint dans votre menu Démarrer de Windows et sur

View file

@ -242,7 +242,7 @@
</h3>
<p style="font-size: small;">
<em>
octobre 25, 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
novembre 3, 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
</em>
</p>
<blockquote>
@ -305,7 +305,7 @@
<blockquote>
<p>
Vous pouvez installer les outils et bibliothèques nécessaires pour la compilation de Tux Paint sur MSYS2/MINGW en utilisant "<code>pacman</code>", sauf pour SDL_Pango et SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" est un petit outil qui examine les fichiers exécutables de windows en vue de lister les fichiers DLL (<code>.dll</code>) qui leur sont nécessaires. Le process de fabrication de Tux Paint pour fournir des fichiers binaires s'en sert pour trouver les fichiers <code>.dll</code> requis. </p>
<p>
@ -313,12 +313,12 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-x86_64-librsvg<br/>
$ pacman -S mingw-w64-x86_64-fribidi<br/>
$ pacman -S mingw-w64-x86_64-libimagequant<br/>
$ pacman -S mingw-w64-x86_64-fltk<br/>
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
</code>
</blockquote>
</p>
@ -328,11 +328,11 @@
</blockquote>
<h4>
Installer SDL_Pango et SDL_gfx pour l'environnement 64bit </h4>
Install SDL_Pango on the 64bit environment </h4>
<blockquote>
<p>
SDL_Pango et SDL_gfx doivent être installés manuellement. </p>
SDL_Pango should be installed manually. </p>
<p>
Cette fois-ci, utilisez le shell MinGW "64bit". Ouvrez le shell depuis le "Menu de Démarrage" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 64-bit" </p>
@ -360,21 +360,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Télécharger <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">fichier source de SDL_gfx-2.0.25</a> depuis <a href="https://sourceforge.net/projects/sdlgfx/">La page SDL_gfx sur Sourceforge.net</a>. </p>
<p>
Réinstallez SDL_gfx comme suit. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw64 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
<p>
@ -403,7 +388,7 @@
<blockquote>
<p>
Vous pouvez installer les outils et bibliothèques nécessaires pour la compilation de Tux Paint sur MSYS2/MINGW en utilisant "<code>pacman</code>", sauf pour SDL_Pango et SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" est un petit outil qui examine les fichiers exécutables de windows en vue de lister les fichiers DLL (<code>.dll</code>) qui leur sont nécessaires. Le process de fabrication de Tux Paint pour fournir des fichiers binaires s'en sert pour trouver les fichiers <code>.dll</code> requis. </p>
<p>
@ -411,7 +396,7 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-i686-librsvg<br/>
$ pacman -S mingw-w64-i686-fribidi<br/>
$ pacman -S mingw-w64-i686-libimagequant<br/>
@ -426,11 +411,11 @@
</blockquote>
<h4>
Installer SDL_Pango et SDL_gfx pour l'environnement 32bit </h4>
Install SDL_Pango on the 32bit environment </h4>
<blockquote>
<p>
SDL_Pango et SDL_gfx doivent être installés manuellement. </p>
SDL_Pango should be installed manually. </p>
<p>
Cette fois-ci, utilisez le shell MinGW "32bit". Ouvrez le shell depuis le "Menu de Démarrage" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 32-bit" </p>
@ -458,21 +443,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Télécharger <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">fichier source de SDL_gfx-2.0.25</a> depuis <a href="https://sourceforge.net/projects/sdlgfx/">La page SDL_gfx sur Sourceforge.net</a>. </p>
<p>
Réinstallez SDL_gfx comme suit. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw32 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
@ -534,9 +504,11 @@
<p>
<a href="https://jrsoftware.org/isinfo.php">Inno Setup</a> est utilisé pour construire l'installeur exécutable de Tux Paint. Vous devez donc l'installer en premier. </p>
<p>
</p>
Officiellement Inno Setup prend en compte des traductions dans environ 20 langues. Cependant, un des points majeurs de Tux Paint est qu'il supporte beaucoup de langues. Aussi, le script de mise au point "<code>tuxpaint.iss</code>" qui sert pour construire le programme d'installation est écrit en beaucoup plus de langues, y compris des non-officielles qui sont disponibles sur "<a href="https://jrsoftware.org/files/istrans/">Inno Setup Translations</a>". Vous devez télécharger les fichiers de traduction (<code>.isl</code>) qui sont requis et les mettre dans le répertoire "Languages" sous le répertoire dans lequel Inno Setup est installé. </p>
<p>
Alors, vous pouvez facilement construire un installateur exécutable en cliquant-droit sur l'icône "<code>tuxpaint.iss</code>" du répertoires "<code>win32</code>" et sélectionner "Compile" dans la liste. Cela prendra un certain temps, et éventuellement vous obtiendrez un fichier "<code>tuxpaint-<i>X.Y.Z</i>-win32-installer.exe</code>" dans le même répertoire. </p>
Before building an installer, edit the "<code>tuxpaint.iss</code>" file and enable one of the lines starting with "<code>#define BuildTarget=</code>", depending on the architecture of the installer you want to create. </p>
<p>
Alors, vous pouvez facilement construire un installateur exécutable en cliquant-droit sur l'icône "<code>tuxpaint.iss</code>" du répertoires "<code>win32</code>" et sélectionner "Compile" dans la liste. Cela prendra un certain temps, et éventuellement vous obtiendrez un fichier "<code>tuxpaint-<i>X.Y.Z</i>-windows-&lt;arch&gt;-installer.exe</code>" dans le même répertoire. </p>
</blockquote>
<hr size="1" noshade width="75%" />
@ -546,7 +518,7 @@
<p>
Double-cliquez sur l'exécutable du programme d'installation de Tux Paint (fichier .EXE) et suivez les instructions.
<p>
Tout d'abord, il vous sera demandé d'accepter la licence. (Il s'agit de la licence publique générale GNU (GPL), qui est également disponible en tant que "COPYING.txt".) </p>
First, you will be asked to read the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
<p>
Il vous sera ensuite demandé si vous souhaitez installer des raccourcis à Tux Paint dans votre menu Démarrer de Windows et sur votre bureau Windows.(Les deux options sont définies par défaut.) </p>

View file

@ -153,7 +153,7 @@ Compiling and Installation
Usuarios de Windows
25 de Outubro de 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
3 de Novembro de 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
<shin1@wmail.plala.or.jp>
Compiling Set-Up
@ -201,7 +201,7 @@ Compiling and Installation
64bit (x86_64) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -211,18 +211,18 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-x86_64-librsvg
$ pacman -S mingw-w64-x86_64-fribidi
$ pacman -S mingw-w64-x86_64-libimagequant
$ pacman -S mingw-w64-x86_64-fltk
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 64bit environment
Install SDL_Pango on the 64bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "64bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 64-bit"
@ -245,17 +245,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw64 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw64 && make && make install
Proceed to the next "MinGW 32bit (i686) toolchains" section, or skip
to the "ImageMagick" section if you need only a 64bit build
environment.
@ -272,7 +261,7 @@ Compiling and Installation
32bit (i686) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -282,7 +271,7 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-i686-librsvg
$ pacman -S mingw-w64-i686-fribidi
$ pacman -S mingw-w64-i686-libimagequant
@ -291,9 +280,9 @@ Compiling and Installation
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 32bit environment
Install SDL_Pango on the 32bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "32bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 32-bit"
@ -316,17 +305,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw32 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw32 && make && make install
-------------------------------------------------------
ImageMagick
@ -387,11 +365,24 @@ Compiling and Installation
Inno Setup is used to build executable installer for Tux Paint.
Therefore you have to install it in the first place.
Inno Setup officially supports translations for only about 20
languages. However, one of the great points of Tux Paint is it
supports so many languages. Therefore, the set up script
"tuxpaint.iss" to build the installer is written to use much more
translations including unofficial one which are available on "Inno
Setup Translations". You have to download translation files (.isl)
required and put them in "Languages" directory under the directory
in which Inno Setup is installed.
Before building an installer, edit the "tuxpaint.iss" file and
enable one of the lines starting with "#define BuildTarget=",
depending on the architecture of the installer you want to create.
Then, you can easily build an executable installer by right-clicking
on the "tuxpaint.iss" icon in the "win32" directory and selecting
"Compile" on the list. It will run for a while, and eventually you
will find a "tuxpaint-X.Y.Z-win32-installer.exe" file in the same
directory.
will find a "tuxpaint-X.Y.Z-windows-<arch>-installer.exe" file in
the same directory.
-------------------------------------------------------
@ -400,9 +391,8 @@ Compiling and Installation
Faga dobre clic no executábel do instalador de Tux Paint (ficheiro
.EXE) e siga as instrucións.
En primeiro lugar, solicitaráselle que acepte a licenza. (É a
Licenza pública xeral de GNU (GPL), que tamén está dispoñíbel como
«COPYING.txt»).
First, you will be asked to read the license. (It is the GNU General
Public License (GPL), which is also available as "COPYING.txt".)
Após preguntaráselle se quere instalar accesos directos a Tux Paint
no seu menú de inicio de Windows e no escritorio de Windows.

View file

@ -242,7 +242,7 @@
</h3>
<p style="font-size: small;">
<em>
25 de Outubro de 2020 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
3 de Novembro de 2021 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
</em>
</p>
<blockquote>
@ -305,7 +305,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -313,12 +313,12 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-x86_64-librsvg<br/>
$ pacman -S mingw-w64-x86_64-fribidi<br/>
$ pacman -S mingw-w64-x86_64-libimagequant<br/>
$ pacman -S mingw-w64-x86_64-fltk<br/>
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
</code>
</blockquote>
</p>
@ -328,11 +328,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 64bit environment </h4>
Install SDL_Pango on the 64bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "64bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 64-bit" </p>
@ -360,21 +360,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw64 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
<p>
@ -403,7 +388,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -411,7 +396,7 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-i686-librsvg<br/>
$ pacman -S mingw-w64-i686-fribidi<br/>
$ pacman -S mingw-w64-i686-libimagequant<br/>
@ -426,11 +411,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 32bit environment </h4>
Install SDL_Pango on the 32bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "32bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 32-bit" </p>
@ -458,21 +443,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw32 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
@ -534,9 +504,11 @@
<p>
<a href="https://jrsoftware.org/isinfo.php">Inno Setup</a> is used to build executable installer for Tux Paint. Therefore you have to install it in the first place. </p>
<p>
</p>
Inno Setup officially supports translations for only about 20 languages. However, one of the great points of Tux Paint is it supports so many languages. Therefore, the set up script "<code>tuxpaint.iss</code>" to build the installer is written to use much more translations including unofficial one which are available on "<a href="https://jrsoftware.org/files/istrans/">Inno Setup Translations</a>". You have to download translation files (<code>.isl</code>) required and put them in "Languages" directory under the directory in which Inno Setup is installed. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-win32-installer.exe</code>" file in the same directory. </p>
Before building an installer, edit the "<code>tuxpaint.iss</code>" file and enable one of the lines starting with "<code>#define BuildTarget=</code>", depending on the architecture of the installer you want to create. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-windows-&lt;arch&gt;-installer.exe</code>" file in the same directory. </p>
</blockquote>
<hr size="1" noshade width="75%" />
@ -546,7 +518,7 @@
<p>
Faga dobre clic no executábel do instalador de Tux Paint (ficheiro .EXE) e siga as instrucións.
<p>
En primeiro lugar, solicitaráselle que acepte a licenza. (É a Licenza pública xeral de GNU (GPL), que tamén está dispoñíbel como «COPYING.txt»). </p>
First, you will be asked to read the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
<p>
Após preguntaráselle se quere instalar accesos directos a Tux Paint no seu menú de inicio de Windows e no escritorio de Windows. (Ámbalas dúas opcións están definidas de xeito predeterminado.) </p>

View file

@ -24,14 +24,14 @@
| * Stamp Descriptive Sound |
| * Stamp Options |
| * Pre-Mirrored and Flipped Stamps |
| * Fonts |
| * フォント |
| * 'Starters' |
| * Coloring-Book Style Starters |
| * Scene-Style Starters |
| * 'Templates' |
| * Translations |
| * Alternative Input Methods |
| * On-screen Keyboard |
| * 画面キーボード |
+------------------------------------------+
----------------------------------------------------------------------
@ -470,7 +470,7 @@ Stamps
To prevent a stamp from being mirrored horizontally, add the option
"nomirror" to the stamp's data file.
Initial Stamp Size
スタンプサイズ
By default, Tux Paint assumes that your stamp is sized appropriately
for unscaled display on a 608x472 canvas. This was the original Tux
@ -522,7 +522,7 @@ Stamps
----------------------------------------------------------------------
Fonts
フォント
The fonts used by Tux Paint are TrueType Fonts (TTF).
@ -765,7 +765,7 @@ Alternative Input Methods
----------------------------------------------------------------------
On-screen Keyboard
画面キーボード
As of version 0.9.22, Tux Paint's 'Text' and 'Label' tools can present
an on-screen keyboard that allows the pointer (via a mouse, eye-tracking

View file

@ -13,8 +13,8 @@
|------------------------------|
| * Drawing-related |
| * Interface Problems |
| * Printing |
| * Saving |
| * 印刷 |
| * 保存 |
| * Audio Problems |
| * Fullscreen Mode Problems |
| * Other Probelms |
@ -174,7 +174,7 @@ Interface Problems
----------------------------------------------------------------------
Printing
印刷
Tux Paint won't print, gives an error, or prints garbage (Unix/Linux)
@ -241,11 +241,11 @@ Printing
configuration file's setting.
Or use Tux Paint Config. and make sure "Allow Printing" (under
"Printing") is checked.
"印刷") is checked.
----------------------------------------------------------------------
Saving
保存
Where does Tux Paint save my drawings?
@ -298,7 +298,7 @@ Saving
configuration file's setting.
Or use Tux Paint Config. and make sure "Ask Before Overwriting"
(under "Saving") is checked.
(under "保存") is checked.
Also, see "Tux Paint always saves a new picture!", below.
@ -323,7 +323,7 @@ Saving
configuration file's setting.
Or use Tux Paint Config. and make sure "Ask Before Overwriting"
(under "Saving") is checked.
(under "保存") is checked.
Also, see "Tux Paint always saves over my old picture!", above.
@ -410,7 +410,7 @@ Audio Problems
Documentation" for details) and add a line containing
"nosound=yes".
* Or use Tux Paint Config. and make sure "Enable Sound
Effects" (under "Video & Sound") is not checked.
Effects" (under "画面 & 音声") is not checked.
* Alternatively, recompile Tux Paint with sound support
disabled. (See above, and the 'Install' documentation.
@ -425,7 +425,7 @@ Audio Problems
Documentation" for details) and add a line containing
"nostereo=yes".
* Or use Tux Paint Config. and make sure "Enable Stereo
Effects" (under "Video & Sound") is not checked.
Effects" (under "画面 & 音声") is not checked.
The sound effects sound strange
@ -492,8 +492,8 @@ Fullscreen Mode Problems
command-line argument: "--windowed", which will override the
configuration file's setting.
Or use Tux Paint Config. and make sure "Fullscreen" (under "Video
& Sound") is not checked.
Or use Tux Paint Config. and make sure "Fullscreen" (under "画面 &
音声") is not checked.
----------------------------------------------------------------------
@ -560,7 +560,7 @@ Other Probelms
configuration file's setting.
Or use Tux Paint Config. and make sure "Disable Quit Button and
[Escape] Key" (under "Simplification") is not checked.
[Escape] Key" (under "単純化") is not checked.
Tux Paint keeps writing weird messages to the screen / to a text file

View file

@ -149,7 +149,7 @@ Compiling and Installation
Windows のユーザー
2020年10月25日 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
2021年11月 3日 Shin-ichi TOYAMA shin1@wmail.plala.or.jp
<shin1@wmail.plala.or.jp>
Compiling Set-Up
@ -197,7 +197,7 @@ Compiling and Installation
64bit (x86_64) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -207,18 +207,18 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-x86_64-librsvg
$ pacman -S mingw-w64-x86_64-fribidi
$ pacman -S mingw-w64-x86_64-libimagequant
$ pacman -S mingw-w64-x86_64-fltk
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 64bit environment
Install SDL_Pango on the 64bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "64bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 64-bit"
@ -241,17 +241,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw64 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw64 && make && make install
Proceed to the next "MinGW 32bit (i686) toolchains" section, or skip
to the "ImageMagick" section if you need only a 64bit build
environment.
@ -268,7 +257,7 @@ Compiling and Installation
32bit (i686) dependency libraries for Tux Paint
You can install tools and libraries required for compiling Tux Paint
on MSYS2/MINGW using "pacman" except for SDL_Pango and SDL_gfx.
on MSYS2/MINGW using "pacman" except for SDL_Pango.
"ntldd" is a small tool which examine windows executable files to
list Dynamic Link Library (.dll) files they depends on. Tux Paint's
@ -278,7 +267,7 @@ Compiling and Installation
FLTK is a cross-platform GUI toolkit used by "Tux Paint Config.".
You can skip installing it if you are only building "Tux Paint".
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}
$ pacman -S mingw-w64-i686-librsvg
$ pacman -S mingw-w64-i686-fribidi
$ pacman -S mingw-w64-i686-libimagequant
@ -287,9 +276,9 @@ Compiling and Installation
Note: Close the shell before proceeding to the remaining process.
Install SDL_Pango and SDL_gfx on the 32bit environment
Install SDL_Pango on the 32bit environment
SDL_Pango and SDL_gfx should be installed manually.
SDL_Pango should be installed manually.
This time, use the MinGW "32bit" shell. Open the shell from the
"Start Menu" -> "MSYS2 64bit" -> "MSYS2 MinGW 32-bit"
@ -312,17 +301,6 @@ Compiling and Installation
$ patch -p0 < ../SDL_Pango-configure-extra-api.patch
$ ./configure --prefix=/mingw32 && make && make install
SDL_gfx
Download source tar-ball of SDL_gfx-2.0.25 from SDL_gfx's page on
Sourceforge.net.
Install SDL_gfx as follows.
$ tar zxvf SDL_gfx-2.0.25.tar.gz
$ cd SDL_gfx-2.0.25
$ ./configure --prefix=/mingw32 && make && make install
-------------------------------------------------------
ImageMagick
@ -383,11 +361,24 @@ Compiling and Installation
Inno Setup is used to build executable installer for Tux Paint.
Therefore you have to install it in the first place.
Inno Setup officially supports translations for only about 20
languages. However, one of the great points of Tux Paint is it
supports so many languages. Therefore, the set up script
"tuxpaint.iss" to build the installer is written to use much more
translations including unofficial one which are available on "Inno
Setup Translations". You have to download translation files (.isl)
required and put them in "Languages" directory under the directory
in which Inno Setup is installed.
Before building an installer, edit the "tuxpaint.iss" file and
enable one of the lines starting with "#define BuildTarget=",
depending on the architecture of the installer you want to create.
Then, you can easily build an executable installer by right-clicking
on the "tuxpaint.iss" icon in the "win32" directory and selecting
"Compile" on the list. It will run for a while, and eventually you
will find a "tuxpaint-X.Y.Z-win32-installer.exe" file in the same
directory.
will find a "tuxpaint-X.Y.Z-windows-<arch>-installer.exe" file in
the same directory.
-------------------------------------------------------
@ -396,9 +387,8 @@ Compiling and Installation
Double-click the Tux Paint installer executable (.EXE file) and
follow the instructions.
First, you will be asked to agree to the license. (It is the GNU
General Public License (GPL), which is also available as
"COPYING.txt".)
First, you will be asked to read the license. (It is the GNU General
Public License (GPL), which is also available as "COPYING.txt".)
You will then be asked whether you want to install shortcuts to Tux
Paint in your Windows Start Menu and on your Windows Desktop. (Both

View file

@ -16,15 +16,15 @@
| * Tux Paint 設定ツール |
| * 設定ファイルについて |
| * 利用可能なオプション |
| * Video/Sound |
| * Mouse/Keyboard |
| * Simplification |
| * Languages |
| * Printing |
| * Saving |
| * Data |
| * Accessibility |
| * Joystick |
| * 画面・音声 |
| * マウス・キーボード |
| * 単純化 |
| * 言語関連 |
| * 印刷 |
| * 保存 |
| * データ |
| * アクセシビリティ |
| * ジョイスティック |
| * システム全体の設定を上書きする |
| * コマンドラインオプション |
| * 情報を表示するためのコマンドラインオプション |
@ -91,18 +91,17 @@ Windows のユーザー
----------------------------------------------------------------------
Video/Sound
画面・音声
Video
画面
fullscreen=yes
プログラムを、ウィンドウ内ではなく、フルスクリーンモードで起動します。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"fullscreen=no". In both cases, may be overridden by the
command-line option "--windowed".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "fullscreen=no"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--windowed"
で変更できます。
fullscreen=native
@ -127,10 +126,9 @@ Video/Sound
ウィンドウの幅と高さの設定を入れ替えます。これは、タブレットパソコンのような縦型のディスプレイでウィンドウを回転させる際に便利なオプションです。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"orient=landscape". In both cases, may be overridden by the
command-line option "--orient=landscape".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "orient=landscape"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--orient=landscape" で変更できます。
native=yes
@ -145,34 +143,31 @@ Video/Sound
以降の場合に有効なオプションであることに注意して下さい。(環境変数
"SDL_VIDEO_ALLOW_SCREENSAVER" の値を "1" に設定しても、同様のことができます)
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"allowscreensaver=no" or "disablescreensaver=yes". In both
cases, may be overridden by the command-line option
"--disablescreensaver".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで
"allowscreensaver=no" または "disablescreensaver=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--disablescreensaver" で変更できます。
Sound
音声
nosound=yes
効果音を無効にします。(注:このオプションを設定すると、[Alt] + [S]
を押しても、効果音を有効化することはできません
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nosound=no" or "sound=yes". In both cases, may be
overridden by the command-line option "--sound".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nosound=no" または
"sound=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--sound" で変更できます。
nostereo=yes
ステレオの効果音を無効にする。(片耳イヤホンや1台のスピーカーで使用する場合に役に立ちます)
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nostereo=no" or "stereo=yes". In both cases, may be
overridden by the command-line option "--stereo".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nostereo=no" または
"stereo=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--stereo" で変更できます。
Interface Size
インターフェースサイズ
buttonsize=SIZE
@ -182,10 +177,7 @@ Video/Sound
SIZE
の値は24から192までのピクセル値で指定します。ほとんどのボタンは正方形となっており、この設定はボタンの幅と高さの両方に影響します。
Note: If the chosen button size would cause the buttons to
be too large for all required UI elements to appear under
Tux Paint's chosen window size, the largest possible button
size will be used. (A note will appear in stderr.)
注:選択されたボタンのサイズが大きすぎて画面内に必要なすべてのインターフェースが表示しきれない場合は、できる限り大きなボタンサイズが使用されます。(stderrにメモが表示されます。)
colorsrows=ROWS
@ -195,9 +187,9 @@ Video/Sound
----------------------------------------------------------------------
Mouse/Keyboard
マウス・キーボード
Cursor
マウスカーソル
nofancycursors=yes
@ -206,11 +198,10 @@ Mouse/Keyboard
環境によっては Tux Paint
のマウスカーソルが原因で不具合が起こることがあります。そういった場合にこのオプションを有効にして下さい。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nofancycursors=no" or "fancycursors=yes". In both cases,
may be overridden by the command-line option
"--fancycursors".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nofancycursors=no"
または "fancycursors=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--fancycursors" で変更できます。
hidecursor=yes
@ -218,12 +209,12 @@ Mouse/Keyboard
タブレットPCなどのタッチスクリーンを用いるデバイスのためのオプションです。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"hidecursor=no" or "showcursor=yes". In both cases, may be
overridden by the command-line option "--showcursor".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "hidecursor=no" または
"showcursor=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--showcursor"
で変更できます。
Keyboard
キーボード
noshortcuts=yes
@ -231,12 +222,11 @@ Mouse/Keyboard
これは、キーボードの操作に慣れていない子供が不用意にコマンドを実行してしまうことを防ぐために有効です。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"noshortcuts=no" or "shortcuts=yes". In both cases, may be
overridden by the command-line option "--shortcuts".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "noshortcuts=no" または
"shortcuts=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--shortcuts" で変更できます。
Mouse
マウス
grab=yes
@ -246,19 +236,18 @@ Mouse/Keyboard
によるウィンドウの切り替えや、[Ctrl]-[Escape]
キーによる操作が無効になります。このオプションは、特にフルスクリーンモード時に有効です。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using "grab=no"
or "dontgrab=yes". In both cases, may be overridden by the
command-line option "--dontgrab".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "grab=no" または
"dontgrab=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--dontgrab" で変更できます。
nowheelmouse=yes
マウスでのホイールによる操作が無効になります。(通常、ホイールは右のセレクターメニューをスクロールします)。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nowheelmouse=no" or "wheelmouse=yes". In both cases, may be
overridden by the command-line option "--wheelmouse".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nowheelmouse=no"
または "wheelmouse=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--wheelmouse"
で変更できます。
nobuttondistinction=yes
@ -267,26 +256,25 @@ Mouse/Keyboard
マウス操作が苦手なお子さんの場合、このオプションを使用することで、マウスの2つまたは3つのボタンの区別を無効にすることができます。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nobuttondistinction=no" or "buttondistinction=yes". In both
cases, may be overridden by the command-line option
"--buttondistinction".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで
"nobuttondistinction=no" または "buttondistinction=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--buttondistinction" で変更できます。
----------------------------------------------------------------------
Simplification
単純化
Interface Simplification
操作の単純化
simpleshapes=yes
「ずけい」ツールで、形を決めたあとに回転させるステップを省略します。クリックして、ドラッグして、ボタンを離すだけで、図形を描くことができます。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"simpleshapes=no" or "complexshapes=yes". In both cases, may
be overridden by the command-line option "--complexshapes".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "simpleshapes=no"
または "complexshapes=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--complexshapes" で変更できます。
nooutlines=yes
@ -295,21 +283,19 @@ Simplification
Tux Paint を非常に遅いパソコンで使いたい場合や、リモートの X-Window
ディスプレイで使う場合に、速度を改善します。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nooutlines=no" or "outlines=yes". In both cases, may be
overridden by the command-line option "--outlines".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nooutlines=no" または
"outlines=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--outlines" で変更できます。
uppercase=yes
すべてのテキストが大文字で表記されます「Brush」は「BRUSH」。まだ大文字しか習っていない子供たちにとって役に立つオプションです。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"uppercase=no" or "mixedcase=yes". In both cases, may be
overridden by the command-line option "--mixedcase".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "uppercase=no" または
"mixedcase=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--mixedcase" で変更できます。
Initial Stamp Size
スタンプサイズ
stampsize=SIZE
@ -319,7 +305,7 @@ Simplification
SIZE の値に default を指定すると、Tux Paint
がスタンプの大きさを自動的に決定します。(これが標準の動作です)
Control Simplification
機能制限
noquit=yes
@ -331,10 +317,9 @@ Simplification
また、[Shift] + [Control] + [Escape].
というキーの組み合わせでもプログラムを終了することができます。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"noquit=no" or "quit=yes". In both cases, may be overridden
by the command-line option "--quit".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "noquit=no" または
"quit=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--quit" で変更できます。
nostamps=yes
@ -342,55 +327,50 @@ Simplification
これによって、初回起動時のプログラムの読み込みが高速になります。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nostamps=no" or "stamps=yes". In both cases, may be
overridden by the command-line option "--stamps".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nostamps=no" または
"stamps=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--stamps" で変更できます。
nostampcontrols=yes
「はんこ」ツールの画像には、上下または左右に反転できたり、大きさを変更したりできるものがあります。このオプションを設定すると、このような操作を無効にします。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nostampcontrols=no" or "stampcontrols=yes". In both cases,
may be overridden by the command-line option
"--stampcontrols".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nostampcontrols=no"
または "stampcontrols=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--stampcontrols" で変更できます。
nomagiccontrols=yes
「まほう」ツールの中には、「ふで」ツールのように画像の一部分だけに効果を及ぼすか、キャンバス全体に効果を及ぼすかを選択できるものがあります。このオプションを設定すると、「まほう」ツールの動作の選択を無効にして、ツールごとに標準の動作だけをするようにします。(たいていは「ふで」のような動作になります)
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nomagiccontrols=no" or "magiccontrols=yes". In both cases,
may be overridden by the command-line option
"--magiccontrols".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nomagiccontrols=no"
または "magiccontrols=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--magiccontrols" で変更できます。
noshapecontrols=yes
「かたち」ツールでの2つの動作モード-マウスをクリックした箇所を中心として図形を拡大するか、マウスをクリックした箇所をコーナーとして図形を拡大するか-を選択するボタンを無効にします。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"noshapecontrols=no" or "shapecontrols=yes". In both cases,
may be overridden by the command-line option
"--shapecontrols".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "noshapecontrols=no"
または "shapecontrols=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--shapecontrols" で変更できます。
nolabel=yes
「ラベル」ツールを無効にします。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nolabel=no" or "label=yes". In both cases, may be
overridden by the command-line option "--label".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nolabel=no" または
"label=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--label" で変更できます。
----------------------------------------------------------------------
Languages
言語関連
Language
言語
lang=LANGUAGE
@ -667,23 +647,22 @@ Languages
左から右ではなく右から左に向かって描き進むことを好むユーザーに役に立つオプションです。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"mirrorstamps=no" or "dontmirrorstamps=yes". In both cases,
may be overridden by the command-line option
"--dontmirrorstamps".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "mirrorstamps=no"
または "dontmirrorstamps=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--dontmirrorstamps" で変更できます。
Fonts
フォント
sysfonts=yes
もじツールで、オペレーティングシステムのフォントを使用します。通常では、Tux Paint
はパッケージに付属するフォントだけを使用します。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"sysfonts=no" or "nosysfonts=yes". In both cases, may be
overridden by the command-line option "--nosysfonts".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "sysfonts=no" または
"nosysfonts=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--nosysfonts"
で変更できます。
alllocalefonts=yes
@ -694,17 +673,16 @@ Languages
以前のバージョンのように全てのフォントを読み込むようにするには、このオプションを有効にします。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"alllocalefonts=no" or "currentlocalefont=yes". In both
cases, may be overridden by the command-line option
"--currentlocalefont".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "alllocalefonts=no"
または "currentlocalefont=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--currentlocalefont" で変更できます。
----------------------------------------------------------------------
Printing
印刷
Print Permissions
印刷の制御
noprint=yes
@ -714,12 +692,11 @@ Printing
SECONDS で設定した秒数ごとに1回だけしか印刷できなくなります。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"printdelay=0". In both cases, may be overridden by the
command-line option "--printdelay=0".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "printdelay=0"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--printdelay=0" で変更できます。
Show Printer Dialog
印刷ダイアログの表示
altprint=always
@ -739,7 +716,7 @@ Printing
ボタンをクリックすると印刷ダイアログが表示され、[Alt] キーを押さずに "いんさつ"
ボタンをクリックすると、ダイアログを表示せずに印刷します。
Save Printer Configuration
印刷設定の保存
printcfg=yes
@ -753,12 +730,12 @@ Printing
オプションが設定されていれば、変更した印刷の設定は "userdata/print.cfg"
ファイルに記録され、再利用されます。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"printcfg=no" or "noprintcfg=yes". In both cases, may be
overridden by the command-line option "--noprintcfg".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "printcfg=no" または
"noprintcfg=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--noprintcfg"
で変更できます。
Print Commands
印刷コマンド
printcommand=COMMAND
@ -787,7 +764,7 @@ Printing
kprinter
Paper Size
用紙サイズ
papersize=PAPERSIZE
@ -806,9 +783,9 @@ Printing
----------------------------------------------------------------------
Saving
保存
Save Over Earlier Work
上書き保存
saveover=yes
@ -824,28 +801,26 @@ Saving
(絵を保存するときの標準の動作なので、この設定は冗長なものとなります)
以前の絵を編集して保存するときに、以前の絵を上書きするかどうかを尋ねられます。
Starting Out
起動時の設定
startblank=yes
Tux Paint を起動する際、前回最後に開いていた絵を読み込む代わりに、毎回、空のキャンバスで開始します。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"startblank=no" or "startlast=yes". In both cases, may be
overridden by the command-line option "--startlast".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "startblank=no" または
"startlast=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--startlast" で変更できます。
newcolorslast=yes
「さいしょから」でキャンバスを選択する際、単色のキャンバスが末尾に、スターター画像やテンプレートが先頭になるよう、表示順序を変更します。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"newcolorslast=no" or "newcolorsfirst=yes". In both cases,
may be overridden by the command-line option
"--newcolorsfirst".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "newcolorslast=no"
または "newcolorsfirst=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--newcolorsfirst" で変更できます。
Save and Export Directories
保存・書き出し先のディレクトリ
savedir=DIRECTORY
@ -904,32 +879,31 @@ Saving
exportdir=/home/penguin/TuxPaintExports
More Saving Options
保存関連の追加オプション
nosave=yes
絵の保存ができないようにします("セーブ"
ボタンも無効になります)。一時的なお遊びに使う場合や、テスト環境で使えるオプションです。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nosave=no" or "save=yes". In both cases, may be overridden
by the command-line option "--save".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nosave=no" または
"save=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--save" で変更できます。
autosave=yes
プログラムを終了するときに、絵を保存するかどうか尋ねずに、自動的に保存します。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"autosave=no" or "noautosave=yes". In both cases, may be
overridden by the command-line option "--noautosave".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "autosave=no" または
"noautosave=yes"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--noautosave"
で変更できます。
----------------------------------------------------------------------
Data
データ
Lockfile
ロックファイル
nolockfile=yes
@ -941,12 +915,11 @@ Data
標準では、Linux および Unix では "~/.tuxpaint/" に、Windows では
"userdata\" にロックファイルが保存されます。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"nolockfile=no" or "lockfile=yes". In both cases, may be
overridden by the command-line option "--lockfile".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nolockfile=no" または
"lockfile=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--lockfile" で変更できます。
Data Directory
データ・ディレクトリ
datadir=DIRECTORY
@ -977,7 +950,7 @@ Data
datadir=/home/johnny/tuxpaint-data/
Color Palette File
カラーパレットファイル
colorfile=FILENAME
@ -1001,15 +974,15 @@ Data
----------------------------------------------------------------------
Accessibility
アクセシビリティ
Mouse
マウス
mouse-accessibility=yes
例えば「せん」ツールなどでは、マウスをクリックしてドラッグした後にマウスボタンを放すというのが標準の操作ですが、このモードを設定すると、マウスをクリックしてからマウスを動かした後に再度マウスをクリックするという操作になります。
Keyboard
キーボード
keyboard=yes
@ -1033,12 +1006,11 @@ Accessibility
* 注「mouse-accessibility」オプションの機能は、キーボードの操作にも連動します。両方のオプションを有効にした場合、例えば線を引く場合は、「クリック」のキーを一度押してから「移動」のキーで描画し、最後にもう一度「クリック」キーを押して描画を完了します。
* 通常のマウスやジョイスティックも同時に使用することができます(例えば、マウスで移動してキーボードでクリックしたり、その逆も可能です)。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"keyboard=no" or "mouse=yes". In both cases, may be
overridden by the command-line option "--mouse".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "keyboard=no" または
"mouse=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--mouse" で変更できます。
Onscreen Keyboard
画面キーボード
onscreen-keyboard=yes
@ -1054,17 +1026,16 @@ Accessibility
画面キーボードの変更をできないようにします。小さな子供向けにシンプルにしたい場合に設定します。
このオプションが設定されると onscreen-keyboard=yes も設定されているとみなします。
Note: If used in a system-wide configuration file, may be
overridden by the user's configuration file using
"onscreen-keyboard-disable-change=no". In both cases, may be
overridden by the command-line option
"--onscreen-keyboard-disable-change=no".
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで
"onscreen-keyboard-disable-change=no"
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
"--onscreen-keyboard-disable-change=no" で変更できます。
----------------------------------------------------------------------
Joystick
ジョイスティック
Main Device
デバイスの設定
joystick-dev=N
@ -1085,7 +1056,7 @@ Joystick
ポインターの移動速度の上限を STEPS にピクセル単位で設定します。1 から 7 までの値が設定可能で、標準の値は 7
です。
Hat
ハットスイッチ
joystick-hat-slowness=SPEED
@ -1096,14 +1067,14 @@ Joystick
ジョイスティックのハットスイッチを押し続けたときに、ポインターが連続して動き始めるまでの時間を MILLISECONDS
にミリ秒単位で設定します。0 から 3000 までの値が設定可能で、標準の設定は 1000 です。
Buttons to Disable
ボタンの無効化
joystick-buttons-ignore=BUTTON1,BUTTON2,...
無効にするジョイスティックのボタンの番号を指定します。何も指定しない場合、上記の "joystick-btn-"
オプションで機能が設定されたボタン以外は、マウスの左ボタンと同じ動作になります。
Button Shortcuts
ボタンショートカット
joystick-btn-escape=BUTTON NUMBER

View file

@ -172,21 +172,13 @@ Tux Paint の起動
ボタンを押したままマウスを動かすと、描画できます。
Some brushes are animated — they change their shape as you
draw them. A good example of this is the vines brush that
ships with Tux Paint. These brushes will have a small
"filmstrip" icon drawn on their Selector buttons.
アニメーションブラシ —
描画中に形状が変化します。例として、ブドウ形のブラシが挙げられます。このタイプのブラシの選択ボタンには、小さなフィルムのアイコンが付いています。
Other brushes are directional — they will draw a different
shape depending on what direction you are painting with
them. An example of this is the arrow brush that ships with
Tux Paint. These brushes have a small 8-way arrow icon drawn
on their Selector buttons.
向きのあるブラシ — 描いている方向によって異なる形を描きます。 例として、Tux Paint
に含まれる矢印ブラシがあります。 これらのブラシの選択ボタンには、小さな8方向の矢印のアイコンが付いています。
Finally, some brushes can be both direction and animated.
Examples of this are the cat and squirrel brushes that ship
with Tux Paint. These brushes will have both the "filmstrip"
and 8-way arrow icons.
また、いくつかのブラシは、方向とアニメーションを併せ持ちます。例として、猫やリスのブラシがあります。このタイプのブラシの選択ボタンには、小さなフィルムと8方向の矢印のアイコンが付いています。
描画中にはサウンドが流れます。筆の大きさが大きいほど、低い音になります。
@ -218,21 +210,12 @@ Tux Paint の起動
様々な種類の筆と好きな色を使って直線を描くツールです。
Click the mouse and hold it to choose the starting point of
the line. As you move the mouse around, a thin 'rubber-band'
line will show where the line will be drawn. At the bottom,
you'll see the angle of your line, in degrees. A line going
straight to the right is 0°, a line going straight up is
90°, a line going straight left is 180°, a line going
straight down is 270°, and so on.
線を引き始めたい場所でクリックして、そのままマウスを動かすと、描かれる線の位置が細い「ゴムバンド」のような線で示され、画面の下には、線の角度が表示されます。右にまっすぐ伸びる線は0度、上にまっすぐ伸びる線は90度、左にまっすぐ伸びる線は180度、下にまっすぐ伸びる線は270度、という具合です。
マウスを放すと、バネのような効果音とともに線が描画されます。
Some brushes are animated, and will show a pattern of shapes
along the line. Others are directional, and will show a
different shape depending on the angle of the brush. And
finally some are both animated and directional. See "Paint",
above, to learn more.
アニメーション対応のブラシでは、線に沿って形が変化します。 指向性のブラシでは、線の角度に応じて異なる形状を表示します。
さらに、アニメーションと指向性の両方を備えたブラシもあります。 詳しくは、上記の「ふで」の項をご覧ください。
----------------------------------------------------------------------
@ -261,10 +244,7 @@ Tux Paint の起動
通常の動作
Now you can move the mouse around the canvas to
rotate the shape. The angle your shape is
rotated will be shown at the bottom, in degrees
(similar to the "Lines" tool, described above).
ここで、キャンバス上でマウスを動かして図形を回転させることができます。回転した図形の角度は画面の下に表示されます(「せん」ツールと同様)。
最後にもう一度マウスをクリックして、図形が完成します。
@ -312,7 +292,7 @@ Tux Paint の起動
* 繁体中文— 右[Alt] キー または 左[Alt] キー キー
* タイ語— 右[Alt] キー
On-screen Keyboard
画面キーボード
テキストツールやラベルツールで使えるオプションの「スクリーンキーボード」では、キーボードレイアウトを変えたり、文字の合成(例:"a
"と "e "を "æ
@ -325,8 +305,7 @@ Tux Paint の起動
「ぬる」ツールは、描画の連続した領域を好きな色で塗りつぶします。以下の3 つの塗りつぶしオプションが用意されています:
* たんしょく — 領域を一つの色で塗りつぶします。
* Brush — click and drag to fill an area with a solid
color using freehand painting.
* ふで — フリーハンドでドラッグして、領域を一つの色で塗りつぶします。
* せんけい —
領域をクリックしてからドラッグすると、ドラッグした方向に向かって色が薄くなるようにグラデーションをつけて塗りつぶします。
* ほうしゃ —
@ -411,10 +390,8 @@ Tux Paint の起動
* 右下にある茶色の「けす」(ゴミ箱)
ボタンで、選択した作品を削除します。(本当に削除して良いか確認されます)
Note: On Linux (as of version 0.9.22) and Windows (as
of version 0.9.27), the picture will be placed in
your desktop's trash can / recycle bin (where you may
recover and restore it, if you change your mind).
注: Linuxバージョン 0.9.22以降、Windowsバージョン
0.9.27以降)では、削除した作品は、デスクトップのゴミ箱に移動するので、後で元に戻すことができます。
* 「かきだす」のボタンをクリックすると、ユーザーの標準の画像フォルダ(例:"~/Pictures/TuxPaint/")に画像を出力します。

View file

@ -96,7 +96,7 @@
</li>
<li>
<a href="#fonts">Fonts</a>
<a href="#fonts">フォント</a>
</li>
<li>
@ -125,7 +125,7 @@
</li>
<li>
<a href="#on_screen_keyboard">On-screen Keyboard</a>
<a href="#on_screen_keyboard">画面キーボード</a>
</li>
</ul>
</td>
@ -657,7 +657,7 @@
</blockquote>
<h4>
Initial Stamp Size </h4>
スタンプサイズ </h4>
<blockquote>
<p>
@ -709,7 +709,7 @@
<h2>
<a name="fonts"
id="fonts">Fonts</a>
id="fonts">フォント</a>
</h2>
<blockquote>
@ -951,7 +951,7 @@
<h2>
<a name="on_screen_keyboard"
id="on_screen_keyboard">On-screen Keyboard</a>
id="on_screen_keyboard">画面キーボード</a>
</h2>
<blockquote>

View file

@ -50,10 +50,10 @@
<a href="#interface">Interface Problems</a>
</li>
<li>
<a href="#printing">Printing</a>
<a href="#printing">印刷</a>
</li>
<li>
<a href="#saving">Saving</a>
<a href="#saving">保存</a>
</li>
<li>
<a href="#audio">Audio Problems</a>
@ -267,7 +267,7 @@
<h2>
<a name="printing" id="printing">
Printing </a>
印刷 </a>
</h2>
<dl>
@ -331,7 +331,7 @@
Either remove that line, or simply run Tux Paint with the command-line argument: "<code>--print</code>", which will override the configuration file's setting. </p>
<p>
Or use Tux Paint Config. and make sure "Allow Printing" (under "Printing") is checked. </p>
Or use Tux Paint Config. and make sure "Allow Printing" (under "印刷") is checked. </p>
</dd>
</dl>
@ -340,7 +340,7 @@
<h2>
<a name="saving" id="saving">
Saving </a>
保存 </a>
</h2>
<dl>
@ -405,7 +405,7 @@
Either remove that line, or simply run Tux Paint with the command-line argument: "<code>--saveoverask</code>", which will override the configuration file's setting. </p>
<p>
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under "Saving") is checked. </p>
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under "保存") is checked. </p>
<p>
Also, see "Tux Paint always saves a new picture!", below. </p>
@ -431,7 +431,7 @@
Either remove that line, or simply run Tux Paint with the command-line argument: "<code>--saveoverask</code>", which will override the configuration file's setting. </p>
<p>
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under "Saving") is checked. </p>
Or use Tux Paint Config. and make sure "Ask Before Overwriting" (under "保存") is checked. </p>
<p>
Also, see "Tux Paint always saves over my old picture!", above. </p>
@ -528,7 +528,7 @@
<li>Edit Tux Paint's configuration file (see "Options Documentation" for details) and add a line containing "<code>nosound=yes</code>". </li>
<li>
Or use Tux Paint Config. and make sure "Enable Sound Effects" (under "Video &amp; Sound") is not checked. </li>
Or use Tux Paint Config. and make sure "Enable Sound Effects" (under "画面 &amp; 音声") is not checked. </li>
<li>
Alternatively, recompile Tux Paint with sound support disabled. (See above, and the 'Install' documentation. </li>
@ -550,7 +550,7 @@
<li>Edit Tux Paint's configuration file (see "Options Documentation" for details) and add a line containing "<code>nostereo=yes</code>". </li>
<li>
Or use Tux Paint Config. and make sure "Enable Stereo Effects" (under "Video &amp; Sound") is not checked. </li>
Or use Tux Paint Config. and make sure "Enable Stereo Effects" (under "画面 &amp; 音声") is not checked. </li>
</ul>
</dd>
@ -627,7 +627,7 @@
Either remove that line, or simply run Tux Paint with the command-line argument: "<code>--windowed</code>", which will override the configuration file's setting. </p>
<p>
Or use Tux Paint Config. and make sure "Fullscreen" (under "Video &amp; Sound") is not checked. </p>
Or use Tux Paint Config. and make sure "Fullscreen" (under "画面 &amp; 音声") is not checked. </p>
</dd>
</dl>
@ -694,7 +694,7 @@
Either remove that line, or simply run Tux Paint with the command-line argument: "<code>--quit</code>", which will override the configuration file's setting. </p>
<p>
Or use Tux Paint Config. and make sure "Disable Quit Button and [Escape] Key" (under "Simplification") is not checked. </p>
Or use Tux Paint Config. and make sure "Disable Quit Button and [Escape] Key" (under "単純化") is not checked. </p>
</dd>
<dt>

View file

@ -242,7 +242,7 @@
</h3>
<p style="font-size: small;">
<em>
2020年10月25日 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
2021年11月 3日 Shin-ichi TOYAMA shin1@wmail.plala.or.jp &lt;<a href="mailto:shin1@wmail.plala.or.jp">shin1@wmail.plala.or.jp</a>&gt;
</em>
</p>
<blockquote>
@ -305,7 +305,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -313,12 +313,12 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-x86_64-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-x86_64-librsvg<br/>
$ pacman -S mingw-w64-x86_64-fribidi<br/>
$ pacman -S mingw-w64-x86_64-libimagequant<br/>
$ pacman -S mingw-w64-x86_64-fltk<br/>
$ pacman -S mingw64/mingw-w64-x86_64-ntldd-git
$ pacman -S mingw-w64-x86_64-ntldd-git
</code>
</blockquote>
</p>
@ -328,11 +328,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 64bit environment </h4>
Install SDL_Pango on the 64bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "64bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 64-bit" </p>
@ -360,21 +360,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw64 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
<p>
@ -403,7 +388,7 @@
<blockquote>
<p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango and SDL_gfx. </p>
You can install tools and libraries required for compiling Tux Paint on MSYS2/MINGW using "<code>pacman</code>" except for SDL_Pango. </p>
<p>
"<code>ntldd</code>" is a small tool which examine windows executable files to list Dynamic Link Library (<code>.dll</code>) files they depends on. Tux Paint's packaging process for binary distribution uses it to find required <code>.dll</code> files. </p>
<p>
@ -411,7 +396,7 @@
<p>
<blockquote>
<code>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf}<br/>
$ pacman -S mingw-w64-i686-SDL_{image,mixer,ttf,gfx}<br/>
$ pacman -S mingw-w64-i686-librsvg<br/>
$ pacman -S mingw-w64-i686-fribidi<br/>
$ pacman -S mingw-w64-i686-libimagequant<br/>
@ -426,11 +411,11 @@
</blockquote>
<h4>
Install SDL_Pango and SDL_gfx on the 32bit environment </h4>
Install SDL_Pango on the 32bit environment </h4>
<blockquote>
<p>
SDL_Pango and SDL_gfx should be installed manually. </p>
SDL_Pango should be installed manually. </p>
<p>
This time, use the MinGW "32bit" shell. Open the shell from the "Start Menu" -&gt; "MSYS2 64bit" -&gt; "MSYS2 MinGW 32-bit" </p>
@ -458,21 +443,6 @@
</p>
</blockquote>
<h5>SDL_gfx</h5>
<blockquote>
<p>
Download <a href="https://sourceforge.net/projects/sdlgfx/files/SDL_gfx-2.0.25.tar.gz/download">source tar-ball of SDL_gfx-2.0.25</a> from <a href="https://sourceforge.net/projects/sdlgfx/">SDL_gfx's page on Sourceforge.net</a>. </p>
<p>
Install SDL_gfx as follows. <blockquote>
<code>
$ tar zxvf SDL_gfx-2.0.25.tar.gz<br/>
$ cd SDL_gfx-2.0.25<br/>
$ ./configure --prefix=/mingw32 &amp;&amp; make &amp;&amp; make install
</code>
</blockquote>
</p>
</blockquote>
</blockquote>
@ -534,9 +504,11 @@
<p>
<a href="https://jrsoftware.org/isinfo.php">Inno Setup</a> is used to build executable installer for Tux Paint. Therefore you have to install it in the first place. </p>
<p>
</p>
Inno Setup officially supports translations for only about 20 languages. However, one of the great points of Tux Paint is it supports so many languages. Therefore, the set up script "<code>tuxpaint.iss</code>" to build the installer is written to use much more translations including unofficial one which are available on "<a href="https://jrsoftware.org/files/istrans/">Inno Setup Translations</a>". You have to download translation files (<code>.isl</code>) required and put them in "Languages" directory under the directory in which Inno Setup is installed. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-win32-installer.exe</code>" file in the same directory. </p>
Before building an installer, edit the "<code>tuxpaint.iss</code>" file and enable one of the lines starting with "<code>#define BuildTarget=</code>", depending on the architecture of the installer you want to create. </p>
<p>
Then, you can easily build an executable installer by right-clicking on the "<code>tuxpaint.iss</code>" icon in the "<code>win32</code>" directory and selecting "Compile" on the list. It will run for a while, and eventually you will find a "<code>tuxpaint-<i>X.Y.Z</i>-windows-&lt;arch&gt;-installer.exe</code>" file in the same directory. </p>
</blockquote>
<hr size="1" noshade width="75%" />
@ -546,7 +518,7 @@
<p>
Double-click the Tux Paint installer executable (.EXE file) and follow the instructions.
<p>
First, you will be asked to agree to the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
First, you will be asked to read the license. (It is the GNU General Public License (GPL), which is also available as "COPYING.txt".) </p>
<p>
You will then be asked whether you want to install shortcuts to Tux Paint in your Windows Start Menu and on your Windows Desktop. (Both options are set by default.) </p>

View file

@ -53,31 +53,31 @@
<a href="#available">利用可能なオプション</a>
<ul>
<li>
<a href="#video_sound">Video/Sound</a>
<a href="#video_sound">画面・音声</a>
</li>
<li>
<a href="#mouse_keyboard">Mouse/Keyboard</a>
<a href="#mouse_keyboard">マウス・キーボード</a>
</li>
<li>
<a href="#simplification">Simplification</a>
<a href="#simplification">単純化</a>
</li>
<li>
<a href="#languages">Languages</a>
<a href="#languages">言語関連</a>
</li>
<li>
<a href="#printing">Printing</a>
<a href="#printing">印刷</a>
</li>
<li>
<a href="#saving">Saving</a>
<a href="#saving">保存</a>
</li>
<li>
<a href="#data">Data</a>
<a href="#data">データ</a>
</li>
<li>
<a href="#accessibility">Accessibility</a>
<a href="#accessibility">アクセシビリティ</a>
</li>
<li>
<a href="#joystick">Joystick</a>
<a href="#joystick">ジョイスティック</a>
</li>
</ul>
</li>
@ -214,11 +214,11 @@
<hr/>
<h2>
<a name="video_sound" id="video_sound">
Video/Sound </a>
画面・音声 </a>
</h2>
<blockquote>
<h3>
Video</h3>
画面</h3>
<blockquote>
<dl>
@ -230,7 +230,7 @@
<p>
プログラムを、ウィンドウ内ではなく、フルスクリーンモードで起動します。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>fullscreen=no</code>". In both cases, may be overridden by the command-line option "<code>--windowed</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>fullscreen=no</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--windowed</code>" で変更できます。 </p>
</dd>
<dt>
@ -279,7 +279,7 @@
<p>
ウィンドウの幅と高さの設定を入れ替えます。これは、タブレットパソコンのような縦型のディスプレイでウィンドウを回転させる際に便利なオプションです。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>orient=landscape</code>". In both cases, may be overridden by the command-line option "<code>--orient=landscape</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>orient=landscape</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--orient=landscape</code>" で変更できます。 </p>
</dd>
<dt>
@ -299,13 +299,13 @@
<p>
標準では、Tux Paint の起動中は スクリーンセーバーが起動しない設定になっていますが、"<code>allowscreensaver</code>" オプションを指定すると、スクリーンセーバーが有効になります。これはSDLライブラリのバージョンが 1.2.12 以降の場合に有効なオプションであることに注意して下さい。(環境変数 "<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>" の値を "<code>1</code>" に設定しても、同様のことができます) </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>allowscreensaver=no</code>" or "<code>disablescreensaver=yes</code>". In both cases, may be overridden by the command-line option "<code>--disablescreensaver</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>allowscreensaver=no</code>" または "<code>disablescreensaver=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--disablescreensaver</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Sound</h3>
音声</h3>
<blockquote>
<dl>
<dt>
@ -316,7 +316,7 @@
<p>
効果音を無効にします。(注:このオプションを設定すると、<b>[Alt]</b> + <b>[S]</b> を押しても、効果音を有効化することはできません </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nosound=no</code>" or "<code>sound=yes</code>". In both cases, may be overridden by the command-line option "<code>--sound</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nosound=no</code>" または "<code>sound=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--sound</code>" で変更できます。 </p>
</dd>
<dt>
@ -327,13 +327,13 @@
<p>
ステレオの効果音を無効にする。(片耳イヤホンや1台のスピーカーで使用する場合に役に立ちます) </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nostereo=no</code>" or "<code>stereo=yes</code>". In both cases, may be overridden by the command-line option "<code>--stereo</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nostereo=no</code>" または "<code>stereo=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--stereo</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Interface Size</h3>
インターフェースサイズ</h3>
<blockquote>
<dl>
<dt>
@ -348,7 +348,7 @@
<i>SIZE</i> の値は24から192までのピクセル値で指定します。ほとんどのボタンは正方形となっており、この設定はボタンの幅と高さの両方に影響します。 </p>
<p>
Note: If the chosen button size would cause the buttons to be too large for all required UI elements to appear under Tux Paint's chosen window size, the largest possible button size will be used. (A note will appear in <code>stderr</code>.) </p>
注:選択されたボタンのサイズが大きすぎて画面内に必要なすべてのインターフェースが表示しきれない場合は、できる限り大きなボタンサイズが使用されます。(stderrにメモが表示されます。) </p>
</dd>
<dt>
@ -366,11 +366,11 @@
<hr/>
<h2>
<a name="mouse_keyboard" id="mouse_keyboard">
Mouse/Keyboard </a>
マウス・キーボード </a>
</h2>
<blockquote>
<h3>
Cursor</h3>
マウスカーソル</h3>
<blockquote>
<dl>
@ -385,7 +385,7 @@
<p>
環境によっては Tux Paint のマウスカーソルが原因で不具合が起こることがあります。そういった場合にこのオプションを有効にして下さい。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nofancycursors=no</code>" or "<code>fancycursors=yes</code>". In both cases, may be overridden by the command-line option "<code>--fancycursors</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nofancycursors=no</code>" または "<code>fancycursors=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--fancycursors</code>" で変更できます。 </p>
</dd>
<dt>
@ -399,13 +399,13 @@
<p>
タブレットPCなどのタッチスクリーンを用いるデバイスのためのオプションです。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>hidecursor=no</code>" or "<code>showcursor=yes</code>". In both cases, may be overridden by the command-line option "<code>--showcursor</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>hidecursor=no</code>" または "<code>showcursor=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--showcursor</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Keyboard</h3>
キーボード</h3>
<blockquote>
<dl>
@ -420,13 +420,13 @@
<p>
これは、キーボードの操作に慣れていない子供が不用意にコマンドを実行してしまうことを防ぐために有効です。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>noshortcuts=no</code>" or "<code>shortcuts=yes</code>". In both cases, may be overridden by the command-line option "<code>--shortcuts</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>noshortcuts=no</code>" または "<code>shortcuts=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--shortcuts</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Mouse</h3>
マウス</h3>
<blockquote>
<dl>
@ -441,7 +441,7 @@
<p>
これは、ユーザーが Tux Paint から抜け出すことができないようにするのに便利です。 <b>[Alt]-[Tab]</b> によるウィンドウの切り替えや、<b>[Ctrl]-[Escape]</b> キーによる操作が無効になります。このオプションは、特にフルスクリーンモード時に有効です。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>grab=no</code>" or "<code>dontgrab=yes</code>". In both cases, may be overridden by the command-line option "<code>--dontgrab</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>grab=no</code>" または "<code>dontgrab=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--dontgrab</code>" で変更できます。 </p>
</dd>
<dt>
@ -452,7 +452,7 @@
<p>
マウスでのホイールによる操作が無効になります。(通常、ホイールは右のセレクターメニューをスクロールします)。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nowheelmouse=no</code>" or "<code>wheelmouse=yes</code>". In both cases, may be overridden by the command-line option "<code>--wheelmouse</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nowheelmouse=no</code>" または "<code>wheelmouse=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--wheelmouse</code>" で変更できます。 </p>
</dd>
<dt>
@ -466,7 +466,7 @@
<p>
マウス操作が苦手なお子さんの場合、このオプションを使用することで、マウスの2つまたは3つのボタンの区別を無効にすることができます。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nobuttondistinction=no</code>" or "<code>buttondistinction=yes</code>". In both cases, may be overridden by the command-line option "<code>--buttondistinction</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nobuttondistinction=no</code>" または "<code>buttondistinction=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--buttondistinction</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
@ -475,11 +475,11 @@
<hr/>
<h2>
<a name="simplification" id="simplification">
Simplification </a>
単純化 </a>
</h2>
<blockquote>
<h3>
Interface Simplification</h3>
操作の単純化</h3>
<blockquote>
<dl>
@ -491,7 +491,7 @@
<p>
「ずけい」ツールで、形を決めたあとに回転させるステップを省略します。クリックして、ドラッグして、ボタンを離すだけで、図形を描くことができます。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>simpleshapes=no</code>" or "<code>complexshapes=yes</code>". In both cases, may be overridden by the command-line option "<code>--complexshapes</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>simpleshapes=no</code>" または "<code>complexshapes=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--complexshapes</code>" で変更できます。 </p>
</dd>
<dt>
@ -505,7 +505,7 @@
<p>
Tux Paint を非常に遅いパソコンで使いたい場合や、リモートの X-Window ディスプレイで使う場合に、速度を改善します。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nooutlines=no</code>" or "<code>outlines=yes</code>". In both cases, may be overridden by the command-line option "<code>--outlines</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nooutlines=no</code>" または "<code>outlines=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--outlines</code>" で変更できます。 </p>
</dd>
<dt>
@ -516,13 +516,13 @@
<p>
すべてのテキストが大文字で表記されます「Brush」は「BRUSH」。まだ大文字しか習っていない子供たちにとって役に立つオプションです。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>uppercase=no</code>" or "<code>mixedcase=yes</code>". In both cases, may be overridden by the command-line option "<code>--mixedcase</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>uppercase=no</code>" または "<code>mixedcase=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--mixedcase</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Initial Stamp Size</h3>
スタンプサイズ</h3>
<blockquote>
<dl>
@ -541,7 +541,7 @@
</blockquote>
<h3>
Control Simplification</h3>
機能制限</h3>
<blockquote>
<dl>
@ -560,7 +560,7 @@
また、<b>[Shift]</b> + <b>[Control]</b> + <b>[Escape]</b>. というキーの組み合わせでもプログラムを終了することができます。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>noquit=no</code>" or "<code>quit=yes</code>". In both cases, may be overridden by the command-line option "<code>--quit</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>noquit=no</code>" または "<code>quit=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--quit</code>" で変更できます。 </p>
</dd>
<dt>
@ -574,7 +574,7 @@
<p>
これによって、初回起動時のプログラムの読み込みが高速になります。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nostamps=no</code>" or "<code>stamps=yes</code>". In both cases, may be overridden by the command-line option "<code>--stamps</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nostamps=no</code>" または "<code>stamps=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--stamps</code>" で変更できます。 </p>
</dd>
<dt>
@ -585,7 +585,7 @@
<p>
「はんこ」ツールの画像には、上下または左右に反転できたり、大きさを変更したりできるものがあります。このオプションを設定すると、このような操作を無効にします。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nostampcontrols=no</code>" or "<code>stampcontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--stampcontrols</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nostampcontrols=no</code>" または "<code>stampcontrols=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--stampcontrols</code>" で変更できます。 </p>
</dd>
<dt>
@ -596,7 +596,7 @@
<p>
「まほう」ツールの中には、「ふで」ツールのように画像の一部分だけに効果を及ぼすか、キャンバス全体に効果を及ぼすかを選択できるものがあります。このオプションを設定すると、「まほう」ツールの動作の選択を無効にして、ツールごとに標準の動作だけをするようにします。(たいていは「ふで」のような動作になります) </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nomagiccontrols=no</code>" または "<code>magiccontrols=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--magiccontrols</code>" で変更できます。 </p>
</dd>
<dt>
@ -607,7 +607,7 @@
<p>
「かたち」ツールでの2つの動作モード-マウスをクリックした箇所を中心として図形を拡大するか、マウスをクリックした箇所をコーナーとして図形を拡大するか-を選択するボタンを無効にします。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>noshapecontrols=no</code>" or "<code>shapecontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--shapecontrols</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>noshapecontrols=no</code>" または "<code>shapecontrols=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--shapecontrols</code>" で変更できます。 </p>
</dd>
<dt>
@ -618,7 +618,7 @@
<p>
「ラベル」ツールを無効にします。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolabel=no</code>" or "<code>label=yes</code>". In both cases, may be overridden by the command-line option "<code>--label</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nolabel=no</code>" または "<code>label=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--label</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
@ -627,11 +627,11 @@
<hr/>
<h2>
<a name="languages" id="languages">
Languages </a>
言語関連 </a>
</h2>
<blockquote>
<h3>
Language</h3>
言語</h3>
<blockquote>
<dl>
@ -2201,13 +2201,13 @@
<p>
左から右ではなく右から左に向かって描き進むことを好むユーザーに役に立つオプションです。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>mirrorstamps=no</code>" or "<code>dontmirrorstamps=yes</code>". In both cases, may be overridden by the command-line option "<code>--dontmirrorstamps</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>mirrorstamps=no</code>" または "<code>dontmirrorstamps=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--dontmirrorstamps</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Fonts</h3>
フォント</h3>
<blockquote>
<dl>
@ -2219,7 +2219,7 @@
<p>
<b>もじ</b>ツールで、オペレーティングシステムのフォントを使用します。通常では、Tux Paint はパッケージに付属するフォントだけを使用します。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>sysfonts=no</code>" or "<code>nosysfonts=yes</code>". In both cases, may be overridden by the command-line option "<code>--nosysfonts</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>sysfonts=no</code>" または "<code>nosysfonts=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--nosysfonts</code>" で変更できます。 </p>
</dd>
<dt>
@ -2233,7 +2233,7 @@
<p>
以前のバージョンのように全てのフォントを読み込むようにするには、このオプションを有効にします。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>alllocalefonts=no</code>" or "<code>currentlocalefont=yes</code>". In both cases, may be overridden by the command-line option "<code>--currentlocalefont</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>alllocalefonts=no</code>" または "<code>currentlocalefont=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--currentlocalefont</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
@ -2242,11 +2242,11 @@
<hr/>
<h2>
<a name="printing" id="printing">
Printing </a>
印刷 </a>
</h2>
<blockquote>
<h3>
Print Permissions</h3>
印刷の制御</h3>
<blockquote>
<dl>
@ -2268,13 +2268,13 @@
<i>SECONDS</i> で設定した秒数ごとに1回だけしか印刷できなくなります。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>printdelay=0</code>". In both cases, may be overridden by the command-line option "<code>--printdelay=0</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>printdelay=0</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--printdelay=0</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Show Printer Dialog</h3>
印刷ダイアログの表示</h3>
<blockquote>
<dl>
@ -2309,7 +2309,7 @@
</blockquote>
<h3>
Save Printer Configuration</h3>
印刷設定の保存</h3>
<blockquote>
<dl>
@ -2329,14 +2329,14 @@
これは、Tux Paint をフルスクリーンモードで起動している場合にのみ有効であることに注意してください。)"printcfg" オプションが設定されていれば、変更した印刷の設定は "<code>userdata/print.cfg</code>" ファイルに記録され、再利用されます。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>printcfg=no</code>" or "<code>noprintcfg=yes</code>". In both cases, may be overridden by the command-line option "<code>--noprintcfg</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>printcfg=no</code>" または "<code>noprintcfg=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--noprintcfg</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Print Commands</h3>
印刷コマンド</h3>
<blockquote>
<dl>
@ -2387,7 +2387,7 @@
</blockquote>
<h3>
Paper Size</h3>
用紙サイズ</h3>
<blockquote>
<dl>
@ -2414,11 +2414,11 @@
<hr/>
<h2>
<a name="saving" id="saving">
Saving </a>
保存 </a>
</h2>
<blockquote>
<h3>
Save Over Earlier Work</h3>
上書き保存</h3>
<blockquote>
<dl>
@ -2453,7 +2453,7 @@
</blockquote>
<h3>
Starting Out</h3>
起動時の設定</h3>
<blockquote>
<dl>
@ -2465,7 +2465,7 @@
<p>
Tux Paint を起動する際、前回最後に開いていた絵を読み込む代わりに、毎回、空のキャンバスで開始します。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>startblank=no</code>" or "<code>startlast=yes</code>". In both cases, may be overridden by the command-line option "<code>--startlast</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>startblank=no</code>" または "<code>startlast=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--startlast</code>" で変更できます。 </p>
</dd>
<dt>
@ -2476,14 +2476,14 @@
<p>
「さいしょから」でキャンバスを選択する際、単色のキャンバスが末尾に、スターター画像やテンプレートが先頭になるよう、表示順序を変更します。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>newcolorslast=no</code>" or "<code>newcolorsfirst=yes</code>". In both cases, may be overridden by the command-line option "<code>--newcolorsfirst</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>newcolorslast=no</code>" または "<code>newcolorsfirst=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--newcolorsfirst</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Save and Export Directories</h3>
保存・書き出し先のディレクトリ</h3>
<blockquote>
<dl>
@ -2560,7 +2560,7 @@
</blockquote>
<h3>
More Saving Options</h3>
保存関連の追加オプション</h3>
<blockquote>
<dl>
@ -2572,7 +2572,7 @@
<p>
絵の保存ができないようにします("セーブ" ボタンも無効になります)。一時的なお遊びに使う場合や、テスト環境で使えるオプションです。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nosave=no</code>" or "<code>save=yes</code>". In both cases, may be overridden by the command-line option "<code>--save</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nosave=no</code>" または "<code>save=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--save</code>" で変更できます。 </p>
</dd>
<dt>
@ -2583,7 +2583,7 @@
<p>
プログラムを終了するときに、絵を保存するかどうか尋ねずに、自動的に保存します。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>autosave=no</code>" or "<code>noautosave=yes</code>". In both cases, may be overridden by the command-line option "<code>--noautosave</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>autosave=no</code>" または "<code>noautosave=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--noautosave</code>" で変更できます。 </p>
</dd>
</dl>
@ -2593,11 +2593,11 @@
<hr/>
<h2>
<a name="data" id="data">
Data </a>
データ </a>
</h2>
<blockquote>
<h3>
Lockfile</h3>
ロックファイル</h3>
<blockquote>
<dl>
@ -2616,14 +2616,14 @@
標準では、Linux および Unix では "<code>~/.tuxpaint/</code>" に、Windows では "<code>userdata\</code>" にロックファイルが保存されます。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nolockfile=no</code>" or "<code>lockfile=yes</code>". In both cases, may be overridden by the command-line option "<code>--lockfile</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nolockfile=no</code>" または "<code>lockfile=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--lockfile</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Data Directory</h3>
データ・ディレクトリ</h3>
<blockquote>
<dl>
@ -2666,7 +2666,7 @@
</blockquote>
<h3>
Color Palette File</h3>
カラーパレットファイル</h3>
<blockquote>
<dl>
@ -2700,11 +2700,11 @@
<hr/>
<h2>
<a name="accessibility" id="accessibility">
Accessibility </a>
アクセシビリティ </a>
</h2>
<blockquote>
<h3>
Mouse</h3>
マウス</h3>
<blockquote>
<dl>
@ -2720,7 +2720,7 @@
</blockquote>
<h3>
Keyboard</h3>
キーボード</h3>
<blockquote>
<dl>
@ -2767,13 +2767,13 @@
</ul>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>keyboard=no</code>" or "<code>mouse=yes</code>". In both cases, may be overridden by the command-line option "<code>--mouse</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>keyboard=no</code>" または "<code>mouse=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--mouse</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
<h3>
Onscreen Keyboard</h3>
画面キーボード</h3>
<blockquote>
<dl>
@ -2804,7 +2804,7 @@
画面キーボードの変更をできないようにします。小さな子供向けにシンプルにしたい場合に設定します。<br>
このオプションが設定されると <b>onscreen-keyboard=yes</b> も設定されているとみなします。 </p>
<p>
Note: If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>onscreen-keyboard-disable-change=no</code>". In both cases, may be overridden by the command-line option "<code>--onscreen-keyboard-disable-change=no</code>". </p>
注:システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>onscreen-keyboard-disable-change=no</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--onscreen-keyboard-disable-change=no</code>" で変更できます。 </p>
</dd>
</dl>
</blockquote>
@ -2813,11 +2813,11 @@
<hr/>
<h2>
<a name="joystick" id="joystick">
Joystick </a>
ジョイスティック </a>
</h2>
<blockquote>
<h3>
Main Device</h3>
デバイスの設定</h3>
<blockquote>
<dl>
@ -2861,7 +2861,7 @@
</blockquote>
<h3>
Hat</h3>
ハットスイッチ</h3>
<blockquote>
<dl>
@ -2886,7 +2886,7 @@
</blockquote>
<h3>
Buttons to Disable</h3>
ボタンの無効化</h3>
<blockquote>
<dl>
@ -2902,7 +2902,7 @@
</blockquote>
<h3>
Button Shortcuts</h3>
ボタンショートカット</h3>
<blockquote>
<dl>

View file

@ -409,13 +409,13 @@
ボタンを押したままマウスを動かすと、描画できます。 </p>
<p>
Some brushes are animated &mdash; they change their shape as you draw them. A good example of this is the vines brush that ships with Tux Paint. These brushes will have a small "filmstrip" icon drawn on their Selector buttons. </p>
アニメーションブラシ &mdash; 描画中に形状が変化します。例として、ブドウ形のブラシが挙げられます。このタイプのブラシの選択ボタンには、小さなフィルムのアイコンが付いています。 </p>
<p>
Other brushes are directional &mdash; they will draw a different shape depending on what direction you are painting with them. An example of this is the arrow brush that ships with Tux Paint. These brushes have a small 8-way arrow icon drawn on their Selector buttons. </p>
向きのあるブラシ &mdash; 描いている方向によって異なる形を描きます。 例として、Tux Paint に含まれる矢印ブラシがあります。 これらのブラシの選択ボタンには、小さな8方向の矢印のアイコンが付いています。 </p>
<p>
Finally, some brushes can be both direction <em>and</em> animated. Examples of this are the cat and squirrel brushes that ship with Tux Paint. These brushes will have both the "filmstrip" and 8-way arrow icons. </p>
また、いくつかのブラシは、方向とアニメーションを併せ持ちます。例として、猫やリスのブラシがあります。このタイプのブラシの選択ボタンには、小さなフィルムと8方向の矢印のアイコンが付いています。 </p>
<p>
描画中にはサウンドが流れます。筆の大きさが大きいほど、低い音になります。 </p>
@ -508,13 +508,13 @@
様々な種類の筆と好きな色を使って直線を描くツールです。 </p>
<p>
Click the mouse and hold it to choose the starting point of the line. As you move the mouse around, a thin 'rubber-band' line will show where the line will be drawn. At the bottom, you'll see the angle of your line, in degrees. A line going straight to the right is 0°, a line going straight up is 90°, a line going straight left is 180°, a line going straight down is 270°, and so on. </p>
線を引き始めたい場所でクリックして、そのままマウスを動かすと、描かれる線の位置が細い「ゴムバンド」のような線で示され、画面の下には、線の角度が表示されます。右にまっすぐ伸びる線は0度、上にまっすぐ伸びる線は90度、左にまっすぐ伸びる線は180度、下にまっすぐ伸びる線は270度、という具合です。 </p>
<p>
マウスを放すと、バネのような効果音とともに線が描画されます。 </p>
<p>
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
アニメーション対応のブラシでは、線に沿って形が変化します。 指向性のブラシでは、線の角度に応じて異なる形状を表示します。 さらに、アニメーションと指向性の両方を備えたブラシもあります。 詳しくは、上記の「ふで」の項をご覧ください。 </p>
<br clear="all">
<p align="center">
@ -578,7 +578,7 @@
<dd>
<p>
Now you can move the mouse around the canvas to rotate the shape. The angle your shape is rotated will be shown at the bottom, in degrees (similar to the "Lines" tool, described above). </p>
ここで、キャンバス上でマウスを動かして図形を回転させることができます。回転した図形の角度は画面の下に表示されます(「せん」ツールと同様)。 </p>
<p>
最後にもう一度マウスをクリックして、図形が完成します。 </p>
@ -674,7 +674,7 @@
</dd>
<dt>
<strong>On-screen Keyboard</strong>
<strong>画面キーボード</strong>
</dt>
<dd>
@ -701,7 +701,7 @@
<p>
「ぬる」ツールは、描画の連続した領域を好きな色で塗りつぶします。以下の3 つの塗りつぶしオプションが用意されています: <ul>
<li><strong>たんしょく</strong> &mdash; 領域を一つの色で塗りつぶします。</li>
<li><strong>Brush</strong> &mdash; click and drag to fill an area with a solid color using freehand painting.</li>
<li><strong>ふで</strong> &mdash; フリーハンドでドラッグして、領域を一つの色で塗りつぶします。</li>
<li><strong>せんけい</strong> &mdash; 領域をクリックしてからドラッグすると、ドラッグした方向に向かって色が薄くなるようにグラデーションをつけて塗りつぶします。</li>
<li><strong>ほうしゃ</strong> &mdash; クリックした場所を中心に周りに向かって放射状に色が薄くなるようにグラデーションをつけて塗りつぶします。</li>
</ul>
@ -899,7 +899,7 @@
右下にある茶色の「けす」(ゴミ箱) ボタンで、選択した作品を削除します。(本当に削除して良いか確認されます) </p>
<p>
<strong>Note:</strong> On Linux (as of version 0.9.22) and Windows (as of version 0.9.27), the picture will be placed in your desktop's trash can / recycle bin (where you may recover and restore it, if you change your mind). </p>
<strong>注:</strong> Linuxバージョン 0.9.22以降、Windowsバージョン 0.9.27以降)では、削除した作品は、デスクトップのゴミ箱に移動するので、後で元に戻すことができます。 </p>
<br clear="all">
</li>

View file

@ -1,7 +1,7 @@
.\" tuxpaint.1 - 2021.09.14
.TH TUXPAINT 1 "2021年9月14日" "0.9.27" "Tux Paint"
.SH NAME
tuxpaint -- "Tux Paint", a drawing program for young children.
tuxpaint -- 小さな子供向けのお絵かきプログラム
.SH SYNOPSYS
.B tuxpaint
@ -284,7 +284,7 @@ Show the license (GNU GPL) under which Tux Paint is released.
can be used along with, instead of, or to override options set in
configuration files. (See below.)
.SS VIDEO
.SS 画面
.TP 8
.B \-\-fullscreen=yes \-\-fullscreen=native \-\-fullscreen=no \-\-windowed
Run \fITux Paint\fP in full-screen mode at its default -- or a specified --
@ -316,7 +316,7 @@ rotated, e.g. tablet PCs.)
Normally, \fItuxpaint\fP disables your screensaver. Use
\-\-allowscreensaver to prevent this from happening.
.SS SOUND
.SS 音声
.TP 8
.B \-\-nosound \-\-sound
Disable or enable (default) sound.
@ -325,7 +325,7 @@ Disable or enable (default) sound.
.B \-\-nostereo \-\-stereo
Disable or enable (default) stereo panning support.
.SS INTERFACE SIZE
.SS インターフェースサイズ
.TP 8
.B \-\-buttonsize \fISIZE\fP
Adjust the size of the buttons in \fITux Paint\fP's user interface, between
@ -338,7 +338,7 @@ How many rows of color palette buttons to show; useful when using a large
color palette, and/or for use with coarse input devices (like eyegaze
trackers). It can be between 1 (default) and 3.
.SS INTERFACE SIMPLIFICATION
.SS 操作の単純化
.TP 8
.B \-\-simpleshapes \-\-complexshapes
Disable or enable (default) the rotation step when using the Shape tool
@ -360,7 +360,7 @@ tools will display only uppercase letters. This is useful for children who
are not yet comfortable with the lowercase characterset. Default mode is
mixed case.
.SS INITIAL STAMP SIZE
.SS スタンプサイズ
.TP 8
.B \-\-stampsize=\fISIZE\fP \-\-stampsize=default
Overrides the default size of all stamps, relative to their possible sizes
@ -381,7 +381,7 @@ blank canvas. The default behavior is "\-\-startlast".
List solid (blank) colors at the end, or beginning (default) of the options
displayed when using the New tool to start a new picture.
.SS CONTROL SIMPLIFICATION
.SS 機能制限
.TP 8
.B \-\-noquit \-\-quit
Disable or enable (default) the on-screen Quit button and [Escape] key for
@ -425,7 +425,7 @@ which can be altered or moved later.
Paint. They can be used along with, instead of, or to override options set
in configuration files. (See below.)
.SS CURSOR
.SS マウスカーソル
.TP 8
.B \-\-nofancycursors \-\-fancycursors
Disable or enable (default) the 'fancy' mouse pointer shapes in Tux Paint.
@ -437,7 +437,7 @@ trouble displaying the mouse pointer, and/or leave 'trails' on the screen.
Completely hide, or enable (default) the mouse pointer in Tux Paint. This
can be useful on touchscreen devices, such as tablet PCs.
.SS KEYBOARD
.SS キーボード
.TP 8
.B \-\-noshortcuts \-\-shortcuts
If "--noshortcuts" mode, keyboard shortcuts (e.g., [Ctrl]+[S] for Save)
@ -477,7 +477,7 @@ mice with more than one button) can be used for interacting with Tux Paint.
(right) can be used, as well. This is useful for children who aren't yet
comfortable with the mouse. Default is to only recognize button #1.
.SS ONSCREEN KEYBOARD
.SS 画面キーボード
.TP 8
.B \-\-onscreen-keyboard
Presents a clickable on-screen keyboard when using the Text and Label
@ -492,7 +492,7 @@ Specify the default layout for the on-screen keyboard (see above).
Disables the left/right arrow buttons visible on the on-screen keyboard,
which are used to switch between the available on-screen keyboard layouts.
.SS JOYSTICK
.SS ジョイスティック
.TP 8
.B \-\-joystick-dev=\fIDEVICE\fP
何番目のジョイスティックデバイスを使うかを設定します。標準では
@ -605,7 +605,7 @@ above, buttons will be seen as a mouse left-click. Comma-separated.
printing. They can be used along with, instead of, or to override options
set in configuration files. (See below.)
.SS PRINT PERMISSIONS
.SS 印刷の制御
.TP 8
.B \-\-noprint \-\-print
Disable or enable (default) the Print command within Tux Paint.
@ -615,7 +615,7 @@ Disable or enable (default) the Print command within Tux Paint.
Only allow printing (via the Print command) once every SECONDS seconds.
Default is 0 (no limitation).
.SS SHOW PRINTER DIALOG
.SS 印刷ダイアログの表示設定
.TP 8
.B \-\-altprintmod \-\-altprintnever \-\-altprintalways
These options control whether an system printer dialog appears when the
@ -625,7 +625,7 @@ mode). With "--altprintalways", the dialog will always appear, even if
[Alt] is not being held. With "--altprintnever", the dialog will never
appear, even if [Alt] is being held.
.SS SAVE PRINTER CONFIGURATION
.SS 印刷設定の保存
.TP 8
.B \-\-printcfg \-\-noprintcfg
(Windows and Mac OS X only.) Enable or disable loading and saving of
@ -636,7 +636,7 @@ see also "--altprintalways" and "--altprintnever", below.) Unless
"--noprintcfg" is used, your previous settings will be loaded when Tux
Paint starts up, and setting changes will be saved for next time.
.SS PRINT COMMANDS
.SS 印刷コマンド
.TP 8
.B \-\-printcommand \fICOMMAND\fP
(Only when PostScript printing is used.) Have Tux Paint print via an
@ -661,7 +661,7 @@ libpaper. See papersize(5).
operates when saving or exporting drawings. They can be used along with,
instead of, or to override options set in configuration files. (See below.)
.SS SAVE OVER EARLIER WORK
.SS 上書き保存
.TP 8
.B \-\-saveover \-\-saveovernew \-\-saveoverask
If, when saving a picture, an older version of the file will be
@ -671,7 +671,7 @@ over the old file, or create a new file. This prompt can be disabled with
"--saveovernew" (which always saves a new file). The default is to prompt
("--saveoverask").
.SS SAVE AND EXPORT DIRECTORIES
.SS 保存・書き出し先のディレクトリ
.TP 8
.B \-\-savedir \fIDIR\fP
Specify where Tux Paint should save and load its drawings.
@ -680,7 +680,7 @@ Specify where Tux Paint should save and load its drawings.
.B \-\-exportdir \fIDIR\fP
Specify where Tux Paint should export drawings and animations.
.SS MORE SAVING OPTIONS
.SS 保存関連の追加オプション
.TP 8
.B \-\-nosave \-\-save
The --nosave option disables Tux Paint's ability to save files. This can be
@ -1143,7 +1143,7 @@ With "--mirrorstamps" set, stamps which can be mirrored will appear
mirrored by default. This can be useful when used by people who prefer
things right-to-left over left-to-right.
.SS FONTS
.SS フォント
.TP 8
.B \-\-nosysfonts \-\-sysfonts
Tux Paint normally attempts to search for additional TrueType Fonts