Scripts: Disable markup in error messages

Error messages are displayed using the following methods:

* **zenity** parses pango markup and replaces escaped characters
* **kdialog** replaces (some) escaped characters
* **gtk-dialog.py** replaces `\n`
* **printf** interprets format strings and replaces escaped characters
* **echo** just displays the text

The error messages themself contain escaped characters and paths from variables.

This PR unifies the behavior by:

* Use **printf** to format error messages and replace escaped characters
* Setting `--no-markup` for **zenity** to disable pango markup and escaped characters
* Remove `\n` replacement from **gtk-dialog.py**.
* Use plain **echo** instead of **printf**
This commit is contained in:
Unrud
2022-06-14 17:31:56 +02:00
committed by abcdefg30
parent a03e794140
commit 678f249c63
4 changed files with 10 additions and 10 deletions

View File

@@ -43,6 +43,6 @@ if __name__ == "__main__":
parser.add_argument('--text', type=str, required=False, default='')
args = parser.parse_args()
if args.type == 'question':
Question(args.title, args.text.replace('\\n', '\n'))
Question(args.title, args.text)
elif args.type == 'error':
Error(args.title, args.text.replace('\\n', '\n'))
Error(args.title, args.text)