diff --git a/INSTALL.in b/INSTALL.in index 47ec47bf42..9a5b69a5b6 100644 --- a/INSTALL.in +++ b/INSTALL.in @@ -6,7 +6,7 @@ There are some basic steps to building and installing GIMP. GIMP @GIMP_APP_VERSION@ replaces earlier GIMP 2.10.x versions. It is advised to uninstall them before installing GIMP @GIMP_APP_VERSION@. Since libgimp* libraries -and data are all versionned anyway, it is possible to keep your older +and data are all versioned anyway, it is possible to keep your older GIMP 2.x installation in parallel to GIMP @GIMP_APP_VERSION@ on a same prefix. GIMP @GIMP_APP_VERSION@ is not backward compatible with GIMP 2.10 and earlier diff --git a/app/config/gimpguiconfig.c b/app/config/gimpguiconfig.c index 1b3eb9723b..4c55ce843f 100644 --- a/app/config/gimpguiconfig.c +++ b/app/config/gimpguiconfig.c @@ -246,7 +246,7 @@ gimp_gui_config_class_init (GimpGuiConfigClass *klass) GIMP_CONFIG_PROP_BOOLEAN (object_class, PROP_RESTORE_ACCELS, "restore-accels", - "Restore acclerator", + "Restore accelerator", RESTORE_ACCELS_BLURB, TRUE, GIMP_PARAM_STATIC_STRINGS); diff --git a/app/operations/gimpoperationborder.c b/app/operations/gimpoperationborder.c index e08481ce20..ea7050cecc 100644 --- a/app/operations/gimpoperationborder.c +++ b/app/operations/gimpoperationborder.c @@ -98,7 +98,7 @@ gimp_operation_border_class_init (GimpOperationBorderClass *klass) g_object_class_install_property (object_class, PROP_RADIUS_X, g_param_spec_int ("radius-x", "Radius X", - "Border radius in X diection", + "Border radius in X direction", 1, 2342, 1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); @@ -106,7 +106,7 @@ gimp_operation_border_class_init (GimpOperationBorderClass *klass) g_object_class_install_property (object_class, PROP_RADIUS_Y, g_param_spec_int ("radius-y", "Radius Y", - "Border radius in Y diection", + "Border radius in Y direction", 1, 2342, 1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); diff --git a/app/operations/gimpoperationshrink.c b/app/operations/gimpoperationshrink.c index c862edb471..398c3d24cd 100644 --- a/app/operations/gimpoperationshrink.c +++ b/app/operations/gimpoperationshrink.c @@ -98,7 +98,7 @@ gimp_operation_shrink_class_init (GimpOperationShrinkClass *klass) g_object_class_install_property (object_class, PROP_RADIUS_X, g_param_spec_int ("radius-x", "Radius X", - "Shrink radius in X diection", + "Shrink radius in X direction", 1, 2342, 1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); @@ -106,7 +106,7 @@ gimp_operation_shrink_class_init (GimpOperationShrinkClass *klass) g_object_class_install_property (object_class, PROP_RADIUS_Y, g_param_spec_int ("radius-y", "Radius Y", - "Shrink radius in Y diection", + "Shrink radius in Y direction", 1, 2342, 1, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); diff --git a/build/linux/flatpak/README.md b/build/linux/flatpak/README.md index 410a797712..893dd370e9 100644 --- a/build/linux/flatpak/README.md +++ b/build/linux/flatpak/README.md @@ -60,7 +60,7 @@ cd /flatpak/build podman run --rm --privileged -v "$(pwd):/run/host:rw" ghcr.io/flathub/flatpak-external-data-checker:latest /run/host/org.gimp.GIMP-nightly.json ``` - Our prefered backend for the checker is Anitya, a database maintained + Our preferred backend for the checker is Anitya, a database maintained by the Fedora project. To set up a new dependency check by Anitya: 1. verify it is available in the database: https://release-monitoring.org/ diff --git a/build/windows/store/README.md b/build/windows/store/README.md index 503bcc7d4b..cab4b6a993 100644 --- a/build/windows/store/README.md +++ b/build/windows/store/README.md @@ -14,7 +14,7 @@ Base rule to update the "GIMP (Preview)" entry: 1. The link above will open 'Partner Center', the frontend to submit .msixupload -2. With your Microsoft Entra ID account (@*onmicrosoft.com), log-in as costumary +2. With your Microsoft Entra ID account (@*onmicrosoft.com), log-in as customary 3. Clicking on the "Start update" button will make possible to change some things. Only 'Packages' and 'Store listings' sections are needed. On 'Packages' you will diff --git a/desktop/org.gimp.GIMP.appdata.xml.in.in b/desktop/org.gimp.GIMP.appdata.xml.in.in index 13ffc3a6ab..b65b148b81 100644 --- a/desktop/org.gimp.GIMP.appdata.xml.in.in +++ b/desktop/org.gimp.GIMP.appdata.xml.in.in @@ -191,7 +191,7 @@
  • Floating selections not created anymore when pasting new layers
  • New "Gray" theme based on a 18.42% luminance middle-gray background
  • -
  • Icon sizes can be overriden in Preferences > Themes
  • +
  • Icon sizes can be overridden in Preferences > Themes
  • Faster save of XCF files
  • XCF file format improved with a proper structure for path items
  • diff --git a/devel-docs/GIMP3-plug-in-porting-guide/API-for-resources.md b/devel-docs/GIMP3-plug-in-porting-guide/API-for-resources.md index 78b589fc87..cb2f579ab3 100644 --- a/devel-docs/GIMP3-plug-in-porting-guide/API-for-resources.md +++ b/devel-docs/GIMP3-plug-in-porting-guide/API-for-resources.md @@ -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). diff --git a/devel-docs/README.md b/devel-docs/README.md index a79b97cb4e..0de887478e 100644 --- a/devel-docs/README.md +++ b/devel-docs/README.md @@ -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/). diff --git a/devel-docs/icons.md b/devel-docs/icons.md index bbe2a02413..21edfe5848 100644 --- a/devel-docs/icons.md +++ b/devel-docs/icons.md @@ -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. diff --git a/devel-docs/interpreters.txt b/devel-docs/interpreters.txt index 3248bf82af..f5258d91ad 100644 --- a/devel-docs/interpreters.txt +++ b/devel-docs/interpreters.txt @@ -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. diff --git a/libgimp/meson.build b/libgimp/meson.build index 1bf9c899d8..1abae1a472 100644 --- a/libgimp/meson.build +++ b/libgimp/meson.build @@ -1,5 +1,5 @@ # Similarly to libgimpthumb/gimpthumb-enums.c, libgimp/gimpenums.c is -# not versionned so we don't use the mkenums_wrap. +# not versioned so we don't use the mkenums_wrap. # Moreover it is generated in 2 steps, first with common mkenums # arguments, then concatenating with a "tail" file. gimpenums_notail = custom_target('gimpenums.c.notail', diff --git a/libgimpthumb/meson.build b/libgimpthumb/meson.build index 847cbd201a..7a34efd271 100644 --- a/libgimpthumb/meson.build +++ b/libgimpthumb/meson.build @@ -1,5 +1,5 @@ # Unlike other enums file, we don't use the mkenums_wrap because this -# one is not versionned in the repository (not sure why). Moreover the +# one is not versioned in the repository (not sure why). Moreover the # options are quite different from the other generated enums, so it # didn't make sense to overdo it. gimpthumbenums = custom_target('gimpthumb-enums.c', diff --git a/plug-ins/common/animation-optimize.c b/plug-ins/common/animation-optimize.c index 998a6f64e1..38ab80b29d 100644 --- a/plug-ins/common/animation-optimize.c +++ b/plug-ins/common/animation-optimize.c @@ -184,7 +184,7 @@ optimize_create_procedure (GimpPlugIn *plug_in, "final file size. If a frame of the" "animation can use the 'combine' " "mode, this procedure attempts to " - "maximize the number of ajdacent " + "maximize the number of adjacent " "pixels having the same color, which" "improves the compression for some " "image formats such as GIF or MNG.", diff --git a/plug-ins/common/sample-colorize.c b/plug-ins/common/sample-colorize.c index 8844cf1b28..addc7992e5 100644 --- a/plug-ins/common/sample-colorize.c +++ b/plug-ins/common/sample-colorize.c @@ -284,7 +284,7 @@ colorize_create_procedure (GimpPlugIn *plug_in, "This plug-in colorizes the contents of the specified (gray) layer" " with the help of a sample (color) layer." " It analyzes all colors in the sample layer." - " The sample colors are sorted by brightness (== intentisty) and amount" + " The sample colors are sorted by brightness (== intensity) and amount" " and stored in a sample colortable (where brightness is the index)" " The pixels of the destination layer are remapped with the help of the" " sample colortable. If use_subcolors is TRUE, the remapping process uses" diff --git a/plug-ins/flame/libifs.c b/plug-ins/flame/libifs.c index 461ac5c96d..16edbf269a 100644 --- a/plug-ins/flame/libifs.c +++ b/plug-ins/flame/libifs.c @@ -1058,7 +1058,7 @@ parse_control_point (char **ss, } else if (! g_ascii_string_to_signed (argv[i++], 10, 1, GIMP_MAX_IMAGE_SIZE, &h, NULL)) { - g_printerr ("Ignoring invalid image_size heigth '%s'\n", argv[i-1]); + g_printerr ("Ignoring invalid image_size height '%s'\n", argv[i-1]); parse_errors++; } else diff --git a/plug-ins/script-fu/interpreter/README b/plug-ins/script-fu/interpreter/README index 370077aa4f..46a9b3482a 100644 --- a/plug-ins/script-fu/interpreter/README +++ b/plug-ins/script-fu/interpreter/README @@ -118,7 +118,7 @@ A directory containing an .scm file queried by script-fu-interpreter is usually a subdirectory of one of the /plug-ins directories, unlike for extension-script-fu, where the .scm files are in a /scripts dir. -A plugin directory should contain only one queriable .scm file: +A plugin directory should contain only one queryable .scm file: only one file can have the same base name as the directory and GIMP will query that file. diff --git a/plug-ins/script-fu/libscriptfu/ftx/README b/plug-ins/script-fu/libscriptfu/ftx/README index c20b21531d..6eea69dd76 100644 --- a/plug-ins/script-fu/libscriptfu/ftx/README +++ b/plug-ins/script-fu/libscriptfu/ftx/README @@ -12,7 +12,7 @@ Changelog: WHAT IS TSX? TinyScheme Extensions is a set of dynamic libraries incorporating -additional funcionality to TinyScheme, a lightweight +additional functionality to TinyScheme, a lightweight implementation of the Scheme programming language. TinyScheme (http://tinyscheme.sourceforge.net) is maintained by D. Souflis (dsouflis@acm.org), and is based on MiniSCHEME version 0.85k4. diff --git a/plug-ins/script-fu/libscriptfu/tinyscheme/README b/plug-ins/script-fu/libscriptfu/tinyscheme/README index f1f102b994..6a5e7ffa47 100644 --- a/plug-ins/script-fu/libscriptfu/tinyscheme/README +++ b/plug-ins/script-fu/libscriptfu/tinyscheme/README @@ -51,4 +51,4 @@ The number of bytes in a string can be had with libc strlen(). ## Other forks -Anothers signficant fork of upstream TinyScheme is in the gnupgp project, where it scripts tests. \ No newline at end of file +Another significant fork of upstream TinyScheme is in the gnupgp project, where it scripts tests. \ No newline at end of file diff --git a/plug-ins/script-fu/scripts/coffee.scm b/plug-ins/script-fu/scripts/coffee.scm index 2381e1740f..be02068991 100644 --- a/plug-ins/script-fu/scripts/coffee.scm +++ b/plug-ins/script-fu/scripts/coffee.scm @@ -76,7 +76,7 @@ ; ; (+ (random 15) 1) yields [2, 16] uniform. ; The original formula, a product of random numbers, yields [3, 255] non-uniform. - ; To accomodate changes to distress-selection, we use the old formula, and divide by 255. + ; To accommodate changes to distress-selection, we use the old formula, and divide by 255. ; When you instead just generate a single random float, stains are smaller. (set! theThreshold (/ (- (* (+ (random 15) 1) (+ (random 15) 1)) 1) ; original formula diff --git a/plug-ins/script-fu/scripts/palette-export.scm b/plug-ins/script-fu/scripts/palette-export.scm index ea3d040272..c32642477e 100644 --- a/plug-ins/script-fu/scripts/palette-export.scm +++ b/plug-ins/script-fu/scripts/palette-export.scm @@ -7,7 +7,7 @@ ; See instruction on adding new exporters at the end ; -; !!! Here run functions call script-fu-use-v3, to bind PDB returns succintly. +; !!! Here run functions call script-fu-use-v3, to bind PDB returns succinctly. ; ----------------------------------------------------------------------------- ; Numbers and Math diff --git a/plug-ins/script-fu/scripts/test/call-always-fail/call-always-fail.scm b/plug-ins/script-fu/scripts/test/call-always-fail/call-always-fail.scm index 9c90894e33..07066e7b01 100644 --- a/plug-ins/script-fu/scripts/test/call-always-fail/call-always-fail.scm +++ b/plug-ins/script-fu/scripts/test/call-always-fail/call-always-fail.scm @@ -13,7 +13,7 @@ ; call a script that always fails (script-fu-always-fail) ; we have not checked the result and declaring the error on our own. - ; since this is the last expression, the #f from the call should propogate. + ; since this is the last expression, the #f from the call should propagate. ) (script-fu-register "script-fu-call-always-fail" diff --git a/plug-ins/script-fu/scripts/test/test4/test4.scm b/plug-ins/script-fu/scripts/test/test4/test4.scm index 71e1046044..3f8ff0b1c8 100644 --- a/plug-ins/script-fu/scripts/test/test4/test4.scm +++ b/plug-ins/script-fu/scripts/test/test4/test4.scm @@ -3,7 +3,7 @@ ; Test a .scm file that does not call script-fu-menu-register ; The menu will NOT default. ; Expect "Test SF interpreter 4" to NOT EXIST in any menu -; Expect the PDB proc "script-fu-test4" does appear in the PDB Brower +; Expect the PDB proc "script-fu-test4" does appear in the PDB Browser ; Two test cases: ; Alongside an executable script: plug-ins/test4/test4.scm NOT executable diff --git a/plug-ins/script-fu/scripts/unsharp-mask.scm b/plug-ins/script-fu/scripts/unsharp-mask.scm index bcb6940956..f13fcea3f1 100644 --- a/plug-ins/script-fu/scripts/unsharp-mask.scm +++ b/plug-ins/script-fu/scripts/unsharp-mask.scm @@ -9,7 +9,7 @@ ; Seems not used by any script in the repo. ; FUTURE move to gimp-data-extras or to scripts/test -; and maintain it with low priorty. +; and maintain it with low priority. ; unsharp-mask is a filter AND renderer, creating a new, visible, dirty image ; from the given image. diff --git a/plug-ins/script-fu/test/frameworks/testing.scm b/plug-ins/script-fu/test/frameworks/testing.scm index a8dc9ae911..91432c5627 100644 --- a/plug-ins/script-fu/test/frameworks/testing.scm +++ b/plug-ins/script-fu/test/frameworks/testing.scm @@ -253,7 +253,7 @@ ; expected-error) -; Statments in the testing DSL. +; Statements in the testing DSL. ; The usual or normal test. ; is a boolean proposition expected to yield #t @@ -436,7 +436,7 @@ ; Returns path to file containing named color profile ; Currently, assumes color profiles downloaded to /work dir. -; FUTURE: platform indpendent path +; FUTURE: platform independent path ; FUTURE: color profile test files in the repo (define (testing:path-to-color-profile name) (string-append "/work/" name)) diff --git a/plug-ins/script-fu/test/meson.build b/plug-ins/script-fu/test/meson.build index fe2580a736..d7e6565581 100644 --- a/plug-ins/script-fu/test/meson.build +++ b/plug-ins/script-fu/test/meson.build @@ -112,7 +112,7 @@ test_scripts = [ ] # Install test framework to shared /scripts -# Assert: SFConsole, SFExtension, and standalong SFInterpreter will read them. +# Assert: SFConsole, SFExtension, and standalone SFInterpreter will read them. # SFConsole is primary testing interface. # Some plugins in /scripts (SFExtension) # and in /plug-ins (SFInterpreter) may also be interface for testing. diff --git a/plug-ins/script-fu/test/tests/PDB/color/color.scm b/plug-ins/script-fu/test/tests/PDB/color/color.scm index 640c92d2e2..d5809f20df 100644 --- a/plug-ins/script-fu/test/tests/PDB/color/color.scm +++ b/plug-ins/script-fu/test/tests/PDB/color/color.scm @@ -93,8 +93,8 @@ '(255))) ; a color from a grayscale with alpha image is a list of one -; For gimp-logo.png the backround is 0 i.e. black -; For wilber.png the backround is 71 some intermediate gray +; For gimp-logo.png the background is 0 i.e. black +; For wilber.png the background is 71 some intermediate gray ; FIXME, why do two images rgba converted to gray and flattened ; have different values for a total transparent pixel? (assert `(equal? (gimp-drawable-get-pixel ,testDrawableGrayA 1 1) @@ -216,7 +216,7 @@ (test! "Extra components in colors") -; lenth 5, only 4 components used +; length 5, only 4 components used (assert `(gimp-context-set-background '(0 0 0 0 5))) diff --git a/plug-ins/script-fu/test/tests/PDB/drawable/drawable.scm b/plug-ins/script-fu/test/tests/PDB/drawable/drawable.scm index 7f30a546d6..8acb4b6e15 100644 --- a/plug-ins/script-fu/test/tests/PDB/drawable/drawable.scm +++ b/plug-ins/script-fu/test/tests/PDB/drawable/drawable.scm @@ -12,7 +12,7 @@ ; get bounding box of intersection of selection mask with drawable -; bounding box in x, y, width, heigth format +; bounding box in x, y, width, height format (assert `(gimp-drawable-mask-bounds ,testDrawable)) ; bounding box in upper left x,y lower right x,y (assert `(gimp-drawable-mask-intersect ,testDrawable)) diff --git a/plug-ins/script-fu/test/tests/PDB/gimp/procedures.scm b/plug-ins/script-fu/test/tests/PDB/gimp/procedures.scm index bff61ff801..f18532067f 100644 --- a/plug-ins/script-fu/test/tests/PDB/gimp/procedures.scm +++ b/plug-ins/script-fu/test/tests/PDB/gimp/procedures.scm @@ -4,7 +4,7 @@ ; Tests in alphabetic order of attribute name -; Assymmetry: +; Asymmetry: ; - some attributes can be get, but not set ; - some attributes can be set but not get ; Such attributes are set only in libgimp, not by a PDB procedure diff --git a/plug-ins/script-fu/test/tests/PDB/image/image-color-profile.scm b/plug-ins/script-fu/test/tests/PDB/image/image-color-profile.scm index b1b6a9f9a1..b6a777efc9 100644 --- a/plug-ins/script-fu/test/tests/PDB/image/image-color-profile.scm +++ b/plug-ins/script-fu/test/tests/PDB/image/image-color-profile.scm @@ -9,7 +9,7 @@ ; That is, we don't render the image and have a human look at the results. ; Also, there is no API for programmatically finding what rendered colors are out of gamut. ; Also, there is no API for programmatically rendering under the simulation profile. -; i.e. like the user would do under View>Color Managment>SoftProof. +; i.e. like the user would do under View>Color Management>SoftProof. ; Notes about test data, all binary files ; name vector file MODE diff --git a/plug-ins/script-fu/test/tests/PDB/image/image-set-selected.scm b/plug-ins/script-fu/test/tests/PDB/image/image-set-selected.scm index 90f6dd6eb6..d44ef90af9 100644 --- a/plug-ins/script-fu/test/tests/PDB/image/image-set-selected.scm +++ b/plug-ins/script-fu/test/tests/PDB/image/image-set-selected.scm @@ -94,7 +94,7 @@ ; TODO test multi-select, a set of two member path ; The generic getter get-selected-drawables -; Returns a homogenous vector of previously selected channels. +; Returns a homogeneous vector of previously selected channels. (assert `(= (vector-ref (car (gimp-image-get-selected-drawables ,testImage)) 0) ,testChannel)) diff --git a/plug-ins/script-fu/test/tests/PDB/pdb.scm b/plug-ins/script-fu/test/tests/PDB/pdb.scm index 415ddfbf17..30cf1fe55c 100644 --- a/plug-ins/script-fu/test/tests/PDB/pdb.scm +++ b/plug-ins/script-fu/test/tests/PDB/pdb.scm @@ -80,7 +80,7 @@ ; gimp module, gimp-get methods (testing:load-test "gimp.scm") -; gimp PDB as a queriable store i.e. database +; gimp PDB as a queryable store i.e. database (testing:load-test "PDB.scm") ; test gimp as a refreshable set of installed resources (testing:load-test "refresh.scm") diff --git a/plug-ins/script-fu/test/tests/PDB/selection/selection.scm b/plug-ins/script-fu/test/tests/PDB/selection/selection.scm index 4feecc1e8a..3d337dd5bb 100644 --- a/plug-ins/script-fu/test/tests/PDB/selection/selection.scm +++ b/plug-ins/script-fu/test/tests/PDB/selection/selection.scm @@ -112,7 +112,7 @@ ; is a flag indicating whether *user or program* has ; set the selection since calling select-none. -; Wierd case: 0 width should throw out of bounds error? +; Weird case: 0 width should throw out of bounds error? ; selecting a zero width rect does not throw an error (assert `(gimp-image-select-rectangle diff --git a/plug-ins/script-fu/test/tests/PDB/vectors/vectors-new.scm b/plug-ins/script-fu/test/tests/PDB/vectors/vectors-new.scm index f15cefbc81..de73bd7fbd 100644 --- a/plug-ins/script-fu/test/tests/PDB/vectors/vectors-new.scm +++ b/plug-ins/script-fu/test/tests/PDB/vectors/vectors-new.scm @@ -83,7 +83,7 @@ ; export all paths to string all succeeds ; passing 0 for path means "all" -; FIXME this is wierd, should be a separate method gimp-image-export-paths-to-string +; FIXME this is weird, should be a separate method gimp-image-export-paths-to-string ; The name implies a single path (assert `(gimp-image-export-path-to-string ,testImage diff --git a/plug-ins/script-fu/test/tests/TS/file-port.scm b/plug-ins/script-fu/test/tests/TS/file-port.scm index 5b8b500995..9136868b1d 100644 --- a/plug-ins/script-fu/test/tests/TS/file-port.scm +++ b/plug-ins/script-fu/test/tests/TS/file-port.scm @@ -40,7 +40,7 @@ ;(assert-error `(close-port ,aOutFilePort) ; "Error: not a port") -; aOutFilePort is still in scope and shoud not be garbage collected. +; aOutFilePort is still in scope and should not be garbage collected. (test! "A closed port is still a port") (assert `(port? ,aOutFilePort)) diff --git a/plug-ins/script-fu/test/tests/TS/numeric.scm b/plug-ins/script-fu/test/tests/TS/numeric.scm index 23e4808619..153c2b00a8 100644 --- a/plug-ins/script-fu/test/tests/TS/numeric.scm +++ b/plug-ins/script-fu/test/tests/TS/numeric.scm @@ -20,7 +20,7 @@ ; e.g. export LANG="de_DE.UTF-8" ; In that locale, comma is used as a decimal point. ; In TinyScheme, string representation of numbers SHOULD use period as decimal point. -; But currently doesn't, in some locales using comman for decimal point. +; But currently doesn't, in some locales using comma for decimal point. ; Because TinyScheme uses C standard lib snprintf ; which respects locale and can print comma for decimal point. diff --git a/plug-ins/script-fu/test/tests/TS/sharp-expr-char.scm b/plug-ins/script-fu/test/tests/TS/sharp-expr-char.scm index 1ecc7af6c7..498c3af1cc 100644 --- a/plug-ins/script-fu/test/tests/TS/sharp-expr-char.scm +++ b/plug-ins/script-fu/test/tests/TS/sharp-expr-char.scm @@ -46,12 +46,12 @@ (assert '(equal? (integer->char 13) #\return)) (assert '(equal? (integer->char 32) #\space)) -; Mispelled sharp constants +; Misspelled sharp constants ; Any sequence of chars starting with #\n, up to a delimiter, ; that does not match "newline" ; is parsed as the sharp constant for the lower case ASCII n char.\ ; Similarly for tab, return, space -(test! "mispelled sharp char constant for newline") +(test! "misspelled sharp char constant for newline") ; 110 is the codepoint for lower case n (assert '(equal? (integer->char 110) #\n)) (assert '(equal? (integer->char 110) #\newlin)) diff --git a/plug-ins/script-fu/test/tests/TS/string-port-input.scm b/plug-ins/script-fu/test/tests/TS/string-port-input.scm index 0d75727dfb..872709510f 100644 --- a/plug-ins/script-fu/test/tests/TS/string-port-input.scm +++ b/plug-ins/script-fu/test/tests/TS/string-port-input.scm @@ -197,7 +197,7 @@ (test! "read-byte then read-char on input-string, two-byte UTF-8 encoded char") ; The first byte of the lambda char is 0xce 206, the next 0xbb 187, code point is 0x3bb -; Expect this leaves the port in condtion for a subsequent read-char or read +; Expect this leaves the port in condition for a subsequent read-char or read (assert `(= (byte->integer (read-byte ,aStringPort)) 206)) (assert `(= (byte->integer (read-byte ,aStringPort)) diff --git a/plug-ins/script-fu/test/tests/TS/testing.scm b/plug-ins/script-fu/test/tests/TS/testing.scm index d8d1068184..b33ae29665 100644 --- a/plug-ins/script-fu/test/tests/TS/testing.scm +++ b/plug-ins/script-fu/test/tests/TS/testing.scm @@ -30,7 +30,7 @@ -; assert-error statment +; assert-error statement ; assert-error tests for error messages ; assert-error omits the "Error: " prefix printed by the REPL diff --git a/themes/Default/gimp-dark.css b/themes/Default/gimp-dark.css index 99d515aea7..dde1a4c2a7 100644 --- a/themes/Default/gimp-dark.css +++ b/themes/Default/gimp-dark.css @@ -26,13 +26,13 @@ /* Background color for hovered items to "stick out". */ @define-color hover-color rgb(100,100,100); -/* Background color when we want widgets-in-widgets to differenciate. It +/* Background color when we want widgets-in-widgets to differentiate. It * will usually be "less extreme", i.e. darker on a light theme, or * lighter on a dark theme. */ @define-color widget-bg-color rgb(42,42,42); /* Color for selected items, in particular when their usual background - * color is @widget-bg-color or @bg-color. It will usually be ligher on + * color is @widget-bg-color or @bg-color. It will usually be lighter on * a light theme, or darker on a dark theme. */ @define-color selected-color rgb(30,30,30); diff --git a/tools/flatpak-releases b/tools/flatpak-releases index dfa347d0cf..dcf82e90e8 100755 --- a/tools/flatpak-releases +++ b/tools/flatpak-releases @@ -1,8 +1,8 @@ #!/bin/bash -# This is a very basic script for developper usage. It has a few known +# This is a very basic script for developer usage. It has a few known # limitations (feel free to send patches for these): -# - It is targetted at GIMP usage primarily, hence able to check only +# - It is targeted at GIMP usage primarily, hence able to check only # Flathub (stable and beta remotes) and GNOME-nightly. Yet some # generity is built-in so you can set your own application ID on # command line and it should work. @@ -46,7 +46,7 @@ do echo echo "List all flatpak builds stored on Flathub or GNOME repository." echo "The builds for org.gimp.GIMP are looked up by default unless" - echo "you provide explicitely another AppStream ID." + echo "you provide explicitly another AppStream ID." echo echo "Adding a -X number as option install the numbered release" echo "instead of listing them." @@ -67,7 +67,7 @@ do echo echo "Examples:" echo - echo "* List all beta flatpak bulds:" + echo "* List all beta flatpak builds:" echo " flathub-releases --beta" echo "* Install 2-build old beta flatpak:" echo "* flathub-releases --beta -2" diff --git a/tools/meson-mkenums.sh b/tools/meson-mkenums.sh index 6e1968fdcd..ee8b938894 100755 --- a/tools/meson-mkenums.sh +++ b/tools/meson-mkenums.sh @@ -3,7 +3,7 @@ # This is a wrapper to the tools/gimp-mkenums perl script which: # * sets a few common values; # * updates the ${filebase}enums.c directly in the source directory in -# order for it to be versionned. +# order for it to be versioned. # * Create a no-op stamp-header file to be included by the resulting # enums.c. The goal is to make sure that meson will trigger a rebuild # of the enums.c generation before compiling, if the enums.h changed.