Skip to content

Commit

Permalink
Merge pull request #710 from rgantzos/main
Browse files Browse the repository at this point in the history
  • Loading branch information
rgantzos authored Sep 16, 2023
2 parents 7c6fcb0 + 5bac2d4 commit a15e89f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions feature-locales/echo-effect/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"echo": "Echo"
}
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion features/echo-effect/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function ({ feature, console }) {

let title = document.createElement("div");
title.className = "icon-button_title_36ChS";
title.textContent = "Echo";
title.textContent = feature.msg("echo");
button.appendChild(title);

container.appendChild(button)
Expand Down
3 changes: 1 addition & 2 deletions features/message-count/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@
"type": ["Website"],
"tags": ["New", "Featured"],
"dynamic": true,
"scripts": [{ "file": "script.js", "runOn": "/users/*", "module": true }],
"translations": ["en"]
"scripts": [{ "file": "script.js", "runOn": "/users/*", "module": true }]
}
3 changes: 1 addition & 2 deletions features/statistics/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@
"type": ["Website"],
"tags": ["New", "Featured"],
"dynamic": true,
"scripts": [{ "file": "script.js", "runOn": "/mystuff*" }],
"translations": ["en"]
"scripts": [{ "file": "script.js", "runOn": "/mystuff*" }]
}

0 comments on commit a15e89f

Please sign in to comment.