Skip to content

Commit a15e89f

Browse files
authored
Merge pull request #710 from rgantzos/main
2 parents 7c6fcb0 + 5bac2d4 commit a15e89f

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"echo": "Echo"
3+
}

features/echo-effect/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function ({ feature, console }) {
2121

2222
let title = document.createElement("div");
2323
title.className = "icon-button_title_36ChS";
24-
title.textContent = "Echo";
24+
title.textContent = feature.msg("echo");
2525
button.appendChild(title);
2626

2727
container.appendChild(button)

features/message-count/data.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
"type": ["Website"],
88
"tags": ["New", "Featured"],
99
"dynamic": true,
10-
"scripts": [{ "file": "script.js", "runOn": "/users/*", "module": true }],
11-
"translations": ["en"]
10+
"scripts": [{ "file": "script.js", "runOn": "/users/*", "module": true }]
1211
}

features/statistics/data.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
"type": ["Website"],
88
"tags": ["New", "Featured"],
99
"dynamic": true,
10-
"scripts": [{ "file": "script.js", "runOn": "/mystuff*" }],
11-
"translations": ["en"]
10+
"scripts": [{ "file": "script.js", "runOn": "/mystuff*" }]
1211
}

0 commit comments

Comments
 (0)