We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de6026f commit 86780c6Copy full SHA for 86780c6
oioioi/programs/static/common/clipboard.js
@@ -3,8 +3,8 @@ function copyCodeToClipboard() {
3
const button = document.getElementById("cpy_btn");
4
button.classList.remove("btn-outline-secondary");
5
button.classList.add("btn-success");
6
- button.textContent = "Copied!";
+ button.textContent = gettext("Copied!");
7
}, function() {
8
- alert("Unable to copy Code");
+ alert(gettext("Unable to copy Code"));
9
});
10
}
0 commit comments