Fix spelling errors found with codespell

This commit is contained in:
Daniele Forsi 2024-12-27 17:57:33 +01:00 committed by Alx Sa
parent 1a1c52d0ba
commit 994137a82e
42 changed files with 55 additions and 55 deletions

View file

@ -209,7 +209,7 @@ A plugin may have a resource as a parameter.
An interactive plugin may show a chooser widget to let a user choose a resource.
The user's choices may be saved in settings.
In the same sesssion of GIMP, or in a subsequent session,
In the same session of GIMP, or in a subsequent session,
a user may invoke the plugin again.
Then the saved settings are displayed in the plugin's dialog
(when the second invocation is also interactive).

View file

@ -28,7 +28,7 @@ state. If this happens, you'd be advised to close and reopen the file
Another downside of plug-ins is that GIMP currently doesn't have any
sandboxing ability. Since we explained that plug-ins are run by GIMP as
independant processes, it also means they have the same rights as your
independent processes, it also means they have the same rights as your
GIMP process. Therefore be careful that you trust the source of your
plug-ins. You should never run shady plug-ins from untrusted sources.
@ -258,7 +258,7 @@ rules. To do so:
GIMP interface the widget you are interested to style;
* the widget name will be displayed on the top of the information area
of the dialog.
* Feel free to browse the various sections to see the class hierachy,
* Feel free to browse the various sections to see the class hierarchy,
CSS nodes and so on.
* The second top-left button (just next to the target icon) allows you
to switch between the details of the selected widget and the widget
@ -489,7 +489,7 @@ be considered as some kind dependency rule and should be updated.
The `XCF` format is the core image format of GIMP, which mirrors
features made available in GIMP. More than an image format, you may
consider it as a work or project format, as it is not made for finale
presentation of an artwork but for the work-in-progress processus.
presentation of an artwork but for the work-in-progress process.
Developers are welcome to read the [specifications of XCF](https://developer.gimp.org/core/standards/xcf/).

View file

@ -23,7 +23,7 @@ The Symbolic icon theme is our main target since they are considered
better suited for graphics work (less visual distraction). Color icons
are kept as fall-back since some users prefer them.
Vector icons are now prefered because they are much less maintenance.
Vector icons are now preferred because they are much less maintenance.
For instance, we do not need to double, triple (or more) every icon for
the various sizes they are needed in, and double this amount again to
handle high density displays.

View file

@ -20,7 +20,7 @@ text file is enough to indicate what interpreter to start.
On Windows (and Linux for Lua), you also need an .interp file installed with GIMP.
It can get complicated;
there are many combinations of envirnoment variables, shebangs, file suffixes, and .interp files that can work.
there are many combinations of environment variables, shebangs, file suffixes, and .interp files that can work.
*To insure a GIMP interpreted plugin works across platforms,
it should have a shebang.*
@ -30,7 +30,7 @@ since the ScriptFu extension reads them.*
## Partial history of interpreters in GIMP
Rarely are interpreters addded to GIMP.
Rarely are interpreters added to GIMP.
GIMP 2 offers Perl, Scheme, and Python2 interpreters.
GIMP 3 offers Python3, lua, javascript, and the gimp-script-fu-interpreter interpreters.