From 9dd3f74c85df8ebdcdc40cafc4694eaf667fd6f2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 8 Mar 2024 10:26:51 +1100 Subject: [PATCH] UI: minor tweaks to full-stop in messages Use a full-stop after the quoted button name, also wrap strings in a more readable way. --- source/blender/windowmanager/intern/wm_files.cc | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_files.cc b/source/blender/windowmanager/intern/wm_files.cc index f57630d63ad..b5ef74387f9 100644 --- a/source/blender/windowmanager/intern/wm_files.cc +++ b/source/blender/windowmanager/intern/wm_files.cc @@ -2798,8 +2798,8 @@ void WM_OT_read_homefile(wmOperatorType *ot) "use_factory_startup", false, "Factory Startup", - "Load the default ('factory startup') blend file. This is independent of " - "the normal start-up file that the user can save"); + "Load the default ('factory startup') blend file. " + "This is independent of the normal start-up file that the user can save"); RNA_def_property_flag(prop, PropertyFlag(PROP_HIDDEN | PROP_SKIP_SAVE)); read_factory_reset_props(ot); @@ -2830,10 +2830,9 @@ static int wm_read_factory_settings_invoke(bContext *C, wmOperator *op, const wm C, op, title.c_str(), - unsaved ? IFACE_("To make changes to Preferences permanent, use \"Save " - "Preferences\"\nWarning: Your file is " - "unsaved! Proceeding will abandon your changes.") : - IFACE_("To make changes to Preferences permanent, use \"Save Preferences.\""), + unsaved ? IFACE_("To make changes to Preferences permanent, use \"Save Preferences\".\n" + "Warning: Your file is unsaved! Proceeding will abandon your changes.") : + IFACE_("To make changes to Preferences permanent, use \"Save Preferences\"."), IFACE_("Load"), ALERT_ICON_WARNING, false);