Fix translation string in Plug-in Installer

Translation mechanism does not support "\n".
This commit is contained in:
Steve Daulton 2019-03-21 17:49:57 +00:00
parent 8dcf725e4c
commit d2fbeaa9f5
1 changed files with 1 additions and 1 deletions

View File

@ -139,5 +139,5 @@ $control plug-in (_ "Select plug-in file") file (_ "File Browser") "~/Desktop/"
((or (not (boundp 'plug-in))(not (audacity-version-ok '(2 3 1))))
(_ "This plug-in requires Audacity 2.3.1 or later."))
((not (isfilename plug-in))
(_ "Error.\nNo file selected."))
(_ (format nil "Error.~%No file selected.")))
(t (install plug-in)))