diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index e8bb5543f..c11f3bcba 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -78,6 +78,11 @@ https://tuxpaint.org/ + Haiku (h/t Luc Schrijvers) + Linux (Bill K.) + * Improved consistency file and directory paths around the docs; + attempting to also ensure all major OSes Tux Paint supports + are covered appropriately & accurately in respect to paths. + Bill Kendrick + * Localization Updates: --------------------- * Bulgarian translation diff --git a/docs/en/EXTENDING.txt b/docs/en/EXTENDING.txt index f1da78c99..317b2dc5b 100644 --- a/docs/en/EXTENDING.txt +++ b/docs/en/EXTENDING.txt @@ -5,7 +5,7 @@ Copyright © 2002-2024 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - January 26, 2024 + April 27, 2024 +-----------------------------------------+ | Table of Contents | diff --git a/docs/en/FAQ.txt b/docs/en/FAQ.txt index 747b6dff6..e14319e70 100644 --- a/docs/en/FAQ.txt +++ b/docs/en/FAQ.txt @@ -226,15 +226,19 @@ Where does Tux Paint save my drawings? Windows Vista, Windows 8, Windows 10, Windows 11 In the user's "AppData" folder: - e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS In the user's "Application Support" folder: - e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/ + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" Linux / Unix - In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder: - e.g., /home/username/.tuxpaint/saved/ + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + + Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" The images are stored as PNG bitmaps, which most modern programs should be @@ -478,13 +482,13 @@ Tux Paint won't run Paint!", this means it has been launched in the last 30 seconds. (On Unix/ Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named - "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\ - Program Files\TuxPaint"). + "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in + "C:\Program Files\TuxPaint\"). - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\ - lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many - times at once (e.g., due to a child impatiently clicking its icon more than - once). + A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and + Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint + isn't run too many times at once (e.g., due to a child impatiently clicking + its icon more than once). Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply @@ -557,9 +561,14 @@ Tux Paint is using options I didn't specify! + Windows - Under Windows, Tux Paint first examines the configuration file: + Under Windows, it first examines the system-wide configuration file, + located here: - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg + C:\Program Files\TuxPaint\tuxpaint.cfg + + It then examines the user's personal configuration file: + + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -572,7 +581,7 @@ Tux Paint is using options I didn't specify! It then examines the user's personal configuration file: - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -606,8 +615,8 @@ Tux Paint is using options I didn't specify! nosound=yes - ...then you can reenable sound by either adding this option to your own "/ - home/username/.tuxpaintrc" file: + ...then you can reenable sound by either adding this option to your own + "/home/username/.tuxpaintrc" file: sound=yes diff --git a/docs/en/INSTALL.txt b/docs/en/INSTALL.txt index 4b04fde0d..bca2b6d61 100644 --- a/docs/en/INSTALL.txt +++ b/docs/en/INSTALL.txt @@ -2,10 +2,10 @@ version 0.9.33 Installation Documentation - Copyright © 2002-2023 by various contributors; see AUTHORS.txt. + Copyright © 2002-2024 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - May 13, 2023 + April 27, 2024 +---------------------------------------------------+ | Table of Contents | @@ -465,8 +465,8 @@ If Something Goes Wrong If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving -folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\ -TuxPaint". +folder for TuxPaint which is normaly +"C:\Users\username\AppData\Roaming\TuxPaint\". It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing diff --git a/docs/en/OPTIONS.txt b/docs/en/OPTIONS.txt index 8ba474006..b4b165499 100644 --- a/docs/en/OPTIONS.txt +++ b/docs/en/OPTIONS.txt @@ -1136,17 +1136,19 @@ Save Printer Configuration If you do not override it, the default location is: - o Linux & Unix — Under a hidden directory named ".tuxpaint" in your - home directory (aka "~" or "$HOME") - Example: /home/username/.tuxpaint/saved/ - o Windows — Inside a folder named "TuxPaint" in your "Application - Data" folder. - Example: C:\Documents and Settings\Username\Application Data\ - TuxPaint\saved\ - o macOS — Inside a folder named "TuxPaint" in your "Application - Support" folder. - Example: /Users/Username/Library/Application Support/TuxPaint/saved - / + Linux / Unix + Under a hidden directory in your home directory: + /home/username/.tuxpaint/saved/ + + Windows + C:\Users\username\AppData\Roaming\TuxPaint\saved\ + + macOS + /Users/username/Library/Application Support/TuxPaint/saved/ + + Haiku + /boot/home/config/settings/TuxPaint/saved/ + 💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory. diff --git a/docs/en/README.txt b/docs/en/README.txt index 1de48a0a5..9c8e0a8ba 100644 --- a/docs/en/README.txt +++ b/docs/en/README.txt @@ -154,8 +154,9 @@ the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer. -By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\ -Program Files\", though you may have changed this when you ran the installer. +By default, the 'Tux Paint Installer' will put Tux Paint's folder in +"C:\Program Files\TuxPaint\", though you may have changed this when you ran the +installer. If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. @@ -1155,21 +1156,21 @@ You can simply convert the picture to the format Tux Paint uses — PNG (Portabl Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default): -Windows 10, 8, 7, Vista - Inside the user's "AppData" folder, e.g.: "C:\Users\username\AppData\ - Roaming\TuxPaint\saved\". - -Windows 2000, XP - Inside the user's "Application Data" folder, e.g.: "C:\Documents and - Settings\username\Application Data\TuxPaint\saved\". +Windows Vista, Windows 8, Windows 10, Windows 11 + In the user's "AppData" folder: + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS - Inside the user's "Library" folder, e.g.: "/Users/username/Library/ - Application Support/Tux Paint/saved/". + In the user's "Application Support" folder: + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" -Linux/Unix - Inside a hidden ".tuxpaint" directory, in the user's home directory - ("$HOME"), e.g. "/home/username/.tuxpaint/saved/". +Linux / Unix + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + +Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" 💡 Note: It is also from this folder that you can copy or open pictures drawn in diff --git a/docs/en/html/EXTENDING.html b/docs/en/html/EXTENDING.html index 5cc10a945..46bda1e2a 100644 --- a/docs/en/html/EXTENDING.html +++ b/docs/en/html/EXTENDING.html @@ -100,7 +100,7 @@

- January 26, 2024

+ April 27, 2024

diff --git a/docs/en/html/FAQ.html b/docs/en/html/FAQ.html index f3c7b1418..0b3b4fead 100644 --- a/docs/en/html/FAQ.html +++ b/docs/en/html/FAQ.html @@ -312,27 +312,34 @@ Unless you asked Tux Paint to save into a specific location (using the "savedir" option), Tux Paint saves into a standard location on your local drive:

-
- Windows Vista, Windows 8, Windows 10, Windows 11 -
+
+ Windows Vista, Windows 8, Windows 10, Windows 11 +
-
- In the user's "AppData" folder:
e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved
+
+ In the user's "AppData" folder:
e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
-
- macOS -
+
+ macOS +
-
- In the user's "Application Support" folder:
e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/
+
+ In the user's "Application Support" folder:
e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
-
- Linux / Unix -
+
+ Linux / Unix +
-
- In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder:
e.g., /home/username/.tuxpaint/saved/
-
+
+ In the user's "home directory" folder:
e.g., "/home/username/.tuxpaint/saved/"
+ +
+ Haiku +
+ +
+ In the user's "settings" folder:
e.g., "/boot/home/config/settings/TuxPaint/saved/"
+

The images are stored as PNG bitmaps, which most modern programs should be able to load (image editors, word processors, web browsers, etc.)

@@ -610,10 +617,10 @@

- If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint").

+ If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint\").

- A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

+ A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply update the lockfile with the current time.

@@ -694,12 +701,19 @@
  • Windows

    - Under Windows, Tux Paint first examines the configuration file:

    + Under Windows, it first examines the system-wide configuration file, located here:

    - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg -

    + C:\Program Files\TuxPaint\tuxpaint.cfg

    +
    + +

    + It then examines the user's personal configuration file:

    + +
    +

    + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg

    @@ -713,8 +727,7 @@

    - /Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -722,8 +735,7 @@

    - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -737,8 +749,7 @@

    - /etc/tuxpaint/tuxpaint.conf -

    + /etc/tuxpaint/tuxpaint.conf

    @@ -746,8 +757,7 @@

    - /home/username/.tuxpaintrc -

    + /home/username/.tuxpaintrc

    @@ -761,8 +771,7 @@

    - /boot/home/config/settings/TuxPaint/tuxpaint.conf -

    + /boot/home/config/settings/TuxPaint/tuxpaint.conf

    @@ -774,7 +783,7 @@ This means that if anything is set in a configuration file that you don't want set, you'll need to either change the config. file (if you can), or override the option on the command-line.

    - For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    @@ -783,7 +792,7 @@

    - ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    + ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    diff --git a/docs/en/html/INSTALL.html b/docs/en/html/INSTALL.html index b03cbca2e..f0a0ec9b1 100644 --- a/docs/en/html/INSTALL.html +++ b/docs/en/html/INSTALL.html @@ -93,12 +93,12 @@ Installation Documentation

    - Copyright © 2002-2023 by various contributors; see AUTHORS.txt.
    + Copyright © 2002-2024 by various contributors; see AUTHORS.txt.
    https://tuxpaint.org/

    - May 13, 2023

    + April 27, 2024

    @@ -757,7 +757,7 @@

    - If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint".

    + If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint\".

    It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash).

    diff --git a/docs/en/html/OPTIONS.html b/docs/en/html/OPTIONS.html index 32abecc3b..d4bf6c198 100644 --- a/docs/en/html/OPTIONS.html +++ b/docs/en/html/OPTIONS.html @@ -1786,17 +1786,24 @@

    If you do not override it, the default location is:

    -
      -
    • Linux & Unix — Under a hidden directory named ".tuxpaint" in your home directory (aka "~" or "$HOME")
      - Example: /home/username/.tuxpaint/saved/
    • +
      +
      Linux / Unix
      +
      + Under a hidden directory in your home directory:
      + /home/username/.tuxpaint/saved/
      -
    • Windows — Inside a folder named "TuxPaint" in your "Application Data" folder.
      - Example: C:\Documents and Settings\Username\Application Data\TuxPaint\saved\
      -
    • +
      Windows
      +
      + C:\Users\username\AppData\Roaming\TuxPaint\saved\
      -
    • macOS — Inside a folder named "TuxPaint" in your "Application Support" folder.
      - Example: /Users/Username/Library/Application Support/TuxPaint/saved/
    • -
    +
    macOS
    +
    + /Users/username/Library/Application Support/TuxPaint/saved/
    + +
    Haiku
    +
    + /boot/home/config/settings/TuxPaint/saved/
    +

    💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory.

    diff --git a/docs/en/html/README.html b/docs/en/html/README.html index 8a65a5e2d..531c1658b 100644 --- a/docs/en/html/README.html +++ b/docs/en/html/README.html @@ -318,7 +318,7 @@ If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer.

    - By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\", though you may have changed this when you ran the installer.

    + By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\TuxPaint\", though you may have changed this when you ran the installer.

    If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file.

    @@ -1669,36 +1669,36 @@

    You can simply convert the picture to the format Tux Paint uses — PNG (Portable Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default):

    - +
    -
    - Windows 10, 8, 7, Vista -
    - -
    - Inside the user's "AppData" folder, e.g.: "C:\Users\username\AppData\Roaming\TuxPaint\saved\".
    - -
    - Windows 2000, XP -
    - -
    - Inside the user's "Application Data" folder, e.g.: "C:\Documents and Settings\username\Application Data\TuxPaint\saved\".
    - -
    - macOS -
    - -
    - Inside the user's "Library" folder, e.g.: "/Users/username/Library/Application Support/Tux Paint/saved/".
    - -
    - Linux/Unix -
    - -
    - Inside a hidden ".tuxpaint" directory, in the user's home directory ("$HOME"), e.g. "/home/username/.tuxpaint/saved/".
    -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    + +
    + In the user's "AppData" folder:
    e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
    + +
    + macOS +
    + +
    + In the user's "Application Support" folder:
    e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
    + +
    + Linux / Unix +
    + +
    + In the user's "home directory" folder:
    e.g., "/home/username/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    💡 Note: It is also from this folder that you can copy or open pictures drawn in Tux Paint using other applications, though the 'Export' option from Tux Paint's 'Open' dialog can be used to copy them to a location that's easier and safer to access.

    diff --git a/docs/es_ES.UTF-8/EXTENDING.txt b/docs/es_ES.UTF-8/EXTENDING.txt index 8b422a030..8772f38cd 100644 --- a/docs/es_ES.UTF-8/EXTENDING.txt +++ b/docs/es_ES.UTF-8/EXTENDING.txt @@ -5,7 +5,7 @@ Copyright © 2002-2024 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - enero 26, 2024 + abril 27, 2024 +-----------------------------------------+ | Table of Contents | diff --git a/docs/es_ES.UTF-8/FAQ.txt b/docs/es_ES.UTF-8/FAQ.txt index 45e0a51df..1a7e9246b 100644 --- a/docs/es_ES.UTF-8/FAQ.txt +++ b/docs/es_ES.UTF-8/FAQ.txt @@ -226,15 +226,19 @@ Where does Tux Paint save my drawings? Windows Vista, Windows 8, Windows 10, Windows 11 In the user's "AppData" folder: - e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS In the user's "Application Support" folder: - e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/ + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" Linux / Unix - In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder: - e.g., /home/username/.tuxpaint/saved/ + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + + Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" The images are stored as PNG bitmaps, which most modern programs should be @@ -478,13 +482,13 @@ Tux Paint won't run Paint!", this means it has been launched in the last 30 seconds. (On Unix/ Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named - "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\ - Program Files\TuxPaint"). + "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in + "C:\Program Files\TuxPaint\"). - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\ - lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many - times at once (e.g., due to a child impatiently clicking its icon more than - once). + A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and + Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint + isn't run too many times at once (e.g., due to a child impatiently clicking + its icon more than once). Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply @@ -557,9 +561,14 @@ Tux Paint is using options I didn't specify! + Windows - Under Windows, Tux Paint first examines the configuration file: + Under Windows, it first examines the system-wide configuration file, + located here: - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg + C:\Program Files\TuxPaint\tuxpaint.cfg + + It then examines the user's personal configuration file: + + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -572,7 +581,7 @@ Tux Paint is using options I didn't specify! It then examines the user's personal configuration file: - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -606,8 +615,8 @@ Tux Paint is using options I didn't specify! nosound=yes - ...then you can reenable sound by either adding this option to your own "/ - home/username/.tuxpaintrc" file: + ...then you can reenable sound by either adding this option to your own + "/home/username/.tuxpaintrc" file: sound=yes diff --git a/docs/es_ES.UTF-8/INSTALL.txt b/docs/es_ES.UTF-8/INSTALL.txt index ba6532ecc..2c0286f69 100644 --- a/docs/es_ES.UTF-8/INSTALL.txt +++ b/docs/es_ES.UTF-8/INSTALL.txt @@ -2,10 +2,10 @@ versión 0.9.33 Installation Documentation - Copyright © 2002-2023 by various contributors; see AUTHORS.txt. + Copyright © 2002-2024 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - mayo 13, 2023 + abril 27, 2024 +---------------------------------------------------+ | Table of Contents | @@ -465,8 +465,8 @@ If Something Goes Wrong If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving -folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\ -TuxPaint". +folder for TuxPaint which is normaly +"C:\Users\username\AppData\Roaming\TuxPaint\". It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing diff --git a/docs/es_ES.UTF-8/OPTIONS.txt b/docs/es_ES.UTF-8/OPTIONS.txt index 171e4cbcc..c792e3a04 100644 --- a/docs/es_ES.UTF-8/OPTIONS.txt +++ b/docs/es_ES.UTF-8/OPTIONS.txt @@ -1136,17 +1136,19 @@ Save Printer Configuration If you do not override it, the default location is: - o Linux & Unix — Under a hidden directory named ".tuxpaint" in your - home directory (aka "~" or "$HOME") - Example: /home/username/.tuxpaint/saved/ - o Windows — Inside a folder named "TuxPaint" in your "Application - Data" folder. - Example: C:\Documents and Settings\Username\Application Data\ - TuxPaint\saved\ - o macOS — Inside a folder named "TuxPaint" in your "Application - Support" folder. - Example: /Users/Username/Library/Application Support/TuxPaint/saved - / + Linux / Unix + Under a hidden directory in your home directory: + /home/username/.tuxpaint/saved/ + + Windows + C:\Users\username\AppData\Roaming\TuxPaint\saved\ + + macOS + /Users/username/Library/Application Support/TuxPaint/saved/ + + Haiku + /boot/home/config/settings/TuxPaint/saved/ + 💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory. diff --git a/docs/es_ES.UTF-8/README.txt b/docs/es_ES.UTF-8/README.txt index 736e1d3b5..8113edb3e 100644 --- a/docs/es_ES.UTF-8/README.txt +++ b/docs/es_ES.UTF-8/README.txt @@ -154,8 +154,9 @@ the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer. -By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\ -Program Files\", though you may have changed this when you ran the installer. +By default, the 'Tux Paint Installer' will put Tux Paint's folder in +"C:\Program Files\TuxPaint\", though you may have changed this when you ran the +installer. If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. @@ -1155,21 +1156,21 @@ You can simply convert the picture to the format Tux Paint uses — PNG (Portabl Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default): -Windows 10, 8, 7, Vista - Inside the user's "AppData" folder, e.g.: "C:\Users\username\AppData\ - Roaming\TuxPaint\saved\". - -Windows 2000, XP - Inside the user's "Application Data" folder, e.g.: "C:\Documents and - Settings\username\Application Data\TuxPaint\saved\". +Windows Vista, Windows 8, Windows 10, Windows 11 + In the user's "AppData" folder: + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS - Inside the user's "Library" folder, e.g.: "/Users/username/Library/ - Application Support/Tux Paint/saved/". + In the user's "Application Support" folder: + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" -Linux/Unix - Inside a hidden ".tuxpaint" directory, in the user's home directory - ("$HOME"), e.g. "/home/username/.tuxpaint/saved/". +Linux / Unix + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + +Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" 💡 Note: It is also from this folder that you can copy or open pictures drawn in diff --git a/docs/es_ES.UTF-8/html/EXTENDING.html b/docs/es_ES.UTF-8/html/EXTENDING.html index 38e10149e..6e1e7e6cb 100644 --- a/docs/es_ES.UTF-8/html/EXTENDING.html +++ b/docs/es_ES.UTF-8/html/EXTENDING.html @@ -100,7 +100,7 @@

    - enero 26, 2024

    + abril 27, 2024

    diff --git a/docs/es_ES.UTF-8/html/FAQ.html b/docs/es_ES.UTF-8/html/FAQ.html index 27fef5451..34f569b6c 100644 --- a/docs/es_ES.UTF-8/html/FAQ.html +++ b/docs/es_ES.UTF-8/html/FAQ.html @@ -312,27 +312,34 @@ Unless you asked Tux Paint to save into a specific location (using the "savedir" option), Tux Paint saves into a standard location on your local drive:

    -
    - Windows Vista, Windows 8, Windows 10, Windows 11 -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    -
    - In the user's "AppData" folder:
    e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved
    +
    + In the user's "AppData" folder:
    e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
    -
    - macOS -
    +
    + macOS +
    -
    - In the user's "Application Support" folder:
    e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/
    +
    + In the user's "Application Support" folder:
    e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
    -
    - Linux / Unix -
    +
    + Linux / Unix +
    -
    - In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder:
    e.g., /home/username/.tuxpaint/saved/
    -
    +
    + In the user's "home directory" folder:
    e.g., "/home/username/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    The images are stored as PNG bitmaps, which most modern programs should be able to load (image editors, word processors, web browsers, etc.)

    @@ -610,10 +617,10 @@

    - If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint").

    + If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint\").

    - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    + A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply update the lockfile with the current time.

    @@ -694,12 +701,19 @@
  • Windows

    - Under Windows, Tux Paint first examines the configuration file:

    + Under Windows, it first examines the system-wide configuration file, located here:

    - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg -

    + C:\Program Files\TuxPaint\tuxpaint.cfg

    +
    + +

    + It then examines the user's personal configuration file:

    + +
    +

    + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg

    @@ -713,8 +727,7 @@

    - /Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -722,8 +735,7 @@

    - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -737,8 +749,7 @@

    - /etc/tuxpaint/tuxpaint.conf -

    + /etc/tuxpaint/tuxpaint.conf

    @@ -746,8 +757,7 @@

    - /home/username/.tuxpaintrc -

    + /home/username/.tuxpaintrc

    @@ -761,8 +771,7 @@

    - /boot/home/config/settings/TuxPaint/tuxpaint.conf -

    + /boot/home/config/settings/TuxPaint/tuxpaint.conf

    @@ -774,7 +783,7 @@ This means that if anything is set in a configuration file that you don't want set, you'll need to either change the config. file (if you can), or override the option on the command-line.

    - For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    @@ -783,7 +792,7 @@

    - ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    + ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    diff --git a/docs/es_ES.UTF-8/html/INSTALL.html b/docs/es_ES.UTF-8/html/INSTALL.html index f60164f9a..440a5abd8 100644 --- a/docs/es_ES.UTF-8/html/INSTALL.html +++ b/docs/es_ES.UTF-8/html/INSTALL.html @@ -93,12 +93,12 @@ Installation Documentation

    - Copyright © 2002-2023 by various contributors; see AUTHORS.txt.
    + Copyright © 2002-2024 by various contributors; see AUTHORS.txt.
    https://tuxpaint.org/

    - mayo 13, 2023

    + abril 27, 2024

    @@ -757,7 +757,7 @@

    - If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint".

    + If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint\".

    It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash).

    diff --git a/docs/es_ES.UTF-8/html/OPTIONS.html b/docs/es_ES.UTF-8/html/OPTIONS.html index 348ff1487..68b6a12c2 100644 --- a/docs/es_ES.UTF-8/html/OPTIONS.html +++ b/docs/es_ES.UTF-8/html/OPTIONS.html @@ -1786,17 +1786,24 @@

    If you do not override it, the default location is:

    -
      -
    • Linux & Unix — Under a hidden directory named ".tuxpaint" in your home directory (aka "~" or "$HOME")
      - Example: /home/username/.tuxpaint/saved/
    • +
      +
      Linux / Unix
      +
      + Under a hidden directory in your home directory:
      + /home/username/.tuxpaint/saved/
      -
    • Windows — Inside a folder named "TuxPaint" in your "Application Data" folder.
      - Example: C:\Documents and Settings\Username\Application Data\TuxPaint\saved\
      -
    • +
      Windows
      +
      + C:\Users\username\AppData\Roaming\TuxPaint\saved\
      -
    • macOS — Inside a folder named "TuxPaint" in your "Application Support" folder.
      - Example: /Users/Username/Library/Application Support/TuxPaint/saved/
    • -
    +
    macOS
    +
    + /Users/username/Library/Application Support/TuxPaint/saved/
    + +
    Haiku
    +
    + /boot/home/config/settings/TuxPaint/saved/
    +

    💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory.

    diff --git a/docs/es_ES.UTF-8/html/README.html b/docs/es_ES.UTF-8/html/README.html index ccf1d5baa..82a7c9250 100644 --- a/docs/es_ES.UTF-8/html/README.html +++ b/docs/es_ES.UTF-8/html/README.html @@ -318,7 +318,7 @@ If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer.

    - By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\", though you may have changed this when you ran the installer.

    + By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\TuxPaint\", though you may have changed this when you ran the installer.

    If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file.

    @@ -1669,36 +1669,36 @@

    You can simply convert the picture to the format Tux Paint uses — PNG (Portable Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default):

    - +
    -
    - Windows 10, 8, 7, Vista -
    - -
    - Inside the user's "AppData" folder, e.g.: "C:\Users\username\AppData\Roaming\TuxPaint\saved\".
    - -
    - Windows 2000, XP -
    - -
    - Inside the user's "Application Data" folder, e.g.: "C:\Documents and Settings\username\Application Data\TuxPaint\saved\".
    - -
    - macOS -
    - -
    - Inside the user's "Library" folder, e.g.: "/Users/username/Library/Application Support/Tux Paint/saved/".
    - -
    - Linux/Unix -
    - -
    - Inside a hidden ".tuxpaint" directory, in the user's home directory ("$HOME"), e.g. "/home/username/.tuxpaint/saved/".
    -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    + +
    + In the user's "AppData" folder:
    e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
    + +
    + macOS +
    + +
    + In the user's "Application Support" folder:
    e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
    + +
    + Linux / Unix +
    + +
    + In the user's "home directory" folder:
    e.g., "/home/username/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    💡 Note: It is also from this folder that you can copy or open pictures drawn in Tux Paint using other applications, though the 'Export' option from Tux Paint's 'Open' dialog can be used to copy them to a location that's easier and safer to access.

    diff --git a/docs/fr_FR.UTF-8/EXTENDING.txt b/docs/fr_FR.UTF-8/EXTENDING.txt index 7f23eb7e7..130f8ae44 100644 --- a/docs/fr_FR.UTF-8/EXTENDING.txt +++ b/docs/fr_FR.UTF-8/EXTENDING.txt @@ -5,7 +5,7 @@ Copyright © 2002-2024 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ - janvier 26, 2024 + avril 27, 2024 +-------------------------------------------------------------+ | Table des matières | diff --git a/docs/fr_FR.UTF-8/FAQ.txt b/docs/fr_FR.UTF-8/FAQ.txt index e85534d23..ce780a5f0 100644 --- a/docs/fr_FR.UTF-8/FAQ.txt +++ b/docs/fr_FR.UTF-8/FAQ.txt @@ -247,16 +247,21 @@ Où Tux Paint enregistre-t-il mes dessins ? emplacement standard sur votre disque local : Windows Vista, Windows 8, Windows 10, Windows 11 - Dans le dossier "AppData" de l'utilisateur : - par ex.., C:\Users\Username\AppData\Roaming\TuxPaint\saved + In the user's "AppData" folder: + e.g., "C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\" macOS - Dans le dossier "Application Support" de l'utilisateur : - par ex., /Users/Username/Library/Applicaton Support/TuxPaint/saved/ + In the user's "Application Support" folder: + e.g., + "/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/" Linux / Unix - Dans le dossier personnel de l'utilisateur ("$HOME"), dans un - sous-dossier ".tuxpaint"), par ex., /home/username/.tuxpaint/saved/ + In the user's "home directory" folder: + e.g., "/home/nom d'utilisateur/.tuxpaint/saved/" + + Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" Les images sont stockées sous forme de bitmaps PNG, que la plupart des @@ -514,18 +519,17 @@ Autres problèmes Tux Paint ne veut pas fonctionner - Si Tux Paint échoue avec le message: "You're already running a copy of Tux - Paint!", cela signifie qu'il a déjà été lancé dans les 30 dernières - secondes. (Sous Unix / Linux, ce message devrait apparaîtrr dans une - console de terminal si vous exécutiez Tux Paint en ligne de commande. Sous - Windows, ce message apparaîtrait dans un fichier nommé "stdout.txt" dans le - même dossier où TuxPaint.exe réside (par exemple, dans "C:\Program Files\ - TuxPaint"). + If Tux Paint aborts with the message: "You're already running a copy of Tux + Paint!", this means it has been launched in the last 30 seconds. (On Unix/ + Linux, this message would appear in a terminal console if you ran Tux Paint + from a command-line. On Windows, this message would appear in a file named + "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in + "C:\Program Files\TuxPaint\"). - Un fichier de verrouillage ("~/.tuxpaint/lockfile.dat" sous Linux et Unix, - "userdata\lockfile.dat" sous Windows) est utilisé pour s'assurer que Tux - Paint n'est pas exécuté trop de fois en même temps (par exemple, en à cause - d'un enfant impatient qui clique plusieurs fois sur son icône). + A lockfile (e.g., "/home/nom d'utilisateur/.tuxpaint/lockfile.dat" on Linux + and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux + Paint isn't run too many times at once (e.g., due to a child impatiently + clicking its icon more than once). Même si le fichier de verrouillage existe, il contient l'heure de la dernière exécution de Tux Paint. Si cela fait plus de 30 secondes, Tux @@ -606,9 +610,15 @@ Tux Paint utilise des options que je n'ai pas spécifiées ! + Windows - Under Windows, Tux Paint first examines the configuration file: + Under Windows, it first examines the system-wide configuration file, + located here: - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg + C:\Program Files\TuxPaint\tuxpaint.cfg + + Il examine ensuite le fichier de configuration personnel de + l'utilisateur : + + C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\tuxpaint.cfg Et finalement, toutes les options envoyées en tant qu'arguments de ligne de commande sont utilisées. @@ -623,7 +633,7 @@ Tux Paint utilise des options que je n'ai pas spécifiées ! Il examine ensuite le fichier de configuration personnel de l'utilisateur : - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg + /Users/nom d'utilisateur/Library/Application Support/TuxPaint/tuxpaint.cfg Et finalement, toutes les options envoyées en tant qu'arguments de ligne de commande sont utilisées. @@ -657,13 +667,13 @@ Tux Paint utilise des options que je n'ai pas spécifiées ! le fichier config. fichier (si vous le pouvez), ou changer l'option par le biais de la ligne de commande. - Par exemple, si "/etc/tuxpaint/tuxpaint.conf" inclut une option pour - désactiver le son ... + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes + this option to disable sound... nosound=yes - ... Alors vous pouvez réactiver le son en ajoutant cette option à votre - propre fichier "/home/nom d'utilisateur/.tuxpaintrc" : + ...then you can reenable sound by either adding this option to your own + "/home/nom d'utilisateur/.tuxpaintrc" file: sound=yes diff --git a/docs/fr_FR.UTF-8/INSTALL.txt b/docs/fr_FR.UTF-8/INSTALL.txt index f52646da7..d83e19a1d 100644 --- a/docs/fr_FR.UTF-8/INSTALL.txt +++ b/docs/fr_FR.UTF-8/INSTALL.txt @@ -2,10 +2,10 @@ version 0.9.33 Documentation sur l'installation - Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt. + Copyright © 2002-2024 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ - mai 13, 2023 + avril 27, 2024 +-------------------------------------------------------+ | Table des matières | @@ -481,11 +481,11 @@ Quand vous avez fini, appuyez sur "OK". Si quelque chose ne va pas -Si, lorsque vous double-cliquez sur le raccourci pour lancer le jeu, rien ne se -passe, c'est probablement parce que certaines des options en lignes de commande -sont erronées. Ouvrez un explorateuet recherchez un fichier appelé "stderr.txt" -dans votre dossier personnel de sauvegarde de TuxPaint, qui est normalement "C: -\Users\utilisateur\AppData\Roaming\TuxPaint". +If, when you double-click on the shortcut to run Tux Paint, nothing happens, it +is probably because some of these command-line options are wrong. Open an +Explorer, and look for a file called "stderr.txt" in your personal saving +folder for TuxPaint which is normaly +"C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\". Il contiendra une description de ce qui n'allait pas. Habituellement, ce sera simplement dû à une casse de caractère incorrecte (majuscule 'Z' à la place de diff --git a/docs/fr_FR.UTF-8/OPTIONS.txt b/docs/fr_FR.UTF-8/OPTIONS.txt index 097a6cc8a..75c5cd563 100644 --- a/docs/fr_FR.UTF-8/OPTIONS.txt +++ b/docs/fr_FR.UTF-8/OPTIONS.txt @@ -1196,17 +1196,19 @@ Sauvegarder la configuration d'impression Si vous ne le changez pas, l' emplacement par défaut est : - o Linux & Unix - Sous un répertoire caché nommé ".tuxpaint" dans - votre répertoire personnel (aka "~" ou "$HOME") - Exemple: /home/username/.tuxpaint/saved/ - o Windows - Dans un dossier nommé "TuxPaint" dans votre dossier - "Application Data". - Exemple: C:\Documents and Settings\Username\Application Data\ - TuxPaint\saved\ - o macOS - Dans un dossier nommé "TuxPaint" dans votre dossier - "Application Support". - Exemple: /Users/Username/Library/Application Support/TuxPaint/saved - / + Linux / Unix + Under a hidden directory in your home directory: + /home/nom d'utilisateur/.tuxpaint/saved/ + + Windows + C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\ + + macOS + /Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/ + + Haiku + /boot/home/config/settings/TuxPaint/saved/ + 💡 Note : Si vous spécifiez un lecteur Windows (pzr ex. "H:\"), vous devez spécifiez également un sous-répertoire. diff --git a/docs/fr_FR.UTF-8/README.txt b/docs/fr_FR.UTF-8/README.txt index f01a981b4..78bf7c780 100644 --- a/docs/fr_FR.UTF-8/README.txt +++ b/docs/fr_FR.UTF-8/README.txt @@ -161,9 +161,9 @@ si vous avez utilisé 'Tux Paint Installer', mais que vous avez choisi de ne pas installer de raccourcis, vous devrez double-cliquer sur l'icône "tuxpaint.exe" dans le dossier "Tux Paint" de votre ordinateur. -Par défaut, le 'Tux Paint Installer' mettra le dossier de Tux Paint dans "C:\ -Program Files\",ou bien vous avez pu changer cela lors de l'exécution du -programme d'installation. +By default, the 'Tux Paint Installer' will put Tux Paint's folder in +"C:\Program Files\TuxPaint\", though you may have changed this when you ran the +installer. Si vous avez utilisé le téléchargement de 'ZIP-file', le dossier de Tux Paint sera là où vous l'avez placé lorsque vous avez décompressé le fichier ZIP. @@ -1236,22 +1236,22 @@ Pour ce faire, il vous suffit de convertir l'image dans le format utilisé par Tux Paint, qui est —PNG (Portable Network Graphic), et de la placer dans le répertoire "saved" de Tux Paint. C'est là où on les trouve (par défaut) : -Windows 10, 8, 7, Vista - Dans le dossier utilisateurs "AppData", par ex. "C:\Users\nom d'utilisateur - \AppData\Roaming\TuxPaint\saved\". - -Windows 2000, XP - Dans le dossier utilisateurs "Application Data", par ex. "C:\Documents and - Settings\nom d'utilisateur\Application Data\TuxPaint\saved\". +Windows Vista, Windows 8, Windows 10, Windows 11 + In the user's "AppData" folder: + e.g., "C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\" macOS - Dans le dossier utilisateurs "Library", par ex. "/Users/nom d'utilisateur/ - Library/Application Support/Tux Paint/saved/". + In the user's "Application Support" folder: + e.g., + "/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/" -Linux/Unix - Dans un répertoire caché ".tuxpaint" qui est dans le répertoire personnel - de l'utilisateur ("$HOME"), par ex. "/home/nom d'utilisateur/.tuxpaint/ - saved/". +Linux / Unix + In the user's "home directory" folder: + e.g., "/home/nom d'utilisateur/.tuxpaint/saved/" + +Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" 💡 Remarque : C'est également à partir de ce dossier que vous pouvez copier ou diff --git a/docs/fr_FR.UTF-8/html/EXTENDING.html b/docs/fr_FR.UTF-8/html/EXTENDING.html index 31ba8def8..cf10aa796 100644 --- a/docs/fr_FR.UTF-8/html/EXTENDING.html +++ b/docs/fr_FR.UTF-8/html/EXTENDING.html @@ -100,7 +100,7 @@

    - janvier 26, 2024

    + avril 27, 2024

    diff --git a/docs/fr_FR.UTF-8/html/FAQ.html b/docs/fr_FR.UTF-8/html/FAQ.html index 330a68773..33a2569cf 100644 --- a/docs/fr_FR.UTF-8/html/FAQ.html +++ b/docs/fr_FR.UTF-8/html/FAQ.html @@ -312,27 +312,34 @@ Sauf si vous avez demandé à Tux Paint d'enregistrer dans un emplacement spécifique (en utilisant l'option 'savedir'), Tux Paint enregistre dans un emplacement standard sur votre disque local :

    -
    - Windows Vista, Windows 8, Windows 10, Windows 11 -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    -
    - Dans le dossier "AppData" de l'utilisateur :
    par ex.., C:\Users\Username\AppData\Roaming\TuxPaint\saved
    +
    + In the user's "AppData" folder:
    e.g., "C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\"
    -
    - macOS -
    +
    + macOS +
    -
    - Dans le dossier "Application Support" de l'utilisateur :
    par ex., /Users/Username/Library/Applicaton Support/TuxPaint/saved/
    +
    + In the user's "Application Support" folder:
    e.g., "/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/"
    -
    - Linux / Unix -
    +
    + Linux / Unix +
    -
    - Dans le dossier personnel de l'utilisateur ("$HOME"), dans un sous-dossier ".tuxpaint"), par ex., /home/username/.tuxpaint/saved/
    -
    +
    + In the user's "home directory" folder:
    e.g., "/home/nom d'utilisateur/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    Les images sont stockées sous forme de bitmaps PNG, que la plupart des programmes récents savent lire (éditeurs d'image, éditeurs de texte, navigateurs, etc ...)

    @@ -611,10 +618,10 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu

    - Si Tux Paint échoue avec le message: "You're already running a copy of Tux Paint!", cela signifie qu'il a déjà été lancé dans les 30 dernières secondes. (Sous Unix / Linux, ce message devrait apparaîtrr dans une console de terminal si vous exécutiez Tux Paint en ligne de commande. Sous Windows, ce message apparaîtrait dans un fichier nommé "stdout.txt" dans le même dossier où TuxPaint.exe réside (par exemple, dans "C:\Program Files\TuxPaint").

    + If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint\").

    - Un fichier de verrouillage ("~/.tuxpaint/lockfile.dat" sous Linux et Unix, "userdata\lockfile.dat" sous Windows) est utilisé pour s'assurer que Tux Paint n'est pas exécuté trop de fois en même temps (par exemple, en à cause d'un enfant impatient qui clique plusieurs fois sur son icône).

    + A lockfile (e.g., "/home/nom d'utilisateur/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    Même si le fichier de verrouillage existe, il contient l'heure de la dernière exécution de Tux Paint. Si cela fait plus de 30 secondes, Tux Paint devrait fonctionner correctement et simplement mettre à jour le fichier de verrouillage avec l'heure courante.

    @@ -695,12 +702,19 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu
  • Windows

    - Under Windows, Tux Paint first examines the configuration file:

    + Under Windows, it first examines the system-wide configuration file, located here:

    - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg -

    + C:\Program Files\TuxPaint\tuxpaint.cfg

    +
    + +

    + Il examine ensuite le fichier de configuration personnel de l'utilisateur :

    + +
    +

    + C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\tuxpaint.cfg

    @@ -714,8 +728,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu

    - /Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -723,8 +736,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu

    - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Users/nom d'utilisateur/Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -738,8 +750,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu

    - /etc/tuxpaint/tuxpaint.conf -

    + /etc/tuxpaint/tuxpaint.conf

    @@ -747,8 +758,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu

    - /home/nom d'utilisateur/.tuxpaintrc -

    + /home/nom d'utilisateur/.tuxpaintrc

    @@ -762,8 +772,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu

    - /boot/home/config/settings/TuxPaint/tuxpaint.conf -

    + /boot/home/config/settings/TuxPaint/tuxpaint.conf

    @@ -775,7 +784,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu Cela signifie que si quelque chose est défini dans un fichier de configuration que vous ne souhaitez pas activer, vous devrez soit modifier le fichier config. fichier (si vous le pouvez), ou changer l'option par le biais de la ligne de commande.

    - Par exemple, si "/etc/tuxpaint/tuxpaint.conf" inclut une option pour désactiver le son ...

    + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    @@ -784,7 +793,7 @@ cible "nosound". (c'est-à-dire, ne lancez pas "make nosound") Assu

    - ... Alors vous pouvez réactiver le son en ajoutant cette option à votre propre fichier "/home/nom d'utilisateur/.tuxpaintrc" :

    + ...then you can reenable sound by either adding this option to your own "/home/nom d'utilisateur/.tuxpaintrc" file:

    diff --git a/docs/fr_FR.UTF-8/html/INSTALL.html b/docs/fr_FR.UTF-8/html/INSTALL.html index 8a14e8f79..6e2e6aa3b 100644 --- a/docs/fr_FR.UTF-8/html/INSTALL.html +++ b/docs/fr_FR.UTF-8/html/INSTALL.html @@ -93,12 +93,12 @@ Documentation sur l'installation

    - Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt.
    + Copyright © 2002-2024 by divers contributeurs; voir AUTHORS.txt.
    https://tuxpaint.org/

    - mai 13, 2023

    + avril 27, 2024

    @@ -757,7 +757,7 @@

    - Si, lorsque vous double-cliquez sur le raccourci pour lancer le jeu, rien ne se passe, c'est probablement parce que certaines des options en lignes de commande sont erronées. Ouvrez un explorateuet recherchez un fichier appelé "stderr.txt" dans votre dossier personnel de sauvegarde de TuxPaint, qui est normalement "C:\Users\utilisateur\AppData\Roaming\TuxPaint".

    + If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\".

    Il contiendra une description de ce qui n'allait pas. Habituellement, ce sera simplement dû à une casse de caractère incorrecte (majuscule 'Z' à la place de 'z' minuscule) ou un '-' (tiret) manquant (en trop).

    diff --git a/docs/fr_FR.UTF-8/html/OPTIONS.html b/docs/fr_FR.UTF-8/html/OPTIONS.html index 34d62fb5d..5bd5bd434 100644 --- a/docs/fr_FR.UTF-8/html/OPTIONS.html +++ b/docs/fr_FR.UTF-8/html/OPTIONS.html @@ -1786,17 +1786,24 @@

    Si vous ne le changez pas, l' emplacement par défaut est :

    -
      -
    • Linux & Unix - Sous un répertoire caché nommé ".tuxpaint" dans votre répertoire personnel (aka "~" ou "$HOME")
      - Exemple: /home/username/.tuxpaint/saved/
    • +
      +
      Linux / Unix
      +
      + Under a hidden directory in your home directory:
      + /home/nom d'utilisateur/.tuxpaint/saved/
      -
    • Windows - Dans un dossier nommé "TuxPaint" dans votre dossier "Application Data".
      - Exemple: C:\Documents and Settings\Username\Application Data\TuxPaint\saved\
      -
    • +
      Windows
      +
      + C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\
      -
    • macOS - Dans un dossier nommé "TuxPaint" dans votre dossier "Application Support".
      - Exemple: /Users/Username/Library/Application Support/TuxPaint/saved/
    • -
    +
    macOS
    +
    + /Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/
    + +
    Haiku
    +
    + /boot/home/config/settings/TuxPaint/saved/
    +

    💡 Note : Si vous spécifiez un lecteur Windows (pzr ex. "H:\"), vous devez spécifiez également un sous-répertoire.

    diff --git a/docs/fr_FR.UTF-8/html/README.html b/docs/fr_FR.UTF-8/html/README.html index 84b8db2f3..af7b4c2bc 100644 --- a/docs/fr_FR.UTF-8/html/README.html +++ b/docs/fr_FR.UTF-8/html/README.html @@ -318,7 +318,7 @@ Si vous avez installé Tux Paint en utilisant le téléchargement 'ZIP-file', ou si vous avez utilisé 'Tux Paint Installer', mais que vous avez choisi de ne pas installer de raccourcis, vous devrez double-cliquer sur l'icône "tuxpaint.exe" dans le dossier "Tux Paint" de votre ordinateur.

    - Par défaut, le 'Tux Paint Installer' mettra le dossier de Tux Paint dans "C:\Program Files\",ou bien vous avez pu changer cela lors de l'exécution du programme d'installation.

    + By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\TuxPaint\", though you may have changed this when you ran the installer.

    Si vous avez utilisé le téléchargement de 'ZIP-file', le dossier de Tux Paint sera là où vous l'avez placé lorsque vous avez décompressé le fichier ZIP.

    @@ -1669,36 +1669,36 @@

    Pour ce faire, il vous suffit de convertir l'image dans le format utilisé par Tux Paint, qui est —PNG (Portable Network Graphic), et de la placer dans le répertoire "saved" de Tux Paint. C'est là où on les trouve (par défaut) :

    - +
    -
    - Windows 10, 8, 7, Vista -
    - -
    - Dans le dossier utilisateurs "AppData", par ex. "C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\".
    - -
    - Windows 2000, XP -
    - -
    - Dans le dossier utilisateurs "Application Data", par ex. "C:\Documents and Settings\nom d'utilisateur\Application Data\TuxPaint\saved\".
    - -
    - macOS -
    - -
    - Dans le dossier utilisateurs "Library", par ex. "/Users/nom d'utilisateur/Library/Application Support/Tux Paint/saved/".
    - -
    - Linux/Unix -
    - -
    - Dans un répertoire caché ".tuxpaint" qui est dans le répertoire personnel de l'utilisateur ("$HOME"), par ex. "/home/nom d'utilisateur/.tuxpaint/saved/".
    -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    + +
    + In the user's "AppData" folder:
    e.g., "C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\saved\"
    + +
    + macOS +
    + +
    + In the user's "Application Support" folder:
    e.g., "/Users/nom d'utilisateur/Library/Application Support/TuxPaint/saved/"
    + +
    + Linux / Unix +
    + +
    + In the user's "home directory" folder:
    e.g., "/home/nom d'utilisateur/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    💡 Remarque : C'est également à partir de ce dossier que vous pouvez copier ou ouvrir des images dessinées dans Tux Paint à l'aide d'autres applications, ainsi l'option 'Export' de la boîte de dialogue 'Ouvrir' de Tux Paint peut être utilisée pour les copier dans un endroit plus facile d'accès plus sûr.

    diff --git a/docs/gl_ES.UTF-8/EXTENDING.txt b/docs/gl_ES.UTF-8/EXTENDING.txt index 134ce57f4..aa5c9432c 100644 --- a/docs/gl_ES.UTF-8/EXTENDING.txt +++ b/docs/gl_ES.UTF-8/EXTENDING.txt @@ -5,7 +5,7 @@ Copyright © 2002-2024 by varios colaboradores; see AUTHORS.txt. https://tuxpaint.org/ - 26 de Xaneiro de 2024 + 27 de Abril de 2024 +-------------------------------------------------------------+ | Índice | diff --git a/docs/gl_ES.UTF-8/FAQ.txt b/docs/gl_ES.UTF-8/FAQ.txt index e17f3a700..3a90815ce 100644 --- a/docs/gl_ES.UTF-8/FAQ.txt +++ b/docs/gl_ES.UTF-8/FAQ.txt @@ -237,17 +237,21 @@ Onde garda Tux Paint os meus debuxos? unidade local: Windows Vista, Windows 8, Windows 10, Windows 11 - No cartafol «AppData» do usuario: - p. ex.: C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved + In the user's "AppData" folder: + e.g., "C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\" macOS - No cartafol «Asistencia de aplicacións» do usuario:: - e.g., /Users/nome de usuario/Library/Applicaton Support/TuxPaint/saved/ + In the user's "Application Support" folder: + e.g., + "/Users/nome de usuario/Library/Application Support/TuxPaint/saved/" Linux / Unix - No directorio persoal do usuario («$HOME»), baixo un subcartafol - «.tuxpaint»: - e.g., /home/nome de usuario/.tuxpaint/saved/ + In the user's "home directory" folder: + e.g., "/home/nome de usuario/.tuxpaint/saved/" + + Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" As imaxes almacénanse como mapas de bits PNG, que a maioría dos programas @@ -494,17 +498,17 @@ Other Problems Tux Paint non funciona - Se Tux Paint se interrómpe coa mensaxe: «You're already running a copy of - Tux Paint!», significa que foi iniciado nos últimos 30 segundos. (En Unix/ - Linux, esta mensaxe aparecería nunha consola de terminal se executase Tux - Paint desde unha liña de ordes. En Windows, esta mensaxe aparecería nun - ficheiro chamado «stdout.txt» no mesmo cartafol onde resideTuxPaint. exe - (p. ex.: en «C:\Program Files\TuxPaint»). + If Tux Paint aborts with the message: "You're already running a copy of Tux + Paint!", this means it has been launched in the last 30 seconds. (On Unix/ + Linux, this message would appear in a terminal console if you ran Tux Paint + from a command-line. On Windows, this message would appear in a file named + "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in + "C:\Program Files\TuxPaint\"). - Un ficheiro de bloqueo («~/.tuxpaint/lockfile.dat» en Linux e Unix, - «userdata\lockfile.dat» en Windows) úsase para asegurarse de que Tux Paint - non se executa demasiadas veces á vez (por exemplo, porque un cativo preme - impaciente na súa icona máis dunha vez) . + A lockfile (e.g., "/home/nome de usuario/.tuxpaint/lockfile.dat" on Linux + and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux + Paint isn't run too many times at once (e.g., due to a child impatiently + clicking its icon more than once). Mesmo se o ficheiro de bloqueo existe, contén a «hora» na que se executou Tux Paint por última vez. Se pasaron máis de 30 segundos, Tux Paint debería @@ -584,9 +588,14 @@ Tux Paint está a usar opcións que non especifiquei. + Windows - Under Windows, Tux Paint first examines the configuration file: + Under Windows, it first examines the system-wide configuration file, + located here: - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg + C:\Program Files\TuxPaint\tuxpaint.cfg + + A continuación, examina o ficheiro de configuración persoal do usuario: + + C:\Users\nome de usuario\AppData\Roaming\TuxPaint\tuxpaint.cfg Finalmente, úsanse as opcións enviadas como argumentos da liña de ordes. @@ -600,7 +609,7 @@ Tux Paint está a usar opcións que non especifiquei. A continuación, examina o ficheiro de configuración persoal do usuario: - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg + /Users/nome de usuario/Library/Application Support/TuxPaint/tuxpaint.cfg Finalmente, úsanse as opcións enviadas como argumentos da liña de ordes. @@ -632,13 +641,13 @@ Tux Paint está a usar opcións que non especifiquei. quere estabelecer, terá que cambiar o ficheiro de configuración (se pode) ou anular a opción na liña de ordes. - Por exemplo, en Linux e Unix, se «/etc/tuxpaint/tuxpaint.conf» inclúe esta - opción para desactivar o son... + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes + this option to disable sound... nosound=yes - ...entón pode volver activar o son engadindo esta opción ao seu propio - ficheiro «/home/nome de usuario/.tuxpaintrc»: + ...then you can reenable sound by either adding this option to your own + "/home/nome de usuario/.tuxpaintrc" file: sound=yes diff --git a/docs/gl_ES.UTF-8/INSTALL.txt b/docs/gl_ES.UTF-8/INSTALL.txt index 064a52891..941e2b87e 100644 --- a/docs/gl_ES.UTF-8/INSTALL.txt +++ b/docs/gl_ES.UTF-8/INSTALL.txt @@ -2,10 +2,10 @@ versión 0.9.33 Documentación da instalación - Copyright © 2002-2023 by varios colaboradores; see AUTHORS.txt. + Copyright © 2002-2024 by varios colaboradores; see AUTHORS.txt. https://tuxpaint.org/ - 13 de Maio de 2023 + 27 de Abril de 2024 +---------------------------------------------------+ | Índice | @@ -469,8 +469,8 @@ If Something Goes Wrong If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving -folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\ -TuxPaint". +folder for TuxPaint which is normaly +"C:\Users\nome de usuario\AppData\Roaming\TuxPaint\". Conterá unha descrición do que estaba mal. Normalmente só se debe a maiúsculas e minúsculas incorrectas (maiúsculas «Z» no canto de minúsculas «z») ou a falta diff --git a/docs/gl_ES.UTF-8/OPTIONS.txt b/docs/gl_ES.UTF-8/OPTIONS.txt index 9ff77338a..af55d186c 100644 --- a/docs/gl_ES.UTF-8/OPTIONS.txt +++ b/docs/gl_ES.UTF-8/OPTIONS.txt @@ -1148,17 +1148,19 @@ Save Printer Configuration Se non o anula, a ubicación predeterminada é: - o Linux e Unix: baixo un directorio agochado chamado «.tuxpaint» no - seu directorio persoal (tamén coñecido como «~» ou «$HOME») - Exemplo: /home/username/.tuxpaint/saved/ - o Windows: Dentro un cartafol chamado «TuxPaint» no seu cartafol - «Application Data». - Exemplo: C:\Documents and Settings\Username\Application Data\ - TuxPaint\saved\ - o macOS: Dentro un cartafol chamado «TuxPaint» no seu cartafol - «Application Support». - Exemplo: /Users/Username/Library/Application Support/TuxPaint/saved - / + Linux / Unix + Under a hidden directory in your home directory: + /home/nome de usuario/.tuxpaint/saved/ + + Windows + C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\ + + macOS + /Users/nome de usuario/Library/Application Support/TuxPaint/saved/ + + Haiku + /boot/home/config/settings/TuxPaint/saved/ + 💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory. diff --git a/docs/gl_ES.UTF-8/README.txt b/docs/gl_ES.UTF-8/README.txt index 08ce8ef43..e06bc4c3a 100644 --- a/docs/gl_ES.UTF-8/README.txt +++ b/docs/gl_ES.UTF-8/README.txt @@ -155,9 +155,9 @@ Se está a usar a versión «portátil» (ficheiro ZIP) de Tux Paint ou se usou facer dobre clic na icona «tuxpaint.exe» no cartafol «Tux Paint» do seu computador. -De xeito predeterminado, o «Instalador de Tux Paint» colocará o cartafol de Tux -Paint en «C:\Program Files\», aínda que é posíbel que o teña cambiado vostede -cando executou o instalador. +By default, the 'Tux Paint Installer' will put Tux Paint's folder in +"C:\Program Files\TuxPaint\", though you may have changed this when you ran the +installer. Se usou a descarga de «ficheiro ZIP», o cartafol de Tux Paint estará onde teña extraído o contido do ficheiro ZIP. @@ -1182,21 +1182,21 @@ Pode simplemente converter a imaxe ao formato que usa Tux Paint –PNG (Portable Network Graphics – Gráficos de Rede Portátiles)– e colocala no directorio/ cartafol «saved» de Tux Paint. Aquí é onde se atopa (de xeito predeterminado: -Windows 10, 8, 7, Vista - Dentro do cartafol «AppData» do usuario, p. : «C:\Users\nome de usuario\ - AppData\Roaming\TuxPaint\saved\». - -Windows 2000, XP - Dentro do cartafol «Application Data» do usuario, p. : «C:\Documents and - Settings\nome de usuario\Application Data\TuxPaint\saved\». +Windows Vista, Windows 8, Windows 10, Windows 11 + In the user's "AppData" folder: + e.g., "C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\" macOS - Dentro do cartafol «Library» do usuario, p. : «/Users/nome de usuario/ - Library/Application Support/Tux Paint/saved/». + In the user's "Application Support" folder: + e.g., "/Users/nome de usuario/Library/Application Support/TuxPaint/saved/" -Linux/Unix - Dentro dun directorio agochado «.tuxpaint», no seu directorio persoal - («$HOME»), p. ex.: «/home/nome de usuario/.tuxpaint/saved/». +Linux / Unix + In the user's "home directory" folder: + e.g., "/home/nome de usuario/.tuxpaint/saved/" + +Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" 💡 Nota: É tamén dende este cartafol dende onde pode copiar ou abrir imaxes diff --git a/docs/gl_ES.UTF-8/html/EXTENDING.html b/docs/gl_ES.UTF-8/html/EXTENDING.html index abed3b0a1..0286c23d3 100644 --- a/docs/gl_ES.UTF-8/html/EXTENDING.html +++ b/docs/gl_ES.UTF-8/html/EXTENDING.html @@ -100,7 +100,7 @@

    - 26 de Xaneiro de 2024

    + 27 de Abril de 2024

    diff --git a/docs/gl_ES.UTF-8/html/FAQ.html b/docs/gl_ES.UTF-8/html/FAQ.html index 5209dd35a..369d28b93 100644 --- a/docs/gl_ES.UTF-8/html/FAQ.html +++ b/docs/gl_ES.UTF-8/html/FAQ.html @@ -312,27 +312,34 @@ A non ser que lle solicite a Tux Paint que garde nun lugar específico (usando a opción «savedir»), Tux Paint garda nun lugar estándar na súa unidade local:

    -
    - Windows Vista, Windows 8, Windows 10, Windows 11 -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    -
    - No cartafol «AppData» do usuario:
    p. ex.: C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved
    +
    + In the user's "AppData" folder:
    e.g., "C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\"
    -
    - macOS -
    +
    + macOS +
    -
    - No cartafol «Asistencia de aplicacións» do usuario::
    e.g., /Users/nome de usuario/Library/Applicaton Support/TuxPaint/saved/
    +
    + In the user's "Application Support" folder:
    e.g., "/Users/nome de usuario/Library/Application Support/TuxPaint/saved/"
    -
    - Linux / Unix -
    +
    + Linux / Unix +
    -
    - No directorio persoal do usuario («$HOME»), baixo un subcartafol «.tuxpaint»:
    e.g., /home/nome de usuario/.tuxpaint/saved/
    -
    +
    + In the user's "home directory" folder:
    e.g., "/home/nome de usuario/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    As imaxes almacénanse como mapas de bits PNG, que a maioría dos programas modernos deberían poder cargar (editores de imaxes, procesadores de texto, navegadores web, etc.)

    @@ -610,10 +617,10 @@

    - Se Tux Paint se interrómpe coa mensaxe: «You're already running a copy of Tux Paint!», significa que foi iniciado nos últimos 30 segundos. (En Unix/Linux, esta mensaxe aparecería nunha consola de terminal se executase Tux Paint desde unha liña de ordes. En Windows, esta mensaxe aparecería nun ficheiro chamado «stdout.txt» no mesmo cartafol onde resideTuxPaint. exe (p. ex.: en «C:\Program Files\TuxPaint»).

    + If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint\").

    - Un ficheiro de bloqueo («~/.tuxpaint/lockfile.dat» en Linux e Unix, «userdata\lockfile.dat» en Windows) úsase para asegurarse de que Tux Paint non se executa demasiadas veces á vez (por exemplo, porque un cativo preme impaciente na súa icona máis dunha vez) .

    + A lockfile (e.g., "/home/nome de usuario/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    Mesmo se o ficheiro de bloqueo existe, contén a «hora» na que se executou Tux Paint por última vez. Se pasaron máis de 30 segundos, Tux Paint debería funcionar ben e simplemente actualiza o ficheiro de bloqueo coa hora actual.

    @@ -694,12 +701,19 @@
  • Windows

    - Under Windows, Tux Paint first examines the configuration file:

    + Under Windows, it first examines the system-wide configuration file, located here:

    - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg -

    + C:\Program Files\TuxPaint\tuxpaint.cfg

    +
    + +

    + A continuación, examina o ficheiro de configuración persoal do usuario:

    + +
    +

    + C:\Users\nome de usuario\AppData\Roaming\TuxPaint\tuxpaint.cfg

    @@ -713,8 +727,7 @@

    - /Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -722,8 +735,7 @@

    - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Users/nome de usuario/Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -737,8 +749,7 @@

    - /etc/tuxpaint/tuxpaint.conf -

    + /etc/tuxpaint/tuxpaint.conf

    @@ -746,8 +757,7 @@

    - /home/nome de usuario/.tuxpaintrc -

    + /home/nome de usuario/.tuxpaintrc

    @@ -761,8 +771,7 @@

    - /boot/home/config/settings/TuxPaint/tuxpaint.conf -

    + /boot/home/config/settings/TuxPaint/tuxpaint.conf

    @@ -774,7 +783,7 @@ Isto significa que se estabelece algo nun ficheiro de configuración que non quere estabelecer, terá que cambiar o ficheiro de configuración (se pode) ou anular a opción na liña de ordes.

    - Por exemplo, en Linux e Unix, se «/etc/tuxpaint/tuxpaint.conf» inclúe esta opción para desactivar o son...

    + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    @@ -783,7 +792,7 @@

    - ...entón pode volver activar o son engadindo esta opción ao seu propio ficheiro «/home/nome de usuario/.tuxpaintrc»:

    + ...then you can reenable sound by either adding this option to your own "/home/nome de usuario/.tuxpaintrc" file:

    diff --git a/docs/gl_ES.UTF-8/html/INSTALL.html b/docs/gl_ES.UTF-8/html/INSTALL.html index 758eda33d..41ed0fb18 100644 --- a/docs/gl_ES.UTF-8/html/INSTALL.html +++ b/docs/gl_ES.UTF-8/html/INSTALL.html @@ -93,12 +93,12 @@ Documentación da instalación

    - Copyright © 2002-2023 by varios colaboradores; see AUTHORS.txt.
    + Copyright © 2002-2024 by varios colaboradores; see AUTHORS.txt.
    https://tuxpaint.org/

    - 13 de Maio de 2023

    + 27 de Abril de 2024

    @@ -757,7 +757,7 @@

    - If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint".

    + If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\nome de usuario\AppData\Roaming\TuxPaint\".

    Conterá unha descrición do que estaba mal. Normalmente só se debe a maiúsculas e minúsculas incorrectas (maiúsculas «Z» no canto de minúsculas «z») ou a falta (ou exceso) de «-» (guións).

    diff --git a/docs/gl_ES.UTF-8/html/OPTIONS.html b/docs/gl_ES.UTF-8/html/OPTIONS.html index 53e0b7f6f..7319c0bdc 100644 --- a/docs/gl_ES.UTF-8/html/OPTIONS.html +++ b/docs/gl_ES.UTF-8/html/OPTIONS.html @@ -1786,17 +1786,24 @@

    Se non o anula, a ubicación predeterminada é:

    -
      -
    • Linux e Unix: baixo un directorio agochado chamado «.tuxpaint» no seu directorio persoal (tamén coñecido como «~» ou «$HOME»)
      - Exemplo: /home/username/.tuxpaint/saved/
    • +
      +
      Linux / Unix
      +
      + Under a hidden directory in your home directory:
      + /home/nome de usuario/.tuxpaint/saved/
      -
    • Windows: Dentro un cartafol chamado «TuxPaint» no seu cartafol «Application Data».
      - Exemplo: C:\Documents and Settings\Username\Application Data\TuxPaint\saved\
      -
    • +
      Windows
      +
      + C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\
      -
    • macOS: Dentro un cartafol chamado «TuxPaint» no seu cartafol «Application Support».
      - Exemplo: /Users/Username/Library/Application Support/TuxPaint/saved/
    • -
    +
    macOS
    +
    + /Users/nome de usuario/Library/Application Support/TuxPaint/saved/
    + +
    Haiku
    +
    + /boot/home/config/settings/TuxPaint/saved/
    +

    💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory.

    diff --git a/docs/gl_ES.UTF-8/html/README.html b/docs/gl_ES.UTF-8/html/README.html index 4be913954..f52f5b6f7 100644 --- a/docs/gl_ES.UTF-8/html/README.html +++ b/docs/gl_ES.UTF-8/html/README.html @@ -318,7 +318,7 @@ Se está a usar a versión «portátil» (ficheiro ZIP) de Tux Paint ou se usou o «Instalador de Tux Paint», pero escolleu non ter instalados atallos, terá que facer dobre clic na icona «tuxpaint.exe» no cartafol «Tux Paint» do seu computador.

    - De xeito predeterminado, o «Instalador de Tux Paint» colocará o cartafol de Tux Paint en «C:\Program Files\», aínda que é posíbel que o teña cambiado vostede cando executou o instalador.

    + By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\TuxPaint\", though you may have changed this when you ran the installer.

    Se usou a descarga de «ficheiro ZIP», o cartafol de Tux Paint estará onde teña extraído o contido do ficheiro ZIP.

    @@ -1669,36 +1669,36 @@

    Pode simplemente converter a imaxe ao formato que usa Tux Paint –PNG (Portable Network Graphics – Gráficos de Rede Portátiles)– e colocala no directorio/cartafol «saved» de Tux Paint. Aquí é onde se atopa (de xeito predeterminado:

    - +
    -
    - Windows 10, 8, 7, Vista -
    - -
    - Dentro do cartafol «AppData» do usuario, p. : «C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\».
    - -
    - Windows 2000, XP -
    - -
    - Dentro do cartafol «Application Data» do usuario, p. : «C:\Documents and Settings\nome de usuario\Application Data\TuxPaint\saved\».
    - -
    - macOS -
    - -
    - Dentro do cartafol «Library» do usuario, p. : «/Users/nome de usuario/Library/Application Support/Tux Paint/saved/».
    - -
    - Linux/Unix -
    - -
    - Dentro dun directorio agochado «.tuxpaint», no seu directorio persoal («$HOME»), p. ex.: «/home/nome de usuario/.tuxpaint/saved/».
    -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    + +
    + In the user's "AppData" folder:
    e.g., "C:\Users\nome de usuario\AppData\Roaming\TuxPaint\saved\"
    + +
    + macOS +
    + +
    + In the user's "Application Support" folder:
    e.g., "/Users/nome de usuario/Library/Application Support/TuxPaint/saved/"
    + +
    + Linux / Unix +
    + +
    + In the user's "home directory" folder:
    e.g., "/home/nome de usuario/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    💡 Nota: É tamén dende este cartafol dende onde pode copiar ou abrir imaxes debuxadas en Tux Paint usando outras aplicacións, aínda que pode usar a opción «Exportar» do diálogo «Abrir» de Tux Paint para copialas a unha localización de acceso máis doado e seguro.

    diff --git a/docs/is_IS.UTF-8/EXTENDING.txt b/docs/is_IS.UTF-8/EXTENDING.txt index 178783839..83bbe0cc3 100644 --- a/docs/is_IS.UTF-8/EXTENDING.txt +++ b/docs/is_IS.UTF-8/EXTENDING.txt @@ -5,7 +5,7 @@ Copyright © 2002-2024 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - janúar 26, 2024 + apríl 27, 2024 +-----------------------------------------+ | Table of Contents | diff --git a/docs/is_IS.UTF-8/FAQ.txt b/docs/is_IS.UTF-8/FAQ.txt index 89f4a37e4..1815b8405 100644 --- a/docs/is_IS.UTF-8/FAQ.txt +++ b/docs/is_IS.UTF-8/FAQ.txt @@ -226,15 +226,19 @@ Where does Tux Paint save my drawings? Windows Vista, Windows 8, Windows 10, Windows 11 In the user's "AppData" folder: - e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS In the user's "Application Support" folder: - e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/ + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" Linux / Unix - In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder: - e.g., /home/username/.tuxpaint/saved/ + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + + Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" The images are stored as PNG bitmaps, which most modern programs should be @@ -478,13 +482,13 @@ Tux Paint won't run Paint!", this means it has been launched in the last 30 seconds. (On Unix/ Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named - "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\ - Program Files\TuxPaint"). + "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in + "C:\Program Files\TuxPaint\"). - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\ - lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many - times at once (e.g., due to a child impatiently clicking its icon more than - once). + A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and + Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint + isn't run too many times at once (e.g., due to a child impatiently clicking + its icon more than once). Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply @@ -557,9 +561,14 @@ Tux Paint is using options I didn't specify! + Windows - Under Windows, Tux Paint first examines the configuration file: + Under Windows, it first examines the system-wide configuration file, + located here: - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg + C:\Program Files\TuxPaint\tuxpaint.cfg + + It then examines the user's personal configuration file: + + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -572,7 +581,7 @@ Tux Paint is using options I didn't specify! It then examines the user's personal configuration file: - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -606,8 +615,8 @@ Tux Paint is using options I didn't specify! nosound=yes - ...then you can reenable sound by either adding this option to your own "/ - home/username/.tuxpaintrc" file: + ...then you can reenable sound by either adding this option to your own + "/home/username/.tuxpaintrc" file: sound=yes diff --git a/docs/is_IS.UTF-8/INSTALL.txt b/docs/is_IS.UTF-8/INSTALL.txt index ea5a95afe..511d9b4b1 100644 --- a/docs/is_IS.UTF-8/INSTALL.txt +++ b/docs/is_IS.UTF-8/INSTALL.txt @@ -2,10 +2,10 @@ version 0.9.33 Installation Documentation - Copyright © 2002-2023 by various contributors; see AUTHORS.txt. + Copyright © 2002-2024 by various contributors; see AUTHORS.txt. https://tuxpaint.org/ - maí 13, 2023 + apríl 27, 2024 +---------------------------------------------------+ | Table of Contents | @@ -465,8 +465,8 @@ If Something Goes Wrong If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving -folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\ -TuxPaint". +folder for TuxPaint which is normaly +"C:\Users\username\AppData\Roaming\TuxPaint\". It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing diff --git a/docs/is_IS.UTF-8/OPTIONS.txt b/docs/is_IS.UTF-8/OPTIONS.txt index 285a58142..a48a4e937 100644 --- a/docs/is_IS.UTF-8/OPTIONS.txt +++ b/docs/is_IS.UTF-8/OPTIONS.txt @@ -1136,17 +1136,19 @@ Save Printer Configuration If you do not override it, the default location is: - o Linux & Unix — Under a hidden directory named ".tuxpaint" in your - home directory (aka "~" or "$HOME") - Example: /home/username/.tuxpaint/saved/ - o Windows — Inside a folder named "TuxPaint" in your "Application - Data" folder. - Example: C:\Documents and Settings\Username\Application Data\ - TuxPaint\saved\ - o macOS — Inside a folder named "TuxPaint" in your "Application - Support" folder. - Example: /Users/Username/Library/Application Support/TuxPaint/saved - / + Linux / Unix + Under a hidden directory in your home directory: + /home/username/.tuxpaint/saved/ + + Windows + C:\Users\username\AppData\Roaming\TuxPaint\saved\ + + macOS + /Users/username/Library/Application Support/TuxPaint/saved/ + + Haiku + /boot/home/config/settings/TuxPaint/saved/ + 💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory. diff --git a/docs/is_IS.UTF-8/README.txt b/docs/is_IS.UTF-8/README.txt index 47acee3d0..fe70cccea 100644 --- a/docs/is_IS.UTF-8/README.txt +++ b/docs/is_IS.UTF-8/README.txt @@ -154,8 +154,9 @@ the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer. -By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\ -Program Files\", though you may have changed this when you ran the installer. +By default, the 'Tux Paint Installer' will put Tux Paint's folder in +"C:\Program Files\TuxPaint\", though you may have changed this when you ran the +installer. If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. @@ -1155,21 +1156,21 @@ You can simply convert the picture to the format Tux Paint uses — PNG (Portabl Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default): -Windows 10, 8, 7, Vista - Inside the user's "AppData" folder, e.g.: "C:\Users\username\AppData\ - Roaming\TuxPaint\saved\". - -Windows 2000, XP - Inside the user's "Application Data" folder, e.g.: "C:\Documents and - Settings\username\Application Data\TuxPaint\saved\". +Windows Vista, Windows 8, Windows 10, Windows 11 + In the user's "AppData" folder: + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS - Inside the user's "Library" folder, e.g.: "/Users/username/Library/ - Application Support/Tux Paint/saved/". + In the user's "Application Support" folder: + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" -Linux/Unix - Inside a hidden ".tuxpaint" directory, in the user's home directory - ("$HOME"), e.g. "/home/username/.tuxpaint/saved/". +Linux / Unix + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + +Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" 💡 Note: It is also from this folder that you can copy or open pictures drawn in diff --git a/docs/is_IS.UTF-8/html/EXTENDING.html b/docs/is_IS.UTF-8/html/EXTENDING.html index 5e3fccef1..0537a7e90 100644 --- a/docs/is_IS.UTF-8/html/EXTENDING.html +++ b/docs/is_IS.UTF-8/html/EXTENDING.html @@ -100,7 +100,7 @@

    - janúar 26, 2024

    + apríl 27, 2024

    diff --git a/docs/is_IS.UTF-8/html/FAQ.html b/docs/is_IS.UTF-8/html/FAQ.html index 57ebcde9c..5592335b1 100644 --- a/docs/is_IS.UTF-8/html/FAQ.html +++ b/docs/is_IS.UTF-8/html/FAQ.html @@ -312,27 +312,34 @@ Unless you asked Tux Paint to save into a specific location (using the "savedir" option), Tux Paint saves into a standard location on your local drive:

    -
    - Windows Vista, Windows 8, Windows 10, Windows 11 -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    -
    - In the user's "AppData" folder:
    e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved
    +
    + In the user's "AppData" folder:
    e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
    -
    - macOS -
    +
    + macOS +
    -
    - In the user's "Application Support" folder:
    e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/
    +
    + In the user's "Application Support" folder:
    e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
    -
    - Linux / Unix -
    +
    + Linux / Unix +
    -
    - In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder:
    e.g., /home/username/.tuxpaint/saved/
    -
    +
    + In the user's "home directory" folder:
    e.g., "/home/username/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    The images are stored as PNG bitmaps, which most modern programs should be able to load (image editors, word processors, web browsers, etc.)

    @@ -610,10 +617,10 @@

    - If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint").

    + If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint\").

    - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    + A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply update the lockfile with the current time.

    @@ -694,12 +701,19 @@
  • Windows

    - Under Windows, Tux Paint first examines the configuration file:

    + Under Windows, it first examines the system-wide configuration file, located here:

    - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg -

    + C:\Program Files\TuxPaint\tuxpaint.cfg

    +
    + +

    + It then examines the user's personal configuration file:

    + +
    +

    + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg

    @@ -713,8 +727,7 @@

    - /Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -722,8 +735,7 @@

    - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -737,8 +749,7 @@

    - /etc/tuxpaint/tuxpaint.conf -

    + /etc/tuxpaint/tuxpaint.conf

    @@ -746,8 +757,7 @@

    - /home/username/.tuxpaintrc -

    + /home/username/.tuxpaintrc

    @@ -761,8 +771,7 @@

    - /boot/home/config/settings/TuxPaint/tuxpaint.conf -

    + /boot/home/config/settings/TuxPaint/tuxpaint.conf

    @@ -774,7 +783,7 @@ This means that if anything is set in a configuration file that you don't want set, you'll need to either change the config. file (if you can), or override the option on the command-line.

    - For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    @@ -783,7 +792,7 @@

    - ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    + ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    diff --git a/docs/is_IS.UTF-8/html/INSTALL.html b/docs/is_IS.UTF-8/html/INSTALL.html index 3c31f273d..1dff7478e 100644 --- a/docs/is_IS.UTF-8/html/INSTALL.html +++ b/docs/is_IS.UTF-8/html/INSTALL.html @@ -93,12 +93,12 @@ Installation Documentation

    - Copyright © 2002-2023 by various contributors; see AUTHORS.txt.
    + Copyright © 2002-2024 by various contributors; see AUTHORS.txt.
    https://tuxpaint.org/

    - maí 13, 2023

    + apríl 27, 2024

    @@ -757,7 +757,7 @@

    - If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint".

    + If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint\".

    It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash).

    diff --git a/docs/is_IS.UTF-8/html/OPTIONS.html b/docs/is_IS.UTF-8/html/OPTIONS.html index 5d663e526..7602b0280 100644 --- a/docs/is_IS.UTF-8/html/OPTIONS.html +++ b/docs/is_IS.UTF-8/html/OPTIONS.html @@ -1786,17 +1786,24 @@

    If you do not override it, the default location is:

    -
      -
    • Linux & Unix — Under a hidden directory named ".tuxpaint" in your home directory (aka "~" or "$HOME")
      - Example: /home/username/.tuxpaint/saved/
    • +
      +
      Linux / Unix
      +
      + Under a hidden directory in your home directory:
      + /home/username/.tuxpaint/saved/
      -
    • Windows — Inside a folder named "TuxPaint" in your "Application Data" folder.
      - Example: C:\Documents and Settings\Username\Application Data\TuxPaint\saved\
      -
    • +
      Windows
      +
      + C:\Users\username\AppData\Roaming\TuxPaint\saved\
      -
    • macOS — Inside a folder named "TuxPaint" in your "Application Support" folder.
      - Example: /Users/Username/Library/Application Support/TuxPaint/saved/
    • -
    +
    macOS
    +
    + /Users/username/Library/Application Support/TuxPaint/saved/
    + +
    Haiku
    +
    + /boot/home/config/settings/TuxPaint/saved/
    +

    💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory.

    diff --git a/docs/is_IS.UTF-8/html/README.html b/docs/is_IS.UTF-8/html/README.html index 0d30657c0..35af649c9 100644 --- a/docs/is_IS.UTF-8/html/README.html +++ b/docs/is_IS.UTF-8/html/README.html @@ -318,7 +318,7 @@ If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer.

    - By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\", though you may have changed this when you ran the installer.

    + By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\TuxPaint\", though you may have changed this when you ran the installer.

    If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file.

    @@ -1669,36 +1669,36 @@

    You can simply convert the picture to the format Tux Paint uses — PNG (Portable Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default):

    - +
    -
    - Windows 10, 8, 7, Vista -
    - -
    - Inside the user's "AppData" folder, e.g.: "C:\Users\username\AppData\Roaming\TuxPaint\saved\".
    - -
    - Windows 2000, XP -
    - -
    - Inside the user's "Application Data" folder, e.g.: "C:\Documents and Settings\username\Application Data\TuxPaint\saved\".
    - -
    - macOS -
    - -
    - Inside the user's "Library" folder, e.g.: "/Users/username/Library/Application Support/Tux Paint/saved/".
    - -
    - Linux/Unix -
    - -
    - Inside a hidden ".tuxpaint" directory, in the user's home directory ("$HOME"), e.g. "/home/username/.tuxpaint/saved/".
    -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    + +
    + In the user's "AppData" folder:
    e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
    + +
    + macOS +
    + +
    + In the user's "Application Support" folder:
    e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
    + +
    + Linux / Unix +
    + +
    + In the user's "home directory" folder:
    e.g., "/home/username/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    💡 Note: It is also from this folder that you can copy or open pictures drawn in Tux Paint using other applications, though the 'Export' option from Tux Paint's 'Open' dialog can be used to copy them to a location that's easier and safer to access.

    diff --git a/docs/ja_JP.UTF-8/EXTENDING.txt b/docs/ja_JP.UTF-8/EXTENDING.txt index 26f56c477..f14562bda 100644 --- a/docs/ja_JP.UTF-8/EXTENDING.txt +++ b/docs/ja_JP.UTF-8/EXTENDING.txt @@ -5,7 +5,7 @@ Copyright © 2002-2024 by various contributors; AUTHORS.txt 参照. https://tuxpaint.org/ - 2024年1月26日 + 2024年4月27日 +-----------------------------------------+ | 目次 | diff --git a/docs/ja_JP.UTF-8/FAQ.txt b/docs/ja_JP.UTF-8/FAQ.txt index 64afecfa6..60e301ed3 100644 --- a/docs/ja_JP.UTF-8/FAQ.txt +++ b/docs/ja_JP.UTF-8/FAQ.txt @@ -226,15 +226,19 @@ Where does Tux Paint save my drawings? Windows Vista, Windows 8, Windows 10, Windows 11 In the user's "AppData" folder: - e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS In the user's "Application Support" folder: - e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/ + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" Linux / Unix - In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder: - e.g., /home/username/.tuxpaint/saved/ + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + + Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" The images are stored as PNG bitmaps, which most modern programs should be @@ -478,13 +482,13 @@ Tux Paint won't run Paint!", this means it has been launched in the last 30 seconds. (On Unix/ Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named - "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\ - Program Files\TuxPaint"). + "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in + "C:\Program Files\TuxPaint\"). - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\ - lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many - times at once (e.g., due to a child impatiently clicking its icon more than - once). + A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and + Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint + isn't run too many times at once (e.g., due to a child impatiently clicking + its icon more than once). Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply @@ -557,9 +561,14 @@ Tux Paint is using options I didn't specify! + Windows - Under Windows, Tux Paint first examines the configuration file: + Under Windows, it first examines the system-wide configuration file, + located here: - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg + C:\Program Files\TuxPaint\tuxpaint.cfg + + It then examines the user's personal configuration file: + + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -572,7 +581,7 @@ Tux Paint is using options I didn't specify! It then examines the user's personal configuration file: - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -606,8 +615,8 @@ Tux Paint is using options I didn't specify! nosound=yes - ...then you can reenable sound by either adding this option to your own "/ - home/username/.tuxpaintrc" file: + ...then you can reenable sound by either adding this option to your own + "/home/username/.tuxpaintrc" file: sound=yes diff --git a/docs/ja_JP.UTF-8/INSTALL.txt b/docs/ja_JP.UTF-8/INSTALL.txt index 8e5fbf418..7f7b15637 100644 --- a/docs/ja_JP.UTF-8/INSTALL.txt +++ b/docs/ja_JP.UTF-8/INSTALL.txt @@ -2,10 +2,10 @@ バージョン 0.9.33 Installation Documentation - Copyright © 2002-2023 by various contributors; AUTHORS.txt 参照. + Copyright © 2002-2024 by various contributors; AUTHORS.txt 参照. https://tuxpaint.org/ - 2023年5月13日 + 2024年4月27日 +---------------------------------------------------+ | 目次 | @@ -465,8 +465,8 @@ If Something Goes Wrong If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving -folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\ -TuxPaint". +folder for TuxPaint which is normaly +"C:\Users\username\AppData\Roaming\TuxPaint\". It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing diff --git a/docs/ja_JP.UTF-8/OPTIONS.txt b/docs/ja_JP.UTF-8/OPTIONS.txt index 0cbe8f9e2..0d0ad754b 100644 --- a/docs/ja_JP.UTF-8/OPTIONS.txt +++ b/docs/ja_JP.UTF-8/OPTIONS.txt @@ -1129,16 +1129,19 @@ altprint=mod 特に設定していなければ、標準のディレクトリは次の場所にあります: - o Linux および Unix — ユーザーのホームディレクトリ("~" または - "$HOME")にある隠しディレクトリ ".tuxpaint" 以下 - 例: /home/username/.tuxpaint/saved/ - o Windows — ユーザーごとの "Application Data" フォルダーにある - "TuxPaint" フォルダー以下 - 例: C:\Documents and Settings\Username\Application Data\TuxPaint\ - saved\ - o macOS — ユーザーごとの "Application Support" フォルダーにある - "TuxPaint" フォルダー以下 - 例: /Users/Username/Library/Application Support/TuxPaint/saved/ + Linux / Unix + Under a hidden directory in your home directory: + /home/username/.tuxpaint/saved/ + + Windows + C:\Users\username\AppData\Roaming\TuxPaint\saved\ + + macOS + /Users/username/Library/Application Support/TuxPaint/saved/ + + Haiku + /boot/home/config/settings/TuxPaint/saved/ + 💡 注: Windowsのドライブ(例: "H:\")を指定する際は、サブディレクトリも 指定する必要があります。 diff --git a/docs/ja_JP.UTF-8/README.txt b/docs/ja_JP.UTF-8/README.txt index c5be60092..b289afc86 100644 --- a/docs/ja_JP.UTF-8/README.txt +++ b/docs/ja_JP.UTF-8/README.txt @@ -148,8 +148,9 @@ KDE あるいは GNOME のメニューの「グラフィックス」以下に、 合や、インストーラーでショートカットを作成しなかった場合は、"Tux Paint"のフォル ダにある "tuxpaint.exe" のアイコンをダブルクリックします。 -インストーラーを用いた場合、「Tux Paint」のフォルダは、通常、"C:\Program Files\ -" に配置されます。(インストール時に、これを変更することもできます) +By default, the 'Tux Paint Installer' will put Tux Paint's folder in +"C:\Program Files\TuxPaint\", though you may have changed this when you ran the +installer. ZIP ファイルを用いた場合、「Tux Paint」のフォルダは、任意の場所に配置できます。 @@ -1077,21 +1078,21 @@ Tux Paint の「ひらく」ダイアログでは、Tux Paint で作成した画 換して、Tux Paint で作成した画像が保存されている "saved" フォルダにコピーしま す。(標準では以下のフォルダ): -Windows 10, 8, 7, Vista - 各ユーザーの "AppData" フォルダ。例: "C:\Users\username\AppData\Roaming\ - TuxPaint\saved\"。 - -Windows 2000, XP - 各ユーザーの "Application Data" フォルダ。例: "C:\Documents and Settings\ - username\Application Data\TuxPaint\saved\"。 +Windows Vista, Windows 8, Windows 10, Windows 11 + In the user's "AppData" folder: + e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\" macOS - 各ユーザーの "Library" フォルダ。例: "/Users/username/Library/Application - Support/Tux Paint/saved/"。 + In the user's "Application Support" folder: + e.g., "/Users/username/Library/Application Support/TuxPaint/saved/" -Linux/Unix - 各ユーザーのホームディレクトリ("$HOME")の隠しディレクトリ ".tuxpaint" 以下 - ― 例: "/home/username/.tuxpaint/saved/"。 +Linux / Unix + In the user's "home directory" folder: + e.g., "/home/username/.tuxpaint/saved/" + +Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" 💡 注: Tux Paint で作成した画像を他のアプリケーションを使って開く場合も、これら diff --git a/docs/ja_JP.UTF-8/html/EXTENDING.html b/docs/ja_JP.UTF-8/html/EXTENDING.html index 7426e2c6a..c7d3c0fe1 100644 --- a/docs/ja_JP.UTF-8/html/EXTENDING.html +++ b/docs/ja_JP.UTF-8/html/EXTENDING.html @@ -100,7 +100,7 @@

    - 2024年1月26日

    + 2024年4月27日

    diff --git a/docs/ja_JP.UTF-8/html/FAQ.html b/docs/ja_JP.UTF-8/html/FAQ.html index 7cab16b28..4b995c9ff 100644 --- a/docs/ja_JP.UTF-8/html/FAQ.html +++ b/docs/ja_JP.UTF-8/html/FAQ.html @@ -312,27 +312,34 @@ Unless you asked Tux Paint to save into a specific location (using the "savedir" option), Tux Paint saves into a standard location on your local drive:

    -
    - Windows Vista, Windows 8, Windows 10, Windows 11 -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    -
    - In the user's "AppData" folder:
    e.g., C:\Users\Username\AppData\Roaming\TuxPaint\saved
    +
    + In the user's "AppData" folder:
    e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
    -
    - macOS -
    +
    + macOS +
    -
    - In the user's "Application Support" folder:
    e.g., /Users/Username/Library/Applicaton Support/TuxPaint/saved/
    +
    + In the user's "Application Support" folder:
    e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
    -
    - Linux / Unix -
    +
    + Linux / Unix +
    -
    - In the user's home directory ("$HOME"), under a ".tuxpaint" subfolder:
    e.g., /home/username/.tuxpaint/saved/
    -
    +
    + In the user's "home directory" folder:
    e.g., "/home/username/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    The images are stored as PNG bitmaps, which most modern programs should be able to load (image editors, word processors, web browsers, etc.)

    @@ -610,10 +617,10 @@

    - If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint").

    + If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint\").

    - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    + A lockfile (e.g., "/home/username/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply update the lockfile with the current time.

    @@ -694,12 +701,19 @@
  • Windows

    - Under Windows, Tux Paint first examines the configuration file:

    + Under Windows, it first examines the system-wide configuration file, located here:

    - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg -

    + C:\Program Files\TuxPaint\tuxpaint.cfg

    +
    + +

    + It then examines the user's personal configuration file:

    + +
    +

    + C:\Users\username\AppData\Roaming\TuxPaint\tuxpaint.cfg

    @@ -713,8 +727,7 @@

    - /Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -722,8 +735,7 @@

    - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Users/username/Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -737,8 +749,7 @@

    - /etc/tuxpaint/tuxpaint.conf -

    + /etc/tuxpaint/tuxpaint.conf

    @@ -746,8 +757,7 @@

    - /home/username/.tuxpaintrc -

    + /home/username/.tuxpaintrc

    @@ -761,8 +771,7 @@

    - /boot/home/config/settings/TuxPaint/tuxpaint.conf -

    + /boot/home/config/settings/TuxPaint/tuxpaint.conf

    @@ -774,7 +783,7 @@ This means that if anything is set in a configuration file that you don't want set, you'll need to either change the config. file (if you can), or override the option on the command-line.

    - For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    @@ -783,7 +792,7 @@

    - ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    + ...then you can reenable sound by either adding this option to your own "/home/username/.tuxpaintrc" file:

    diff --git a/docs/ja_JP.UTF-8/html/INSTALL.html b/docs/ja_JP.UTF-8/html/INSTALL.html index 1682fc9af..2b8722b10 100644 --- a/docs/ja_JP.UTF-8/html/INSTALL.html +++ b/docs/ja_JP.UTF-8/html/INSTALL.html @@ -93,12 +93,12 @@ Installation Documentation

    - Copyright © 2002-2023 by various contributors; AUTHORS.txt 参照.
    + Copyright © 2002-2024 by various contributors; AUTHORS.txt 参照.
    https://tuxpaint.org/

    - 2023年5月13日

    + 2024年4月27日

    @@ -757,7 +757,7 @@

    - If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint".

    + If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint\".

    It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash).

    diff --git a/docs/ja_JP.UTF-8/html/OPTIONS.html b/docs/ja_JP.UTF-8/html/OPTIONS.html index 09c7a6d03..e24be3f89 100644 --- a/docs/ja_JP.UTF-8/html/OPTIONS.html +++ b/docs/ja_JP.UTF-8/html/OPTIONS.html @@ -1786,17 +1786,24 @@

    特に設定していなければ、標準のディレクトリは次の場所にあります:

    -
      -
    • Linux および Unix — ユーザーのホームディレクトリ("~" または "$HOME")にある隠しディレクトリ ".tuxpaint" 以下
      - 例: /home/username/.tuxpaint/saved/
    • +
      +
      Linux / Unix
      +
      + Under a hidden directory in your home directory:
      + /home/username/.tuxpaint/saved/
      -
    • Windows — ユーザーごとの "Application Data" フォルダーにある "TuxPaint" フォルダー以下
      - 例: C:\Documents and Settings\Username\Application Data\TuxPaint\saved\
      -
    • +
      Windows
      +
      + C:\Users\username\AppData\Roaming\TuxPaint\saved\
      -
    • macOS — ユーザーごとの "Application Support" フォルダーにある "TuxPaint" フォルダー以下
      - 例: /Users/Username/Library/Application Support/TuxPaint/saved/
    • -
    +
    macOS
    +
    + /Users/username/Library/Application Support/TuxPaint/saved/
    + +
    Haiku
    +
    + /boot/home/config/settings/TuxPaint/saved/
    +

    💡 注: Windowsのドライブ(例: "H:\")を指定する際は、サブディレクトリも指定する必要があります。

    diff --git a/docs/ja_JP.UTF-8/html/README.html b/docs/ja_JP.UTF-8/html/README.html index 1a727f1d8..ae0137b88 100644 --- a/docs/ja_JP.UTF-8/html/README.html +++ b/docs/ja_JP.UTF-8/html/README.html @@ -318,7 +318,7 @@ ポータブル版(ZIPファイル版)をダウンロードして Tux Paint をインストールした場合や、インストーラーでショートカットを作成しなかった場合は、"Tux Paint"のフォルダにある "tuxpaint.exe" のアイコンをダブルクリックします。

    - インストーラーを用いた場合、「Tux Paint」のフォルダは、通常、"C:\Program Files\" に配置されます。(インストール時に、これを変更することもできます)

    + By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\TuxPaint\", though you may have changed this when you ran the installer.

    ZIP ファイルを用いた場合、「Tux Paint」のフォルダは、任意の場所に配置できます。

    @@ -1669,36 +1669,36 @@

    そのための方法は簡単で、画像ファイルを PNG (Portable Network Graphic) 形式に変換して、Tux Paint で作成した画像が保存されている "saved" フォルダにコピーします。(標準では以下のフォルダ):

    - +
    -
    - Windows 10, 8, 7, Vista -
    - -
    - 各ユーザーの "AppData" フォルダ。例: "C:\Users\username\AppData\Roaming\TuxPaint\saved\"。
    - -
    - Windows 2000, XP -
    - -
    - 各ユーザーの "Application Data" フォルダ。例: "C:\Documents and Settings\username\Application Data\TuxPaint\saved\"。
    - -
    - macOS -
    - -
    - 各ユーザーの "Library" フォルダ。例: "/Users/username/Library/Application Support/Tux Paint/saved/"。
    - -
    - Linux/Unix -
    - -
    - 各ユーザーのホームディレクトリ("$HOME")の隠しディレクトリ ".tuxpaint" 以下 ― 例: "/home/username/.tuxpaint/saved/"。
    -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    + +
    + In the user's "AppData" folder:
    e.g., "C:\Users\username\AppData\Roaming\TuxPaint\saved\"
    + +
    + macOS +
    + +
    + In the user's "Application Support" folder:
    e.g., "/Users/username/Library/Application Support/TuxPaint/saved/"
    + +
    + Linux / Unix +
    + +
    + In the user's "home directory" folder:
    e.g., "/home/username/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    💡 注: Tux Paint で作成した画像を他のアプリケーションを使って開く場合も、これらのフォルダからになります。しかしながら、「ひらく」ダイアログの「かきだす」の機能を使えば、Tux Paint で作成した画像を、もっと簡単で安全にアクセスできるフォルダにコピーすることができます。

    diff --git a/docs/sq_AL.UTF-8/EXTENDING.txt b/docs/sq_AL.UTF-8/EXTENDING.txt index 69fbd1582..80c89b052 100644 --- a/docs/sq_AL.UTF-8/EXTENDING.txt +++ b/docs/sq_AL.UTF-8/EXTENDING.txt @@ -5,7 +5,7 @@ Të drejta kopjimi © 2002-2024 nga kontribues të ndryshëm; shihni AUTHORS.txt. https://tuxpaint.org/ - 26 janar 2024 + 27 prill 2024 +------------------------------------------------------------------------+ | Pasqyrë e Lëndës | diff --git a/docs/sq_AL.UTF-8/FAQ.txt b/docs/sq_AL.UTF-8/FAQ.txt index 7d30e0a5b..1e14d6f1a 100644 --- a/docs/sq_AL.UTF-8/FAQ.txt +++ b/docs/sq_AL.UTF-8/FAQ.txt @@ -239,17 +239,21 @@ Ku i ruan Tux Paint-i vizatimet e mia? vendndodhje standarde në diskun tuaj vendor: Windows Vista, Windows 8, Windows 10, Windows 11 - Te dosja “AppData” e përdoruesit: - p.sh., C:\Users\Emërpërdoruesi\AppData\Roaming\TuxPaint\saved + In the user's "AppData" folder: + e.g., "C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\" macOS - Te dosja “Application Support” e përdoruesit: - p.sh., /Users/Emërpërdoruesi/Library/Applicaton Support/TuxPaint/saved/ + In the user's "Application Support" folder: + e.g., + "/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/" Linux / Unix - Te drejtoria shtëpi e përdoruesit (“$HOME”), nën një nëndosje - “.tuxpaint”: - p.sh., /home/emërpërdoruesi/.tuxpaint/saved/ + In the user's "home directory" folder: + e.g., "/home/emër përdoruesi/.tuxpaint/saved/" + + Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" Figurat depozitohen si bitmap-e PNG, të cilat, shumica e programeve modernë @@ -500,13 +504,13 @@ Tux Paint-i nuk xhiron Paint!", this means it has been launched in the last 30 seconds. (On Unix/ Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named - "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\ - Program Files\TuxPaint"). + "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in + "C:\Program Files\TuxPaint\"). - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\ - lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many - times at once (e.g., due to a child impatiently clicking its icon more than - once). + A lockfile (e.g., "/home/emër përdoruesi/.tuxpaint/lockfile.dat" on Linux + and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux + Paint isn't run too many times at once (e.g., due to a child impatiently + clicking its icon more than once). Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply @@ -582,9 +586,14 @@ Tux Paint is using options I didn't specify! + Windows - Under Windows, Tux Paint first examines the configuration file: + Under Windows, it first examines the system-wide configuration file, + located here: - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg + C:\Program Files\TuxPaint\tuxpaint.cfg + + Mandej ekzaminon kartelën e formësimit personal të përdoruesit: + + C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -597,7 +606,7 @@ Tux Paint is using options I didn't specify! Mandej ekzaminon kartelën e formësimit personal të përdoruesit: - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg + /Users/emër përdoruesi/Library/Application Support/TuxPaint/tuxpaint.cfg Finally, any options sent as command-line arguments are used. @@ -631,8 +640,8 @@ Tux Paint is using options I didn't specify! nosound=yes - ...then you can reenable sound by either adding this option to your own "/ - home/emër përdoruesi/.tuxpaintrc" file: + ...then you can reenable sound by either adding this option to your own + "/home/emër përdoruesi/.tuxpaintrc" file: sound=yes diff --git a/docs/sq_AL.UTF-8/INSTALL.txt b/docs/sq_AL.UTF-8/INSTALL.txt index fe0651a05..23de843ce 100644 --- a/docs/sq_AL.UTF-8/INSTALL.txt +++ b/docs/sq_AL.UTF-8/INSTALL.txt @@ -2,10 +2,10 @@ version 0.9.33 Dokumentim Instalimi - Të drejta kopjimi © 2002-2023 nga kontribues të ndryshëm; shihni AUTHORS.txt. + Të drejta kopjimi © 2002-2024 nga kontribues të ndryshëm; shihni AUTHORS.txt. https://tuxpaint.org/ - 13 maj 2023 + 27 prill 2024 +------------------------------------------------------+ | Pasqyrë e Lëndës | @@ -466,8 +466,8 @@ Nëse Diçka Shkon Ters If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving -folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\ -TuxPaint". +folder for TuxPaint which is normaly +"C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\". It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing diff --git a/docs/sq_AL.UTF-8/OPTIONS.txt b/docs/sq_AL.UTF-8/OPTIONS.txt index ac76f6660..9349bd3ad 100644 --- a/docs/sq_AL.UTF-8/OPTIONS.txt +++ b/docs/sq_AL.UTF-8/OPTIONS.txt @@ -1136,17 +1136,19 @@ Ruaje Formësimin e Shtypësit If you do not override it, the default location is: - o Linux & Unix — Under a hidden directory named ".tuxpaint" in your - home directory (aka "~" or "$HOME") - Shembull: /home/username/.tuxpaint/saved/ - o Windows — Inside a folder named "TuxPaint" in your "Application - Data" folder. - Shembull: C:\Documents and Settings\Username\Application Data\ - TuxPaint\saved\ - o macOS — Inside a folder named "TuxPaint" in your "Application - Support" folder. - Shembull: /Users/Username/Library/Application Support/TuxPaint/ - saved/ + Linux / Unix + Under a hidden directory in your home directory: + /home/emër përdoruesi/.tuxpaint/saved/ + + Windows + C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\ + + macOS + /Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/ + + Haiku + /boot/home/config/settings/TuxPaint/saved/ + 💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory. diff --git a/docs/sq_AL.UTF-8/README.txt b/docs/sq_AL.UTF-8/README.txt index 9b16edec0..63087b69b 100644 --- a/docs/sq_AL.UTF-8/README.txt +++ b/docs/sq_AL.UTF-8/README.txt @@ -154,8 +154,9 @@ the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer. -By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\ -Program Files\", though you may have changed this when you ran the installer. +By default, the 'Tux Paint Installer' will put Tux Paint's folder in +"C:\Program Files\TuxPaint\", though you may have changed this when you ran the +installer. If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. @@ -1160,21 +1161,21 @@ You can simply convert the picture to the format Tux Paint uses — PNG (Portabl Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default): -Windows 10, 8, 7, Vista - Brenda dosjes “AppData” të përdoruesi, p.sh.: “C:\Users\emër përdoruesi\ - AppData\Roaming\TuxPaint\saved\”. - -Windows 2000, XP - Brenda dosjes “Application Data” të përdoruesi, p.sh.: “C:\Documents and - Settings\emër përdoruesi\Application Data\TuxPaint\saved\”. +Windows Vista, Windows 8, Windows 10, Windows 11 + In the user's "AppData" folder: + e.g., "C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\" macOS - Brenda dosjes “Library” të përdoruesi, p.sh.: “/Users/emër përdoruesi/ - Library/Application Support/Tux Paint/saved/”. + In the user's "Application Support" folder: + e.g., "/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/" -Linux/Unix - Inside a hidden ".tuxpaint" directory, in the user's home directory - ("$HOME"), e.g. "/home/emër përdoruesi/.tuxpaint/saved/". +Linux / Unix + In the user's "home directory" folder: + e.g., "/home/emër përdoruesi/.tuxpaint/saved/" + +Haiku + In the user's "settings" folder: + e.g., "/boot/home/config/settings/TuxPaint/saved/" 💡 Note: It is also from this folder that you can copy or open pictures drawn in diff --git a/docs/sq_AL.UTF-8/html/EXTENDING.html b/docs/sq_AL.UTF-8/html/EXTENDING.html index 4cba0c811..f03b4f830 100644 --- a/docs/sq_AL.UTF-8/html/EXTENDING.html +++ b/docs/sq_AL.UTF-8/html/EXTENDING.html @@ -100,7 +100,7 @@

    - 26 janar 2024

    + 27 prill 2024

    diff --git a/docs/sq_AL.UTF-8/html/FAQ.html b/docs/sq_AL.UTF-8/html/FAQ.html index cb7f7ae8b..477eea2d8 100644 --- a/docs/sq_AL.UTF-8/html/FAQ.html +++ b/docs/sq_AL.UTF-8/html/FAQ.html @@ -312,27 +312,34 @@ Hiq rastin kur i keni kërkuar Tux Paint-it që t’i ruaj në një vend të caktuar (duke përdorur mundësinë “savedir”), Tux Paint-i i ruan te një vendndodhje standarde në diskun tuaj vendor:

    -
    - Windows Vista, Windows 8, Windows 10, Windows 11 -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    -
    - Te dosja “AppData” e përdoruesit:
    p.sh., C:\Users\Emërpërdoruesi\AppData\Roaming\TuxPaint\saved
    +
    + In the user's "AppData" folder:
    e.g., "C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\"
    -
    - macOS -
    +
    + macOS +
    -
    - Te dosja “Application Support” e përdoruesit:
    p.sh., /Users/Emërpërdoruesi/Library/Applicaton Support/TuxPaint/saved/
    +
    + In the user's "Application Support" folder:
    e.g., "/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/"
    -
    - Linux / Unix -
    +
    + Linux / Unix +
    -
    - Te drejtoria shtëpi e përdoruesit (“$HOME”), nën një nëndosje “.tuxpaint”:
    p.sh., /home/emërpërdoruesi/.tuxpaint/saved/
    -
    +
    + In the user's "home directory" folder:
    e.g., "/home/emër përdoruesi/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    Figurat depozitohen si bitmap-e PNG, të cilat, shumica e programeve modernë (përpunuesi figurash, përpunues fjalësh, shfletues, etj), duhet të jenë në gjendje t’i ngarkojnë.

    @@ -610,10 +617,10 @@

    - If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint").

    + If Tux Paint aborts with the message: "You're already running a copy of Tux Paint!", this means it has been launched in the last 30 seconds. (On Unix/Linux, this message would appear in a terminal console if you ran Tux Paint from a command-line. On Windows, this message would appear in a file named "stdout.txt" in the same folder where TuxPaint.exe resides (e.g., in "C:\Program Files\TuxPaint\").

    - A lockfile ("~/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    + A lockfile (e.g., "/home/emër përdoruesi/.tuxpaint/lockfile.dat" on Linux and Unix, "userdata\lockfile.dat" on Windows) is used to make sure Tux Paint isn't run too many times at once (e.g., due to a child impatiently clicking its icon more than once).

    Even if the lockfile exists, it contains the 'time' Tux Paint was last run. If it's been more than 30 seconds, Tux Paint should run fine, and simply update the lockfile with the current time.

    @@ -694,12 +701,19 @@
  • Windows

    - Under Windows, Tux Paint first examines the configuration file:

    + Under Windows, it first examines the system-wide configuration file, located here:

    - C:\Users\Username\AppData\Roaming\TuxPaint\tuxpaint.cfg -

    + C:\Program Files\TuxPaint\tuxpaint.cfg

    +
    + +

    + Mandej ekzaminon kartelën e formësimit personal të përdoruesit:

    + +
    +

    + C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\tuxpaint.cfg

    @@ -713,8 +727,7 @@

    - /Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -722,8 +735,7 @@

    - /Users/Username/Library/Application Support/TuxPaint/tuxpaint.cfg -

    + /Users/emër përdoruesi/Library/Application Support/TuxPaint/tuxpaint.cfg

    @@ -737,8 +749,7 @@

    - /etc/tuxpaint/tuxpaint.conf -

    + /etc/tuxpaint/tuxpaint.conf

    @@ -746,8 +757,7 @@

    - /home/emër përdoruesi/.tuxpaintrc -

    + /home/emër përdoruesi/.tuxpaintrc

    @@ -761,8 +771,7 @@

    - /boot/home/config/settings/TuxPaint/tuxpaint.conf -

    + /boot/home/config/settings/TuxPaint/tuxpaint.conf

    @@ -774,7 +783,7 @@ This means that if anything is set in a configuration file that you don't want set, you'll need to either change the config. file (if you can), or override the option on the command-line.

    - For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    + For example, on Linux and Unix, if "/etc/tuxpaint/tuxpaint.conf" includes this option to disable sound...

    @@ -783,7 +792,7 @@

    - ...then you can reenable sound by either adding this option to your own "/home/emër përdoruesi/.tuxpaintrc" file:

    + ...then you can reenable sound by either adding this option to your own "/home/emër përdoruesi/.tuxpaintrc" file:

    diff --git a/docs/sq_AL.UTF-8/html/INSTALL.html b/docs/sq_AL.UTF-8/html/INSTALL.html index 737926684..87964f9da 100644 --- a/docs/sq_AL.UTF-8/html/INSTALL.html +++ b/docs/sq_AL.UTF-8/html/INSTALL.html @@ -93,12 +93,12 @@ Dokumentim Instalimi

    - Të drejta kopjimi © 2002-2023 nga kontribues të ndryshëm; shihni AUTHORS.txt.
    + Të drejta kopjimi © 2002-2024 nga kontribues të ndryshëm; shihni AUTHORS.txt.
    https://tuxpaint.org/

    - 13 maj 2023

    + 27 prill 2024

    @@ -757,7 +757,7 @@

    - If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\username\AppData\Roaming\TuxPaint".

    + If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an Explorer, and look for a file called "stderr.txt" in your personal saving folder for TuxPaint which is normaly "C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\".

    It will contain a description of what was wrong. Usually it will just be due to incorrect character-case (capital 'Z' instead of lowercase 'z') or a missing (or extra) '-' (dash).

    diff --git a/docs/sq_AL.UTF-8/html/OPTIONS.html b/docs/sq_AL.UTF-8/html/OPTIONS.html index ede29e962..f7c2a7fe2 100644 --- a/docs/sq_AL.UTF-8/html/OPTIONS.html +++ b/docs/sq_AL.UTF-8/html/OPTIONS.html @@ -1786,17 +1786,24 @@

    If you do not override it, the default location is:

    -
      -
    • Linux & Unix — Under a hidden directory named ".tuxpaint" in your home directory (aka "~" or "$HOME")
      - Shembull: /home/username/.tuxpaint/saved/
    • +
      +
      Linux / Unix
      +
      + Under a hidden directory in your home directory:
      + /home/emër përdoruesi/.tuxpaint/saved/
      -
    • Windows — Inside a folder named "TuxPaint" in your "Application Data" folder.
      - Shembull: C:\Documents and Settings\Username\Application Data\TuxPaint\saved\
      -
    • +
      Windows
      +
      + C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\
      -
    • macOS — Inside a folder named "TuxPaint" in your "Application Support" folder.
      - Shembull: /Users/Username/Library/Application Support/TuxPaint/saved/
    • -
    +
    macOS
    +
    + /Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/
    + +
    Haiku
    +
    + /boot/home/config/settings/TuxPaint/saved/
    +

    💡 Note: When specifying a Windows drive (e.g., "H:\"), you must also specify a subdirectory.

    diff --git a/docs/sq_AL.UTF-8/html/README.html b/docs/sq_AL.UTF-8/html/README.html index 7b1b9fbf8..f218d9a8b 100644 --- a/docs/sq_AL.UTF-8/html/README.html +++ b/docs/sq_AL.UTF-8/html/README.html @@ -318,7 +318,7 @@ If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "tuxpaint.exe" icon in the "Tux Paint" folder on your computer.

    - By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\", though you may have changed this when you ran the installer.

    + By default, the 'Tux Paint Installer' will put Tux Paint's folder in "C:\Program Files\TuxPaint\", though you may have changed this when you ran the installer.

    If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file.

    @@ -1669,36 +1669,36 @@

    You can simply convert the picture to the format Tux Paint uses — PNG (Portable Network Graphic) — and place it in Tux Paint's "saved" directory/folder. Here is where to find it (by default):

    - +
    -
    - Windows 10, 8, 7, Vista -
    - -
    - Brenda dosjes “AppData” të përdoruesi, p.sh.: “C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\”.
    - -
    - Windows 2000, XP -
    - -
    - Brenda dosjes “Application Data” të përdoruesi, p.sh.: “C:\Documents and Settings\emër përdoruesi\Application Data\TuxPaint\saved\”.
    - -
    - macOS -
    - -
    - Brenda dosjes “Library” të përdoruesi, p.sh.: “/Users/emër përdoruesi/Library/Application Support/Tux Paint/saved/”.
    - -
    - Linux/Unix -
    - -
    - Inside a hidden ".tuxpaint" directory, in the user's home directory ("$HOME"), e.g. "/home/emër përdoruesi/.tuxpaint/saved/".
    -
    +
    + Windows Vista, Windows 8, Windows 10, Windows 11 +
    + +
    + In the user's "AppData" folder:
    e.g., "C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\"
    + +
    + macOS +
    + +
    + In the user's "Application Support" folder:
    e.g., "/Users/emër përdoruesi/Library/Application Support/TuxPaint/saved/"
    + +
    + Linux / Unix +
    + +
    + In the user's "home directory" folder:
    e.g., "/home/emër përdoruesi/.tuxpaint/saved/"
    + +
    + Haiku +
    + +
    + In the user's "settings" folder:
    e.g., "/boot/home/config/settings/TuxPaint/saved/"
    +

    💡 Note: It is also from this folder that you can copy or open pictures drawn in Tux Paint using other applications, though the 'Export' option from Tux Paint's 'Open' dialog can be used to copy them to a location that's easier and safer to access.