UI: Fix a few typos

- "Acion Slot" -> "Action": typo.
- "Specifies the input node used the created zone" -> "by the created
  zone": typo.
- "No reference available {!r}, Update..." -> "update": lower case.
- "uninitialized file-list" -> "Uninitialized": sentence case.

Some issues reported by Alexandr Fatih.

Pull Request: https://projects.blender.org/blender/blender/pulls/148265
This commit is contained in:
Damien Picard
2025-10-17 16:13:30 +02:00
committed by Hans Goudey
parent 2902255424
commit 58b8ae1717
4 changed files with 7 additions and 7 deletions

View File

@@ -81,7 +81,7 @@ static void rna_FileBrowser_deselect_all(SpaceFile *sfile, ReportList *reports)
if (sfile->files == nullptr) {
/* Likely to happen in background mode.
* We could look into initializing this on demand, see: #141547. */
BKE_report(reports, RPT_ERROR, "uninitialized file-list");
BKE_report(reports, RPT_ERROR, "Uninitialized file-list");
return;
}
ED_fileselect_deselect_all(sfile);