Skip to content

Commit

Permalink
Translated text
Browse files Browse the repository at this point in the history
  • Loading branch information
DabLoad committed Aug 19, 2023
1 parent 961e525 commit 80223d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ public void onSlashCommandInteraction(SlashCommandInteractionEvent event) {
final AudioTrack track = audioPlayer.getPlayingTrack();

if (track == null) {
event.getHook().sendMessage("Сейчас ничего не проигрывается").queue();
event.getHook().sendMessage("Nothing is playing now").queue();
return;
}

final AudioTrackInfo info = track.getInfo();

event.getHook().sendMessageFormat("Сейчас проигрывается: `%s` by `%s` (Link: <%s>)", info.title, info.author, info.uri).queue();
event.getHook().sendMessageFormat("Now playing: `%s` by `%s` (Link: <%s>)", info.title, info.author, info.uri).queue();
}
}
}

0 comments on commit 80223d4

Please sign in to comment.