Fix/tweak UI messages (typos etc.).

This commit is contained in:
Bastien Montagne
2024-03-04 11:17:55 +01:00
parent 7e9a36c1fa
commit afb5cb440b
4 changed files with 11 additions and 4 deletions

View File

@@ -536,6 +536,7 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = {
WARN_MSGID_NOT_CAPITALIZED_ALLOWED |= set(lng[2] for lng in LANGUAGES)
WARN_MSGID_END_POINT_ALLOWED = {
"Cannot figure out which object this bone belongs to.",
"Circle|Alt .",
"Float Neg. Exp.",
"Max Ext.",
@@ -543,6 +544,7 @@ WARN_MSGID_END_POINT_ALLOWED = {
"Not assigned to any bone collection.",
"Numpad .",
"Pad.",
"Please file a bug report.",
" RNA Path: bpy.types.",
"Temp. Diff.",
"Temperature Diff.",

View File

@@ -56,6 +56,7 @@ class SpellChecker:
"ons", # add-ons
"pong", # ping pong
"procedurals", # Used as noun
"recurse",
"resumable",
"runtimes",
"scalable",
@@ -271,7 +272,7 @@ class SpellChecker:
"unprotect",
"unreacted",
"unreferenced",
"unregister", "unregistration",
"unregister", "unregistration", "unregistering",
"unselect", "unselected", "unselectable",
"unsets",
"unshadowed",
@@ -413,6 +414,7 @@ class SpellChecker:
"anisotropic", "anisotropy",
"arcminute", "arcminutes",
"arcsecond", "arcseconds",
"autokey",
"bimanual", # OpenXR?
"bitangent",
"boid", "boids",
@@ -466,6 +468,7 @@ class SpellChecker:
"quartic",
"quaternion", "quaternions",
"quintic",
"reallocations",
"samplerate",
"sandboxed",
"sawtooth",
@@ -507,6 +510,7 @@ class SpellChecker:
"chrominance",
"clearcoat",
"codec", "codecs",
"codepoint",
"collada",
"colorspace",
"compositing",
@@ -814,7 +818,7 @@ class SpellChecker:
"tma",
"ui",
"unix",
"uuid",
"uuid", "uid",
"vbo", "vbos",
"vfx",
"vmm",

View File

@@ -2037,7 +2037,7 @@ static void rna_def_armature_collections(BlenderRNA *brna, PropertyRNA *cprop)
RNA_def_property_ui_text(
prop,
"Solo Active",
"Read-ony flag that indicates there is at least one bone collection marked as 'solo'");
"Read-only flag that indicates there is at least one bone collection marked as 'solo'");
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
/* Armature.collections.new(...) */

View File

@@ -6682,7 +6682,8 @@ static void rna_def_userdef_filepaths_extension_repo(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_remote_path", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, nullptr, "flag", USER_EXTENSION_REPO_FLAG_USE_REMOTE_PATH);
RNA_def_property_ui_text(prop, "Use Remote", "Synchonize the repository with a remote URL/path");
RNA_def_property_ui_text(
prop, "Use Remote", "Synchronize the repository with a remote URL/path");
RNA_def_property_boolean_funcs(prop, nullptr, "rna_userdef_extension_repo_use_remote_path_set");
}