├── .dockerignore ├── .eslintrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.MD ├── dependabot.yml └── workflows │ └── lintCompile.yml ├── .gitignore ├── .mergify.yml ├── .prettierrc.json ├── .slugignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── NotoSans-Bold.ttf ├── NotoSansKR-Bold.otf ├── TwitterColorEmoji-SVGinOT.ttf ├── Whitney-Bold.ttf ├── Whitney-Book.ttf ├── flags │ └── ib.png └── joinBackground.png ├── crowdin.yml ├── heroku.yml ├── package.json ├── src ├── commands │ ├── Admin │ │ ├── channel.ts │ │ ├── crowdinverify.ts │ │ ├── eval.ts │ │ ├── giveaway.ts │ │ ├── inactives.ts │ │ ├── members.ts │ │ ├── newlang.ts │ │ ├── restart.ts │ │ ├── review-strings.ts │ │ ├── role.ts │ │ └── stats.ts │ ├── Info │ │ ├── feedback.ts │ │ ├── levels.ts │ │ ├── ping.ts │ │ ├── profile.ts │ │ ├── projects.ts │ │ ├── rank.ts │ │ ├── tag.ts │ │ └── translate.ts │ ├── Staff │ │ ├── case.ts │ │ ├── check.ts │ │ ├── dm.ts │ │ ├── loa.ts │ │ ├── modlogs.ts │ │ ├── punishment.ts │ │ ├── say.ts │ │ └── slowmode.ts │ └── Utility │ │ ├── 8ball.ts │ │ ├── alert.ts │ │ ├── help.ts │ │ ├── hypixelstats.ts │ │ ├── hypixelunverify.ts │ │ ├── hypixelverify.ts │ │ ├── language.ts │ │ ├── languagestats.ts │ │ ├── mention.ts │ │ ├── minecraft.ts │ │ ├── poll.ts │ │ ├── prefix.ts │ │ ├── quote.ts │ │ ├── settings.ts │ │ └── verify.ts ├── config.json ├── events │ ├── crowdinverify.ts │ ├── inactives.ts │ └── stats.ts ├── index.ts ├── interactions │ ├── autocomplete.ts │ └── buttons.ts ├── lib │ ├── crowdinverify.ts │ ├── dbclient.ts │ ├── generateCommandsJson.ts │ ├── imports.ts │ ├── leveling.ts │ └── util.ts └── listeners │ ├── guildMemberAdd.ts │ ├── guildMemberRemove.ts │ ├── guildMemberUpdate.ts │ ├── guildScheduledEvent.ts │ ├── interactionCreate.ts │ ├── messageCreate.ts │ ├── messageReactionAdd.ts │ ├── process.ts │ ├── ready.ts │ └── voiceStateUpdate.ts ├── strings ├── ar │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── bg │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── cs │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── da │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── de │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── el │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── empty │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── en │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── en_PT │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── es_ES │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── es_MX │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── es_PE │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── fa │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── fi │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── fil │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── fr │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── he │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── hi │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── hr │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── hu │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── ib │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── id │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── it │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── ja │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── ko │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── lt │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── ms │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── nl │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── no │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── pl │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── pt_BR │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── pt_PT │ ├── 8ball.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── ro │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── ru │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── sr │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── reviewStrings.json │ ├── settings.json │ └── translate.json ├── sv_SE │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── th │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── tr │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── uk │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── vi │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── zh_CN │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json └── zh_TW │ ├── 8ball.json │ ├── commands.json │ ├── dm.json │ ├── feedback.json │ ├── global.json │ ├── help.json │ ├── holidays.json │ ├── hypixelstats.json │ ├── hypixelunverify.json │ ├── hypixelverify.json │ ├── language.json │ ├── languagestats.json │ ├── levels.json │ ├── mention.json │ ├── minecraft.json │ ├── ping.json │ ├── poll.json │ ├── prefix.json │ ├── profile.json │ ├── projects.json │ ├── quote.json │ ├── rank.json │ ├── settings.json │ └── translate.json ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | .idea/ 4 | dist/ 5 | .vscode/ 6 | src/listeners/debug.ts 7 | yarn-error.log 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | *.ts @ImRodry 2 | /* @ImRodry 3 | /.github/ @ImRodry 4 | /strings/en/ @ImRodry 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Hypixel Translators Community Discord 4 | url: https://discord.gg/rcT948A 5 | about: Join the server to test the bot and find bugs. 6 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: weekly 7 | open-pull-requests-limit: 10 8 | assignees: 9 | - imrodry 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | .idea/ 4 | dist/ 5 | .vscode/ 6 | src/listeners/debug.ts 7 | yarn-error.log 8 | -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- 1 | pull_request_rules: 2 | - name: Automerge translations 3 | conditions: 4 | - author=HypixelTranslators 5 | - check-success=GitGuardian Security Checks 6 | - check-success=Compile and lint 7 | actions: 8 | merge: 9 | method: squash 10 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "es5", 3 | "useTabs": true, 4 | "semi": false, 5 | "proseWrap": "never", 6 | "printWidth": 140, 7 | "arrowParens": "avoid" 8 | } 9 | -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | /.github 2 | /assets/flags 3 | .gitignore 4 | .mergify.yml 5 | .prettierrc.json 6 | LICENSE 7 | README.md 8 | crowdin.yml 9 | -------------------------------------------------------------------------------- /assets/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypixel-Translators/hypixel-translators-bot/4d7e9d37bc88a02351105a3819c8ce577123e00a/assets/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /assets/NotoSansKR-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypixel-Translators/hypixel-translators-bot/4d7e9d37bc88a02351105a3819c8ce577123e00a/assets/NotoSansKR-Bold.otf -------------------------------------------------------------------------------- /assets/TwitterColorEmoji-SVGinOT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypixel-Translators/hypixel-translators-bot/4d7e9d37bc88a02351105a3819c8ce577123e00a/assets/TwitterColorEmoji-SVGinOT.ttf -------------------------------------------------------------------------------- /assets/Whitney-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypixel-Translators/hypixel-translators-bot/4d7e9d37bc88a02351105a3819c8ce577123e00a/assets/Whitney-Bold.ttf -------------------------------------------------------------------------------- /assets/Whitney-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypixel-Translators/hypixel-translators-bot/4d7e9d37bc88a02351105a3819c8ce577123e00a/assets/Whitney-Book.ttf -------------------------------------------------------------------------------- /assets/flags/ib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypixel-Translators/hypixel-translators-bot/4d7e9d37bc88a02351105a3819c8ce577123e00a/assets/flags/ib.png -------------------------------------------------------------------------------- /assets/joinBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypixel-Translators/hypixel-translators-bot/4d7e9d37bc88a02351105a3819c8ce577123e00a/assets/joinBackground.png -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | pull_request_title: 'chore(strings): update translations' 2 | files: 3 | - source: /strings/en/*.json 4 | translation: /strings/%osx_locale%/%original_file_name% 5 | update_option: update_as_unapproved 6 | languages_mapping: 7 | osx_locale: 8 | en-UD: empty 9 | -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- 1 | build: 2 | docker: 3 | web: Dockerfile 4 | worker: Dockerfile 5 | run: 6 | worker: yarn start 7 | -------------------------------------------------------------------------------- /src/listeners/process.ts: -------------------------------------------------------------------------------- 1 | import process from "node:process" 2 | 3 | import { client } from "../index" 4 | import { mongoClient } from "../lib/dbclient" 5 | 6 | // Code sent on dev env 7 | process.on("SIGINT", async () => { 8 | client.destroy() 9 | await mongoClient.close() 10 | process.exit() 11 | }) 12 | 13 | // Code sent on production env 14 | process.on("SIGTERM", async () => { 15 | client.destroy() 16 | await mongoClient.close() 17 | process.exit() 18 | }) 19 | -------------------------------------------------------------------------------- /strings/ar/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "تلقيت رسالة من الإدارة", 3 | "incomingDisclaimer": "أية رسالة ترسلها هنا سيتم إرسالها للمشرفين." 4 | } 5 | -------------------------------------------------------------------------------- /strings/ar/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "مشاكل و تقييم", 3 | "bugT": "عرض و اضافة المشاكل", 4 | "bugD": "لعرض و عمل اقتراح او ابلاغ عن مشكلة, الرجاء اضغط على الزر أدناه!", 5 | "urgentT": "هل هو طارئ؟", 6 | "urgentD": "إذا كنت تحاول الإبلاغ عن خطأ فادح أو أن البوت قد كان منطفئا لفترة طويلة دون إشعار، يرجى منشن ستاف في روم عامة، و شرح المشكلة.", 7 | "link": "رابط" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ar/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "عيد فصح سعيد!", 3 | "halloween": "هالوين سعيد!", 4 | "christmas": "عيد ميلاد مجيد!", 5 | "newYear": "عام جديد سعيد!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ar/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "التحقق من Hypixel", 3 | "unverified": "لقد تم إلغاء التحقق بنجاح!", 4 | "notUnverified": "تعذر التحقق منك!", 5 | "whyNotUnverified": "حدث هذا لأنك لم تتحقق من نفسك بعد! للقيام بذلك، قم بتنفيذ `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ar/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "قائمة المتصدرين", 3 | "pageTitle": "اليك قائمة أعلي المتصدرين في الاكسبي!", 4 | "level": "#%%rank%% | المستوى %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% غير مصنف", 6 | "youIndicator": "أنت" 7 | } 8 | -------------------------------------------------------------------------------- /strings/ar/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "تم إرسال الرسالة بنجاح!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ar/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "الـPing خاصتي %%ping%%ms.", 5 | "onlineSince": "متصل منذ %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ar/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "حساب Crowdin", 3 | "profileSuccess": "إليك صفحتك الشخصية", 4 | "noProfile": "لم نتمكن من العثور على ملفك الشخصي في قاعدة بياناتنا!", 5 | "howStore": "إذا كنت ترغب في تخزينه، قم بتنفيذ `/help verify` لمعرفة كيف يمكنك القيام بذلك." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ar/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "مشاريع الترجمة", 3 | "allProjects": "هذه هي جميع المشاريع التي ندعمها حاليا في السيرفر!", 4 | "description": "إذا كنت بالفعل في أي من هذه المشاريع ولكن ليس لديك رتبتك حتى الآن، استخدم امر `/verify [profileURL]` للحصول عليها!", 5 | "projectInfo": "يمكنك العثور على الرابط لمشروع %%project%% [هنا](%%link%%). لمزيد من المعلومات، قم بتنفيذ %%command%%.", 6 | "alreadyJoined": "انت بالفعل انضممت لهذا المشروع!", 7 | "notJoined": "انت لم تنضم إلى هذا المشروع بعد!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ar/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "اقتباس", 3 | "msgUrl": "رابط الرسالة", 4 | "invalidArg": "مُعطى غير صالح!", 5 | "indexArg": "اقتباس ذو سجل %%arg%% ليس موجود! الرجاء اعطاء رقم بين 1 و %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ar/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "مستوى المستخدم", 3 | "yourRank": "إليك رتبتك", 4 | "userRank": "اليك رتبة %%user%%", 5 | "youNotRanked": "أنت لست مصنفًا بعد!", 6 | "userNotRanked": "هذا المستخدم لم يتم تصنيفه بعد!", 7 | "howRank": "من أجل الحصول على ترتيب، يجب عليك التحدث في المحادثات!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "أنت في المستوى %%level%% وأنت #%%rank%% على لوحة المتصدرين!", 10 | "userLevel": "%%user%% في المستوى %%level%% وهم #%%rank%% على لوحة المتصدرين!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/ar/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/bg/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Получено съобщение от персонала", 3 | "incomingDisclaimer": "Всички съобщения, които изпращате тук, ще бъдат изпратени на персонала." 4 | } 5 | -------------------------------------------------------------------------------- /strings/bg/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Проблеми и обратна връзка", 3 | "bugT": "Преглеждане и добавяне на проблеми", 4 | "bugD": "За да покажете и направите предложения или да докладвате бъг, кликнете на бутона отдолу!", 5 | "urgentT": "Важно ли е?", 6 | "urgentD": "Ако искате да докладвате много важен бъг или ако бота е бил извън линия за дълго време без забелязване, моля споменете някой от персонала в публичния канал и обястенете проблема.", 7 | "link": "Линк" 8 | } 9 | -------------------------------------------------------------------------------- /strings/bg/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Честит Великден!", 3 | "halloween": "Честит Хелоуин!", 4 | "christmas": "Весела Коледа!", 5 | "newYear": "Честита Нова Година!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/bg/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Потвърждаване", 3 | "unverified": "Вече не сте потвърдени!", 4 | "notUnverified": "Премахването на потвърждението е неуспешно!", 5 | "whyNotUnverified": "Това се случи защото не сте потвърдени все още! За да се потвърдите, използвайте командата `/hypixelverify <потребителско име>`." 6 | } 7 | -------------------------------------------------------------------------------- /strings/bg/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Класация", 3 | "pageTitle": "Ето я XP класацията!", 4 | "level": "#%%rank%% | Ниво %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Не сте класирани", 6 | "youIndicator": "ВИЕ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/bg/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Нямате ролята за коректор на този език, {role, select,translator {така че не може да спомените ролята за преводач} proofreader {така че не може да я споменявате} other {така че не може да споменете целия език}}. Свържете се с администратор на сървъра ако наистина трябва.", 3 | "success": "Съобщението бе изпратено успешно!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/bg/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Латентност", 3 | "pong": "%%pingEmote%% Понг!", 4 | "message": "Моята латентност е %%ping%%ms.", 5 | "onlineSince": "Олайн от %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/bg/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Профил", 3 | "profileSuccess": "Ето го профила Ви", 4 | "noProfile": "Не можахме да намерим профила Ви в нашата база с данни!", 5 | "howStore": "Ако искате да го запазите, използвайте командата `/help verify` за да разберете как." 6 | } 7 | -------------------------------------------------------------------------------- /strings/bg/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Проекти за Превеждане", 3 | "allProjects": "Тук са всички проекти, които поддържаме до момента в сървъра!", 4 | "description": "Ако сте вече в някои от проектите, но нямате все още ролите, моля използвайте `/verify [profileURL]` за да ги получите!", 5 | "projectInfo": "Може да намерите линка към проекта %%project%% [тук](%%link%%). За повече информация, използвайте %%command%%.", 6 | "alreadyJoined": "Вие вече сте част от този проект!", 7 | "notJoined": "Вие не участвате в този проект все още!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/bg/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Цитат", 3 | "msgUrl": "URL на съобщение", 4 | "invalidArg": "Невалиден аргумент!", 5 | "indexArg": "Цитат с индекс %%arg%% не съществува! Моля предоставете номер между 1 и %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/bg/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Вашата %%setting%% настройка бе настроена на %%value%%", 3 | "successSet": "Успешно настроихте вашата %%setting%% настройка на %%value%%", 4 | "successReset": "Успешно рестартирахте вашата %%setting%% настройка", 5 | "onlyPf": "Тази настройка е достъпна само за Hypixel Proofreader-и!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/cs/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Přišla ti zpráva od adminů", 3 | "incomingDisclaimer": "Jakákoli zpráva, kterou sem pošleš, bude odeslána adminům." 4 | } 5 | -------------------------------------------------------------------------------- /strings/cs/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Prohlížení a přidávání chyb", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Je to naléhavé?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Odkaz" 8 | } 9 | -------------------------------------------------------------------------------- /strings/cs/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Veselé Velikonoce!", 3 | "halloween": "Šťastný Halloween!", 4 | "christmas": "Veselé Vánoce!", 5 | "newYear": "Šťastný nový rok!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/cs/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel ověření", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/cs/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP žebříček", 3 | "pageTitle": "Tady je XP žebříček!", 4 | "level": "#%%rank%% | Úroveň %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Nezařazený", 6 | "youIndicator": "TY" 7 | } 8 | -------------------------------------------------------------------------------- /strings/cs/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/cs/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Můj ping je %%ping%% ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/cs/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin profil", 3 | "profileSuccess": "Zde je tvůj profil", 4 | "noProfile": "Tvůj profil jsme nenašli v naší databázi!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/cs/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "Pokud již na některém z těchto projektů jsi, ale ještě nemáš své role, napiš `/verify [profileURL]` a získej je!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "Už ses připojil k tomuto projektu!", 7 | "notJoined": "K tomuto projektu ses ještě nepřidal!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/cs/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Citát", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Neplatný argument!", 5 | "indexArg": "Citát s číslem %%arg%% neexistuje! Prosím zadej číslo mezi 1 a %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/cs/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/da/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Du modtog en besked fra personalet", 3 | "incomingDisclaimer": "Alle beskeder, du sender her, vil blive sendt til personalet." 4 | } 5 | -------------------------------------------------------------------------------- /strings/da/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problemer og feedback", 3 | "bugT": "Visning, samt tilføjelse af problemer", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Er det presserende?", 6 | "urgentD": "Hvis du prøver at rapporterer en fatal fejl eller har botten været nede i lang tid uden en varsel, så nævn venligst %%developer%% i en offentlig kanal, hvor du forklarer problemet.", 7 | "link": "Sammenkobl" 8 | } 9 | -------------------------------------------------------------------------------- /strings/da/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "God påske!", 3 | "halloween": "Glædelig Halloween!", 4 | "christmas": "Glædelig jul!", 5 | "newYear": "Godt nytår!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/da/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verifikation", 3 | "unverified": "Du blev uverificeret med succes!", 4 | "notUnverified": "Kunne ikke uverificere dig!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/da/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Her er XP leaderboardet!", 4 | "level": "#%%rank%% | Niveau %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/da/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/da/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Min ping er %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/da/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin-profil", 3 | "profileSuccess": "Her er din profil", 4 | "noProfile": "Vi kunne ikke finde din profil i vores database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/da/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Oversættelsesprojekter", 3 | "allProjects": "Her er alle de projekter, som vi i øjeblikket understøtter på serveren!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "Du kan finde linket til %%project%%-projektet [her](%%link%%). Skriv %%command%% for mere information.", 6 | "alreadyJoined": "Du deltager allerede i dette projekt!", 7 | "notJoined": "Du har endnu ikke tilmeldt dig dette projekt!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/da/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Citat", 3 | "msgUrl": "Besked Link", 4 | "invalidArg": "Ugyldigt argument!", 5 | "indexArg": "Et citat med indekset %%arg%% findes ikke! Angiv venligst et tal mellem 1 og %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/da/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Bruger Level", 3 | "yourRank": "Her er din rang", 4 | "userRank": "Her er %%user%%'s rang", 5 | "youNotRanked": "Du er ikke rangeret endnu!", 6 | "userNotRanked": "Denne bruger er ikke rangeret endnu!", 7 | "howRank": "For at blive rangeret skal du tale i chatten!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "Du er på niveau %%level%% og du er #%%rank%% på leaderboardet!", 10 | "userLevel": "%%user%% er på niveau %%level%% og de er #%%rank%% på leaderboarded!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/da/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/de/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Nachricht von einem Teammitglied erhalten", 3 | "incomingDisclaimer": "Jede Nachricht, die du hier schreibst, wird an ein Teammitglied gesendet." 4 | } 5 | -------------------------------------------------------------------------------- /strings/de/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Probleme und Feedback", 3 | "bugT": "Anzeigen und Hinzufügen von Problemen", 4 | "bugD": "Um Vorschläge oder Fehlerberichte anzuzeigen und zu machen, klicken Sie auf den Button unten!", 5 | "urgentT": "Ist es dringend?", 6 | "urgentD": "Wenn du versuchst, einen schwerwiegenden Fehler zu melden oder der Bot für eine lange Zeit ohne Benachrichtigung ausgefallen ist, erwähne bitte ein Teammitglied in einem öffentlichen Channel und erkläre das Problem.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/de/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Frohe Ostern!", 3 | "halloween": "Fröhliches Halloween!", 4 | "christmas": "Frohe Weihnachten!", 5 | "newYear": "Frohes neues Jahr!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/de/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel-Verifizierung", 3 | "unverified": "Du wurdest erfolgreich entverifiziert!", 4 | "notUnverified": "Konnte dich nicht entverifizieren!", 5 | "whyNotUnverified": "Dies geschah, weil du dich noch nicht selbst verifiziert hast! Führe `/hypixelverify ` aus." 6 | } 7 | -------------------------------------------------------------------------------- /strings/de/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP-Rangliste", 3 | "pageTitle": "Hier ist die XP-Rangliste!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% ohne Rang", 6 | "youIndicator": "DU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/de/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Du besitzt die Korrekturleser-Rolle für diese Sprache nicht, {role, select, translator {also kannst du die Übersetzer-Rolle nicht erwähnen} proofreader {also kannst du sie nicht erwähnen} other {also kannst du die gesamte Sprache nicht erwähnen}}. Wende dich an einen Serveradministrator, wenn du es wirklich notwendig ist.", 3 | "success": "Nachricht erfolgreich gesendet!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/de/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Mein Ping ist %%ping%%ms.", 5 | "onlineSince": "Online seit %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/de/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin-Profil", 3 | "profileSuccess": "Hier ist dein Profil", 4 | "noProfile": "Wir konnten dein Profil nicht in unserer Datenbank finden!", 5 | "howStore": "Wenn du es speichern möchtest, führe `/help verify` aus, um zu wissen, wie du es tun kannst." 6 | } 7 | -------------------------------------------------------------------------------- /strings/de/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Übersetzungsprojekte", 3 | "allProjects": "Hier sind alle Projekte, die wir derzeit auf dem Server unterstützen!", 4 | "description": "Wenn du bereits in diesen Projekten bist aber noch keine Rollen hast, führe `/verify [Profil-URL]` aus, um sie zu bekommen!", 5 | "projectInfo": "Du kannst den Link zum %%project%%-Projekt [hier](%%link%%) finden. Für weitere Informationen führe %%command%% aus.", 6 | "alreadyJoined": "Du bist diesem Projekt bereits beigetreten!", 7 | "notJoined": "Du bist dem Projekt noch nicht beigetreten!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/de/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Zitieren", 3 | "msgUrl": "Nachrichtenlink", 4 | "invalidArg": "Ungültiges Argument!", 5 | "indexArg": "Ein Zitat mit Index %%arg%% existiert nicht! Bitte gebe eine Zahl zwischen 1 und %%max%% an." 6 | } 7 | -------------------------------------------------------------------------------- /strings/de/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Zeichenkettenüberprüfung", 3 | "message": "Nachricht", 4 | "clickHere": "Hier klicken", 5 | "requestDetails": "%%user%% hat weitere Details zu deinem Vorschlag angefordert", 6 | "requestedBy": "Angefordert von %%user%%", 7 | "rejected": "%%user%% hat deinen Vorschlag abgelehnt", 8 | "rejectedBy": "Abgelehnt von %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/de/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Deine Einstellung: \"%%setting%%\" ist auf %%value%% gesetzt", 3 | "successSet": "Deine Einstellung: \"%%setting%%\" wurde erfolgreich auf %%value%% gesetzt", 4 | "successReset": "Deine Einstellung: \"%%setting%%\" wurde erfolgreich zurückgesetzt", 5 | "onlyPf": "Diese Einstellung ist nur für Hypixel-Korrekturleser verfügbar!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/el/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Λήφθηκε μήνυμα από το προσωπικό", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/el/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Προβλήματα και σχόλια", 3 | "bugT": "Προβολή και προσθήκη ζητημάτων", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Είναι επείγον;", 6 | "urgentD": "Εάν προσπαθείτε να αναφέρετε ένα σοβαρό σφάλμα ή το bot έχει παραμείνει εκτός λειτουργίας για πολύ καιρό χωρίς ειδοποίηση, κάντε αναφορά σε κάποιο μέλος του προσωπικού σε ένα δημόσιο κανάλι, εξηγώντας το ζήτημα.", 7 | "link": "Σύνδεσμος" 8 | } 9 | -------------------------------------------------------------------------------- /strings/el/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Καλό Πάσχα!", 3 | "halloween": "Χαρούμενο Halloween!", 4 | "christmas": "Καλά Χριστούγεννα!", 5 | "newYear": "Ευτυχισμένο το νέο έτος!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/el/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/el/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/el/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/el/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Πινγκ", 3 | "pong": "%%pingEmote%% Πονγκ!", 4 | "message": "Το ping μου είναι %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/el/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/el/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/el/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Παράθεμα", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Μη έγκυρο επιχείρημα!", 5 | "indexArg": "Ένα παράθεμα με ένδειξη %%arg%% δεν υπάρχει! Παρακαλώ εισήγαγε έναν αριθμό μεταξύ του 1 και %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/el/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "User level", 3 | "yourRank": "Here's your rank", 4 | "userRank": "Here's %%user%%'s rank", 5 | "youNotRanked": "You're not ranked yet!", 6 | "userNotRanked": "That user is not ranked yet!", 7 | "howRank": "In order to be ranked you must talk in the chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "You're at level %%level%% and you're #%%rank%% on the leaderboard!", 10 | "userLevel": "%%user%% is at level %%level%% and they're #%%rank%% on the leaderboard!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/el/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Αξιολόγηση String", 3 | "message": "Μήνυμα", 4 | "clickHere": "Κάντε κλικ εδώ", 5 | "requestDetails": "Ο/Η %%user%% ζήτησε περισσότερες λεπτομέρειες σχετικά με την πρότασή σας", 6 | "requestedBy": "Ζητήθηκε από τον/την %%user%%", 7 | "rejected": "Ο/Η %%user%% απέρριψε την πρότασή σας", 8 | "rejectedBy": "Απορρίφθηκε από τον/την %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/el/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/empty/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "crwdns848:0crwdne848:0", 3 | "incomingDisclaimer": "crwdns850:0crwdne850:0" 4 | } 5 | -------------------------------------------------------------------------------- /strings/empty/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1368:0crwdne1368:0", 3 | "bugT": "crwdns1370:0crwdne1370:0", 4 | "bugD": "crwdns1372:0crwdne1372:0", 5 | "urgentT": "crwdns1374:0crwdne1374:0", 6 | "urgentD": "crwdns1376:0crwdne1376:0", 7 | "link": "crwdns1378:0crwdne1378:0" 8 | } 9 | -------------------------------------------------------------------------------- /strings/empty/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "crwdns748:0crwdne748:0", 3 | "halloween": "crwdns750:0crwdne750:0", 4 | "christmas": "crwdns752:0crwdne752:0", 5 | "newYear": "crwdns754:0crwdne754:0" 6 | } 7 | -------------------------------------------------------------------------------- /strings/empty/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1380:0crwdne1380:0", 3 | "unverified": "crwdns1382:0crwdne1382:0", 4 | "notUnverified": "crwdns1384:0crwdne1384:0", 5 | "whyNotUnverified": "crwdns1386:0crwdne1386:0" 6 | } 7 | -------------------------------------------------------------------------------- /strings/empty/hypixelverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1158:0crwdne1158:0", 3 | "success": "crwdns1160:0%%player%%crwdne1160:0", 4 | "role": "crwdns1162:0%%role%%crwdne1162:0", 5 | "alreadyVerified": "crwdns1166:0crwdne1166:0", 6 | "nameChangeDisclaimer": "crwdns1168:0crwdne1168:0", 7 | "error": "crwdns1170:0crwdne1170:0", 8 | "tutorial": "crwdns1172:0%%tag%%crwdne1172:0" 9 | } 10 | -------------------------------------------------------------------------------- /strings/empty/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1266:0crwdne1266:0", 3 | "pageTitle": "crwdns1268:0crwdne1268:0", 4 | "level": "crwdns1272:0%%rank%%crwdnd1272:0%%level%%crwdnd1272:0%%xp%%crwdne1272:0", 5 | "unranked": "crwdns1276:0%%rank%%crwdne1276:0", 6 | "youIndicator": "crwdns1410:0crwdne1410:0" 7 | } 8 | -------------------------------------------------------------------------------- /strings/empty/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "crwdns392:0role={role}crwdne392:0", 3 | "success": "crwdns2354:0crwdne2354:0" 4 | } 5 | -------------------------------------------------------------------------------- /strings/empty/minecraft.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1412:0crwdne1412:0", 3 | "history": { 4 | "firstName": "crwdns1416:0crwdne1416:0", 5 | "nameHistoryFor": "crwdns1418:0%%username%%crwdne1418:0", 6 | "youChangedName": "crwdns1422:0number={number}crwdne1422:0", 7 | "userChangedName": "crwdns1420:0number={number}crwdne1420:0" 8 | }, 9 | "skin": { 10 | "yourSkin": "crwdns1432:0crwdne1432:0", 11 | "userSkin": "crwdns1434:0%%user%%crwdne1434:0", 12 | "isLinked": "crwdns1436:0%%user%%crwdne1436:0" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /strings/empty/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns660:0crwdne660:0", 3 | "pong": "crwdns662:0%%pingEmote%%crwdne662:0", 4 | "message": "crwdns664:0%%ping%%crwdne664:0", 5 | "onlineSince": "crwdns1465:0%%timestamp%%crwdnd1465:0%%timestampRelative%%crwdne1465:0" 6 | } 7 | -------------------------------------------------------------------------------- /strings/empty/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1250:0crwdne1250:0", 3 | "profileSuccess": "crwdns1252:0crwdne1252:0", 4 | "noProfile": "crwdns1254:0crwdne1254:0", 5 | "howStore": "crwdns1256:0crwdne1256:0" 6 | } 7 | -------------------------------------------------------------------------------- /strings/empty/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns876:0crwdne876:0", 3 | "allProjects": "crwdns878:0crwdne878:0", 4 | "description": "crwdns880:0[profileURL]crwdne880:0", 5 | "projectInfo": "crwdns900:0%%project%%crwdnd900:0[here]crwdnd900:0%%link%%crwdnd900:0%%command%%crwdne900:0", 6 | "alreadyJoined": "crwdns890:0crwdne890:0", 7 | "notJoined": "crwdns892:0crwdne892:0" 8 | } 9 | -------------------------------------------------------------------------------- /strings/empty/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns670:0crwdne670:0", 3 | "msgUrl": "crwdns1314:0crwdne1314:0", 4 | "invalidArg": "crwdns672:0crwdne672:0", 5 | "indexArg": "crwdns674:0%%arg%%crwdnd674:0%%max%%crwdne674:0" 6 | } 7 | -------------------------------------------------------------------------------- /strings/empty/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1280:0crwdne1280:0", 3 | "yourRank": "crwdns1282:0crwdne1282:0", 4 | "userRank": "crwdns1284:0%%user%%crwdne1284:0", 5 | "youNotRanked": "crwdns1286:0crwdne1286:0", 6 | "userNotRanked": "crwdns1288:0crwdne1288:0", 7 | "howRank": "crwdns1290:0crwdne1290:0", 8 | "textProgress": "crwdns1292:0messages={messages}crwdne1292:0", 9 | "youLevel": "crwdns1296:0%%level%%crwdnd1296:0%%rank%%crwdne1296:0", 10 | "userLevel": "crwdns1298:0%%user%%crwdnd1298:0%%level%%crwdnd1298:0%%rank%%crwdne1298:0" 11 | } 12 | -------------------------------------------------------------------------------- /strings/empty/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "crwdns1354:0crwdne1354:0", 3 | "message": "crwdns1356:0crwdne1356:0", 4 | "clickHere": "crwdns1358:0crwdne1358:0", 5 | "requestDetails": "crwdns1360:0%%user%%crwdne1360:0", 6 | "requestedBy": "crwdns1362:0%%user%%crwdne1362:0", 7 | "rejected": "crwdns1364:0%%user%%crwdne1364:0", 8 | "rejectedBy": "crwdns1366:0%%user%%crwdne1366:0" 9 | } 10 | -------------------------------------------------------------------------------- /strings/empty/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "crwdns2880:0%%setting%%crwdnd2880:0%%value%%crwdne2880:0", 3 | "successSet": "crwdns2882:0%%setting%%crwdnd2882:0%%value%%crwdne2882:0", 4 | "successReset": "crwdns2884:0%%setting%%crwdne2884:0", 5 | "onlyPf": "crwdns2886:0crwdne2886:0" 6 | } 7 | -------------------------------------------------------------------------------- /strings/en/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/en/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/en/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Happy Easter!", 3 | "halloween": "Happy Halloween!", 4 | "christmas": "Merry Christmas!", 5 | "newYear": "Happy New Year!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/en/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/en/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/en/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/en/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/en/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/en/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/en/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/en/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "User level", 3 | "yourRank": "Here's your rank", 4 | "userRank": "Here's %%user%%'s rank", 5 | "youNotRanked": "You're not ranked yet!", 6 | "userNotRanked": "That user is not ranked yet!", 7 | "howRank": "In order to be ranked you must talk in the chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "You're at level %%level%% and you're #%%rank%% on the leaderboard!", 10 | "userLevel": "%%user%% is at level %%level%% and they're #%%rank%% on the leaderboard!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/en/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "String review", 3 | "message": "Message", 4 | "clickHere": "Click here", 5 | "requestDetails": "%%user%% requested more details on your suggestion", 6 | "requestedBy": "Requested by %%user%%", 7 | "rejected": "%%user%% rejected your suggestion", 8 | "rejectedBy": "Rejected by %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/en/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/en_PT/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages ye send 'ere will be sent t' staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/en_PT/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems an' feedback", 3 | "bugT": "Viewin' an' addin' issues", 4 | "bugD": "T' show an' make suggestions or bug reports, click on th' button below!", 5 | "urgentT": "Might it be urgent?", 6 | "urgentD": "If ye be tryin' t' report a fatal bug or th' bot be down fer a long time wit'out a notice, please mention a staff member in a public channel, explainin' th' issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/en_PT/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "Ye be successfully unverified!", 4 | "notUnverified": "Could nah unverify ye!", 5 | "whyNotUnverified": "'Tis happened 'cause ye have nah verified yerself yet! In order t' do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/en_PT/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here be th' XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YE" 7 | } 8 | -------------------------------------------------------------------------------- /strings/en_PT/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Ye do nah have that lingo's proofreader role, {role, select, translator {so ye can nah mention its translator role} proofreader {so ye can nah mention it} other {so ye can nah mention th' entire lingo}}. Contact a server administrator if ye really need t'.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/en_PT/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Me ping be %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/en_PT/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here be yer profile", 4 | "noProfile": "We could nah find yer profile in our database!", 5 | "howStore": "If ye'd like t' store it, execute `/help verify` t' know how ye can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/en_PT/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here be all th’ projects we currently support on th’ server!", 4 | "description": "If ye're already on some o' these projects but do nah have yer roles yet, execute `/verify [profileURL]` t' get 'em!", 5 | "projectInfo": "Ye can find th' link t' th' %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "Ye 'ave already joined 'tis project!", 7 | "notJoined": "Ye 'ave nah joined 'tis project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/en_PT/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote wit' index %%arg%% does nah exist! Please provide a number between 1 an' %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/en_PT/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Review o' strings", 3 | "message": "Yer Message", 4 | "clickHere": "Click 'ere", 5 | "requestDetails": "%%user%% be requestin' more details on yer suggestion", 6 | "requestedBy": "'Tis be requested by %%user%%", 7 | "rejected": "%%user%% be rejectin' yer suggestion", 8 | "rejectedBy": "'Tis be rejected by %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/en_PT/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Yer %%setting%% settin' be set t' %%value%%", 3 | "successSet": "Successfully set yer %%setting%% settin' t' %%value%%", 4 | "successReset": "Successfully reset yer %%setting%% settin'", 5 | "onlyPf": "'Tis here settin' be only available fer Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_ES/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Mensaje recibido del staff", 3 | "incomingDisclaimer": "Cualquier mensaje que envías aquí se enviará al staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/es_ES/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problemas y comentarios", 3 | "bugT": "Ver y añadir bugs", 4 | "bugD": "¡Para mostrar y hacer sugerencias o reportes de bugs, haz clic en el botón de abajo!", 5 | "urgentT": "¿Es urgente?", 6 | "urgentD": "Si estas reportado un bug crucial o el bot está desconectado por mucho tiempo sin que nos damos cuenta, por favor, menciona a un miembro del staff en un canal publico, explicando la situación.", 7 | "link": "Enlace" 8 | } 9 | -------------------------------------------------------------------------------- /strings/es_ES/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "¡Felices Pascuas!", 3 | "halloween": "¡Feliz Halloween!", 4 | "christmas": "¡Feliz Navidad!", 5 | "newYear": "¡Feliz Año Nuevo!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_ES/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Verificación de Hypixel", 3 | "unverified": "¡Has desverificado con éxito!", 4 | "notUnverified": "¡No se pudo desverificarte!", 5 | "whyNotUnverified": "¡Esto sucedió porque aún no te has verificado! Para hacerlo, usa `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_ES/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Podio de XP", 3 | "pageTitle": "¡Aquí está el podio de XP!", 4 | "level": "#%%rank%% | Nivel %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Sin clasificar", 6 | "youIndicator": "TÚ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/es_ES/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "¡Mensaje enviado con éxito!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/es_ES/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% ¡Pong!", 4 | "message": "Mi ping es %%ping%%ms.", 5 | "onlineSince": "En línea desde %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_ES/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Perfil de Crowdin", 3 | "profileSuccess": "Aquí está tu perfil", 4 | "noProfile": "¡No se pudo encontrar tu perfil en nuestra base de datos!", 5 | "howStore": "Si quieres almacenarlo, usa `/help verify` para saber como hacerlo." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_ES/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Proyectos de Traducción", 3 | "allProjects": "¡Aquí están todos los proyectos que actualmente están disponibles en el servidor!", 4 | "description": "¡Si ya estás en algunos de estos proyectos pero aún no tienes tus roles, usa `/verify [enlace del perfil]` para obtenerlos!", 5 | "projectInfo": "Puedes encontrar el enlace al proyecto de %%project%% [aquí](%%link%%). Para mas información, usa %%command%%.", 6 | "alreadyJoined": "¡Ya te has unido a este proyecto!", 7 | "notJoined": "¡Todavía no te has unido a este proyecto!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/es_ES/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Cita", 3 | "msgUrl": "URL del Mensaje", 4 | "invalidArg": "¡Argumento no válido!", 5 | "indexArg": "¡Una cita con el número %%arg%% no existe! Por favor, introduzca un número entre 1 y %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_ES/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Revisión de strings", 3 | "message": "Mensaje", 4 | "clickHere": "Haz clic aquí", 5 | "requestDetails": "%%user%% solicitó más detalles sobre su sugerencia", 6 | "requestedBy": "Solicitado por %%user%%", 7 | "rejected": "%%user%% rechazó tu sugerencia", 8 | "rejectedBy": "Rechazado por %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/es_ES/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_MX/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Mensaje recibido del staff", 3 | "incomingDisclaimer": "Cualquier mensaje que envíe aquí se enviará al staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/es_MX/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problemas y comentarios", 3 | "bugT": "Ver y añadir errores", 4 | "bugD": "¡Para mostrar y hacer sugerencias o informes de errores, haga clic en el botón de abajo!", 5 | "urgentT": "¿Es urgente?", 6 | "urgentD": "Si está tratando de reportar un error fatal o el bot ha estado inactivo durante mucho tiempo sin previo aviso, por favor, mencione a un miembro del staff en un canal público, explicando el problema.", 7 | "link": "Enlace" 8 | } 9 | -------------------------------------------------------------------------------- /strings/es_MX/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Verificación de Hypixel", 3 | "unverified": "¡Has anulado la verificación con éxito!", 4 | "notUnverified": "¡No se pudo anular la verificación!", 5 | "whyNotUnverified": "¡Esto sucedió porque aún no te has verificado! Para hacerlo, ejecute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_MX/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Tabla de clasificación de XP", 3 | "pageTitle": "¡Aquí está la tabla de clasificación de XP!", 4 | "level": "#%%rank%% | Nivel %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Sin clasificar", 6 | "youIndicator": "USTED" 7 | } 8 | -------------------------------------------------------------------------------- /strings/es_MX/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "No tiene el rol de corrector de pruebas de ese idioma, {role, select,translator {por lo que no puede mencionar su rol de traductor} proofreader {por lo que no puedes mencionarlo} other {por lo que no puede mencionar el idioma completo}}. Póngase en contacto con un administrador del servidor si realmente lo necesita.", 3 | "success": "¡Mensaje enviado con éxito!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/es_MX/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Latencia", 3 | "pong": "%%pingEmote%% ¡Pong!", 4 | "message": "Mi ping es de %%ping%%ms.", 5 | "onlineSince": "En línea desde el %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_MX/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Perfil de Crowdin", 3 | "profileSuccess": "Aquí está su perfil", 4 | "noProfile": "¡No pudimos encontrar su perfil en nuestra base de datos!", 5 | "howStore": "Si desea almacenarlo, ejecute `/help verify` para saber cómo puede hacerlo." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_MX/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Proyectos de Traducción", 3 | "allProjects": "¡Aquí están todos los proyectos que apoyamos actualmente en el servidor!", 4 | "description": "¡Si ya está en algunos de estos proyectos pero aún no tiene sus roles, ejecute `/verify [URL del perfil]` para obtenerlos!", 5 | "projectInfo": "Puede encontrar el enlace al proyecto de %%project%% [aquí](%%link%%). Para obtener más información, ejecute %%command%%.", 6 | "alreadyJoined": "¡Ya te has unido a este proyecto!", 7 | "notJoined": "¡Aún no te has unido a este proyecto!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/es_MX/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Cita", 3 | "msgUrl": "URL del Mensaje", 4 | "invalidArg": "¡Argumento inválido!", 5 | "indexArg": "¡No existe una cita con el numero %%arg%%! Por favor, introduzca un número entre 1 y %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_MX/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Su configuración de %%setting%% está establecida en %%value%%", 3 | "successSet": "Se estableció correctamente su configuración de %%setting%% en %%value%%", 4 | "successReset": "Se restableció correctamente su configuración de %%setting%%", 5 | "onlyPf": "¡Esta configuración solo está disponible para los Correctores de Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_PE/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Mensaje recibido del staff", 3 | "incomingDisclaimer": "Cualquier mensaje que envías aquí se enviará al staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/es_PE/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Reportar un bug", 3 | "bugT": "Ver y añadir bugs", 4 | "bugD": "¡Para mostrar y hacer sugerencias o reportes de bugs, haz clic en el botón de abajo!", 5 | "urgentT": "¿Es urgente?", 6 | "urgentD": "Si estas reportado un bug crucial o el bot está desconectado por largo tiempo sin que nos damos cuenta, por favor, menciona a un miembro del staff en un canal publico, explicando la situación.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/es_PE/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Verificación de Hypixel", 3 | "unverified": "¡Has desverificado con éxito!", 4 | "notUnverified": "¡No se pudo desverificarte!", 5 | "whyNotUnverified": "¡Esto sucedió porque aún no te has verificado! Para hacerlo, usa `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_PE/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Podio de XP", 3 | "pageTitle": "¡Aquí está el podio de XP!", 4 | "level": "#%%rank%% | Nivel %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Sin clasificar", 6 | "youIndicator": "TÚ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/es_PE/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "¡Mensaje enviado con éxito!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/es_PE/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% ¡Pong!", 4 | "message": "Mi ping es %%ping%%ms.", 5 | "onlineSince": "En línea desde %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_PE/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Perfil de Crowdin", 3 | "profileSuccess": "Aquí está tu perfil", 4 | "noProfile": "¡No pudimos encontrar tu perfil en nuestra base de datos!", 5 | "howStore": "Si quieres almacenarlo, usa `/help verify` para saber como hacerlo." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_PE/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Proyectos de Traducción", 3 | "allProjects": "¡Aquí están todos los proyectos que actualmente están disponibles en el servidor!", 4 | "description": "¡Si ya estás en algunos de estos proyectos pero aún no tienes tus roles, usa `/verify [enlace del perfil]` para obtenerlos!", 5 | "projectInfo": "Puedes encontrar el link al proyecto de %%project%% [aquí](%%link%%). Para mas información, usa %%command%%.", 6 | "alreadyJoined": "¡Ya te has unido a este proyecto!", 7 | "notJoined": "¡Todavía no te has unido a este proyecto!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/es_PE/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Cita", 3 | "msgUrl": "URL del Mensaje", 4 | "invalidArg": "¡Argumento inválido!", 5 | "indexArg": "¡Una cita con el número %%arg%% no existe! Por favor, da un número entre 1 y %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/es_PE/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fa/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "پیامی از طرف استف دریافت شد", 3 | "incomingDisclaimer": "هر پیامی اینجا بفرستید، به استف ارسال خواهد شد." 4 | } 5 | -------------------------------------------------------------------------------- /strings/fa/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "مشکلات و بازخورد", 3 | "bugT": "دیدن و اضافه کردن اشکالات", 4 | "bugD": "برای نمایش و ساختن پیشنهادات یا گزارش باگ، روی دکمۀ زیر کلیک کنید!", 5 | "urgentT": "آیا ضروری است؟", 6 | "urgentD": "اگر می‌خواهید یک باگ مخرب یا آفلاین بودن ربات برای مدتی طولانی را گزارش کنید، لطفاً یک استف را در چنلی عمومی منشن کنید و مشکل را توضیح دهید.", 7 | "link": "لینک" 8 | } 9 | -------------------------------------------------------------------------------- /strings/fa/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "عید پاک (ایستر) مبارک!", 3 | "halloween": "هالووین مبارک!", 4 | "christmas": "کریسمس مبارک!", 5 | "newYear": "سال نوی میلادی مبارک!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fa/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "احراز هویت هایپیکسل", 3 | "unverified": "شما با موفقیت عدم احراز هویت کردید!", 4 | "notUnverified": "نمی‌توان شما را عدم احراز هویت کرد!", 5 | "whyNotUnverified": "این اتفاق افتاد چون هنوز خودتان را احراز هویت نکرده‌اید. برای اینکار کامند ``." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fi/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP-pistetaulu", 3 | "pageTitle": "Tässä on XP-pistetaulu!", 4 | "level": "#%%rank%% | Taso %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Ei-tilastoitu", 6 | "youIndicator": "SINÄ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/fi/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Sinulla ei ole tuon kielen oikolukijan roolia, {role, select, translator {joten et voi mainita sen kääntäjien roolia} proofreader {joten et voi mainita sitä} other {joten et voi mainita koko kielen rooleja}}. Ota yhteyttä palvelimen ylläpitäjään, mikäli sinun on pakko.", 3 | "success": "Viesti on lähetetty onnistuneesti!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/fi/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Viive", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Viiveeni on %%ping%%ms.", 5 | "onlineSince": "Paikalla %%timestamp%% alkaen (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fi/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin-profiili", 3 | "profileSuccess": "Tässä profiilisi", 4 | "noProfile": "Emme löytäneet profiiliasi tietokannastamme!", 5 | "howStore": "Jos haluaisit tallentaa sen, käytä komentoa `/help verify` saadaksesi tietää, kuinka voit tehdä sen." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fi/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Käännösprojektit", 3 | "allProjects": "Tässä ovat kaikki projektit, joita tällä hetkellä tuemme palvelimellamme!", 4 | "description": "Jos olet jo mukana jossain näistä projekteista, mutta sinulla ei ole vielä rooleja, käytä komentoa `/verify [profiilin URL]` saadaksesi ne!", 5 | "projectInfo": "Löyät linkin projektiin %%project%% [täältä](%%link%%). Saadaksesi lisätietoa käytä komentoa %%command%%.", 6 | "alreadyJoined": "Olet jo liittynyt tähän projektiin!", 7 | "notJoined": "Et ole vielä liittynyt tähän projektiin!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/fi/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Lainaus", 3 | "msgUrl": "Viestin osoite", 4 | "invalidArg": "Virheellinen argumentti!", 5 | "indexArg": "Lainausta numerolla %%arg%% ei ole olemassa! Ole hyvä ja syötä numero välillä 1-%%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fi/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Asetuksesi %%setting%% on asetettu arvoon %%value%%", 3 | "successSet": "Asetuksesi %%setting%% asetettiin onnistuneesti arvoon %%value%%", 4 | "successReset": "Asetuksesi %%setting%% nollattiin onnistuneesti", 5 | "onlyPf": "Tämä asetus on saatavilla vain Hypixelin oikolukijoille!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fil/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/fil/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/fil/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Happy Easter!", 3 | "halloween": "Happy Halloween!", 4 | "christmas": "Merry Christmas!", 5 | "newYear": "Happy New Year!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fil/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fil/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/fil/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/fil/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fil/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fil/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/fil/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fil/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "User level", 3 | "yourRank": "Here's your rank", 4 | "userRank": "Here's %%user%%'s rank", 5 | "youNotRanked": "You're not ranked yet!", 6 | "userNotRanked": "That user is not ranked yet!", 7 | "howRank": "In order to be ranked you must talk in the chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "You're at level %%level%% and you're #%%rank%% on the leaderboard!", 10 | "userLevel": "%%user%% is at level %%level%% and they're #%%rank%% on the leaderboard!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/fil/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fr/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Message reçu du staff", 3 | "incomingDisclaimer": "Tous les messages envoyés ici seront envoyés au staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/fr/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Rapporter un bug", 3 | "bugT": "Afficher et ajouter des bugs", 4 | "bugD": "Pour afficher et faire des suggestions ou des rapports de bugs, cliques sur le bouton ci-dessous !", 5 | "urgentT": "C'est urgent ?", 6 | "urgentD": "Si tu essaies de signaler un bug fatal ou si le bot a été indisponible sur une longue période sans préavis, merci d'en mentionner un membre de l'équipe dans un salon public, en expliquant le problème.", 7 | "link": "Lien" 8 | } 9 | -------------------------------------------------------------------------------- /strings/fr/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Joyeuses Pâques!", 3 | "halloween": "Joyeux Halloween!", 4 | "christmas": "Joyeux Noël!", 5 | "newYear": "Bonne Année!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fr/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Vérification Hypixel", 3 | "unverified": "Tu as bien été désynchronisé !", 4 | "notUnverified": "Nous n'avons pas été capable de te désynchroniser !", 5 | "whyNotUnverified": "Cela s'est produit car tu t'es pas encore vérifié ! Pour ce faire, exécutes `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fr/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Classement d'expérience", 3 | "pageTitle": "Voici le classement d'expérience !", 4 | "level": "#%%rank%% | Niveau %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Non classé", 6 | "youIndicator": "TOI" 7 | } 8 | -------------------------------------------------------------------------------- /strings/fr/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/fr/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Latence", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Mon temps de latence est de %%ping%%ms.", 5 | "onlineSince": "En ligne depuis %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/fr/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Profil Crowdin", 3 | "profileSuccess": "Voici votre profil", 4 | "noProfile": "Nous n'avons pas pu trouver ton profil dans notre base de données !", 5 | "howStore": "Si tu souhaites le stocker, exécutez `/help verify` pour savoir comment le faire." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fr/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Projets de traduction", 3 | "allProjects": "Voici tous les projets que nous supportons actuellement sur le serveur !", 4 | "description": "Si tu es déjà sur certains de ces projets mais que tu n'as pas encore les rôles, exécute `/verify [profileURL]` pour les obtenir !", 5 | "projectInfo": "Tu peux trouver le lien vers le projet %%project%% [ici](%%link%%). Pour plus d'informations, exécutes %%command%%.", 6 | "alreadyJoined": "Tu as déjà rejoint ce projet !", 7 | "notJoined": "Tu n'as pas encore rejoint ce projet !" 8 | } 9 | -------------------------------------------------------------------------------- /strings/fr/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Citation", 3 | "msgUrl": "Lien du message", 4 | "invalidArg": "Arguments invalides!", 5 | "indexArg": "Une citation avec le nombre %%arg%% n'existe pas! Fournis un nombre entre 1 et %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/fr/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/he/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "התקבלה הודעה מצוות השרת", 3 | "incomingDisclaimer": "כל הודעה שתשלח כאן תישלח לצוות השרת." 4 | } 5 | -------------------------------------------------------------------------------- /strings/he/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "בעיות ומשוב", 3 | "bugT": "דיווח על באג", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "האם זה דחוף?", 6 | "urgentD": "אם את/ה מנסה לדווח על באג חמור או שהבוט היה לא מחובר לזמן ממושך מבלי ששמו לב, אנא פנה/י לחבר צוות בערוץ ציבורי, והסבר/י את הבעיה.", 7 | "link": "קישור" 8 | } 9 | -------------------------------------------------------------------------------- /strings/he/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "חג פסחא שמח!", 3 | "halloween": "ליל כל הקדושים שמח!", 4 | "christmas": "חג מולד שמח!", 5 | "newYear": "סילבסטר שמח!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/he/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "אימות Hypixel", 3 | "unverified": "ביטול האימות שלך בוצע בהצלחה!", 4 | "notUnverified": "לא היה באפשרותנו לבטל את אימותך!", 5 | "whyNotUnverified": "זה קרה מכיוון שעדיין לא אימתת את זהותך! בכדי לעשות זאת, בצע ` <שם משתמש> hypixelverify/`." 6 | } 7 | -------------------------------------------------------------------------------- /strings/he/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/he/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/he/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "פינג", 3 | "pong": "%%pingEmote%% פונג!", 4 | "message": "הפינג שלי הוא %%ping%%ms.", 5 | "onlineSince": "מחובר מאז (%%timestampRelative%%) %%timestamp%%" 6 | } 7 | -------------------------------------------------------------------------------- /strings/he/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/he/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "פרוייקטי תרגום", 3 | "allProjects": "הנה כל הפרוייקטים שכרגע אנחנו תומכים בהם בשרת!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "באפשרותך למצוא את הקישור של פרוייקט ה%%project%% [כאן] (%%link%%). למידע נוסף בצע/י %%command%%.", 6 | "alreadyJoined": "כבר הצטרפת לפרוייקט זה!", 7 | "notJoined": "עדיין לא הצטרפת לפרוייקט זה!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/he/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "ציטוט", 3 | "msgUrl": "קישור הודעה", 4 | "invalidArg": "טיעון לא חוקי!", 5 | "indexArg": "ציטוט שמכיל %%arg%% לא קיים! בבקשה ספק/י מספר בין 1 ל%%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/he/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "רמת משתמש", 3 | "yourRank": "הנה הדרגה שלך", 4 | "userRank": "הנה הדרגה של %%user%%", 5 | "youNotRanked": "אין לך עדיין דרגה!", 6 | "userNotRanked": "למשתמש זה אין עדיין דרגה!", 7 | "howRank": "בכדי לקבל דרגה עליך לדבר בצ'אטים!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "את/ה ברמה %%level%% ואת/ה #%%rank%% בטבלת המובילים!", 10 | "userLevel": "%%user%% נמצא/ת ברמה %%level%% והוא/היא #%%rank%% בטבלת המובילים!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/he/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hi/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/hi/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/hi/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "शुभ ईस्टर!", 3 | "halloween": "शुभ हेलोवीन!", 4 | "christmas": "शुभ क्रिसमस!", 5 | "newYear": "नव वर्ष की शुभकामनाएं!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hi/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hi/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/hi/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/hi/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hi/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hi/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/hi/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hi/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "User level", 3 | "yourRank": "Here's your rank", 4 | "userRank": "Here's %%user%%'s rank", 5 | "youNotRanked": "You're not ranked yet!", 6 | "userNotRanked": "That user is not ranked yet!", 7 | "howRank": "In order to be ranked you must talk in the chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "You're at level %%level%% and you're #%%rank%% on the leaderboard!", 10 | "userLevel": "%%user%% is at level %%level%% and they're #%%rank%% on the leaderboard!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/hi/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hr/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/hr/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/hr/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Happy Easter!", 3 | "halloween": "Happy Halloween!", 4 | "christmas": "Merry Christmas!", 5 | "newYear": "Happy New Year!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hr/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hr/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/hr/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/hr/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hr/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hr/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/hr/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hr/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "User level", 3 | "yourRank": "Here's your rank", 4 | "userRank": "Here's %%user%%'s rank", 5 | "youNotRanked": "You're not ranked yet!", 6 | "userNotRanked": "That user is not ranked yet!", 7 | "howRank": "In order to be ranked you must talk in the chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "You're at level %%level%% and you're #%%rank%% on the leaderboard!", 10 | "userLevel": "%%user%% is at level %%level%% and they're #%%rank%% on the leaderboard!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/hr/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hu/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Új üzeneted érkezett", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/hu/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hibák és értékelés", 3 | "bugT": "Hibák megnézése és hozzáadása", 4 | "bugD": "Ajánlások és hibák megnézéséhez vagy hozzáadásához kattints az alábbi gombra!", 5 | "urgentT": "Sürgős?", 6 | "urgentD": "Ha egy súlyos hibát akarsz jelenteni vagy a bot már egy hosszú ideje offline figyelmeztetés nélkül, kérlek említs meg egy staffot egy publikus csatornában és írd le a problémádat.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/hu/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Boldog Húsvétot!", 3 | "halloween": "Boldog Halloweent!", 4 | "christmas": "Boldog Karácsonyt!", 5 | "newYear": "Boldog Új Évet!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hu/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel csatlakoztatás", 3 | "unverified": "Sikeresen szétcsatoltad a fiókodat!", 4 | "notUnverified": "Nem sikerült szétcsatolni a fiókodat!", 5 | "whyNotUnverified": "Ez azért történt, mert még nincs felhasználó hozzád csatolva! Hogy ezt megtedd, használd a `/hypixelverify ` parancsot." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hu/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Ranglista", 3 | "pageTitle": "Itt az XP ranglista!", 4 | "level": "#%%rank%% | %%level%%. szint | XP: %%xp%%", 5 | "unranked": "#%%rank%% Rangtalan", 6 | "youIndicator": "TE" 7 | } 8 | -------------------------------------------------------------------------------- /strings/hu/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/hu/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "A pingem %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/hu/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hu/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "A %%project%% projekt linkjét [itt](%%link%%) találod. További infórmációkért használd a %%command%% parancsot.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/hu/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Idézet", 3 | "msgUrl": "Üzenet link", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A %%arg%% számú említés nem létezik! A számnak 1 és %%max%% között kell lennie." 6 | } 7 | -------------------------------------------------------------------------------- /strings/hu/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Felhasználó szintja", 3 | "yourRank": "Itt a rangod", 4 | "userRank": "Itt van %%user%% rangja", 5 | "youNotRanked": "Még nincsen rangod!", 6 | "userNotRanked": "Ennek a felhasználónak még nincs rangja!", 7 | "howRank": "In order to be ranked you must talk in the chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "%%level%% szintű vagy és te vagy a #%%rank%% a ranglistán!", 10 | "userLevel": "%%user%% %%level%% szintű és ő a #%%rank%% a ranglistán!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/hu/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ib/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Got staf mesgag yay", 3 | "incomingDisclaimer": "Al meageg you sned ehere will bee sent to staf." 4 | } 5 | -------------------------------------------------------------------------------- /strings/ib/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Not workign riport", 3 | "bugT": "Let se and make neæow issue", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Iz imprortanat?", 6 | "urgentD": "If wants reprot fatal bugs or bot is oflin for lung tims with no see, menshon staff people in public chanle and explais ishue.", 7 | "link": "Lonk" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ib/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypickle Verifs", 3 | "unverified": "U no longer has been become is verifs!", 4 | "notUnverified": "No has ablitie to unverifs u!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ib/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Xp-lebeberboard", 3 | "pageTitle": "Hier, xp leebebrberbodr!", 4 | "level": "#%%rank%% | lævl %%level%% | xp: %%xp%%", 5 | "unranked": "#%%rank%% n00b elamao", 6 | "youIndicator": "itz u lol" 7 | } 8 | -------------------------------------------------------------------------------- /strings/ib/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ib/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Pig", 3 | "pong": "%%pingEmote%% Pog!", 4 | "message": "Me pig is %%ping%% meloskekunds.", 5 | "onlineSince": "Havin gæmer momnt sinse %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ib/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ib/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translat Projgetz", 3 | "allProjects": "Here all projedz we suppor righ nows on servre!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You finds link to %%project%% projget [hir](%%link%%). Für mor informashon, excut %%command%%.", 6 | "alreadyJoined": "U alredi joins projget!", 7 | "notJoined": "U no joins projget yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ib/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Funnysentence", 3 | "msgUrl": "Mesgag lonk", 4 | "invalidArg": "Not gud argarment!", 5 | "indexArg": "Quots withs indx %%arg%% exist? NO! Giv numbre betwin 1 and %%max%%, idot!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ib/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/id/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Menerima pesan dari staf", 3 | "incomingDisclaimer": "Pesan apapun yang anda kirim di sini akan dikirim ke staf." 4 | } 5 | -------------------------------------------------------------------------------- /strings/id/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Masalah dan umpan balik", 3 | "bugT": "Melihat dan menambah masalah", 4 | "bugD": "Untuk memperlihatkan dan membuat saran atau laporan bug, klik tombol di bawah!", 5 | "urgentT": "Apakah ini mendesak?", 6 | "urgentD": "Jika anda sedang mencoba untuk melaporkan bug fatal atau bot yang down untuk jangka waktu yang lama tanpa pemberitahuan, mohon menyebutkan seorang staf di channel publik, dengan menjelaskan masalahnya.", 7 | "link": "Tautan" 8 | } 9 | -------------------------------------------------------------------------------- /strings/id/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Selamat Hari Paskah!", 3 | "halloween": "Selamat Halloween!", 4 | "christmas": "Selamat Hari Natal!", 5 | "newYear": "Selamat Tahun Baru!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/id/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Verifikasi Hypixel", 3 | "unverified": "Anda berhasil membatalkan verifikasi anda!", 4 | "notUnverified": "Tidak dapat membatalkan verifikasi anda!", 5 | "whyNotUnverified": "Ini terjadi karena saat ini anda belum verifikasi! Untuk melakukannya, jalankan `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/id/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Papan peringkat XP", 3 | "pageTitle": "Inilah papan peringkat XP!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Tidak Berperingkat", 6 | "youIndicator": "ANDA" 7 | } 8 | -------------------------------------------------------------------------------- /strings/id/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Anda tidak memiliki role proofreader bahasa tersebut, {role,select,translator{jadi anda tidak bisa menyebutkan role translatornya} proofreader{jadi anda tidak bisa menyebutkannya} other{jadi anda tidak dapat menyebutkan seluruh bahasanya}}. Kontak seorang admin server jika anda sangat memerlukannya.", 3 | "success": "Pesan berhasil dikirim!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/id/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Ping saya adalah %%ping%%ms.", 5 | "onlineSince": "Online sejak %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/id/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Profil Crowdin", 3 | "profileSuccess": "Inilah profil anda", 4 | "noProfile": "Kami tidak dapat menemukan profil anda di database kami!", 5 | "howStore": "Jika anda ingin menyimpannya, jalankan `/help verify` untuk mengetahui cara untuk melakukannya." 6 | } 7 | -------------------------------------------------------------------------------- /strings/id/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Proyek-proyek Penerjemahan", 3 | "allProjects": "Inilah semua proyek yang saat ini kami dukung di server!", 4 | "description": "Jika anda sudah memasuki beberapa proyek tetapi belum mendapatkan roles anda, jalankan`/verify [URLprofil]` untuk mendapatkannya!", 5 | "projectInfo": "Anda dapat menemukan tautan ke proyek %%project%% [disini](%%link%%). Untuk informasi lebih lanjut, jalankan %%command%%.", 6 | "alreadyJoined": "Anda sudah memasuki proyek ini!", 7 | "notJoined": "Anda belum memasuki proyek ini!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/id/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Kutipan", 3 | "msgUrl": "URL Pesan", 4 | "invalidArg": "Argumen Tidak Valid!", 5 | "indexArg": "Sebuah kutipan dengan indeks %%arg%% tidak ada! Mohon berikan angka dari 1 hingga %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/id/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/it/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/it/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/it/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Buona Pasqua!", 3 | "halloween": "Felice Halloween!", 4 | "christmas": "Buon Natale!", 5 | "newYear": "Felice Anno Nuovo!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/it/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/it/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/it/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/it/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/it/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/it/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/it/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/it/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ja/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "スタッフからメッセージを受信しました", 3 | "incomingDisclaimer": "ここに送信したメッセージはスタッフに送信されます。" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ja/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "問題とフィードバック", 3 | "bugT": "Issueの閲覧と追加", 4 | "bugD": "提案やバグ報告を表示・作成するには、以下のボタンをクリックしてください!", 5 | "urgentT": "急を要しますか?", 6 | "urgentD": "致命的なバグを報告する時や、ボットが予告無しに長時間稼働していない時は、公開チャンネルでスタッフメンバーにメンションしてください。問題を説明します。", 7 | "link": "リンク" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ja/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "イースターおめでとう!", 3 | "halloween": "ハッピーハロウィン!", 4 | "christmas": "メリークリスマス!", 5 | "newYear": "あけましておめでとう!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ja/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel認証", 3 | "unverified": "認証が解除されました!", 4 | "notUnverified": "認証を解除できませんでした!", 5 | "whyNotUnverified": "まだ認証をしていないためです。認証するには`/hypixelverify <ユーザー名>`を実行してください。" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ja/hypixelverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel認証", 3 | "success": "あなたを%%player%%として認証しました!", 4 | "role": "サーバーのランクに基づき%%role%%ロールを付与しました。", 5 | "alreadyVerified": "既に認証しています!", 6 | "nameChangeDisclaimer": "名前を変更した場合でも再度認証する必要はないことにご注意ください!", 7 | "error": "HypixelでDiscordを正しく設定していないため、認証できませんでした!", 8 | "tutorial": "認証するには、Hypixelで自分のDiscordを%%tag%%に設定し、最大10分経過後に再度コマンドを実行してください。方法が分からない場合は、以下のビデオの手順に従ってください。" 9 | } 10 | -------------------------------------------------------------------------------- /strings/ja/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP順位表", 3 | "pageTitle": "XP順位表はこちらです!", 4 | "level": "#%%rank%% | レベル %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% 未順位", 6 | "youIndicator": "あなた" 7 | } 8 | -------------------------------------------------------------------------------- /strings/ja/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "メッセージが送信されました!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ja/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% ポン!", 4 | "message": "このボットのPing値は%%ping%%msです。", 5 | "onlineSince": "オンライン状態開始時間 %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ja/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdinのプロフィール", 3 | "profileSuccess": "あなたプロフィールはこちらです", 4 | "noProfile": "我々のデータベース上にあなたのプロフィールは存在しません!", 5 | "howStore": "保存したい場合`/help verify`を実行して手順を確認してください。" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ja/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "翻訳プロジェクト", 3 | "allProjects": "以下がサーバーでサポートしている全プロジェクトです!", 4 | "description": "既にプロジェクトに参加しているがまだロールを保有していない場合、`/verify [プロフィールURL]`を実行して入手できます!", 5 | "projectInfo": "%%project%%プロジェクトへのリンクは [こちら](%%link%%) です。詳細は%%command%%を実行してください。", 6 | "alreadyJoined": "このプロジェクトに参加済みです!", 7 | "notJoined": "このプロジェクトに参加していません!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ja/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "引用", 3 | "msgUrl": "メッセージリンク", 4 | "invalidArg": "無効な引数です!", 5 | "indexArg": "インデックス %%arg%% の引用は存在しません! 1から%%max%%の間の数字を入力してください。" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ja/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "ユーザーレベル", 3 | "yourRank": "あなたのランクはこちらです", 4 | "userRank": "%%user%%のランクはこちらです", 5 | "youNotRanked": "あなたはまだ順位がありません!", 6 | "userNotRanked": "このユーザーはまだ順位がありません!", 7 | "howRank": "順位を得るにはチャットで話す必要があります!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, other {#メッセージ}}", 9 | "youLevel": "あなたはレベル%%level%%で、順位表の#%%rank%%です!", 10 | "userLevel": "%%user%%はレベル%%level%%で、順位表の#%%rank%%です!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/ja/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "%%setting%%の設定が%%value%%に設定されました", 3 | "successSet": "%%setting%%の設定を%%value%%に設定しました", 4 | "successReset": "%%setting%%の設定をリセットしました", 5 | "onlyPf": "この設定はHypixelの校正者のみが利用できます!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ko/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "관리자로부터 메시지를 받았습니다.", 3 | "incomingDisclaimer": "여기에 보내주시는 모든 메시지는 자동으로 관리자에게 전달됩니다." 4 | } 5 | -------------------------------------------------------------------------------- /strings/ko/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "문제 & 피드백", 3 | "bugT": "확인 및 이슈 추가", 4 | "bugD": "피드백 또는 버그 리포트를 확인/제출하기 위해서는 아래 버튼을 눌러주세요!", 5 | "urgentT": "긴급한 제출인가요?", 6 | "urgentD": "중대한 버그를 제출하거나 봇이 계속 오프라인일 경우에는, 관리자를 메인 채널 카테고리에서 멘션해서 상황을 설명해주세요.", 7 | "link": "링크" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ko/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "행복한 부활절 되세요!", 3 | "halloween": "행복한 할로윈 되세요!", 4 | "christmas": "메리 크리스마스!", 5 | "newYear": "새해 복 많이 받으세요!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ko/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel 인증", 3 | "unverified": "성공적으로 연동을 해제했습니다!", 4 | "notUnverified": "연동을 해제할 수 없습니다!", 5 | "whyNotUnverified": "아직 연동을 하지 않아 에러가 생겼습니다. 먼저 `/hypixelverify ` 을 통해 계정을 연동해주세요!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ko/hypixelverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel 인증", 3 | "success": "%%player%%로 성공적으로 인증했습니다!", 4 | "role": "본인이 가지고 있는 랭크에 따라, 서버에서 %%role%% 역할이 지급되었습니다.", 5 | "alreadyVerified": "이미 인증되었습니다.", 6 | "nameChangeDisclaimer": "이름을 변경해도 다시 인증을 할 필요가 없습니다!", 7 | "error": "Hypixel에 본인의 디스코드를 정상적으로 셋업하지 않아서 인증이 불가능합니다!", 8 | "tutorial": "인증을 시도하려면, 하이픽셀에서 디스코드를 %%tag%%로 설정하고 명령어를 다시 실행할 때까지 최대 10분 동안 기다려야 합니다. 이 방법을 모를 경우 아래 비디오의 튜토리얼을 확인하세요." 9 | } 10 | -------------------------------------------------------------------------------- /strings/ko/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP 리더보드", 3 | "pageTitle": "XP 리더보드입니다!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% 랭크되지 않음.", 6 | "youIndicator": "나" 7 | } 8 | -------------------------------------------------------------------------------- /strings/ko/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ko/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "핑", 3 | "pong": "%%pingEmote%% 퐁!", 4 | "message": "봇의 핑은 %%ping%%ms 입니다.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ko/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin 프로필", 3 | "profileSuccess": "프로필입니다.", 4 | "noProfile": "당신의 프로필을 저희 데이터베이스에서 확인하지 못하였습니다!", 5 | "howStore": "저장을 원하신다면, `/help verify` 명령어를 사용해서 도움말을 확인하세요." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ko/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "번역 프로젝트", 3 | "allProjects": "이 서버에서 번역을 지원하는 모든 프로젝트 목록입니다!", 4 | "description": "이미 이들 중 하나에 참여하고 있지만 역할을 받지 못하셨다면, '/verify [profileURL]'를 입력하여 역할 수령을 다시 시도해보세요!", 5 | "projectInfo": "[여기](%%link%%)에서 %%project%%에 관한 링크를 얻을 수 있습니다. 자세한 정보는 %%command%% 명령어를 입력하여 확인해보세요.", 6 | "alreadyJoined": "이미 이 프로젝트에 참여하셨습니다!", 7 | "notJoined": "아직 이 프로젝트에 참여하지 않았습니다!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ko/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "글귀", 3 | "msgUrl": "메시지 URL", 4 | "invalidArg": "변수가 잘못되었습니다!", 5 | "indexArg": "%%arg%%에 대한 글귀는 존재하지 않습니다! 1부터 %%max%% 사이의 숫자를 사용해주세요." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ko/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "User Level", 3 | "yourRank": "당신의 랭크입니다.", 4 | "userRank": "%%user%%의 랭크입니다.", 5 | "youNotRanked": "아직 랭크되지 않았습니다.", 6 | "userNotRanked": "그 유저는 아직 랭크되지 않았습니다!", 7 | "howRank": "랭크되기 위해서는 먼저 채널에서 채팅을 치셔야 합니다!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "현재 Lv. %%level%%에 있으며, 리더보드 랭킹은 #%%rank%% 입니다.", 10 | "userLevel": "%%user%%님은 현재 Lv. %%level%%에 있으며, 리더보드 랭킹은 #%%rank%% 입니다." 11 | } 12 | -------------------------------------------------------------------------------- /strings/ko/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/lt/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/lt/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/lt/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Happy Easter!", 3 | "halloween": "Happy Halloween!", 4 | "christmas": "Merry Christmas!", 5 | "newYear": "Happy New Year!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/lt/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/lt/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/lt/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/lt/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/lt/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/lt/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/lt/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/lt/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ms/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Menerima mesej daripada kakitangan", 3 | "incomingDisclaimer": "Sebarang mesej anda hantar ke sini akan dihantarkan kepada kakitangan." 4 | } 5 | -------------------------------------------------------------------------------- /strings/ms/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Masalah dan maklum balas", 3 | "bugT": "Masalah melihat dan menambah", 4 | "bugD": "Untuk tunjuk dan buat cadangan atau laporan bug, klik pada butang di bawah!", 5 | "urgentT": "Adakah ia sangat penting?", 6 | "urgentD": "Jika anda ingin melaporkan bug yang amat berbahaya atau bot telah dimatikan pada masa yang sangat lama tanpa notis, tolong panggil ahli kakitangan di saluran awam dan jelaskan masalah tersebut.", 7 | "link": "Pautan" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ms/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Selamat Hari Easter!", 3 | "halloween": "Selamat Hari Halloween!", 4 | "christmas": "Selamat Hari Krismas!", 5 | "newYear": "Selamat Tahun Baru!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ms/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Pengesahan Hypixel", 3 | "unverified": "Anda berjaya tidak disahkan!", 4 | "notUnverified": "Tidak boleh tidak mengesahkan anda!", 5 | "whyNotUnverified": "Hal ini berlaku kerana anda belum mengesahkan diri anda lagi! Untuk melakukannya, laksanakan `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ms/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Papan Kedudukan XP", 3 | "pageTitle": "Di sini papan kedudukan XP!", 4 | "level": "#%%rank%% | Tahap %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Takde kedudukan", 6 | "youIndicator": "ANDA" 7 | } 8 | -------------------------------------------------------------------------------- /strings/ms/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Anda tidak mempunyai role pembaca pruf bahasa tersebut, {role, select, translator {jadi anda tak boleh menyebut role penterjemahnya} proofreader {jadi anda tak boleh menyebutnya} other {jadi anda tak boleh menyebut keseluruhan bahasa tersebut}}. Hubungi pentadbir pelayan jika anda sangat memerlukannya.", 3 | "success": "Mesej berjaya dihantar!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ms/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Ping saya ialah %%ping%%ms.", 5 | "onlineSince": "Dalam talian sejak %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ms/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Profil Crowdin", 3 | "profileSuccess": "Ini profil anda", 4 | "noProfile": "Kami tak dapat menjumpai profil anda dalam pangkalan data kami!", 5 | "howStore": "Jika anda menyimpannya, laksanakan `/help verify` untuk ketahui bagaimana anda boleh melakukannya." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ms/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Projek Penterjemahan", 3 | "allProjects": "Di sini terdapat semua projek yang kini kami sokong di pelayan ini!", 4 | "description": "Jika anda sudah ada dekat beberapa projek ini, tetapi tidak ada role anda lagi, jalankan `/verify [profileURL]` untuk mendapatkannya!", 5 | "projectInfo": "Anda boleh menjumpai pautan ke projek %%project%% [sini](%%link%%). Untuk maklumat lanjut, laksanakan %%command%%.", 6 | "alreadyJoined": "Anda sudah menyertai projek ini!", 7 | "notJoined": "Anda belum menyertai projek ini lagi!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ms/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Petikan", 3 | "msgUrl": "URL Mesej", 4 | "invalidArg": "Hujahan tidak sah!", 5 | "indexArg": "Petikan dengan indeks %%arg%% tidak ada! Sila berikan nombor antara 1 dan %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ms/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Tetapan %%setting%% anda telah ditetapkan kepada %%value%%", 3 | "successSet": "Berjaya menetapkan tetapan %%setting%% anda kepada %%value%%", 4 | "successReset": "Berjaya menetapkan semula tetapan %%setting%% anda", 5 | "onlyPf": "Tetapan ini hanya tersedia untuk Pembaca Pruf Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/nl/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Bericht ontvangen van staff", 3 | "incomingDisclaimer": "Als je hier een bericht stuurt, wordt het verzonden naar staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/nl/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problemen en feedback", 3 | "bugT": "Fouten weergeven en melden", 4 | "bugD": "Klik op onderstaande knop om suggesties of probleemrapporten weer te geven en te maken!", 5 | "urgentT": "Is het urgent?", 6 | "urgentD": "Als je een fatale fout wilt melden of als de bot langere tijd offline is zonder aankondiging, vermeld dan alsjeblieft een stafflid in een openbaar kanaal (met uitleg van het probleem).", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/nl/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Vrolijk Pasen!", 3 | "halloween": "Fijne Halloween!", 4 | "christmas": "Gelukkig Kerstfeest!", 5 | "newYear": "Gelukkig nieuwjaar!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/nl/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel-verificatie", 3 | "unverified": "Je verificatie is ongedaan gemaakt!", 4 | "notUnverified": "Kon je niet verifiëren!", 5 | "whyNotUnverified": "Dit is gebeurd omdat je jezelf nog niet hebt geverifieerd! Voer eerst `/hypixelverify ` uit." 6 | } 7 | -------------------------------------------------------------------------------- /strings/nl/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP-scorebord", 3 | "pageTitle": "Hier is het XP-scorebord!", 4 | "level": "%%rank%%e | Niveau %%level%% | XP: %%xp%%", 5 | "unranked": "%%rank%%e | geen rang", 6 | "youIndicator": "JIJ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/nl/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Omdat je geen proeflezer bent voor deze taal, {role, select, translator {kun je de vertalers niet vermelden} proofreader {kun je de proeflezers niet vermelden} other {kun je de hele taal niet vermelden}}. Neem contact op met een administrator als dit echt nodig is.", 3 | "success": "Bericht verzonden!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/nl/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Mijn ping is %%ping%%ms.", 5 | "onlineSince": "Online sinds %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/nl/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin-profiel", 3 | "profileSuccess": "Dit is je profiel", 4 | "noProfile": "Je profiel kon niet worden gevonden in onze database!", 5 | "howStore": "Als je deze wilt opslaan, voer dan `/help verify` uit om te zien hoe je dit kunt doen." 6 | } 7 | -------------------------------------------------------------------------------- /strings/nl/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Vertalingsprojecten", 3 | "allProjects": "Hieronder staan alle projecten die we momenteel ondersteunen!", 4 | "description": "Als je voor één van deze projecten vertaalt maar geen rollen ervoor hebt, gebruik dan `/verify [profiel-url]` om ze te ontvangen!", 5 | "projectInfo": "Je kunt de link naar het %%project%%-project [hier](%%link%%) vinden. Voor meer info kun je %%command%% uitvoeren.", 6 | "alreadyJoined": "Je bent een vertaler voor dit project!", 7 | "notJoined": "Je bent nog geen vertaler voor dit project!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/nl/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Citaat", 3 | "msgUrl": "Bericht-URL", 4 | "invalidArg": "Ongeldig argument!", 5 | "indexArg": "Er bestaat geen citaat met index %%arg%%! Geef een nummer tussen 1 en %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/nl/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "De instelling '%%setting%%' heeft als waarde '%%value%%'", 3 | "successSet": "De instelling '%%setting%%' heeft nu als waarde '%%value%%'", 4 | "successReset": "De instelling '%%setting%%' is gereset", 5 | "onlyPf": "Deze instelling is alleen beschikbaar voor proeflezers van Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/no/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Mottok melding fra personalet", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/no/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problemer og tilbakemeldinger", 3 | "bugT": "Avleser og legger til problemer", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Haster det?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Lenke" 8 | } 9 | -------------------------------------------------------------------------------- /strings/no/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "God påske!", 3 | "halloween": "Gledelig halloween!", 4 | "christmas": "God jul!", 5 | "newYear": "Godt nyttår!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/no/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel-verifisering", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/no/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP-toppliste", 3 | "pageTitle": "Her er XP-topplisten!", 4 | "level": "#%%rank%% | Nivå %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "DEG" 7 | } 8 | -------------------------------------------------------------------------------- /strings/no/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Meldingen ble sendt!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/no/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Min ping er %%ping%% ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/no/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin-profil", 3 | "profileSuccess": "Her er din profil", 4 | "noProfile": "Vi kunne ikke finne profilen din i databasen vår!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/no/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Oversettelsesprosjekter", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "Du har allerede blitt med i dette prosjektet!", 7 | "notJoined": "Du har ikke blitt med i dette prosjektet ennå!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/no/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Sitat", 3 | "msgUrl": "URL til melding", 4 | "invalidArg": "Ugyldig argument!", 5 | "indexArg": "Et sitat med index %%arg%% eksisterer ikke! Vennligst oppgi et nummer mellom 1 og %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/no/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Gjennomgang av string", 3 | "message": "Melding", 4 | "clickHere": "Klikk her", 5 | "requestDetails": "%%user%% forespurte mer info om forslaget ditt", 6 | "requestedBy": "Forespurt av %%user%%", 7 | "rejected": "%%user%% avslo ditt forslag", 8 | "rejectedBy": "Avslått av %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/no/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pl/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Odebrano wiadomość od administracji", 3 | "incomingDisclaimer": "Każda wiadomość wysłana w tym miejscu, zostanie przekazana administracji." 4 | } 5 | -------------------------------------------------------------------------------- /strings/pl/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Zgłoś błąd i opinię", 3 | "bugT": "Przeglądanie i dodawanie problemów", 4 | "bugD": "Aby wyświetlać i zgłaszać sugestie lub błędy, proszę kliknij na przycisk poniżej!", 5 | "urgentT": "Czy jest to pilne?", 6 | "urgentD": "Jeżeli próbujesz zgłosić błąd krytyczny lub bot jest wyłączony przez długi czas bez powiadomienia, proszę oznaczyć członka administracji na publicznym kanale, wyjaśniając problem.", 7 | "link": "Odnośnik" 8 | } 9 | -------------------------------------------------------------------------------- /strings/pl/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Wesołych świąt Wielkanocnych!", 3 | "halloween": "Wesołego Halloween!", 4 | "christmas": "Wesołych Świąt!", 5 | "newYear": "Szczęśliwego Nowego Roku!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pl/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Weryfikacja Hypixel", 3 | "unverified": "Pomyślnie odweryfikowałeś się!", 4 | "notUnverified": "Nie udało się Ciebie odweryfikować!", 5 | "whyNotUnverified": "Stało się tak dlatego, że jeszcze się nie zweryfikowałeś! Aby to zrobić, polecenie `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pl/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ranking PD", 3 | "pageTitle": "Oto ranking PD!", 4 | "level": "Miejsce %%rank%%. | Poziom %%level%%. | PD: %%xp%%", 5 | "unranked": "#%%rank%% Nieklasyfikowany", 6 | "youIndicator": "TY" 7 | } 8 | -------------------------------------------------------------------------------- /strings/pl/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Nie masz roli korektora tego języka, {role, select, translator {więc nie możesz oznaczyć jego tłumaczy} proofreader {więc nie możesz jej oznaczyć} other {więc nie możesz oznaczyć wszystkich jego tłumaczy i korektorów}}. Jeśli to konieczne, skontaktuj się z administratorem serwera.", 3 | "success": "Wysłano wiadomość!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/pl/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Moje opóźnienie wynosi %%ping%% ms.", 5 | "onlineSince": "Dostępny(-a) od %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pl/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Profil Crowdin", 3 | "profileSuccess": "Oto Twój profil", 4 | "noProfile": "Nie udało się znaleźć Twojego profilu w naszej bazie danych!", 5 | "howStore": "Jeśli chcesz go zapisać, wykonaj `/help verify`, by dowiedzieć się, jak to zrobić." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pl/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Projekty tłumaczeń", 3 | "allProjects": "Oto wszystkie projekty, które obecnie obsługujemy na serwerze!", 4 | "description": "Jeśli jesteś już w którymkolwiek z tych projektów, ale nie masz jeszcze ról, wykonaj `/reverity [odnośnikDoProfilu]` aby je dostać!", 5 | "projectInfo": "Możesz znaleźć odnośnik do %%project%% [tutaj](%%link%%). Po więcej informacji, wpisz %%command%%.", 6 | "alreadyJoined": "Dołączyłeś już do tego projektu!", 7 | "notJoined": "Nie dołączyłeś jeszcze do tego projektu!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/pl/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Cytat", 3 | "msgUrl": "Odnośnik do wiadomości", 4 | "invalidArg": "Nieprawidłowy argument!", 5 | "indexArg": "Cytat z indeksem %%arg%% nie istnieje! Podaj liczbę pomiędzy 1 a %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pl/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Twoje ustawienie %%setting%% jest ustawione na %%value%%", 3 | "successSet": "Pomyślnie ustawiono Twoje ustawienie %%setting%% na %%value%%", 4 | "successReset": "Pomyślnie zresetowano Twoje ustawienie %%setting%%", 5 | "onlyPf": "To ustawienie jest dostępne tylko dla korektorów Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_BR/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Mensagem da equipe recebida", 3 | "incomingDisclaimer": "Qualquer mensagem que você enviar aqui será encaminhada para a equipe." 4 | } 5 | -------------------------------------------------------------------------------- /strings/pt_BR/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problemas e feedback", 3 | "bugT": "Ver e adicionar erros", 4 | "bugD": "Para ver e fazer sugestões ou relatar erros, clique no botão abaixo!", 5 | "urgentT": "Isso é urgente?", 6 | "urgentD": "Se você estiver tentando relatar um erro grave ou se o bot estiver offline por um longo período, mencione um membro da equipe em um canal público, explicando o problema.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/pt_BR/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Verificação no Hypixel", 3 | "unverified": "Você removeu sua verificação!", 4 | "notUnverified": "Não foi possível remover sua verficação!", 5 | "whyNotUnverified": "Isto ocorreu pois você não se verificou! Para se verificar, use `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_BR/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Pódio de EXP", 3 | "pageTitle": "Aqui está o pódio de EXP!", 4 | "level": "%%rank%%º | Nível %%level%% | EXP: %%xp%%", 5 | "unranked": "%%rank%%º Sem rank", 6 | "youIndicator": "VOCÊ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/pt_BR/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Você não possui o cargo de revisor de idioma, {role, select, translator {então não poderá mencionar o cargo dos tradutores} proofreader {então não poderá mencioná-lo} other {então não poderá mencionar o idioma}}. Entre em contato com um administrador do servidor se realmente desejar mencionar um cargo.", 3 | "success": "Mensagem enviada com sucesso!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/pt_BR/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Meu ping é %%ping%%ms.", 5 | "onlineSince": "Online desde %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_BR/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Perfil do Crowdin", 3 | "profileSuccess": "Aqui está o seu perfil", 4 | "noProfile": "Não foi possível encontrar seu perfil em nosso banco de dados!", 5 | "howStore": "Se você quiser armazená-lo, use `/help verify` para saber como fazer isto." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_BR/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Projetos de Tradução", 3 | "allProjects": "Aqui estão todos os projetos disponíveis para tradução no servidor!", 4 | "description": "Se você já está em algum destes projetos mas não possui os cargos, use `/verify [link do perfil]` para recebê-los!", 5 | "projectInfo": "Você pode encontrar o link do projeto do %%project%% clicando [aqui](%%link%%). Para mais informações, use %%command%%.", 6 | "alreadyJoined": "Você já entrou neste projeto!", 7 | "notJoined": "Você ainda não entrou neste projeto!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/pt_BR/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Citação", 3 | "msgUrl": "URL da mensagem", 4 | "invalidArg": "Argumento inválido!", 5 | "indexArg": "A citação de número %%arg%% não existe! O número deve ser entre 1 e %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_BR/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Resposta da sugestão", 3 | "message": "Mensagem", 4 | "clickHere": "Clique aqui", 5 | "requestDetails": "%%user%% solicitou mais detalhes sobre a sua sugestão", 6 | "requestedBy": "Solicitado por %%user%%", 7 | "rejected": "%%user%% rejeitou a sua sugestão", 8 | "rejectedBy": "Rejeitada por %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/pt_BR/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Sua configuração %%setting%% está definida como %%value%%", 3 | "successSet": "A configuração %%setting%% foi alterada com sucesso para %%value%%", 4 | "successReset": "A configuração %%setting%% foi redefinida com sucesso", 5 | "onlyPf": "Esta configuração só está disponível para revisores do Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_PT/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Recebeste uma mensagem da staff", 3 | "incomingDisclaimer": "Quaisquer mensagens enviadas enviadas aqui serão enviadas à staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/pt_PT/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problemas e feedback", 3 | "bugT": "Ver e adicionar issues", 4 | "bugD": "Para veres e fazeres sugestões ou reportar bugs, clica no botão abaixo!", 5 | "urgentT": "É urgente?", 6 | "urgentD": "Se estás a tentar reportar um erro fatal ou o bot tem estado offline por muito tempo sem notícias da staff, identifica um membro da staff num canal público e explica o problema.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/pt_PT/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Feliz Páscoa!", 3 | "halloween": "Feliz Halloween!", 4 | "christmas": "Feliz Natal!", 5 | "newYear": "Feliz Ano Novo!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_PT/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Verificação com o Hypixel", 3 | "unverified": "Foste desligado com sucesso!", 4 | "notUnverified": "Não foi possível desligar-te!", 5 | "whyNotUnverified": "Isto aconteceu porque ainda não te verificaste! Podes fazê-lo, executando `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_PT/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Pódio de XP", 3 | "pageTitle": "Aqui está o pódio de XP!", 4 | "level": "%%rank%%º | Nível %%level%% | XP: %%xp%%", 5 | "unranked": "%%rank%%º Sem rank", 6 | "youIndicator": "TU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/pt_PT/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Não tens o cargo de revisor desse idioma, {role, select, translator {logo não podes mencionar o seu cargo de tradutor} proofreader {logo não o podes mencionar} other {logo não podes mencionar o idioma todo}}. Se precisares mesmo de o fazer, contacta um administrador do servidor.", 3 | "success": "Mensagem enviada com sucesso!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/pt_PT/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "O meu ping é de %%ping%%ms.", 5 | "onlineSince": "Online desde %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_PT/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Perfil do Crowdin", 3 | "profileSuccess": "Aqui tens o teu perfil", 4 | "noProfile": "Não foi possível encontrar o teu perfil na nossa base de dados!", 5 | "howStore": "Se o quiseres guardar, executa `/help verify` para saberes como podes fazer isso." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_PT/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Projetos de tradução", 3 | "allProjects": "Aqui estão todos os projetos de tradução atualmente disponíveis no servidor!", 4 | "description": "Se já estás num destes projetos mas ainda não tens os teus cargos, executa `/verify [link do perfil]` para os receberes!", 5 | "projectInfo": "Podes encontrar o link para o projeto do %%project%% [aqui](%%link%%). Para mais informações, executa %%command%%.", 6 | "alreadyJoined": "Já estás neste projeto!", 7 | "notJoined": "Ainda não estás neste projeto!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/pt_PT/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Citação", 3 | "msgUrl": "Link da mensagem", 4 | "invalidArg": "Argumento inválido!", 5 | "indexArg": "A citação número %%arg%% não existe! O número deve estar entre 1 e %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/pt_PT/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Nível do utilizador", 3 | "yourRank": "Aqui está o teu XP", 4 | "userRank": "Aqui está o XP de %%user%%", 5 | "youNotRanked": "Ainda não tens XP!", 6 | "userNotRanked": "Esse utilizador ainda não tem XP!", 7 | "howRank": "Para obteres XP deves falar nos chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# mensagem} other {# mensagens}}", 9 | "youLevel": "Estás no nível %%level%% e no %%rank%%º lugar do pódio!", 10 | "userLevel": "%%user%% está no nível %%level%% e no %%rank%%º lugar do pódio!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/pt_PT/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Feedback da sugestão", 3 | "message": "Mensagem", 4 | "clickHere": "Clica aqui", 5 | "requestDetails": "%%user%% pediu mais detalhes sobre a tua sugestão", 6 | "requestedBy": "Pedidos por %%user%%", 7 | "rejected": "%%user%% rejeitou a tua sugestão", 8 | "rejectedBy": "Rejeitada por %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/pt_PT/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "A tua definição %%setting%% está definida como %%value%%", 3 | "successSet": "A tua definição %%setting%% foi definida como %%value%%", 4 | "successReset": "A tua definição %%setting%% foi redefinida com sucesso", 5 | "onlyPf": "Esta definição só está disponível para revisores do Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ro/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/ro/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ro/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Happy Easter!", 3 | "halloween": "Happy Halloween!", 4 | "christmas": "Merry Christmas!", 5 | "newYear": "Happy New Year!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ro/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ro/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/ro/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ro/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ro/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ro/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ro/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ro/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ru/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Получено сообщение от персонала", 3 | "incomingDisclaimer": "Любые сообщения, которые вы отправите сюда, будут отправлены персоналу." 4 | } 5 | -------------------------------------------------------------------------------- /strings/ru/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Проблемы и отзывы", 3 | "bugT": "Просмотр и добавление проблем", 4 | "bugD": "Нажмите на кнопку ниже, чтобы посмотреть или внести предложения, или сообщить об ошибке!", 5 | "urgentT": "Это срочно?", 6 | "urgentD": "Если вы пытаетесь сообщить о фатальной ошибке или бот уже долгое не работает без уведомления, пожалуйста, упомяните сотрудника в публичном канале, объяснив проблему.", 7 | "link": "Ссылка" 8 | } 9 | -------------------------------------------------------------------------------- /strings/ru/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Счастливой Пасхи!", 3 | "halloween": "Счастливого Хэллоуина!", 4 | "christmas": "Счастливого Рождества!", 5 | "newYear": "С Новым годом!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ru/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Подтверждение профиля Hypixel", 3 | "unverified": "Вы отменили подтверждение!", 4 | "notUnverified": "Невозможно отменить подтверждение!", 5 | "whyNotUnverified": "Это произошло потому, что вы еще не подтвердили свой профиль! Для того чтобы сделать это, используйте `/hypixelverify <имя пользователя>`." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ru/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Таблица лидеров по опыту", 3 | "pageTitle": "Вот таблица лидеров по опыту!", 4 | "level": "%%rank%% место | %%level%% уровень | %%xp%% опыта", 5 | "unranked": "%%rank%% место | Ранга нет", 6 | "youIndicator": "ВЫ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/ru/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "У вас нет роли корректора этого языка, поэтому вы не можете упомянуть {role, select, translator {роль переводчика этого языка} proofreader {эту роль} other {роли этого языка}}. Свяжитесь с администрацией сервера, если вам нужно упомянуть роли.", 3 | "success": "Сообщение отправлено!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/ru/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Пинг", 3 | "pong": "%%pingEmote%% Понг!", 4 | "message": "Мой пинг %%ping%%мс.", 5 | "onlineSince": "Онлайн с %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/ru/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Профиль Crowdin", 3 | "profileSuccess": "Вот ваш профиль", 4 | "noProfile": "Мы не смогли найти ваш профиль в нашей базе данных!", 5 | "howStore": "Если вы хотите сохранить его, используйте `/help verify`, чтобы узнать, как сделать это." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ru/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Цитата", 3 | "msgUrl": "Ссылка на сообщение", 4 | "invalidArg": "Неверный аргумент!", 5 | "indexArg": "Цитата с индексом %%arg%% не существует! Пожалуйста, укажите число между 1 и %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/ru/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Настройка «%%setting%%» установлена в значение «%%value%%»", 3 | "successSet": "Настройка «%%setting%%» установлена в значение «%%value%%»", 4 | "successReset": "Настройка «%%setting%%» сброшена", 5 | "onlyPf": "Эта настройка доступна только для корректоров Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/sr/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/sr/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/sr/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Happy Easter!", 3 | "halloween": "Happy Halloween!", 4 | "christmas": "Merry Christmas!", 5 | "newYear": "Happy New Year!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/sr/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/sr/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/sr/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/sr/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/sr/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/sr/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/sr/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/sr/reviewStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "String review", 3 | "message": "Message", 4 | "clickHere": "Click here", 5 | "requestDetails": "%%user%% requested more details on your suggestion", 6 | "requestedBy": "Requested by %%user%%", 7 | "rejected": "%%user%% rejected your suggestion", 8 | "rejectedBy": "Rejected by %%user%%" 9 | } 10 | -------------------------------------------------------------------------------- /strings/sr/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/sv_SE/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Tog emot ett meddelande från staff", 3 | "incomingDisclaimer": "Alla meddelanden som du skickar här kommer att skickas till staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/sv_SE/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problem och feedback", 3 | "bugT": "Visar och lägger till problem", 4 | "bugD": "För att visa och lämna förslag eller felrapporter, klicka på knappen nedan!", 5 | "urgentT": "Är det brådskande?", 6 | "urgentD": "Om du försöker att rapportera ett allvarligt fel eller om botten har varit inaktiv under en längre tid utan förvarning, vänligen nämn en staffmedlem i en offentlig kanal och förklara problemet.", 7 | "link": "Länk" 8 | } 9 | -------------------------------------------------------------------------------- /strings/sv_SE/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Glad påsk!", 3 | "halloween": "Glad halloween!", 4 | "christmas": "God jul!", 5 | "newYear": "Gott nytt år!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/sv_SE/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixelverifiering", 3 | "unverified": "You har nu avverifierats!", 4 | "notUnverified": "Kunde inte avverifiera dig!", 5 | "whyNotUnverified": "Detta hände eftersom du har inte verifierat dig själv ännu! För att göra det, kör `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/sv_SE/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP-topplista", 3 | "pageTitle": "Här är XP-topplistan!", 4 | "level": "#%%rank%% | Nivå %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Orangordnad", 6 | "youIndicator": "DU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/sv_SE/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Dua har inte det språkets korrekturläsarroll, {role, select, translator {så du kan inte nämna dess översättarroll} proofreader {så du kan inte nämna den} other {så du kan inte nämna hela språket}}. Kontakta en serveradministratör om du verkligen behöver det.", 3 | "success": "Meddelande skickat!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/sv_SE/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Min ping är %%ping%%ms.", 5 | "onlineSince": "Online sedan %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/sv_SE/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin-profil", 3 | "profileSuccess": "Här är din profil", 4 | "noProfile": "Vi kunde inte hitta din profil i vår databas!", 5 | "howStore": "Om du vill lagra den, kör `/help verify` för att ta reda på hur du kan göra det." 6 | } 7 | -------------------------------------------------------------------------------- /strings/sv_SE/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Översättningsprojekt", 3 | "allProjects": "Här är alla projekt som vi just nu stödjer på servern!", 4 | "description": "Om du redan är med i några av dessa projekt men inte har dina roller ännu, kör `/verify [profileURL]` för att få dem!", 5 | "projectInfo": "Du hittar länken till projektet %%project%% [här](%%link%%). För mer information använd %%command%%.", 6 | "alreadyJoined": "Du har redan gått med i detta projekt!", 7 | "notJoined": "Du har inte gått med i detta projekt ännu!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/sv_SE/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Citat", 3 | "msgUrl": "Meddelandets URL", 4 | "invalidArg": "Ogiltigt argument!", 5 | "indexArg": "Ett citat med indexet %%arg%% finns inte! Ange ett nummer mellan 1 och %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/sv_SE/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Din inställning %%setting%% är inställd på %%value%%", 3 | "successSet": "Din inställning %%setting%% ställdes in på %%value%%", 4 | "successReset": "Din inställning %%setting%% återställdes", 5 | "onlyPf": "Denna inställning är endast tillgänglig för Hypixel-korrekturläsare!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/th/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/th/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/th/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "สุขสันต์วันอีสเตอร์!", 3 | "halloween": "สุขสันต์วันฮาโลวีน!", 4 | "christmas": "สุขสันต์วันคริสต์มาส!", 5 | "newYear": "สวัสดีปีใหม่!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/th/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/th/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/th/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/th/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "ปิง", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "ปิงของฉันคือ %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/th/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/th/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/th/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/th/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/tr/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Yetkiliden mesaj alındı", 3 | "incomingDisclaimer": "Burada gönderdiğiniz tüm mesajlar yetkili birine gönderilecektir." 4 | } 5 | -------------------------------------------------------------------------------- /strings/tr/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Bir hata bildir", 3 | "bugT": "Sorunları görüntüleme ve ekleme", 4 | "bugD": "Öneri yapmak veya hata raporu göndermek için aşağıdaki butona tıklayın!", 5 | "urgentT": "Acil mi?", 6 | "urgentD": "Önemli bir hatayı bildirmeye çalışıyorsanız veya bot önceden haber vermeksizin uzun bir süre çalışmıyorsa, lütfen sorunu açıklayan bir mesaj ile herkese açık kanalda yetkili birini etiketleyerek sorundan bahsedin.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/tr/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Mutlu Paskalyalar!", 3 | "halloween": "Cadılar Bayramınız Kutlu Olsun!", 4 | "christmas": "Mutlu Noeller!", 5 | "newYear": "Mutlu Yıllar!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/tr/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Doğrulaması", 3 | "unverified": "Doğrulamayı başarıyla kaldırdın!", 4 | "notUnverified": "Doğrulamanı kaldıramıyoruz!", 5 | "whyNotUnverified": "Bu, henüz kendini doğrulamadığın için oldu! Doğrulamak için `/hypixelverify ` komutunu kullan." 6 | } 7 | -------------------------------------------------------------------------------- /strings/tr/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Deneyim Puanı Sıralaması", 3 | "pageTitle": "İşte Deneyim Puanı Sıralaması!", 4 | "level": "#%%rank%% | Seviye %%level%% | Deneyim Puanı: %%xp%%", 5 | "unranked": "#%%rank%% Derecesiz", 6 | "youIndicator": "SEN" 7 | } 8 | -------------------------------------------------------------------------------- /strings/tr/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "Bu dilin düzeltmen rolüne sahip değilsin, {role, select, translator {bu yüzden çevirmen rolünü etiketleyemezsin} proofreader {bu yüzden onu etiketleyemezsin} other {bu yüzden tüm dili etiketleyemezsin}}. Gerçekten ihtiyacın varsa bir sunucu yöneticisine başvur.", 3 | "success": "Mesaj başarıyla gönderildi!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/tr/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "Ping'im %%ping%%ms'dir.", 5 | "onlineSince": "%%timestamp%% tarihinden beri çevrimiçi\n(%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/tr/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profili", 3 | "profileSuccess": "İşte Profilin", 4 | "noProfile": "Profilini veritabanımızda bulamadık!", 5 | "howStore": "Veritabanımızda saklamak istersen, bunu nasıl yapabileceğini öğrenmek için `/help verify` komutunu kullan." 6 | } 7 | -------------------------------------------------------------------------------- /strings/tr/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Çeviri Projeleri", 3 | "allProjects": "İşte şu anda bu sunucu üzerinde desteklediğimiz diller!", 4 | "description": "Zaten bu projelerde varsan ama henüz rolün yoksa, rolünü almak için `/verify [profilBAĞLANTISI]` komutunu kullan!", 5 | "projectInfo": "%%project%% proje bağlantısını [burada](%%link%%) bulabilirsin. Daha fazla bilgi için %%command%% komutunu kullan.", 6 | "alreadyJoined": "Bu projeye zaten katıldın!", 7 | "notJoined": "Bu projeye henüz katılmadın!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/tr/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Alıntı", 3 | "msgUrl": "Mesaj Bağlantısı", 4 | "invalidArg": "Geçersiz argüman!", 5 | "indexArg": "%%arg%% endeksine sahip bir alıntı mevcut değil! Lütfen 1 ile %%max%% arasında bir sayı sağlayın." 6 | } 7 | -------------------------------------------------------------------------------- /strings/tr/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Kullanıcı Seviyesi", 3 | "yourRank": "İşte Derecen", 4 | "userRank": "İşte %%user%% kullanıcısının derecesi", 5 | "youNotRanked": "Henüz derecen yok!", 6 | "userNotRanked": "Bu kullanıcının henüz derecesi yok!", 7 | "howRank": "Sıralamada yer almak için sohbetlerde konuşmalısın!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, other{# Mesaj}}", 9 | "youLevel": "Şu anda %%level%% seviyesin ve sıralamadaki yerin #%%rank%%!", 10 | "userLevel": "%%user%% şu anda %%level%% seviye ve sıralamadaki yeri #%%rank%%!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/tr/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "%%setting%% ayarınız %%value%% olarak ayarlandı", 3 | "successSet": "Başarılı bir şekilde %%setting%% ayarı %%value%% olarak ayarlandı", 4 | "successReset": "Başarıyla %%setting%% ayarın sıfırlandı", 5 | "onlyPf": "Bu ayar yalnızca Hypixel Düzeltmenleri içindir!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/uk/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Отримано повідомлення від команди", 3 | "incomingDisclaimer": "Будь-які повідомлення, які ви надсилаєте сюди, будуть відправлені команді." 4 | } 5 | -------------------------------------------------------------------------------- /strings/uk/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Повідомити про помилку", 3 | "bugT": "Перегляд і додавання проблем", 4 | "bugD": "Натисніть кнопку нижче, щоб переглянути та внести свої пропозиції або повідомити про помилку!", 5 | "urgentT": "Це терміново?", 6 | "urgentD": "Якщо ви намагаєтеся повідомити про фатальну помилку або бот тривалий час не працює без попередження, будь ласка, згадайте Члена Команди Hypixel в публічному каналі, пояснивши проблему.", 7 | "link": "Посилання" 8 | } 9 | -------------------------------------------------------------------------------- /strings/uk/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Щасливого Великодня!", 3 | "halloween": "Щасливого Хелловіну!", 4 | "christmas": "Щасливого Різдва!", 5 | "newYear": "З Новим Роком!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/uk/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Підтвердження профілю Hypixel", 3 | "unverified": "Ви успішно скасували підтвердження!", 4 | "notUnverified": "Не вдалося скасувати підтвердження!", 5 | "whyNotUnverified": "Це сталося тому, що ви ще не підтвердили свій профіль! Для того, щоб зробити це, напишіть `/hypixelverify <ім’я користувача>`." 6 | } 7 | -------------------------------------------------------------------------------- /strings/uk/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Таблиця лідерів за досвідом", 3 | "pageTitle": "Ось таблиця лідерів за досвідом!", 4 | "level": "№ %%rank%% | Рівень %%level%% | Досвід: %%xp%%", 5 | "unranked": "#%%rank%% місце | Без рангу", 6 | "youIndicator": "ВИ" 7 | } 8 | -------------------------------------------------------------------------------- /strings/uk/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "У вас немає ролі коректора цієї мови, {role, select, translator {тому не можна згадувати роль перекладача цієї мови} proofreader {тому не можна згадувати цю роль} other {тому не можна згадувати мову взагалі}}. Зверніться до адміністратора сервера, якщо вам дійсно треба.", 3 | "success": "Повідомлення успішно відправлено!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/uk/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Пінг", 3 | "pong": "%%pingEmote%% Понг!", 4 | "message": "Мій пінг %%ping%%мс.", 5 | "onlineSince": "Онлайн з %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/uk/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Профіль Crowdin", 3 | "profileSuccess": "Ось ваш профіль", 4 | "noProfile": "Ми не змогли знайти Ваш профіль у нашій базі даних!", 5 | "howStore": "Якщо ви хочете зберегти його, напишіть `/help verify`, щоб дізнатись, як це можна зробити." 6 | } 7 | -------------------------------------------------------------------------------- /strings/uk/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Проєкти перекладу", 3 | "allProjects": "Ось усі проєкти, які ми наразі підтримуємо на сервері!", 4 | "description": "Якщо ви вже учасник будь-якого з цих проєктів, але ще не маєте своїх ролей, напишіть `/verify [profileURL]`, щоб отримати їх!", 5 | "projectInfo": "Ви можете знайти посилання на проєкт %%project%% [тут](%%link%%). Для отримання додаткової інформації напишіть %%command%%.", 6 | "alreadyJoined": "Ви вже приєдналися до цього проєкту!", 7 | "notJoined": "Ви ще не приєдналися до цього проєкту!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/uk/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Цитата", 3 | "msgUrl": "URL-адреса повідомлення", 4 | "invalidArg": "Недійсний аргумент!", 5 | "indexArg": "Цитата з індексом %%arg%% не існує! Будь-ласка вкажіть число між 1 і %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/uk/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Ваше налаштування, «%%setting%%», установлено на: %%value%%", 3 | "successSet": "Успішно встановлено ваше налаштування, «%%setting%%», на: %%value%%", 4 | "successReset": "Успішно скинуто ваше налаштування, «%%setting%%»", 5 | "onlyPf": "Налаштування доступне тільки коректорам Hypixel!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/vi/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "Received message from staff", 3 | "incomingDisclaimer": "Any messages you send here will be sent to staff." 4 | } 5 | -------------------------------------------------------------------------------- /strings/vi/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Problems and feedback", 3 | "bugT": "Viewing and adding issues", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "Is it urgent?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "Link" 8 | } 9 | -------------------------------------------------------------------------------- /strings/vi/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "Happy Easter!", 3 | "halloween": "Happy Halloween!", 4 | "christmas": "Merry Christmas!", 5 | "newYear": "Happy New Year!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/vi/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel Verification", 3 | "unverified": "You were successfully unverified!", 4 | "notUnverified": "Couldn't unverify you!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/vi/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP Leaderboard", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | Level %%level%% | XP: %%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "YOU" 7 | } 8 | -------------------------------------------------------------------------------- /strings/vi/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/vi/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "My ping is %%ping%%ms.", 5 | "onlineSince": "Online since %%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/vi/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin Profile", 3 | "profileSuccess": "Here's your profile", 4 | "noProfile": "We couldn't find your profile in our database!", 5 | "howStore": "If you'd like to store it, execute `/help verify` to know how you can do so." 6 | } 7 | -------------------------------------------------------------------------------- /strings/vi/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Translation Projects", 3 | "allProjects": "Here are all the projects we currently support on the server!", 4 | "description": "If you're already on some of these projects but don't have your roles yet, execute `/verify [profileURL]` to get them!", 5 | "projectInfo": "You can find the link to the %%project%% project [here](%%link%%). For more information, execute %%command%%.", 6 | "alreadyJoined": "You've already joined this project!", 7 | "notJoined": "You haven't joined this project yet!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/vi/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "Message URL", 4 | "invalidArg": "Invalid argument!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/vi/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_CN/8ball.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "占卜球", 3 | "question": "问题", 4 | "answers": { 5 | "positive": [ 6 | "当然啦!", 7 | "的确如此。", 8 | "母庸置疑。", 9 | "是啊,不然呢?", 10 | "或许可信。", 11 | "在我看来,是的。", 12 | "很有可能。", 13 | "看起来挺好。", 14 | "是的", 15 | "有迹象表明这是对的。" 16 | ], 17 | "inconclusive": [ 18 | "你说啥了?请稍后再试。", 19 | "请稍后再试。", 20 | "诶嘿,我才不告诉你呢。", 21 | "这会儿我可猜不出。", 22 | "集中注意力,再问一遍吧。" 23 | ], 24 | "negative": [ 25 | "别指望了。", 26 | "我觉得不可能。", 27 | "根据我的消息来源看,不可能。", 28 | "看起来不太好哦。", 29 | "非常难说。" 30 | ] 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /strings/zh_CN/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "来自管理员的信息", 3 | "incomingDisclaimer": "你在此发送的任何信息都会发送给管理员。" 4 | } 5 | -------------------------------------------------------------------------------- /strings/zh_CN/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "反馈问题", 3 | "bugT": "查看并添加问题", 4 | "bugD": "To show and make suggestions or bug reports, click on the button below!", 5 | "urgentT": "这很紧急吗?", 6 | "urgentD": "If you're trying to report a fatal bug or the bot has been down for a long time without a notice, please mention a staff member in a public channel, explaining the issue.", 7 | "link": "链接" 8 | } 9 | -------------------------------------------------------------------------------- /strings/zh_CN/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "复活节快乐!", 3 | "halloween": "万圣节快乐!", 4 | "christmas": "圣诞节快乐!", 5 | "newYear": "新年快乐!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_CN/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel 验证", 3 | "unverified": "你已成功取消验证!", 4 | "notUnverified": "无法取消验证!", 5 | "whyNotUnverified": "This happened because you haven't verified yourself yet! In order to do so, execute `/hypixelverify `." 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_CN/hypixelverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel 验证", 3 | "success": "你已成功验证为 %%player%%!", 4 | "role": "根据你在 Hypixel 服务器上的 Rank,你已获得对应的 %%role%% 角色。", 5 | "alreadyVerified": "你已经验证过了!", 6 | "nameChangeDisclaimer": "请注意,即使修改了游戏名,也无需进行二次验证。", 7 | "error": "无法验证你的身份,因为你在 Hypixel 服务器上绑定的 Discord 账号不正确!", 8 | "tutorial": "若欲完成验证,请在 Hypixel 服务器上将你的 Discord 账号绑定为 %%tag%%。之后,再等待约 10 分钟并再次执行命令。如果你不清楚如何操作,请观看下面的视频。" 9 | } 10 | -------------------------------------------------------------------------------- /strings/zh_CN/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "经验排行榜", 3 | "pageTitle": "这是经验排行榜!", 4 | "level": "#%%rank%% | %%level%% 级 | 经验:%%xp%%", 5 | "unranked": "#%%rank%% 未排名", 6 | "youIndicator": "你" 7 | } 8 | -------------------------------------------------------------------------------- /strings/zh_CN/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/zh_CN/minecraft.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Minecraft 统计数据", 3 | "history": { 4 | "firstName": "初始游戏名", 5 | "nameHistoryFor": "%%username%% 的曾用游戏名", 6 | "youChangedName": "你{number, plural, =0 {从未修改过游戏名}\nother {修改过游戏名 # 次}}", 7 | "userChangedName": "%%username%% {number, plural,=0 {从未修改过游戏名}\nother {修改过游戏名 # 次}}" 8 | }, 9 | "skin": { 10 | "yourSkin": "这是你的皮肤!", 11 | "userSkin": "这是 %%user%% 的皮肤!", 12 | "isLinked": "此玩家已绑定为 %%user%%" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /strings/zh_CN/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "响应时间", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "我的响应时间是 %%ping%%ms。", 5 | "onlineSince": "上线时间:%%timestamp%%(%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_CN/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin 个人信息", 3 | "profileSuccess": "这是你的个人信息", 4 | "noProfile": "我们在数据库中找不到你的个人信息!", 5 | "howStore": "如果你想要储存个人信息,请执行 `/help verify` 来查看步骤。" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_CN/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "翻译项目", 3 | "allProjects": "这些是我们目前在服务器上支持的所有项目!", 4 | "description": "如果你已经参与了这些项目,但未拥有对应身份组,请输入 `/verify [profileURL]` 以获取身份组!", 5 | "projectInfo": "%%project%%项目的[链接](%%link%%)。欲了解更多信息,请执行 %%command%%。", 6 | "alreadyJoined": "你已加入此项目!", 7 | "notJoined": "你尚未加入此项目!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/zh_CN/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "消息 URL", 4 | "invalidArg": "无效参数!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_CN/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "用户等级", 3 | "yourRank": "Here's your rank", 4 | "userRank": "Here's %%user%%'s rank", 5 | "youNotRanked": "You're not ranked yet!", 6 | "userNotRanked": "That user is not ranked yet!", 7 | "howRank": "In order to be ranked you must talk in the chats!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "You're at level %%level%% and you're #%%rank%% on the leaderboard!", 10 | "userLevel": "%%user%% is at level %%level%% and they're #%%rank%% on the leaderboard!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/zh_CN/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_TW/dm.json: -------------------------------------------------------------------------------- 1 | { 2 | "incoming": "收到來自工作人員的訊息", 3 | "incomingDisclaimer": "你在這裡發送的訊息會傳送至工作人員。" 4 | } 5 | -------------------------------------------------------------------------------- /strings/zh_TW/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "問題及意見回饋", 3 | "bugT": "查看和新增錯誤", 4 | "bugD": "要顯示並提出建議或錯誤報告,請點擊下方的按鈕!", 5 | "urgentT": "這很緊急嗎?", 6 | "urgentD": "如果你要報告致命錯誤,或者機器人在沒有通知下長期下線,請在公開的頻道提及任何一位工作人員並詳細說明情況。", 7 | "link": "連結" 8 | } 9 | -------------------------------------------------------------------------------- /strings/zh_TW/holidays.json: -------------------------------------------------------------------------------- 1 | { 2 | "easter": "復活節快樂!", 3 | "halloween": "萬聖節快樂!", 4 | "christmas": "聖誕節快樂!", 5 | "newYear": "新年快樂!" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_TW/hypixelunverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel 驗證", 3 | "unverified": "你已成功解除驗證!", 4 | "notUnverified": "無法將你解除驗證!", 5 | "whyNotUnverified": "這是因為你尚未進行驗證!如果要這樣做,請先執行 `/hypixelverify <使用者名稱>`。" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_TW/hypixelverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Hypixel 驗證", 3 | "success": "你已成功驗證為 %%player%%!", 4 | "role": "基於你在 Hypixel 的 Rank,你已被給予 %%role%% 身份組。", 5 | "alreadyVerified": "你已經驗證過了!", 6 | "nameChangeDisclaimer": "請注意︰如果你只是更改了名稱,則無需再次進行驗證!", 7 | "error": "我們無法驗證你的身份,因為你在 Hypixel 的 Discord 帳號設定不正確!", 8 | "tutorial": "要完成驗證,你必須在 Hypixel 的社群媒體設定中將你的 Discord 設為 %%tag%%,並等待約 10 分鐘後再次執行此指令。如果你不知道該如何做,請參考以下影片的內容後再進行操作。" 9 | } 10 | -------------------------------------------------------------------------------- /strings/zh_TW/levels.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "XP 排行榜", 3 | "pageTitle": "Here is the XP leaderboard!", 4 | "level": "#%%rank%% | 等級︰%%level%% | XP︰%%xp%%", 5 | "unranked": "#%%rank%% Unranked", 6 | "youIndicator": "你" 7 | } 8 | -------------------------------------------------------------------------------- /strings/zh_TW/mention.json: -------------------------------------------------------------------------------- 1 | { 2 | "errorNoPing": "You don't have that language's proofreader role, {role, select, translator {so you can't mention its translator role} proofreader {so you can't mention it} other {so you can't mention the entire language}}. Contact a server administrator if you really need to.", 3 | "success": "Message sent successfully!" 4 | } 5 | -------------------------------------------------------------------------------- /strings/zh_TW/minecraft.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Minecraft 統計數據", 3 | "history": { 4 | "firstName": "最初的遊戲名稱", 5 | "nameHistoryFor": "%%username%% 曾使用的遊戲名稱", 6 | "youChangedName": "你{number, plural, =0 {從未更改過遊戲名稱} other {已更改遊戲名稱 # 次}}。", 7 | "userChangedName": "%%username%% {number, plural, =0 {從未更改過遊戲名稱} other {已更改他的遊戲名稱 # 次}}。" 8 | }, 9 | "skin": { 10 | "yourSkin": "Here's your skin!", 11 | "userSkin": "Here's %%user%%'s skin!", 12 | "isLinked": "This player is linked to %%user%%" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /strings/zh_TW/ping.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Ping", 3 | "pong": "%%pingEmote%% Pong!", 4 | "message": "我的 Ping 是 %%ping%%ms。", 5 | "onlineSince": "上線時間:%%timestamp%% (%%timestampRelative%%)" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_TW/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Crowdin 個人檔案", 3 | "profileSuccess": "以下是你的個人檔案", 4 | "noProfile": "我們無法從資料庫中找到你的個人檔案!", 5 | "howStore": "如果你想把個人檔案儲存至資料庫,請執行 `/help verify` 以了解操作流程。" 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_TW/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "翻譯項目", 3 | "allProjects": "以下是我們伺服器支援的翻譯項目!", 4 | "description": "如果你已經加入這些項目卻沒有身分組,請執行 `/verify [profileURL]` 來取得它們!", 5 | "projectInfo": "你可以點擊[這裡](%%link%%)找到 %%project%% 項目的連結。如要了解更多資訊,請執行 %%command%%。", 6 | "alreadyJoined": "你已加入此項目!", 7 | "notJoined": "你尚未加入此項目!" 8 | } 9 | -------------------------------------------------------------------------------- /strings/zh_TW/quote.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "Quote", 3 | "msgUrl": "訊息連結", 4 | "invalidArg": "無效的參數!", 5 | "indexArg": "A quote with index %%arg%% doesn't exist! Please provide a number between 1 and %%max%%." 6 | } 7 | -------------------------------------------------------------------------------- /strings/zh_TW/rank.json: -------------------------------------------------------------------------------- 1 | { 2 | "moduleName": "使用者等級", 3 | "yourRank": "Here's your rank", 4 | "userRank": "Here's %%user%%'s rank", 5 | "youNotRanked": "你不在排名上!", 6 | "userNotRanked": "該使用者不在排名上!", 7 | "howRank": "你必須在頻道裡聊天來提高排名!", 8 | "textProgress": "%%currentXp%%/%%xpNeeded%% | {messages, plural, one {# Message} other {# Messages}}", 9 | "youLevel": "你的等級為 %%level%%,你在排行榜的排名是 #%%rank%%!", 10 | "userLevel": "%%user%% 的等級為 %%level%%,他們在排行榜的排名是 #%%rank%%!" 11 | } 12 | -------------------------------------------------------------------------------- /strings/zh_TW/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "isSetTo": "Your %%setting%% setting is set to %%value%%", 3 | "successSet": "Successfully set your %%setting%% setting to %%value%%", 4 | "successReset": "Successfully reset your %%setting%% setting", 5 | "onlyPf": "This setting is only available for Hypixel Proofreaders!" 6 | } 7 | --------------------------------------------------------------------------------