1
0
Fork 0

- deprecated "crypted" as valid configuration directive.

This commit is contained in:
cage 2024-09-01 13:08:09 +02:00
parent 92a0dc9db4
commit ee81d45142
2 changed files with 6 additions and 4 deletions

View File

@ -41,7 +41,7 @@ main-window.foreground = white
# shown when a message was transmitted in encrypted form
crypted.mark.value = " 🔏👌"
encrypted.mark.value = " 🔏👌"
# the string to be drawn instead of actual character when input password

View File

@ -566,7 +566,7 @@
new-message
mark
vote-vertical-bar
crypted
encrypted
open-link-helper
histogram
error-dialog
@ -906,7 +906,7 @@
(defun encrypted-mark-value ()
(or (access:accesses *software-configuration*
+key-crypted+
+key-encrypted+
+key-mark+
+key-value+)
(_ "This message was encrypted")))
@ -1768,4 +1768,6 @@
(config-server-name)))
(config-gemini-proxy)
(when (access:accesses *software-configuration* :post-allowed-language)
(error (_ "\"post-allowed-language = …\" has been removed as configuration directive; use: \"default.post.language = …\", instead"))))
(error (_ "\"post-allowed-language = …\" has been removed as configuration directive; use: \"default.post.language = …\", instead")))
(when (access:accesses *software-configuration* :crypted)
(error (_ "\"crypted\" is not used anymore; use: \"encrypted\", instead"))))