Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/editors/space_outliner/outliner_edit.c2
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/outliner_edit.c b/source/blender/editors/space_outliner/outliner_edit.c
index 094407b7bff..46974a6e911 100644
--- a/source/blender/editors/space_outliner/outliner_edit.c
+++ b/source/blender/editors/space_outliner/outliner_edit.c
@@ -381,7 +381,7 @@ void OUTLINER_OT_lib_delete(wmOperatorType *ot)
{
ot->name = "Delete Library";
ot->idname = "OUTLINER_OT_lib_delete";
- ot->description = "Delete the library under cursorn (needs a save/reload)";
+ ot->description = "Delete the library under cursor (needs a save/reload)";
ot->invoke = outliner_lib_delete_invoke;
ot->poll = ED_operator_outliner_active;
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index f8bf6d12347..39562d4d8a0 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -4007,7 +4007,7 @@ static void rna_def_userdef_system(BlenderRNA *brna)
prop = RNA_def_property(srna, "font_path_ui_mono", PROP_STRING, PROP_FILEPATH);
RNA_def_property_string_sdna(prop, NULL, "font_path_ui_mono");
- RNA_def_property_ui_text(prop, "Monospace Font", "Path to interface monospace Font");
+ RNA_def_property_ui_text(prop, "Mono-space Font", "Path to interface mono-space Font");
RNA_def_property_update(prop, NC_WINDOW, "rna_userdef_language_update");
prop = RNA_def_property(srna, "scrollback", PROP_INT, PROP_UNSIGNED);