Commit: 9a1e3e8e4839f5947a668f5028035d0e47aee464 Parent: f5ca25422881ae3703b5daa62b3676ad684e0d24 Author: Ren Tatsumoto Date: Mon, 7 Sep 2020 01:22:07 +0300 change yes and no to enabled and disabled Diffstat:
| M | subs2srs.lua | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/subs2srs.lua b/subs2srs.lua @@ -591,9 +591,9 @@ end clip_autocopy.enabled = function() if config.autoclip == true then - return 'yes' + return 'enabled' else - return 'no' + return 'disabled' end end