Skip to content

Commit

Permalink
Fix various typos
Browse files Browse the repository at this point in the history
Found via `codespell -q 3 -S "./.git,*.patch,*.po,*.pot,*.svg,./src/external,./src/common,./data/pswp,./tools/lua_doc/old_api" -L ba,bloc,blocs,bu,childrens,childs,colorin,detailled,dinamic,eacg,fpt,hav,hava,histindx,indx,initiales,inout,isnt,ist,liquify,nd,nin,mye,residental,rin,ro,te,uint,ue,webp,wirth`
  • Loading branch information
luzpaz authored and TurboGit committed Sep 12, 2024
1 parent 99ddba1 commit 02a5e6b
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ changes (where available).
- Added a high-contrast theme with bright white text on a dark gray
background.

- Enhanced tooltips for utiltity module headers to provide more
- Enhanced tooltips for utility module headers to provide more
information about the module.

- Added more hints on an empty lighttable.
Expand Down
2 changes: 1 addition & 1 deletion cmake/modules/NSIS.template.in
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ Function un.RemoveFromPath
FunctionEnd

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Uninstall sutff
; Uninstall stuff
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

###########################################
Expand Down
4 changes: 2 additions & 2 deletions packaging/macosx/3_make_hb_darktable_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ function install_dependencies {
dynDepOrigFile=$(basename "$hbDependency")
dynDepTargetFile="$dtResourcesDir/lib/$dynDepOrigFile"

# Install dependency if not yet existant
# Install dependency if not yet existent
if [[ ! -f "$dynDepTargetFile" ]]; then
echo "Installing dependency $hbDependency of $1"

# Copy dependency as not yet existant
# Copy dependency as not yet existent
cp -L "$hbDependency" "$dynDepTargetFile"

# Handle transitive dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ endif(USE_LUA)

if(USE_LUA)
if(NOT Lua54_FOUND)
list(APPEND LIB_DEPS lua) # 2nd half of the uglyness :/
list(APPEND LIB_DEPS lua) # 2nd half of the ugliness :/
endif(NOT Lua54_FOUND)
# liblautoc for lua automated interface generation
add_library(lautoc_static STATIC IMPORTED)
Expand Down
2 changes: 1 addition & 1 deletion src/control/jobs.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ typedef enum dt_job_queue_t
DT_JOB_QUEUE_USER_EXPORT = 3, // exports. only one of these jobs will ever be scheduled at a time
DT_JOB_QUEUE_SYSTEM_BG = 4, // some lua stuff that may not be pushed out of the queue, ...
DT_JOB_QUEUE_MAX = 5,
DT_JOB_QUEUE_SYNCHRONOUS = 1000 // don't queue, run immeidately and don't return until done
DT_JOB_QUEUE_SYNCHRONOUS = 1000 // don't queue, run immediately and don't return until done
} dt_job_queue_t;

typedef struct _dt_job_t dt_job_t;
Expand Down
2 changes: 1 addition & 1 deletion src/control/signal.h
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ typedef enum dt_debug_signal_action_t
DT_DEBUG_SIGNAL_ACT_PRINT_TRACE = 1 << 3,
} dt_debug_signal_action_t;

/* inititialize the signal framework */
/* initialize the signal framework */
struct dt_control_signal_t *dt_control_signal_init();
/* raises a signal */
void dt_control_signal_raise(const struct dt_control_signal_t *ctlsig, const dt_signal_t signal, ...);
Expand Down
6 changes: 3 additions & 3 deletions src/develop/blend_gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -2124,7 +2124,7 @@ static void _blendop_blendif_channel_mask_view(GtkWidget *widget,
dt_dev_pixelpipe_display_mask_t new_request_mask_display =
module->request_mask_display | mode;

// in case user requests channel display: get the cannel
// in case user requests channel display: get the channel
if(new_request_mask_display & DT_DEV_PIXELPIPE_DISPLAY_CHANNEL)
{
dt_dev_pixelpipe_display_mask_t channel = data->channel[data->tab].display_channel;
Expand Down Expand Up @@ -2170,7 +2170,7 @@ static void _blendop_blendif_channel_mask_view_toggle

new_request_mask_display &= ~DT_DEV_PIXELPIPE_DISPLAY_ANY;

// in case user requests channel display: get the cannel
// in case user requests channel display: get the channel
if(new_request_mask_display & DT_DEV_PIXELPIPE_DISPLAY_CHANNEL)
{
dt_dev_pixelpipe_display_mask_t channel = data->channel[data->tab].display_channel;
Expand Down Expand Up @@ -2583,7 +2583,7 @@ void dt_iop_gui_init_blendif(GtkWidget *blendw, dt_iop_module_t *module)
gtk_notebook_set_scrollable(bd->channel_tabs, TRUE);
gtk_box_pack_start(GTK_BOX(header), GTK_WIDGET(bd->channel_tabs), TRUE, TRUE, 0);

// a little padding between the notbook with all channels and the icons for pickers.
// a little padding between the notebook with all channels and the icons for pickers.
gtk_box_pack_start(GTK_BOX(header), gtk_label_new(""),
FALSE, FALSE, DT_PIXEL_APPLY_DPI(10));

Expand Down
2 changes: 1 addition & 1 deletion src/develop/pixelpipe_cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ void dt_dev_pixelpipe_cache_checkmem(struct dt_dev_pixelpipe_t *pipe)
// alternating buffers so no cleanup
if(cache->entries == DT_PIPECACHE_MIN) return;

// We always free cachelines maked as not valid
// We always free cachelines marked as not valid
size_t freed = 0;

for(int k = DT_PIPECACHE_MIN; k < cache->entries; k++)
Expand Down
16 changes: 8 additions & 8 deletions src/dtgtk/culling.c
Original file line number Diff line number Diff line change
Expand Up @@ -1394,14 +1394,14 @@ static gboolean _thumbs_compute_positions(dt_culling_t *table)
}

// Vertical image stacking:
// Vertical stacking is only allowed if the heigth of the biggest thumbnail is more than the height
// Vertical stacking is only allowed if the height of the biggest thumbnail is more than the height
// of 2 or more thumbs combined.
// for example: we have three images and image 2 is higher than heights of image 1 and 3 combined
// [ 1 ] | 2 | | 2 |
// [ 3 ] | 2 | instead of this placement --> [ 1 ] | 2 | [ 3 ]
// | 2 | | 2 |
// in this case, images 1 and 3 would be stacked in one slot and image 2 will be placed in a new slot alone.
// if all images have similar heigths, they will not be stacked and placed in separate slots.
// if all images have similar heights, they will not be stacked and placed in separate slots.

// Note: Stacking only make sense for images in the same row as the portrait image.
// The algorithm does not check for this so unnecessary stacking can occur.
Expand Down Expand Up @@ -1457,8 +1457,8 @@ static gboolean _thumbs_compute_positions(dt_culling_t *table)
const int number_of_slots = g_list_length(slots);

// finished assigning thumbnails to slots
// we also know max slot height, so we can now scale all slots to this heigth
// and then calculate average slot heigth and width
// we also know max slot height, so we can now scale all slots to this height
// and then calculate average slot height and width
int slot_counter = 0;
float avg_slot_aspect_r = 0.0f;
int total_slot_width = 0;
Expand All @@ -1475,7 +1475,7 @@ static gboolean _thumbs_compute_positions(dt_culling_t *table)
int scaled_slot_height = 0;
int scaled_slot_width = 0;

// calculate current slot heigth for upscaling
// calculate current slot height for upscaling
for(GList *slot_thumb_iter = slot;
slot_thumb_iter;
slot_thumb_iter = g_list_next(slot_thumb_iter))
Expand Down Expand Up @@ -1631,7 +1631,7 @@ static gboolean _thumbs_compute_positions(dt_culling_t *table)
dt_thumbnail_t *thumb = (dt_thumbnail_t *)slot_thumb_iter->data;
thumb->x = thumb_x + (slot_max_thumb_width - thumb->width) / 2; // x position should be horizontally centered within the slot
thumb->y = thumb_y; // y position starts at 0
thumb_y += thumb->height + spacing; // and is increased by the heigth of the thumb + spacing of spacing for placing the next image of the slot
thumb_y += thumb->height + spacing; // and is increased by the height of the thumb + spacing of spacing for placing the next image of the slot
}
rows->data = g_list_append(rows->data, slot); // append slot to row
row_heigth = MAX(row_heigth, thumb_y - row_y);
Expand Down Expand Up @@ -1669,7 +1669,7 @@ static gboolean _thumbs_compute_positions(dt_culling_t *table)
int slot_heigth = 0;

// loop through thumbs of the slot
// to calculate slot heigth and update row width and heigth
// to calculate slot height and update row width and height
// which is used for xoffset of row and yoffset of individual thumbs
for(GList *slot_thumb_iter = slot;
slot_thumb_iter;
Expand Down Expand Up @@ -1734,7 +1734,7 @@ static gboolean _thumbs_compute_positions(dt_culling_t *table)
thumb->y = thumb->y * factor + yoff;

dt_print(DT_DEBUG_LIGHTTABLE,
"[culling_placement] thumb_id=%d, x=%d, y=%d, width=%d, heigth=%d"
"[culling_placement] thumb_id=%d, x=%d, y=%d, width=%d, height=%d"
" - table_width=%d, table_height=%d\n",
thumb->imgid, thumb->x, thumb->y, thumb->width, thumb->height,
table->view_width, table->view_height);
Expand Down
2 changes: 1 addition & 1 deletion src/dtgtk/thumbtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -1934,7 +1934,7 @@ static void _dt_collection_changed_callback(gpointer instance,
GList *actual = NULL;
if(nrow <= 0)
{
// we retrive the entry with id == newid
// we retrieve the entry with id == newid
for(GList *l = table->list; l; l = g_list_next(l))
{
dt_thumbnail_t *thumb = (dt_thumbnail_t *)l->data;
Expand Down
4 changes: 2 additions & 2 deletions src/iop/channelmixerrgb.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ void init_presets(dt_iop_module_so_t *self)

// film emulations

/* These emulations are built using spectral sensitivies provided by
* film manufacturers for tungsten light, corrected in spectral
/* These emulations are built using spectral sensitivities provided
* by film manufacturers for tungsten light, corrected in spectral
* domain for D50 illuminant, and integrated in spectral space
* against CIE 2° 1931 XYZ color matching functions in the Python lib
* Colour, with the following code :
Expand Down
2 changes: 1 addition & 1 deletion src/iop/graduatednd.c
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ int mouse_moved(dt_iop_module_t *self,
{
g->selected = 0;
const float ext = DT_PIXEL_APPLY_DPI(0.02f) / zoom_scale;
// are we near extermity ?
// are we near extremity ?
if(pzy > g->ya - ext && pzy < g->ya + ext && pzx > g->xa - ext && pzx < g->xa + ext)
{
g->selected = 1;
Expand Down
2 changes: 1 addition & 1 deletion src/iop/liquify.c
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ static void _draw_paths(dt_iop_module_t *module,
cairo_set_line_cap(cr, CAIRO_LINE_CAP_ROUND);

const gboolean showhandle = dt_iop_canvas_not_sensitive(darktable.develop) == FALSE;
// do not display any iterpolated items as slow when:
// do not display any interpolated items as slow when:
// - we are dragging (pan)
// - the button one is pressed
// - exception for DT_LIQUIFY_LAYER_STRENGTHPOINT where we want to see the
Expand Down
2 changes: 1 addition & 1 deletion src/iop/rawprepare.c
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ static gboolean _image_set_rawcrops(
else
dt_iop_set_module_trouble_message(self, NULL, NULL, NULL);

// we update p_width & height both in the image_storage for fast access withing the pipeline
// we update p_width & height both in the image_storage for fast access within the pipeline
// and the database so we can access that also via dt_image_cache_get()
dt_image_t *image = dt_image_cache_get(darktable.image_cache, imgid, 'w');
image->p_width = img->p_width = img->width - (cropvalid ? left + right : 0);
Expand Down
2 changes: 1 addition & 1 deletion src/iop/temperature.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ static void _temp2mul(dt_iop_module_t *self,
xyz.Y /= tint; // TODO: This is baaad!
/**
* TODO:
* problem here is that tint as it is is just a nasty hack modyfying Y component
* problem here is that tint as it is is just a nasty hack modifying Y component
* and therefore changing RGB coefficients in wrong way,
* because modifying only Y in that way doesn’t move XYZ point orthogonally
* to planckian locus. That means it actually changes temperature and thus it lies!
Expand Down
2 changes: 1 addition & 1 deletion src/win/scandir.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
The original implementation of scandir has been made by Richard Salz.
The original author put this code in the public domain.
It has been modified to simplify slightly and increae readability.
It has been modified to simplify slightly and increase readability.
*/

#include <sys/types.h>
Expand Down
2 changes: 1 addition & 1 deletion src/win/scandir.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
The original implementation of scandir has been made by Richard Salz.
The original author put this code in the public domain.
It has been modified to simplify slightly and increae readability.
It has been modified to simplify slightly and increase readability.
*/

#pragma once
Expand Down

0 comments on commit 02a5e6b

Please sign in to comment.