From a11f554fd533f2139cf6b9e592388a5385d4462b Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 11 May 2026 04:37:13 -0500 Subject: feat: make modeline status-message strings customizable The validation banner, retry-attempt message, async-failure tooltip, and the initial loading tooltip were hardcoded English literals. I added defcustoms for them so the wording can be localized or adjusted. The format-string ones keep their %d/%s directives, with the order spelled out in each docstring. I also dropped the dead :info severity from chime-validate-configuration's docstring. The function only ever emitted :ok, :warning, and :error. --- tests/test-chime-validate-configuration.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test-chime-validate-configuration.el') diff --git a/tests/test-chime-validate-configuration.el b/tests/test-chime-validate-configuration.el index c971632..680808c 100644 --- a/tests/test-chime-validate-configuration.el +++ b/tests/test-chime-validate-configuration.el @@ -49,7 +49,7 @@ (cl-some (lambda (issue) (eq (car issue) :warning)) issues)) (defun test-chime-validate-configuration--count-issues (issues severity) - "Count number of ISSUES with given SEVERITY (:error, :warning, or :info)." + "Count number of ISSUES with given SEVERITY (:error or :warning)." (length (cl-remove-if-not (lambda (i) (eq (car i) severity)) issues))) ;;; Normal Cases - Valid Configurations -- cgit v1.2.3