Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Marked missing text for translations in JS script
  • Loading branch information
pzurakowski authored Nov 28, 2022
1 parent de6026f commit 86780c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oioioi/programs/static/common/clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ function copyCodeToClipboard() {
const button = document.getElementById("cpy_btn");
button.classList.remove("btn-outline-secondary");
button.classList.add("btn-success");
button.textContent = "Copied!";
button.textContent = gettext("Copied!");
}, function() {
alert("Unable to copy Code");
alert(gettext("Unable to copy Code"));
});
}

0 comments on commit 86780c6

Please sign in to comment.