[vlc-commits] VLSub: Use a translatable string to signal subtitle extraction error

Hugo Beauzée-Luyssen git at videolan.org
Thu Apr 5 10:26:03 CEST 2018


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Tue Apr  3 16:50:42 2018 +0200| [2bb1ed543319244494cbb03ede8fe25b963cc6c5] | committer: Hugo Beauzée-Luyssen

VLSub: Use a translatable string to signal subtitle extraction error

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2bb1ed543319244494cbb03ede8fe25b963cc6c5
---

 share/lua/extensions/VLSub.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/share/lua/extensions/VLSub.lua b/share/lua/extensions/VLSub.lua
index 793f2bc458..5ca86e11fb 100644
--- a/share/lua/extensions/VLSub.lua
+++ b/share/lua/extensions/VLSub.lua
@@ -1747,7 +1747,7 @@ function download_subtitles()
   local subtitleMrl = find_subtitle_in_archive(tmpFileName, item.SubFormat)
 
   if not subtitleMrl then
-    vlc.msg.err( "Failed to extract subtitle" )
+    vlc.msg.err( lang['mess_not_load'] )
     return false
   end
 



More information about the vlc-commits mailing list