From 1d1ca743e347af27c3b70159dbd8a76636ffaa01 Mon Sep 17 00:00:00 2001 From: alixti <67288109+alixti@users.noreply.github.com> Date: Sat, 18 Sep 2021 16:59:30 -0300 Subject: [PATCH] Fix translation issue --- src/script_web.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script_web.js b/src/script_web.js index a28ab2c..681de21 100644 --- a/src/script_web.js +++ b/src/script_web.js @@ -168,13 +168,13 @@ function playCurrentAnim(el) { lastIDForPlay = parseInt($('#frameID').html()); $('.disableMe').addClass('IDisableYou'); isPlaying = true; - el.attr('class', 'btn btn-danger btn-sm').html('Detener'); + el.attr('class', 'btn btn-danger btn-sm').html('Stop'); handlePlay(); } else { clearTimeout(timeoutPlay); $('.disableMe').removeClass('IDisableYou'); isPlaying = false; - el.attr('class', 'btn btn-primary btn-sm').html('Reproducir'); + el.attr('class', 'btn btn-primary btn-sm').html('Play'); $('#frameID').html(lastIDForPlay); $.each(animaciones[animID].frames[lastIDForPlay].leds, function (index, value) {