UI: Replace contractions with long-form text

Avoid using contractions for can't, aren't, doesn't, and shouldn't.
Following the writing style guide in the Human Interface Guidelines.

Pull Request: https://projects.blender.org/blender/blender/pulls/143852
This commit is contained in:
Damien Picard
2025-08-05 11:16:22 +02:00
committed by Pablo Vazquez
parent 570f44a059
commit 5998795aa6
99 changed files with 191 additions and 187 deletions

View File

@@ -76,7 +76,7 @@ def main() -> int:
# Abort if uncommitted changes.
changes = get_string(['git', 'status', '--porcelain', '--untracked-files=no'])
if len(changes) != 0:
print("BLENDER MERGE: detected uncommitted changes, can't run")
print("BLENDER MERGE: detected uncommitted changes, cannot run")
return 1
# Setup command, with commit message for merge commits.