Skip to content

Commit

Permalink
BETA VERSION 0.67.2 (#1801)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mittelblut9 authored Nov 27, 2023
2 parents d763437 + 816f023 commit 4acef6f
Show file tree
Hide file tree
Showing 8 changed files with 94 additions and 54 deletions.
130 changes: 85 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mittelbot",
"version": "0.67.1",
"version": "0.67.2",
"description": "A Discord Bot written in Node.js",
"main": "bot/core/shard.js",
"private": true,
Expand Down Expand Up @@ -60,7 +60,7 @@
"@sentry/node": "^7.81.1",
"@sentry/profiling-node": "^1.2.6",
"@stdlib/assert-is-uri": "^0.1.1",
"@twurple/api": "^7.0.5",
"@twurple/api": "^7.0.6",
"@twurple/auth": "^7.0.0",
"axios": "^1.6.2",
"caller-id": "^0.1.0",
Expand Down Expand Up @@ -89,7 +89,7 @@
"string-mismatch": "^2.1.1",
"translatte": "^3.0.1",
"underscore": "^1.13.6",
"undici": "^5.27.2",
"undici": "^5.28.0",
"validator": "^13.11.0",
"ytdl-core": "npm:@distube/ytdl-core@^4.11.10"
},
Expand Down
2 changes: 1 addition & 1 deletion src/assets/json/translations/de_DE/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
"twitch": {
"endedStream": "%q hat den Stream beendet!",
"startedHrsAgo": "Stream gestartet vor %q Stunden - Zuletzt aktualisiert",
"endedHrsAgo": "Stream endete vor %q Stunden",
"wasLiveFor": "Der Stream war %q Stunden live",
"justWentLive": "%q ist soeben live gegangen!",
"justEnded": "%q hat gerade seinen Stream beendet!",
"fields": {
Expand Down
2 changes: 1 addition & 1 deletion src/assets/json/translations/en_US/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
"twitch": {
"endedStream": "%q has ended their stream!",
"startedHrsAgo": "Stream started %q hours ago - Last updated",
"endedHrsAgo": "Stream ended %q hours ago",
"wasLiveFor": "Stream was Live for %q hours",
"justWentLive": "%q just went live!",
"justEnded": "%q just ended their stream!",
"fields": {
Expand Down
2 changes: 1 addition & 1 deletion src/assets/json/translations/fr_FR/fr_FR.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
"twitch": {
"endedStream": "%q has ended their stream!",
"startedHrsAgo": "Stream started %q hours ago - Last updated",
"endedHrsAgo": "Stream ended %q hours ago",
"wasLiveFor": "Stream was Live for %q hours",
"justWentLive": "%q just went live!",
"justEnded": "%q just ended their stream!",
"fields": {
Expand Down
2 changes: 1 addition & 1 deletion src/assets/json/translations/hu_HU/hu_HU.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
"twitch": {
"endedStream": "%q befejezte a streamet!",
"startedHrsAgo": "Stream indult %q órával ezelőtt - Utolsó frissítés",
"endedHrsAgo": "Az adatfolyam %q órával ezelőtt ért véget",
"wasLiveFor": "Stream élő volt %q órákig",
"justWentLive": "%q épp most indult el!",
"justEnded": "%q most fejezte be a streamet!",
"fields": {
Expand Down
2 changes: 1 addition & 1 deletion src/assets/json/translations/pl_PL/pl_PL.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
"twitch": {
"endedStream": "%q zakończył swój stream!",
"startedHrsAgo": "Stream rozpoczęty %q godzin temu - Ostatnia aktualizacja",
"endedHrsAgo": "Stream zakończył się %q godzin temu",
"wasLiveFor": "Stream był na żywo przez %q godzin",
"justWentLive": "%q właśnie zostało uruchomione!",
"justEnded": "%q właśnie zakończył swój stream!",
"fields": {
Expand Down
2 changes: 1 addition & 1 deletion utils/classes/Notifications/Twitch/TwitchNotification.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ module.exports = class TwitchNotification extends TwitchNotifier {
footer: {
text: isLive
? global.t.trans(['info.notifications.twitch.startedHrsAgo', uptime])
: global.t.trans(['info.notifications.twitch.endedHrsAgo', uptime]),
: global.t.trans(['info.notifications.twitch.wasLiveFor', uptime]),
},
image: isLive ? stream.getThumbnailUrl(1920, 1080) : streamer.profilePictureUrl,
url: isLive
Expand Down

0 comments on commit 4acef6f

Please sign in to comment.