From 8846d6b7857bcc8bec74d063ff8d3cb1a6df8dc6 Mon Sep 17 00:00:00 2001 From: Oumar Aziz Ouattara Date: Sun, 15 Jul 2018 01:27:04 +0200 Subject: [PATCH 1/4] validated the translation principle. (cherry picked from commit b89c3ee) --- meowth/__main__.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/meowth/__main__.py b/meowth/__main__.py index fdfe09310..ca2e5a7bc 100644 --- a/meowth/__main__.py +++ b/meowth/__main__.py @@ -38,6 +38,7 @@ logger = init_loggers() + def _get_prefix(bot, message): guild = message.guild try: @@ -48,6 +49,7 @@ def _get_prefix(bot, message): prefix = bot.config['default_prefix'] return commands.when_mentioned_or(prefix)(bot, message) + Meowth = MeowthBot( command_prefix=_get_prefix, case_insensitive=True, activity=discord.Game(name="Pokemon Go")) @@ -957,6 +959,7 @@ async def guild_cleanup(loop=True): await asyncio.sleep(7200) continue + async def message_cleanup(loop=True): while (not Meowth.is_closed()): logger.info('message_cleanup ------ BEGIN ------') @@ -1110,7 +1113,8 @@ async def on_guild_join(guild): 'trainers':{}, 'trade_dict': {} } - await owner.send(_("Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and someone has invited me to your server! Type **!help** to see a list of things I can do, and type **!configure** in any channel of your server to begin!")) + await owner.send(_("Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and someone has invited me to your server! " + "Type **!help** to see a list of things I can do, and type **!configure** in any channel of your server to begin!")) @Meowth.event async def on_guild_remove(guild): @@ -1634,17 +1638,16 @@ def perms_result(perms): pass await ctx.author.send(embed=embed) -@Meowth.command() +@Meowth.command(help=_("Test welcome on yourself or mentioned member.\n\n" + "Usage: !welcome [@member]")) @commands.has_permissions(manage_guild=True) async def welcome(ctx, user: discord.Member=None): - """Test welcome on yourself or mentioned member. - - Usage: !welcome [@member]""" if (not user): user = ctx.author await on_member_join(user) -@Meowth.command(hidden=True) +@Meowth.command(hidden=True, + help=_("Get current Meowth log.\n\nUsage: !outputlog\nOutput is a link to hastebin.")) @commands.has_permissions(manage_guild=True) async def outputlog(ctx): """Get current Meowth log. @@ -1974,9 +1977,9 @@ async def _configure_team(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() + +@configure.command(help=_("""Welcome message settings""")) async def welcome(ctx): - """Welcome message settings""" guild = ctx.message.guild owner = ctx.message.author try: From 2b3803053c4a41f3d259fbef2077c49cb3136eb0 Mon Sep 17 00:00:00 2001 From: Oumar Aziz Ouattara Date: Tue, 17 Jul 2018 07:31:00 +0200 Subject: [PATCH 2/4] prepare commands translation (cherry picked from commit a67db83) --- meowth/__main__.py | 500 +++++++++++++++++++-------------------------- 1 file changed, 207 insertions(+), 293 deletions(-) diff --git a/meowth/__main__.py b/meowth/__main__.py index ca2e5a7bc..1e2b727a9 100644 --- a/meowth/__main__.py +++ b/meowth/__main__.py @@ -148,7 +148,7 @@ def load_config(): if 'debug' in sys.argv[1:]: print(f'Loaded {ext} extension.') -@Meowth.command(name='load') +@Meowth.command(name=_('load')) @checks.is_owner() async def _load(ctx, *extensions): for ext in extensions: @@ -162,7 +162,7 @@ async def _load(ctx, *extensions): else: await ctx.send(_('**Extension {ext} Loaded.**\n').format(ext=ext)) -@Meowth.command(name='unload') +@Meowth.command(name=_('unload')) @checks.is_owner() async def _unload(ctx, *extensions): exts = [e for e in extensions if f"exts.{e}" in Meowth.extensions] @@ -1349,13 +1349,9 @@ def cleanup_code(content): ctx.bot._last_result = ret await ctx.send(f'```py\n{value}{ret}\n```') -@Meowth.command() +@Meowth.command(name=_("save"), help=_("Save persistent state to file.\n\nFile path is relative to current directory.")) @checks.is_owner() async def save(ctx): - """Save persistent state to file. - - Usage: !save - File path is relative to current directory.""" try: await _save() logger.info('CONFIG SAVED') @@ -1378,13 +1374,10 @@ async def _save(): raise os.rename(tempname, os.path.join('data', 'serverdict')) -@Meowth.command() +@Meowth.command(name=_("restart"), help=_("Restart after saving.\n\n" + "Calls the save function and restarts Meowth.")) @checks.is_owner() async def restart(ctx): - """Restart after saving. - - Usage: !restart. - Calls the save function and restarts Meowth.""" try: await _save() except Exception as err: @@ -1394,13 +1387,10 @@ async def restart(ctx): Meowth._shutdown_mode = 26 await Meowth.logout() -@Meowth.command() +@Meowth.command(name=_("exit"), help=_("Exit after saving.\n\n" + "Calls the save function and quits the script.")) @checks.is_owner() async def exit(ctx): - """Exit after saving. - - Usage: !exit. - Calls the save function and quits the script.""" try: await _save() except Exception as err: @@ -1410,18 +1400,15 @@ async def exit(ctx): Meowth._shutdown_mode = 0 await Meowth.logout() -@Meowth.group(name='set', case_insensitive=True) +@Meowth.group(name='set', help=_("Changes a setting.") , case_insensitive=True) async def _set(ctx): - """Changes a setting.""" if ctx.invoked_subcommand == None: raise commands.BadArgument() return -@_set.command() +@_set.command(name=_("regional"), help=_("Changes server regional pokemon.")) @commands.has_permissions(manage_guild=True) async def regional(ctx, regional): - """Changes server regional pokemon.""" - if regional.isdigit(): regional = int(regional) else: @@ -1463,10 +1450,9 @@ async def regional(ctx, regional): def _set_regional(bot, guild, regional): bot.guild_dict[guild.id]['configure_dict']['settings']['regional'] = regional -@_set.command() +@_set.command(name=_("timezone"), help=_("Changes server timezone.")) @commands.has_permissions(manage_guild=True) async def timezone(ctx,*, timezone: str = ''): - """Changes server timezone.""" try: timezone = float(timezone) except ValueError: @@ -1482,10 +1468,9 @@ async def timezone(ctx,*, timezone: str = ''): def _set_timezone(bot, guild, timezone): bot.guild_dict[guild.id]['configure_dict']['settings']['offset'] = timezone -@_set.command() +@_set.command(name=_("prefix"), help=_("Changes server prefix.")) @commands.has_permissions(manage_guild=True) async def prefix(ctx, prefix=None): - """Changes server prefix.""" if prefix == 'clear': prefix = None prefix = prefix.strip() @@ -1499,9 +1484,8 @@ async def prefix(ctx, prefix=None): def _set_prefix(bot, guild, prefix): bot.guild_dict[guild.id]['configure_dict']['settings']['prefix'] = prefix -@_set.command() +@_set.command(name=_("silph"), help=_("Links a server member to a Silph Road Travelers Card.")) async def silph(ctx, silph_user: str = None): - """Links a server member to a Silph Road Travelers Card.""" if not silph_user: await ctx.send(_('Silph Road Travelers Card cleared!')) try: @@ -1543,9 +1527,8 @@ async def silph(ctx, silph_user: str = None): _('This Travelers Card has been successfully linked to you!'), embed=card.embed(offset)) -@_set.command() +@_set.command(name=_("pokebattler"), help=_("Links a server member to a PokeBattler ID.")) async def pokebattler(ctx, pbid: int = 0): - """Links a server member to a PokeBattler ID.""" if not pbid: await ctx.send(_('Pokebattler ID cleared!')) try: @@ -1560,25 +1543,22 @@ async def pokebattler(ctx, pbid: int = 0): guild_dict[ctx.guild.id]['trainers'] = trainers await ctx.send(_('Pokebattler ID set to {pbid}!').format(pbid=pbid)) -@Meowth.group(name='get', case_insensitive=True) +@Meowth.group(name=_('get'), help=_("Get a setting value"), case_insensitive=True) @commands.has_permissions(manage_guild=True) async def _get(ctx): - """Get a setting value""" if ctx.invoked_subcommand == None: raise commands.BadArgument() return -@_get.command() +@_get.command(name=_("prefix"), help=_("Get server prefix.")) @commands.has_permissions(manage_guild=True) async def prefix(ctx): - """Get server prefix.""" prefix = _get_prefix(Meowth, ctx.message) await ctx.channel.send(_('Prefix for this server is: `{}`').format(prefix)) -@_get.command() +@_get.command(name=_("perms"), help=_("Show Meowth's permissions for the guild and channel.")) @commands.has_permissions(manage_guild=True) async def perms(ctx, channel_id = None): - """Show Meowth's permissions for the guild and channel.""" channel = discord.utils.get(ctx.bot.get_all_channels(), id=channel_id) guild = channel.guild if channel else ctx.guild channel = channel or ctx.channel @@ -1638,8 +1618,8 @@ def perms_result(perms): pass await ctx.author.send(embed=embed) -@Meowth.command(help=_("Test welcome on yourself or mentioned member.\n\n" - "Usage: !welcome [@member]")) +@Meowth.command(name=_("welcome"), + help=_("Test welcome on yourself or mentioned member.\n\nUsage: !welcome [@member]")) @commands.has_permissions(manage_guild=True) async def welcome(ctx, user: discord.Member=None): if (not user): @@ -1658,13 +1638,12 @@ async def outputlog(ctx): logdata = logfile.read() await ctx.channel.send(hastebin.post(logdata)) -@Meowth.command(aliases=['say']) +@Meowth.command(name=_("announce"), help=_("Repeats your message in an embed from Meowth.\n\n" + "If the announcement isn't added at the same time as the command, " + "Meowth will wait 3 minutes for a followup message containing the announcement."), + aliases=[_('say')]) @commands.has_permissions(manage_guild=True) async def announce(ctx, *, announce=None): - """Repeats your message in an embed from Meowth. - - Usage: !announce [announcement] - If the announcement isn't added at the same time as the command, Meowth will wait 3 minutes for a followup message containing the announcement.""" message = ctx.message channel = message.channel guild = message.guild @@ -1769,16 +1748,14 @@ def check(reaction, user): await asyncio.sleep(30) await message.delete() -@Meowth.group(case_insensitive=True, invoke_without_command=True) +@Meowth.group(name=_("configure"), help=_("Meowth Configuration\n\n" + "Meowth will DM you instructions on how to configure Meowth for your server." + "If it is not your first time configuring, you can choose a section to jump to." + "You can also include a comma separated [list] of sections from the following:" + "all, team, welcome, raid, exraid, invite, counters, wild, research, want, archive, timezone"), + case_insensitive=True, invoke_without_command=True) @commands.has_permissions(manage_guild=True) async def configure(ctx, *, configlist: str=""): - """Meowth Configuration - - Usage: !configure [list] - Meowth will DM you instructions on how to configure Meowth for your server. - If it is not your first time configuring, you can choose a section to jump to. - You can also include a comma separated [list] of sections from the following: - all, team, welcome, raid, exraid, invite, counters, wild, research, want, archive, timezone""" await _configure(ctx, configlist) async def _configure(ctx, configlist): @@ -1911,14 +1888,12 @@ def check(m): await owner.send(embed=discord.Embed(colour=discord.Colour.lighter_grey(), description=_("Meowth! Alright! Your settings have been saved and I'm ready to go! If you need to change any of these settings, just type **!configure** in your server again.")).set_author(name=_('Configuration Complete'), icon_url=Meowth.user.avatar_url)) del guild_dict[guild.id]['configure_dict']['settings']['config_sessions'][owner.id] -@configure.command(name='all') +@configure.command(name=_("all"), help=_("All settings")) async def configure_all(ctx): - """All settings""" await _configure(ctx, "all") -@configure.command() +@configure.command(name=_("team"), help=_("!team command settings")) async def team(ctx): - """!team command settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -1978,7 +1953,7 @@ async def _configure_team(ctx): return ctx -@configure.command(help=_("""Welcome message settings""")) +@configure.command(name=_("welcome"), help=_("""Welcome message settings""")) async def welcome(ctx): guild = ctx.message.guild owner = ctx.message.author @@ -2136,9 +2111,8 @@ async def _configure_welcome(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("raid"), help=_("!raid reporting settings")) async def raid(ctx): - """!raid reporting settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -2360,9 +2334,8 @@ async def _configure_raid(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("exraid"), help=_("!exraid reporting settings")) async def exraid(ctx): - """!exraid reporting settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -2551,9 +2524,8 @@ async def _configure_exraid(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("invite"), help=_("!invite command settings")) async def invite(ctx): - """!invite command settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -2597,9 +2569,8 @@ async def _configure_invite(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("counters"), help=_("Automatic counters settings")) async def counters(ctx): - """Automatic counters settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -2652,9 +2623,8 @@ async def _configure_counters(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("wild"), help=_("!wild reporting settings")) async def wild(ctx): - """!wild reporting settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -2752,9 +2722,8 @@ async def _configure_wild(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("research"), help=_("!research reporting settings")) async def research(ctx): - """!research reporting settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -2852,9 +2821,8 @@ async def _configure_research(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command(aliases=['event']) +@configure.command(name=_("meetup"), help=_("!meetup reporting settings"), aliases=['event']) async def meetup(ctx): - """!meetup reporting settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -3027,9 +2995,8 @@ async def _configure_meetup(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("want"), help=_("!want/!unwant settings")) async def want(ctx): - """!want/!unwant settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -3108,9 +3075,8 @@ async def _configure_want(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("archive"), help=_("Configure !archive command settings")) async def archive(ctx): - """Configure !archive command settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -3183,9 +3149,8 @@ async def _configure_archive(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command(aliases=['settings']) +@configure.command(name=_("timezone"), help=_("Configure timezone and other settings"), aliases=['settings']) async def timezone(ctx): - """Configure timezone and other settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -3231,9 +3196,8 @@ async def _configure_settings(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@configure.command() +@configure.command(name=_("trade"), help=_("!trade reporting settings")) async def trade(ctx): - """!trade reporting settings""" guild = ctx.message.guild owner = ctx.message.author try: @@ -3312,20 +3276,16 @@ async def _configure_trade(ctx): ctx.config_dict_temp = config_dict_temp return ctx -@Meowth.command() +@Meowth.command(name=_("reload_json"), help=_("Reloads the JSON files for the server\n\n" + "Useful to avoid a full restart if boss list changed")) @checks.is_owner() async def reload_json(ctx): - """Reloads the JSON files for the server - - Usage: !reload_json - Useful to avoid a full restart if boss list changed""" load_config() await ctx.message.add_reaction('☑') -@Meowth.command() +@Meowth.command(name=_("raid_json"), help=_("Edits or displays raid_info.json")) @checks.is_dev_or_owner() async def raid_json(ctx, level=None, *, newlist=None): - 'Edits or displays raid_info.json\n\n Usage: !raid_json [level] [list]' msg = '' if (not level) and (not newlist): for level in raid_info['raid_eggs']: @@ -3381,7 +3341,8 @@ async def raid_json(ctx, level=None, *, newlist=None): else: return await ctx.channel.send(_("Meowth! I'm not sure what went wrong, but configuration is cancelled!")) -@Meowth.command() + +@Meowth.command(name=_("reset_board")) @commands.has_permissions(manage_guild=True) async def reset_board(ctx, *, user=None, type=None): guild = ctx.guild @@ -3448,14 +3409,10 @@ async def reset_board(ctx, *, user=None, type=None): return await ctx.send("This server's report stats have been reset!") -@Meowth.command() +@Meowth.command(name=_("changeraid"), help=_("Changes raid boss.\n\nUsage: !changeraid \nOnly usable by admins.")) @commands.has_permissions(manage_channels=True) @checks.raidchannel() async def changeraid(ctx, newraid): - """Changes raid boss. - - Usage: !changeraid - Only usable by admins.""" message = ctx.message guild = message.guild channel = message.channel @@ -3517,14 +3474,10 @@ async def changeraid(ctx, newraid): await _eggtoraid(newraid, channel, author=message.author) -@Meowth.command() +@Meowth.command(name=_("clearstatus"), help=_("Clears raid channel status lists.\n\nOnly usable by admins.")) @commands.has_permissions(manage_channels=True) @checks.raidchannel() async def clearstatus(ctx): - """Clears raid channel status lists. - - Usage: !clearstatus - Only usable by admins.""" msg = _("Are you sure you want to clear all status for this raid? Everybody will have to RSVP again. If you are wanting to clear one user's status, use `!setstatus cancel`") question = await ctx.channel.send(msg) try: @@ -3545,15 +3498,16 @@ async def clearstatus(ctx): except KeyError: pass -@Meowth.command() + +@Meowth.command(name=_("setstatus"), help=_("""Changes raid channel status lists. + + Usage: !setstatus [count] + User can be a mention or ID number. Status can be maybeinterested/i, coming/c, here/h, or cancel/x + Only usable by admins.""")) @commands.has_permissions(manage_channels=True) @checks.raidchannel() async def setstatus(ctx, member: discord.Member, status,*, status_counts: str = ''): - """Changes raid channel status lists. - Usage: !setstatus [count] - User can be a mention or ID number. Status can be maybeinterested/i, coming/c, here/h, or cancel/x - Only usable by admins.""" valid_status_list = ['interested', 'i', 'maybe', 'coming', 'c', 'here', 'h', 'cancel','x'] if status not in valid_status_list: await ctx.message.channel.send(_("Meowth! {status} is not a valid status!").format(status=status)) @@ -3562,12 +3516,12 @@ async def setstatus(ctx, member: discord.Member, status,*, status_counts: str = ctx.message.content = "{}{} {}".format(ctx.prefix, status, status_counts) await ctx.bot.process_commands(ctx.message) -@Meowth.command() +@Meowth.command(name=_("cleanroles"), help=_("""Removes all 0 member pokemon roles. + + Usage: !cleanroles""")) @commands.has_permissions(manage_guild=True) async def cleanroles(ctx): - """Removes all 0 member pokemon roles. - Usage: !cleanroles""" cleancount = 0 for role in copy.copy(ctx.guild.roles): if role.members == [] and role.name in pkmn_info['pokemon_list']: @@ -3576,12 +3530,11 @@ async def cleanroles(ctx): cleancount += 1 await ctx.message.channel.send(_("Removed {cleancount} empty roles").format(cleancount=cleancount)) -@Meowth.command() +@Meowth.command(name=_("archive"), help=_("""Marks a raid channel for archival. + + Usage: !archive""")) @checks.allowarchive() async def archive(ctx): - """Marks a raid channel for archival. - - Usage: !archive""" message = ctx.message channel = message.channel await ctx.message.delete() @@ -3596,9 +3549,8 @@ async def _archive(channel): Miscellaneous """ -@Meowth.command(name='uptime') +@Meowth.command(name=_('uptime'), help=_("Shows Meowth's uptime")) async def cmd_uptime(ctx): - "Shows Meowth's uptime" guild = ctx.guild channel = ctx.channel embed_colour = guild.me.colour or discord.Colour.lighter_grey() @@ -3628,9 +3580,8 @@ async def _uptime(bot): uptime = _('{min} mins {sec} secs').format(min=ut.minutes, sec=ut.seconds) return uptime -@Meowth.command() +@Meowth.command(name=_("about"), help=_("Shows info about Meowth")) async def about(ctx): - 'Shows info about Meowth' author_repo = 'https://github.com/FoglyOgly' author_name = 'FoglyOgly' bot_repo = author_repo + '/Meowth' @@ -3662,13 +3613,13 @@ async def about(ctx): except discord.HTTPException: await channel.send(_('I need the `Embed links` permission to send this')) -@Meowth.command() -@checks.allowteam() -async def team(ctx,*,content): - """Set your team role. +@Meowth.command(name=_("team"), help=_("""Set your team role. Usage: !team - The team roles have to be created manually beforehand by the server administrator.""" + The team roles have to be created manually beforehand by the server administrator.""")) +@checks.allowteam() +async def team(ctx, *, content): + guild = ctx.guild toprole = guild.me.top_role.name position = guild.me.top_role.position @@ -3761,12 +3712,11 @@ async def profile(ctx, user: discord.Member = None): embed.add_field(name=_("Research Reports"), value=f"{guild_dict[ctx.guild.id]['trainers'].setdefault(user.id,{}).get('research_reports',0)}", inline=True) await ctx.send(embed=embed) -@Meowth.command() -async def leaderboard(ctx, type="total"): - """Displays the top ten reporters of a server. +@Meowth.command(name=_("leaderboard"), help=_("""Displays the top ten reporters of a server. Usage: !leaderboard [type] - Accepted types: raids, eggs, exraids, wilds, research""" + Accepted types: raids, eggs, exraids, wilds, research""")) +async def leaderboard(ctx, type="total"): trainers = copy.deepcopy(guild_dict[ctx.guild.id]['trainers']) leaderboard = [] rank = 1 @@ -3831,18 +3781,17 @@ async def leaderboard(ctx, type="total"): Notifications """ -@Meowth.command() -@checks.allowwant() -async def want(ctx,*,pokemon): - """Add a Pokemon to your wanted list. +@Meowth.command(name=_("want"), help=_("""Add a Pokemon to your wanted list. Usage: !want Meowth will mention you if anyone reports seeing - this species in their !wild or !raid command.""" + this species in their !wild or !raid command. - """Behind the scenes, Meowth tracks user !wants by + Behind the scenes, Meowth tracks user !wants by creating a server role for the Pokemon species, and - assigning it to the user.""" + assigning it to the user.""")) +@checks.allowwant() +async def want(ctx,*,pokemon): message = ctx.message guild = message.guild channel = message.channel @@ -3939,16 +3888,16 @@ async def want(ctx,*,pokemon): confirmation_msg += _('\n**{count} Not Valid:**').format(count=len(spellcheck_dict)) + spellcheckmsg await channel.send(content=confirmation_msg) -@Meowth.group(case_insensitive=True, invoke_without_command=True) -@checks.allowwant() -async def unwant(ctx,*,pokemon): - """Remove a Pokemon from your wanted list. +@Meowth.group(name=_("unwant"), help=_("""Remove a Pokemon from your wanted list. Usage: !unwant - You will no longer be notified of reports about this Pokemon.""" + You will no longer be notified of reports about this Pokemon. - """Behind the scenes, Meowth removes the user from - the server role for the Pokemon species.""" + Behind the scenes, Meowth removes the user from + the server role for the Pokemon species."""), + case_insensitive=True, invoke_without_command=True) +@checks.allowwant() +async def unwant(ctx,*,pokemon): message = ctx.message guild = message.guild channel = message.channel @@ -3983,16 +3932,16 @@ async def unwant(ctx,*,pokemon): unwant_number = pkmn_info['pokemon_list'].index(entered_unwant) + 1 await message.add_reaction('☑') -@unwant.command(name='all') -@checks.allowwant() -async def unwant_all(ctx): +@unwant.command(name=_('all'), help=_( """Remove all Pokemon from your wanted list. Usage: !unwant all All Pokemon roles are removed.""" """Behind the scenes, Meowth removes the user from - the server role for the Pokemon species.""" + the server role for the Pokemon species.""")) +@checks.allowwant() +async def unwant_all(ctx): message = ctx.message guild = message.guild channel = message.channel @@ -4017,14 +3966,13 @@ async def unwant_all(ctx): Reporting """ -@Meowth.command(aliases=['w']) -@checks.allowwildreport() -async def wild(ctx,pokemon,*,location): - """Report a wild Pokemon spawn location. +@Meowth.command(name=_("wild"), help=_("""Report a wild Pokemon spawn location. Usage: !wild Meowth will insert the details (really just everything after the species name) into a - Google maps link and post the link to the same channel the report was made in.""" + Google maps link and post the link to the same channel the report was made in."""), aliases=['w']) +@checks.allowwildreport() +async def wild(ctx,pokemon,*,location): content = f"{pokemon} {location}" await _wild(ctx.message, content) @@ -4093,17 +4041,17 @@ async def _wild(message, content): wild_reports = guild_dict[message.guild.id].setdefault('trainers',{}).setdefault(message.author.id,{}).setdefault('wild_reports',0) + 1 guild_dict[message.guild.id]['trainers'][message.author.id]['wild_reports'] = wild_reports -@Meowth.command(aliases=['r', 're', 'egg', 'regg', 'raidegg']) -@checks.allowraidreport() -async def raid(ctx,pokemon,*,location:commands.clean_content(fix_channel_mentions=True)="", weather=None, timer=None): - """Report an ongoing raid or a raid egg. +@Meowth.command(name=_("raid"), help=_("""Report an ongoing raid or a raid egg. Usage: !raid [weather] [minutes] Meowth will insert into a Google maps link and post the link to the same channel the report was made in. Meowth's message will also include the type weaknesses of the boss. - Finally, Meowth will create a separate channel for the raid report, for the purposes of organizing the raid.""" + Finally, Meowth will create a separate channel for the raid report, for the purposes of organizing the raid."""), + aliases=['r', 're', 'egg', 'regg', 'raidegg']) +@checks.allowraidreport() +async def raid(ctx,pokemon,*,location:commands.clean_content(fix_channel_mentions=True)="", weather=None, timer=None): content = f"{pokemon} {location}" if pokemon.isdigit(): new_channel = await _raidegg(ctx.message, content) @@ -4694,17 +4642,16 @@ async def _eggtoraid(entered_raid, raid_channel, author=None): await _edit_party(raid_channel, author) event_loop.create_task(expiry_check(raid_channel)) -@Meowth.command(aliases=['ex']) -@checks.allowexraidreport() -async def exraid(ctx, *,location:commands.clean_content(fix_channel_mentions=True)=""): - """Report an upcoming EX raid. +@Meowth.command(name=_("exraid"), help=_("""Report an upcoming EX raid. Usage: !exraid Meowth will insert the details (really just everything after the species name) into a Google maps link and post the link to the same channel the report was made in. Meowth's message will also include the type weaknesses of the boss. - Finally, Meowth will create a separate channel for the raid report, for the purposes of organizing the raid.""" + Finally, Meowth will create a separate channel for the raid report, for the purposes of organizing the raid."""), aliases=['ex']) +@checks.allowexraidreport() +async def exraid(ctx, *,location:commands.clean_content(fix_channel_mentions=True)=""): await _exraid(ctx, location) async def _exraid(ctx, location): @@ -4814,12 +4761,11 @@ async def _exraid(ctx, location): guild_dict[message.guild.id]['trainers'][message.author.id]['ex_reports'] = ex_reports event_loop.create_task(expiry_check(raid_channel)) -@Meowth.command() +@Meowth.command(name=_("invite"), help=_("""Join an EX Raid. + + Usage: !invite""")) @checks.allowinvite() async def invite(ctx): - """Join an EX Raid. - - Usage: !invite""" await _invite(ctx) async def _invite(ctx): @@ -4875,16 +4821,15 @@ async def _invite(ctx): await reply.delete() await exraidmsg.delete() -@Meowth.command(aliases=['res']) -@checks.allowresearchreport() -async def research(ctx, *, details = None): - """Report Field research +@Meowth.command(name=_("research"), help=_("""Report Field research Guided report method with just !research. If you supply arguments in one line, avoid commas in anything but your separations between pokestop, quest, reward. Order matters if you supply arguments. If a pokemon name is included in reward, a @mention will be used if role exists. - Usage: !research [pokestop name [optional URL], quest, reward]""" + Usage: !research [pokestop name [optional URL], quest, reward]"""), aliases=['res']) +@checks.allowresearchreport() +async def research(ctx, *, details = None): message = ctx.message channel = message.channel author = message.author @@ -5002,16 +4947,15 @@ async def research(ctx, *, details = None): await confirmation.delete() await message.delete() -@Meowth.command(aliases=['event']) -@checks.allowmeetupreport() -async def meetup(ctx, *,location:commands.clean_content(fix_channel_mentions=True)=""): - """Report an upcoming event. +@Meowth.command(name=_("meetup"), help=_("""Report an upcoming event. Usage: !meetup Meowth will insert the details (really just everything after the species name) into a Google maps link and post the link to the same channel the report was made in. - Finally, Meowth will create a separate channel for the report, for the purposes of organizing the event.""" + Finally, Meowth will create a separate channel for the report, for the purposes of organizing the event."""), aliases=['event']) +@checks.allowmeetupreport() +async def meetup(ctx, *,location:commands.clean_content(fix_channel_mentions=True)=""): await _meetup(ctx, location) async def _meetup(ctx, location): @@ -5110,14 +5054,13 @@ async def print_raid_timer(channel): timerstr += _("No one told me when the {raidtype} will {raidaction}, so I'm assuming it will {raidaction} at {expiry_time}!").format(raidtype=raidtype, raidaction=raidaction, expiry_time=end.strftime(_('%I:%M %p (%H:%M)'))) return timerstr -@Meowth.command() -@checks.raidchannel() -async def timerset(ctx, *,timer): - """Set the remaining duration on a raid. +@Meowth.command(name=_("timerset"), help=_("""Set the remaining duration on a raid. Usage: !timerset Works only in raid channels, can be set or overridden by anyone. - Meowth displays the end time in HH:MM local time.""" + Meowth displays the end time in HH:MM local time.""")) +@checks.raidchannel() +async def timerset(ctx, *,timer): message = ctx.message channel = message.channel guild = message.guild @@ -5262,27 +5205,25 @@ async def _timerset(raidchannel, exptime): raidchannel = Meowth.get_channel(raidchannel.id) event_loop.create_task(expiry_check(raidchannel)) -@Meowth.command() -@checks.raidchannel() -async def timer(ctx): - """Have Meowth resend the expire time message for a raid. +@Meowth.command(name=_("timer"), help=_("""Have Meowth resend the expire time message for a raid. Usage: !timer - The expiry time should have been previously set with !timerset.""" + The expiry time should have been previously set with !timerset.""")) +@checks.raidchannel() +async def timer(ctx): timerstr = _('Meowth!') timerstr += await print_raid_timer(ctx.channel) await ctx.channel.send(timerstr) -@Meowth.command() -@checks.activechannel() -async def starttime(ctx,*,start_time=""): - """Set a time for a group to start a raid +@Meowth.command(name=_("starttime"), help=_("""Set a time for a group to start a raid Usage: !starttime [HH:MM AM/PM] (You can also omit AM/PM and use 24-hour time!) Works only in raid channels. Sends a message and sets a group start time that can be seen using !starttime (without a time). One start time is allowed at - a time and is visibile in !list output. Cleared with !starting.""" + a time and is visibile in !list output. Cleared with !starting.""")) +@checks.activechannel() +async def starttime(ctx, *, start_time=""): message = ctx.message guild = message.guild channel = message.channel @@ -5392,13 +5333,12 @@ async def starttime(ctx,*,start_time=""): elif not starttime: await channel.send(_('Meowth! No start time has been set, set one with **!starttime HH:MM AM/PM**! (You can also omit AM/PM and use 24-hour time!)')) -@Meowth.group(case_insensitive=True) -@checks.activechannel() -async def location(ctx): - """Get raid location. +@Meowth.group(name=_("location"), help=_("""Get raid location. Usage: !location - Works only in raid channels. Gives the raid location link.""" + Works only in raid channels. Gives the raid location link."""), case_insensitive=True) +@checks.activechannel() +async def location(ctx): if ctx.invoked_subcommand == None: message = ctx.message guild = message.guild @@ -5418,13 +5358,12 @@ async def location(ctx): await asyncio.sleep(60) await locationmsg.delete() -@location.command() -@checks.activechannel() -async def new(ctx,*,content): - """Change raid location. +@location.command(name=_("new"), help=_("""Change raid location. Usage: !location new - Works only in raid channels. Changes the google map links.""" + Works only in raid channels. Changes the google map links.""")) +@checks.activechannel() +async def new(ctx,*,content): message = ctx.message location_split = content.lower().split() if len(location_split) < 1: @@ -5477,12 +5416,11 @@ async def new(ctx,*,content): guild_dict[message.guild.id]['raidchannel_dict'][message.channel.id]['raidreport'] = oldreportmsg.id return -@Meowth.command() -async def recover(ctx): - """Recover a raid channel if it is no longer responding to commands +@Meowth.command(name=_("recover"), help=_("""Recover a raid channel if it is no longer responding to commands Usage: !recover - Only necessary after a crash.""" + Only necessary after a crash.""")) +async def recover(ctx): if (checks.check_wantchannel(ctx) or checks.check_citychannel(ctx) or checks.check_raidchannel(ctx) or checks.check_eggchannel(ctx) or checks.check_exraidchannel(ctx)): await ctx.channel.send(_("Meowth! I can't recover this channel because I know about it already!")) else: @@ -5671,14 +5609,13 @@ async def recover(ctx): await channel.send(recovermsg) event_loop.create_task(expiry_check(channel)) -@Meowth.command() -@checks.activechannel() -async def duplicate(ctx): - """A command to report a raid channel as a duplicate. +@Meowth.command(name=_("duplicate"), help=_("""A command to report a raid channel as a duplicate. Usage: !duplicate Works only in raid channels. When three users report a channel as a duplicate, - Meowth deactivates the channel and marks it for deletion.""" + Meowth deactivates the channel and marks it for deletion.""")) +@checks.activechannel() +async def duplicate(ctx): channel = ctx.channel author = ctx.author guild = ctx.guild @@ -5761,15 +5698,14 @@ async def duplicate(ctx): logger.info((((('Duplicate Report - ' + channel.name) + ' - Report #') + str(dupecount)) + '- Report by ') + author.name) return -@Meowth.command() -async def counters(ctx, *, args = None): - """Simulate a Raid battle with Pokebattler. +@Meowth.command(name=_("counters"), help=_("""Simulate a Raid battle with Pokebattler. Usage: !counters [pokemon] [weather] [user] See !help weather for acceptable values for weather. If [user] is a valid Pokebattler user id, Meowth will simulate the Raid with that user's Pokebox. Uses current boss and weather by default if available. - """ + """)) +async def counters(ctx, *, args = None): rgx = '[^a-zA-Z0-9]' channel = ctx.channel guild = channel.guild @@ -5993,13 +5929,12 @@ def clean(txt): return ctrs_dict -@Meowth.command() -@checks.activechannel() -async def weather(ctx, *, weather): - """Sets the weather for the raid. +@Meowth.command(name=_("weather"), help=_("""Sets the weather for the raid. Usage: !weather Only usable in raid channels. - Acceptable options: none, extreme, clear, rainy, partlycloudy, cloudy, windy, snow, fog""" + Acceptable options: none, extreme, clear, rainy, partlycloudy, cloudy, windy, snow, fog""")) +@checks.activechannel() +async def weather(ctx, *, weather): weather_list = [_('none'), _('extreme'), _('clear'), _('sunny'), _('rainy'), _('partlycloudy'), _('cloudy'), _('windy'), _('snow'), _('fog')] if weather.lower() not in weather_list: @@ -6024,17 +5959,16 @@ async def weather(ctx, *, weather): Status Management """ -@Meowth.command(aliases=['i', 'maybe']) -@checks.activechannel() -async def interested(ctx, *, teamcounts: str=None): - """Indicate you are interested in the raid. +@Meowth.command(name=_("interested"), help=_( """Indicate you are interested in the raid. Usage: !interested [count] [party] Works only in raid channels. If count is omitted, assumes you are a group of 1. Otherwise, this command expects at least one word in your message to be a number, and will assume you are a group with that many people. - Party is also optional. Format is #m #v #i #u to tell your party's teams.""" + Party is also optional. Format is #m #v #i #u to tell your party's teams."""), aliases=['i', 'maybe']) +@checks.activechannel() +async def interested(ctx, *, teamcounts: str=None): trainer_dict = guild_dict[ctx.guild.id]['raidchannel_dict'][ctx.channel.id]['trainer_dict'] entered_interest = trainer_dict.get(ctx.author.id, {}).get('interest', []) egglevel = guild_dict[ctx.guild.id]['raidchannel_dict'][ctx.channel.id]['egglevel'] @@ -6124,10 +6058,7 @@ async def _maybe(channel, author, count, party, entered_interest=None): await _edit_party(channel, author) guild_dict[channel.guild.id]['raidchannel_dict'][channel.id]['trainer_dict'] = trainer_dict -@Meowth.command(aliases=['c']) -@checks.activechannel() -async def coming(ctx, *, teamcounts: str=None): - """Indicate you are on the way to a raid. +@Meowth.command(name=_("coming"), help=_("""Indicate you are on the way to a raid. Usage: !coming [count] [party] Works only in raid channels. If count is omitted, checks for previous !maybe @@ -6136,7 +6067,9 @@ async def coming(ctx, *, teamcounts: str=None): Otherwise, this command expects at least one word in your message to be a number, and will assume you are a group with that many people. - Party is also optional. Format is #m #v #i #u to tell your party's teams.""" + Party is also optional. Format is #m #v #i #u to tell your party's teams."""), aliases=['c']) +@checks.activechannel() +async def coming(ctx, *, teamcounts: str=None): trainer_dict = guild_dict[ctx.guild.id]['raidchannel_dict'][ctx.channel.id]['trainer_dict'] rgx = '[^a-zA-Z0-9]' entered_interest = trainer_dict.get(ctx.author.id, {}).get('interest', []) @@ -6231,10 +6164,7 @@ async def _coming(channel, author, count, party, entered_interest=None): await _edit_party(channel, author) guild_dict[channel.guild.id]['raidchannel_dict'][channel.id]['trainer_dict'] = trainer_dict -@Meowth.command(aliases=['h']) -@checks.activechannel() -async def here(ctx, *, teamcounts: str=None): - """Indicate you have arrived at the raid. +@Meowth.command(name=_("here"), help=_("""Indicate you have arrived at the raid. Usage: !here [count] [party] Works only in raid channels. If message is omitted, and @@ -6243,7 +6173,9 @@ async def here(ctx, *, teamcounts: str=None): Otherwise, this command expects at least one word in your message to be a number, and will assume you are a group with that many people. - Party is also optional. Format is #m #v #i #u to tell your party's teams.""" + Party is also optional. Format is #m #v #i #u to tell your party's teams."""), aliases=['h']) +@checks.activechannel() +async def here(ctx, *, teamcounts: str=None): trainer_dict = guild_dict[ctx.guild.id]['raidchannel_dict'][ctx.channel.id]['trainer_dict'] rgx = '[^a-zA-Z0-9]' entered_interest = trainer_dict.get(ctx.author.id, {}).get('interest', []) @@ -6503,17 +6435,16 @@ async def _edit_party(channel, author=None): except: pass -@Meowth.command(aliases=['l']) -@checks.activeraidchannel() -async def lobby(ctx, *, count: str=None): - """Indicate you are entering the raid lobby. +@Meowth.command(name=_("lobby"), help=_("""Indicate you are entering the raid lobby. Usage: !lobby [message] Works only in raid channels. If message is omitted, and you have previously issued !coming, then preserves the count from that command. Otherwise, assumes you are a group of 1. Otherwise, this command expects at least one word in your message to be a number, - and will assume you are a group with that many people.""" + and will assume you are a group with that many people."""), aliases=['l']) +@checks.activeraidchannel() +async def lobby(ctx, *, count: str=None): try: if guild_dict[ctx.guild.id]['raidchannel_dict'][ctx.channel.id]['type'] == 'egg': if guild_dict[ctx.guild.id]['raidchannel_dict'][ctx.channel.id]['pokemon'] == '': @@ -6551,14 +6482,13 @@ async def _lobby(message, count): trainer_dict[message.author.id]['count'] = count guild_dict[message.guild.id]['raidchannel_dict'][message.channel.id]['trainer_dict'] = trainer_dict -@Meowth.command(aliases=['x']) -@checks.raidchannel() -async def cancel(ctx): - """Indicate you are no longer interested in a raid. +@Meowth.command(name=_("cancel"), help=_("""Indicate you are no longer interested in a raid. Usage: !cancel Works only in raid channels. Removes you and your party - from the list of trainers who are "otw" or "here".""" + from the list of trainers who are "otw" or "here"."""), aliases=['x']) +@checks.raidchannel() +async def cancel(ctx): await _cancel(ctx.channel, ctx.author) async def _cancel(channel, author): @@ -6621,14 +6551,13 @@ async def lobby_countdown(ctx): await _edit_party(ctx.channel, ctx.author) guild_dict[ctx.guild.id]['raidchannel_dict'][ctx.channel.id]['trainer_dict'] = ctx.trainer_dict -@Meowth.command() -@checks.activeraidchannel() -async def starting(ctx, team: str = ''): - """Signal that a raid is starting. +@Meowth.command(name=_("starting"), help=_("""Signal that a raid is starting. Usage: !starting [team] Works only in raid channels. Sends a message and clears the waiting list. Users who are waiting - for a second group must reannounce with the :here: emoji or !here.""" + for a second group must reannounce with the :here: emoji or !here.""")) +@checks.activeraidchannel() +async def starting(ctx, team: str = ''): ctx_startinglist = [] id_startinglist = [] name_startinglist = [] @@ -6695,13 +6624,12 @@ async def starting(ctx, team: str = ''): await ctx.channel.send(starting_str) ctx.bot.loop.create_task(lobby_countdown(ctx)) -@Meowth.command() -@checks.activeraidchannel() -async def backout(ctx): - """Request players in lobby to backout +@Meowth.command(name=_("backout"), help=_("""Request players in lobby to backout Usage: !backout - Will alert all trainers in the lobby that a backout is requested.""" + Will alert all trainers in the lobby that a backout is requested.""")) +@checks.activeraidchannel() +async def backout(ctx): message = ctx.message channel = message.channel author = message.author @@ -6764,13 +6692,12 @@ async def backout(ctx): List Commands """ -@Meowth.group(name="list", aliases=['lists'], case_insensitive=True) -async def _list(ctx): - """Lists all raid info for the current channel. +@Meowth.group(name=_("list"), help=_("""Lists all raid info for the current channel. Usage: !list Works only in raid or city channels. Calls the interested, waiting, and here lists. Also prints - the raid timer. In city channels, lists all active raids.""" + the raid timer. In city channels, lists all active raids."""), aliases=['lists'], case_insensitive=True) +async def _list(ctx): if ctx.invoked_subcommand == None: listmsg = _('**Meowth!** ') guild = ctx.guild @@ -6940,13 +6867,12 @@ def list_output(r): else: raise checks.errors.CityRaidChannelCheckFail() -@_list.command() -@checks.activechannel() -async def interested(ctx, tags: str = ''): - """Lists the number and users who are interested in the raid. +@_list.command(name=_("interested"), help=_("""Lists the number and users who are interested in the raid. Usage: !list interested - Works only in raid channels.""" + Works only in raid channels.""")) +@checks.activechannel() +async def interested(ctx, tags: str = ''): listmsg = _('**Meowth!**') if tags and tags.lower() == "tags" or tags.lower() == "tag": tags = True @@ -6987,13 +6913,12 @@ async def _interest(ctx, tag=False, team=False): listmsg = _(' {trainer_count} interested{including_string}!').format(trainer_count=str(ctx_maybecount), including_string=maybe_exstr) return listmsg -@_list.command() -@checks.activechannel() -async def coming(ctx, tags: str = ''): - """Lists the number and users who are coming to a raid. +@_list.command(name=_("coming"), help=_("""Lists the number and users who are coming to a raid. Usage: !list coming - Works only in raid channels.""" + Works only in raid channels.""")) +@checks.activechannel() +async def coming(ctx, tags: str = ''): listmsg = _('**Meowth!**') if tags and tags.lower() == "tags" or tags.lower() == "tag": tags = True @@ -7034,13 +6959,12 @@ async def _otw(ctx, tag=False, team=False): listmsg = _(' {trainer_count} on the way{including_string}!').format(trainer_count=str(ctx_comingcount), including_string=otw_exstr) return listmsg -@_list.command() -@checks.activechannel() -async def here(ctx, tags: str = ''): - """List the number and users who are present at a raid. +@_list.command(name=_("here"), help=_("""List the number and users who are present at a raid. Usage: !list here - Works only in raid channels.""" + Works only in raid channels.""")) +@checks.activechannel() +async def here(ctx, tags: str = ''): listmsg = _('**Meowth!**') if tags and tags.lower() == "tags" or tags.lower() == "tag": tags = True @@ -7084,13 +7008,12 @@ async def _waiting(ctx, tag=False, team=False): listmsg = _(' {trainer_count} waiting at the {raidtype}{including_string}!').format(trainer_count=str(ctx_herecount), raidtype=raidtype, including_string=here_exstr) return listmsg -@_list.command() -@checks.activeraidchannel() -async def lobby(ctx, tag=False): - """List the number and users who are in the raid lobby. +@_list.command(name=_("lobby"), help=_("""List the number and users who are in the raid lobby. Usage: !list lobby - Works only in raid channels.""" + Works only in raid channels.""")) +@checks.activeraidchannel() +async def lobby(ctx, tag=False): listmsg = _('**Meowth!**') listmsg += await _lobbylist(ctx) await ctx.channel.send(listmsg) @@ -7131,13 +7054,12 @@ async def _lobbylist(ctx, tag=False, team=False): listmsg = _(' {trainer_count} in the lobby{including_string}!').format(trainer_count=str(ctx_lobbycount), including_string=lobby_exstr) return listmsg -@_list.command() -@checks.activeraidchannel() -async def bosses(ctx): - """List each possible boss and the number of users that have RSVP'd for it. +@_list.command(name=_("bosses"), help=_("""List each possible boss and the number of users that have RSVP'd for it. Usage: !list bosses - Works only in raid channels.""" + Works only in raid channels.""")) +@checks.activeraidchannel() +async def bosses(ctx): listmsg = _('**Meowth!**') listmsg += await _bosslist(ctx) await ctx.channel.send(listmsg) @@ -7178,13 +7100,12 @@ async def _bosslist(ctx): listmsg = _(' Nobody has told me what boss they want!') return listmsg -@_list.command() -@checks.activechannel() -async def teams(ctx): - """List the teams for the users that have RSVP'd to a raid. +@_list.command(name=_("teams"), help=_("""List the teams for the users that have RSVP'd to a raid. Usage: !list teams - Works only in raid channels.""" + Works only in raid channels.""")) +@checks.activechannel() +async def teams(ctx): listmsg = _('**Meowth!**') listmsg += await _teamlist(ctx) await ctx.channel.send(listmsg) @@ -7222,13 +7143,12 @@ async def _teamlist(ctx): listmsg = _(' Nobody has updated their status!') return listmsg -@_list.command() -@checks.allowwant() -async def wants(ctx): - """List the wants for the user +@_list.command(name=_("wants"), help=_("""List the wants for the user Usage: !list wants - Works only in the want channel.""" + Works only in the want channel.""")) +@checks.allowwant() +async def wants(ctx): listmsg = _('**Meowth!**') listmsg += await _wantlist(ctx) await ctx.channel.send(listmsg) @@ -7244,12 +7164,9 @@ async def _wantlist(ctx): listmsg = _(" You don\'t have any wants! use **!want** to add some.") return listmsg -@_list.command() +@_list.command(name=_("research"), help=_("List the quests for the channel")) @checks.allowresearchreport() async def research(ctx): - """List the quests for the channel - - Usage: !list research""" listmsg = _('**Meowth!**') listmsg += await _researchlist(ctx) await ctx.channel.send(embed=discord.Embed(colour=ctx.guild.me.colour, description=listmsg)) @@ -7280,12 +7197,9 @@ async def _researchlist(ctx): listmsg = _(" There are no reported research reports. Report one with **!research**") return listmsg -@_list.command() +@_list.command(name=_("wilds"), help=_("List the wilds for the channel")) @checks.allowwildreport() async def wilds(ctx): - """List the wilds for the channel - - Usage: !list wilds""" listmsg = _('**Meowth!**') listmsg += await _wildlist(ctx) await ctx.channel.send(embed=discord.Embed(colour=ctx.guild.me.colour, description=listmsg)) From ab3f373087ec0bb0e75850808aec68fe538ae13c Mon Sep 17 00:00:00 2001 From: Oumar Aziz Ouattara Date: Tue, 17 Jul 2018 07:47:41 +0200 Subject: [PATCH 3/4] review (cherry picked from commit 4e6e359) --- meowth/__main__.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/meowth/__main__.py b/meowth/__main__.py index 1e2b727a9..ace247fed 100644 --- a/meowth/__main__.py +++ b/meowth/__main__.py @@ -1400,7 +1400,7 @@ async def exit(ctx): Meowth._shutdown_mode = 0 await Meowth.logout() -@Meowth.group(name='set', help=_("Changes a setting.") , case_insensitive=True) +@Meowth.group(name=_('set'), help=_("Changes a setting.") , case_insensitive=True) async def _set(ctx): if ctx.invoked_subcommand == None: raise commands.BadArgument() @@ -3530,9 +3530,7 @@ async def cleanroles(ctx): cleancount += 1 await ctx.message.channel.send(_("Removed {cleancount} empty roles").format(cleancount=cleancount)) -@Meowth.command(name=_("archive"), help=_("""Marks a raid channel for archival. - - Usage: !archive""")) +@Meowth.command(name=_("archive"), help=_("Marks a raid channel for archival.")) @checks.allowarchive() async def archive(ctx): message = ctx.message @@ -4761,9 +4759,7 @@ async def _exraid(ctx, location): guild_dict[message.guild.id]['trainers'][message.author.id]['ex_reports'] = ex_reports event_loop.create_task(expiry_check(raid_channel)) -@Meowth.command(name=_("invite"), help=_("""Join an EX Raid. - - Usage: !invite""")) +@Meowth.command(name=_("invite"), help=_("Join an EX Raid.")) @checks.allowinvite() async def invite(ctx): await _invite(ctx) @@ -4822,6 +4818,7 @@ async def _invite(ctx): await exraidmsg.delete() @Meowth.command(name=_("research"), help=_("""Report Field research + Guided report method with just !research. If you supply arguments in one line, avoid commas in anything but your separations between pokestop, quest, reward. Order matters if you supply arguments. If a pokemon name @@ -4829,7 +4826,7 @@ async def _invite(ctx): Usage: !research [pokestop name [optional URL], quest, reward]"""), aliases=['res']) @checks.allowresearchreport() -async def research(ctx, *, details = None): +async def research(ctx, *, details=None): message = ctx.message channel = message.channel author = message.author @@ -5959,7 +5956,7 @@ async def weather(ctx, *, weather): Status Management """ -@Meowth.command(name=_("interested"), help=_( """Indicate you are interested in the raid. +@Meowth.command(name=_("interested"), help=_("""Indicate you are interested in the raid. Usage: !interested [count] [party] Works only in raid channels. If count is omitted, assumes you are a group of 1. From 881513df7eb63ae980d747a3ceee2937194abb70 Mon Sep 17 00:00:00 2001 From: Oumar Aziz Ouattara Date: Tue, 17 Jul 2018 08:24:25 +0200 Subject: [PATCH 4/4] update pot, po and mo --- locale/en/LC_MESSAGES/meowth.mo | Bin 40979 -> 11302 bytes locale/en/LC_MESSAGES/meowth.po | 5867 +++++++++++++++++++++++++------ locale/fr/LC_MESSAGES/meowth.mo | Bin 32359 -> 4816 bytes locale/fr/LC_MESSAGES/meowth.po | 5311 ++++++++++++++++++++++++---- locale/it/LC_MESSAGES/meowth.mo | Bin 31166 -> 4670 bytes locale/it/LC_MESSAGES/meowth.po | 5276 +++++++++++++++++++++++---- locale/meowth.pot | 2603 ++++++++++---- 7 files changed, 15906 insertions(+), 3151 deletions(-) diff --git a/locale/en/LC_MESSAGES/meowth.mo b/locale/en/LC_MESSAGES/meowth.mo index da5e4d3f5b2187ac8916c4d0216ad58813a23b59..fc6793713b2321aa6f7914f7307b3c1eb6a2f4fc 100644 GIT binary patch delta 1618 zcmd7S*-MmB7{~Ev+#R*WEL+SO%Vx^TtSr;YB)kaQG*ZX*q_RaOTZ|TRBrr-Z3J--K zV&0VCMa6p+Xv5m}5sumOXyBKxodck4JF#OgSaSvcT2jQRA(aW3Y>i|oQJ zxE}kEIU_PkV-*7n5=6SO7FS?YqDU^T!tGdx<=F4`Q@kQg^lNcGe!v#=CW&0b>sX5Z zWRaP85IeCMM=&ErB+UHso5ocJ>L-X);8)y(8z!=9yn~nVC01e0BxgbQuz-H-WRWsl zi}iQ~^>gER05_$I4B~y9hnJ=}?|U)C{PKs!0t}@wseS;p{~Q02y99|uVz-GLgZL5+0zY$wtqxSf8-Z1%sL#us;>IMd10pk|ut zb243xn&}hNOe_3OrZ=&Z{(T(5%~_f$lgx16l>*%2p;)@)}* zAFzNID+x+74WnlI0IM(%a5BA!gY-Wlufz&E?}sr&KabUGgjZ1`wcP$M)JOxo)bVW* z8oH&OcnAkkGc915CD@Ic=?D(t7;2_Z`4;`6pFD`vUIfS_eNZ@3_5$MVo=6PpJQ_<9 zmES2#sFCG7v@D{sTM|VjE_<7}DfT3!Bm6M&Q?=*`_HYAXsQ-&%)g?)n%%XFMiT3`^?)U~?L1e`t;A6|@c#;z!!GQ& zq`Pf}=p~WL5##?wXEwhs=UTnhc^(sg_?zkR6`G5_Y}0dWqjk1E&0~V$EVE~Bso8Nn z&suT3(PPFMlFi;=rqy?%#baKasb($SDvxDD>FU+{WACd1$ylV@&Et; literal 40979 zcmeI53y>veRmYo`kShie6nTZ7BrwTj=I+jt4Pml*Y<4%B4ZE9Vca}ULOnT<_%-rmK zar@q#OvdpM0*Jh{R1}bx7#~n*6;fJO2~>$Mw6rKK3&kqYQpzG?p%w~SCFSpbzVGYq zJ9}pzNuU(_)_(iHeY^X6obR0TopZj&{LS|~`KKd3?;yQ^^ixlcqECTOzli_%JniXG zbP&7<9DuI`XTaYFd*D~Wd%^U(qUav|4(JRypP;9cNno)JYa;rGj) z8AUG!Zv$7JNM7Izx&F&%xqAEu`1f2t>)BECG46j2yo~D)KPQSV1^?9Jzk(B7Kl}Tm z=;h>p4fs!7_nymd;A@^2Mb8Ic2kN=EfqQuF*T7Y-zsyaQdy>Yh{TcuL4*26>3ZCGm z-v2F+e*s?2^}m9u&r2?eqDAmF@SWgC!PkKMY5W_&4}!l3PR3DmGx*Qojo?ly^9ryB z&Vj!TUJHH=e829~$X(!P!CCN06t)}O4c5U^pq_s>NRiQ>gRcVr4V(uLT^>cp!1sZ= z{tEbm;C_gH1^8)jKlo+vC%{=cOQ7oYaUR+W-VKqCfIkP`4L$;X z20ZX`m+vzmzUaCP@@n*RAh)8=`rm8UMNxz6o50V44}-UYr}sGi{S^4jC(thNdVc>J z|Ea#aZ-}Bh!MB3Pz%PPyO>_;N56Pmt!9(CfU=02#sC>Tyz6iYbCimQ(Af${Q1a<#c zLEZlvC_a1+joeMU4}%}#`awGN*SUTP#9rq5^SrbI?xirb^H)560i;UN_d-O`XC8b3 z`19aR;HN-HU`&eWM%Tftp9F6MKLK8J*!AxpfM4bM8Z!ADc-2u?k0;&kc>wHj{mbCJ;Bz7J zJ>Uc2PVg^5(dVMOoZh(-l-}9A+v%Opz1sELH$dr~%U|Q<|E;fe?f)?N_q_iHp!Cj1 z7F@r*cG2mb2R%LvPVn3xg3>#Wfd9nx$!S7C8J6{ayxxJwD&JwuF^#|yj7lIej zIimX{_&eZ!kVm4Y@{s7%_V{K{{rxa_8TfgSBBO7B?*x;k(>q@W-@x_B`<&kSYw%{S zKX}UNoqqsd!S&?`jrz9-UJHH%d_VXPp!(yXw$nSm35svN1R~1Oi#qQ4qu?c6zX=q- z{~|aK{x>LoKi+lM9|C`n>#u`XfNOLfEE;_P{0Z=jpz6E!I;VI38`S-`!7R@M{|tOD z_|M>bz_(;hz9(UdX|DeS{9Ew9KP1lY)LB01;5YdRf2tul8CykTdc`x`d*Q*aYy>s#Fom?FQ z@8z<*Pj7V8PU^z z+VTIZz?-m9Bo^qWeHZ&Sdg3|6717{1@@__mb3q;qzVo%Y;Yqm_Cc7*OG401s}RB z`eD*e(z8hV94Dy{5s~Prq?DAA!lxd-fUhP!K)TNV_TAti(i9056b(uG{0Qj<_Ralw z5_k$}9|=~E7DzRcK5rylY~P$Nc?sXe+xpCs=ItA@1WJZ})L%aYwn&oG+x&0e3GN|D zH-rzO6g`I|z3@WPB_w@rB;7>1p7eIoG15y(Go&u*H0k?D_mlK#lb%O%oTZ(?T)dGDmzMZxVW~Up3^rqbxjbx5#~aH@vlVXW zd)lZ+wT*t#Y%HxNole@?jA!DFW@nK0(`?{#2$yMt9G1H6W@p9UaTol$%Jcp=eXYj_ zI*oYHY^T&Gy}#G&uWxR&lg=<{>Bs(N6dziS*So`bH94KeNoPHN-H-yC-A)$YH_Qfc zlAYq`IB8H?J&K#1rPi=P!STj`+IG_ZLaUk4x?Z>s%w4hh(@yDjZEEUx+UxcQ>Y#m& zkuu&q);*QByPa746+?x!W~&kR?Mdp~w+$S3@YLrY6>s&R}ZFn0AQ<8nuyzrBgI2Cv~?)_l6gsH!tM(9OeB@bqY5_ zYa}1O?y<|AjuY!z=OMeOm^QSn*SzF5x}C{EtUARD3rO(7f@mmN4CPtf#1iCkTr5!J z5-(H#A^kRO)NLp0E+_iMbDoJzy@ry@dR^)!$)1A>N2zo1)U@)Rn!3yV=$LX2%7!W& z?GBpD%_V3h&2k1)kAG~0x3|lT-kPVaqus*Qu;aT)+y_xJ(>mh0q+vqPMPjko6Drvc5nHoOU%i;8)Xw zYbrMgn`3r$Dz_cKd)3Od>pzvz?4!z@a0iupZcZkRC+(s zIPJu>ot#QzuR&?dIM&N+sfL&MORP9fG^SO16K|d#$8?fq$D77{=i)sTJ2h1ndRWmE z3N>?#G##hXUs>9-k*E0Z<3I!c!ESej5#mVFLu8trQ<*q=rHSZyhHf;mS)5|vj!3|u zgr=cC);iflJdZ9ya1c4=yG3N0>e1oiu)nxt&|T~7=%*`)Yq>Hxds8!*FRhAj>N8gxKj7sBh5=LxK*Nw@S-rE* z8#8B)L1UiTD&6yG(vJ6HIj(dxE))ZqtU70&o$-jzqx6Kvj&x-O+fVi%ZAlxtTdUXW zh>;p4+uUxO32t^f4njPSY#>zG7TbF+KG|zX(u{|tU+6S_4-G8ZxCdBa==Q)Yey3}g<2WrO}1G*45PMvTwXY?&Uw4D7^1S4GLS zS%8fcj<-PtW|`d`V=fN|SWMXFhY)v-K&xp2pLN!e{LYF@<9W#PfGpE}-Oh4zWr%t~ z)*&4lVl{2`5I5MN*%2+A8gc5#tU|Ht82!PBr)F8UJTZwzXm-#!kZ);-@G=1Jx_V}n zeo>#CoZlxie`7eHo$Yk99^Z-~%5b+HuVScXSYFGq*`r2tDStA(ajW&TH|`AEi%5|@ zIyE&jy9@f$Yg1GDCXUV9nhzfQct_e|xT5`ziHm`ybnl4sLUaBu7%#jXo*3m!#-^)a_>W zhSN9rjI_(yJ!0Zc3V~Cj*6C&v@3+As4sEz%|B)-{uxyYfjWOEASJ=#caX6mlc8!4h zr>6EFas4n_iuz+qDw;JEf?ojc}^F_ghSUk~mw%GYe4yI0qNWd`3nqueEC` zNWPiVMTLH$IHz7l?rv32<(s^*#kN35%YKG``RulZw@1EJwngA;`D_ebiL?N*1G%QM z25eBw7*f~k@v#=3Ws0U4%Kb!#V#yl2XoxcFAw|^~m%0&{hm#dDsz>{Wy_Q^&)RQ@u ztTp1>hl4TqsKip*viMB#o>MFFWgCr<)q?vegmf@yQY;*TItTiFIIFvaGNFvMRYE-& z#OpSEbs11krxVeE`<=FOYR{?ryoK^E5=QXG4vWD^w7ln{=H?Qad(CDb83!_MyCEZyW-#yhv(xO7B=gf;uC6)Z@gEnWk*yCj% z78;}J#<=6+j|+8)ysFyb6wO6P((c+|bt1lW1J#V;YAm2}+nbl7z{FEYd>S(n!-F3g zJR#gha+82R-gqlKX69gMY7p&>uu!qJQ8}+^41OG!PoFcpF2L$JWRgXaCT(q-cFF1Be5nER5t&3HG6_jo@}{v^h|6>gTCH_-?p zj(C$(Q$;U~(&g;6aNecJt!{O`ZC3cUk57GY?PTDK7+55jOeW@{rb$_86%}3A(NzmCs&4rc;w+fR7C(?V9>fhjH*_2W}zD?6{VuCVXI4a3&C74M? z&FJv<-_g;ovY-@ut(e5q9PfVD=SZAFSO8`Zjl#Rjq}DBiF!$w6Ys<^>@DJ8& zCmcaxt*sLPE(Z(#_^6=TvZV&9f@$$kqE%VdZguH{QT>lIPXs`G4{_8lJ(**S`PPy! z7=)b0)m@{A^mbqe4i`hcYat;up23Cv76Qofo#Kd0{ed7ut&@8y4Dje9ENMadX+71>nQujz`Wk z@C)*hi&XTWi_ed44(5bwzLe~y>og;W%IkJEvBA28%-hVk;G?RcWtR_ys-- z;`hz?it^>It2eJK8sn*eKo9!OC4v%iCY&O+z!5Q0%^LacIO9DV(nbZaG?fvUNN=0E zq`F(A@?1GOW;VMnpCJj^vN($6R7;`*rk8+F`L7fqhJxcltP z?xH3qO2cP1Tw!gF2G9gwHmqd{+Hus--+ofYCe3pvS{%%ThGGU#!xWy)HuhSCHH&J@ zW6EM%x(Gq7w&8~D5LR?oXqzre#1zn|*Zi0no^TF~COohz3qs5zDQARkBpN<`lSc;_ zp}bZJ2E#tZUttpD%>t0+x)w`Ja#sm&21RT!lwMC0I7qkpvt;V1GQpA=^PU;=u7|AK z81iL06gI<_tegW-Fp5)ah4W^`KOWjh^)_8=qEAPj&1CUDiA(`;|D&#sH)!Vb;l^26 z16J*z=>6o0pK&T{Ls=M@ZrPj$QtH5fAda4ny;r~&Wvy$AaHAX#IloVwdLg!sc-b2| znqP5dko3qPX^ESx!plv9y7Ho^wjVf0j2|z=GJI%i=6%<(_Kl5{T0dX|0G_PN)f#Fq zjI_4o7t>a|QoCvH-WEh*u8^G22;S6UWT#h~1I2EgE;hS^cwjKy5{(YuURITQaKsSQ z2y))0lWFU-*-qv=qp)RvIitl}d)Q6pBy?=}#-|~=qoLj1Mh#A?t0v9Nh2ryauY;jw zRw%}eH&Nnci^=&(Oj<5b?H4O(eF)m1Y=fNDB-w_( zb2brg92V5PEs1aq-A=jI?sAra78i%rsos(;9DV4YFTliv_ z@XDj^*I^P0@WYf11ByVLb-{XYT*CDIn5vB}u&QZ7!r^lX{kxMrE)ad>#UMr znwpvv*W|x43)by#{ZY#kSV7Dhz)9n|?r=b*86IuTTVOP#hz>sg25H`~&;aAYC}*{K za`Gc9Om{iqbyX-lsX~$HsYcW0k8SB5-b;!hzOu?9K9;&O`>A!kP}fh2dNqxszVw-$b^5Zj~ z8#oGzNFoF2w0vLgLRb*s{VDG(pvR@e3VPYK z{(+(k++dQNyA#iq(fIr4+3U2vc=8+_$+PYW%>+Hh>K7TES$)lL1tBr{MXgdK3%qje zReCARxP=*GFGlBZw$7^Q#>I!{D|brkNEI$NA+6l0M;D|n#dd?!@VI(8TIgZJD&{`! zJlpngRlUn|p;B`WAyK?uOWCp7`G=5dgwZsTMs>3|{UQ!shhPw2*sWAdzic1M&4s-j zZLGw)ijw&7b8v$G_s%`ZhWY;$B{>h7J%>^$&CH%fHP|XSS^Aq{{aq;@jd_?j=fJEC z%oZ1!&X_~vxOl~42Z2gdxSa{}J?drmMW23d-*1Vu8kudy3SW5Agt~2-Rr70p}U~cIVLqUtxP%`;Or=+zNfjpvPev@;2Ghfn-E#QlM zag$-ualb^_MfDXsP`udomFvrj#Xf=)8>0wXxoR?%VUBtF`H>E8TG2dAfHYD1%A7`lA=;YWSj|j4#P5Bh_fp|+= znhM{Q9)|{uYFeurW*f83Fe^B+mfYSMsg$Tgm`}r`-IUAS$>6VVW%a+gwWnPL-QCLG zQS#+Nw>_;CtueD;lvWCl24WSn12TsGODqgI4bMa99%Jk_3sX=8S`g{SbP75?&T{aCqb0pUE`JQnO@ zz(mcdK)9VZySzzko7Uyq!H{XKI}W?btVKRU7lO@eBdfH$SdpN*+wEa>q-_>ACeF0T zJXpNKAs0*|+P$!Ur|maRX~`evHgsUiPA^^3zV*Bn3fBAe&2XZf_pv2_XN$FrhhW`? z4goOIdKdUy3;atvo{I^Eaog?lsFvHuGZ)SKZt*j^*|4WQ1!!$?f?I{m=?k9WAD>Mn zccjUw4n(k_WzAps;bmcgqbzLG0L!yRcIz!Hu&~DMCYX1l+;Po>PsF7dtvEN>02U^- zR`~pMGt3{e67E)(_!17gxl0y)11{aSGHlwOTc;Q}l!H*EmdJ@okYnaT*^Ug)h!Xj) zjO`})-ont*spFa?XQ&&pjJS5QTOXr5ZQ{!DW4U?xgita2Uy5yNok>3bKj`+#OTt{4 z&eB;$yCwalRrWa@Vh5CCNLwcAMr*fCm_0#EL@YA4wzV{rM%&z^3*W+fS-#=eM^SHO zHqAn;#g4Oh&+1^%o7=IYS#P%4QCVl)-m$bhP41i>)_a|m8x&2=x8Jav#7`D0%BEPg zlmS#Q`f8L{-xL9PX&QTBgivfu?RRxDj?JRZE1JHy*i#Fc?I&4qZkw&!jiJ@Oidm4S zyQMq{o0d4i0`qFCUkI$q_;@{DxwlBZDdJk1I;Vb`8#1By`{p=!pkoU`>`Vol?9A6H z*<2uM*V!%DXl`O*S{rJlgu~>4cHClo6kW}Xv@L~N(l$7jv@zqU(^YJ3FEIk!L2Kp3 z>*>fj4kiUs3S#5!w@z-|P;`dEVM_$DJ;lKNF0*)Jb~E2|Y)cYMm@L+(F{vKeD=OB4 zPS~wJ+$Uwb_1R}Ivrla<-nDb~Wizuo zXLilTyLQdJboQ#*ojZ5(;LLG0pX;^p&+T&09mas3Ve+w)wUR-%KNp`^>L)9$_1a-p zFAdqmF(YQArc+#GIMS5oJ!@KoS6firLJ_jJ`qh}R?1*m7+`ddO@%&OQ8vDKMX)tOZmRIkpgs?My^ zoMLrm)yT0~+n#wRR~`4l`l> zGe;L}caF(Z8DYjdk zS;boa?Sm)zT)MO7&nt#<{s-d7hUHI{%vVRzRY%dW75Bh`NWZ|jr2 z&qHR** or reset the hatch timer " "with **!timerset**. This channel will be deactivated until I get an update " -"and I'll delete it in 15 minutes if I don't hear anything." +"and I'll delete it in 45 minutes if I don't hear anything." msgstr "" "**This egg has hatched!**\n" "\n" @@ -68,31 +143,57 @@ msgstr "" "with **!timerset**. This channel will be deactivated until I get an update " "and I'll delete it in 15 minutes if I don't hear anything." -#: __main__.py:360 +#: meowth/__main__.py:727 +msgid "**This level {level} raid egg has expired!**" +msgstr "" + +#: meowth/__main__.py:731 meowth/__main__.py:5429 +msgid "expired-" +msgstr "" + +#: meowth/__main__.py:735 +#, fuzzy msgid "" "This channel timer has expired! The channel has been deactivated and will be " "deleted in 5 minutes.\n" -"To reactivate the channel, use !timerset to set the timer again." +"To reactivate the channel, use **!timerset** to set the timer again." msgstr "" "This channel timer has expired! The channel has been deactivated and will be " "deleted in 5 minutes.\n" "To reactivate the channel, use !timerset to set the timer again." -#: __main__.py:604 -#, python-brace-format +#: meowth/__main__.py:737 +msgid " raid" +msgstr "" + +#: meowth/__main__.py:737 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "event" +msgstr "" + +#: meowth/__main__.py:738 +msgid "**This {pokemon}{raidtype} has expired!**" +msgstr "" + +#: meowth/__main__.py:796 +msgid "archived-" +msgstr "" + +#: meowth/__main__.py:805 msgid "" -"\n" -"Reboot messages sent: {success_count} successful, {fail_count} failed." +"-----------------------------------------------\n" +"**The channel has been archived and removed from view for everybody but " +"Meowth and those with Manage Channel permissions. Any messages that were " +"deleted after the channel was marked for archival will be posted below. You " +"will need to delete this channel manually.**\n" +"-----------------------------------------------" msgstr "" -"\n" -"Reboot messages sent: {success_count} successful, {fail_count} failed." -#: __main__.py:645 +#: meowth/__main__.py:1037 msgid "Starting up..." msgstr "Starting up..." -#: __main__.py:664 -#, python-brace-format +#: meowth/__main__.py:1090 msgid "" "Meowth! That's right!\n" "\n" @@ -104,11 +205,7 @@ msgstr "" "{server_count} servers connected.\n" "{member_count} members found." -#: __main__.py:677 -#| msgid "" -#| "Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and " -#| "someone has invited me to your server! Type !help to see a list of things " -#| "I can do, and type !configure in any channel of your server to begin!" +#: meowth/__main__.py:1116 msgid "" "Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and " "someone has invited me to your server! Type **!help** to see a list of " @@ -120,1421 +217,4882 @@ msgstr "" "things I can do, and type **!configure** in any channel of your server to " "begin!" -#: __main__.py:696 -msgid "" -"__**Meowth Configuration**__\n" -"Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go " -"Helper Bot! I will be guiding you through some setup steps to get me setup " -"on your server.\n" -"\n" -"**Role Setup**\n" -"Before you begin the configuration, please make sure my role is moved to the " -"top end of the server role hierarchy. It can be under admins and mods, but " -"must be above team ands general roles. Here is an example: \n" -"\n" -"Reply with **cancel** at any time throughout the questions to cancel the " -"configure process.\n" -"\n" -"**Team Assignments**\n" -"Team assignment allows users to assign their Pokemon Go team role using the " -"**!team** command. If you have a bot that handles this already, you may want " -"to disable this feature.\n" -"If you are to use this feature, ensure existing team roles are as follows: " -"mystic, valor, instinct. These must be all lowercase letters. If they don't " -"exist yet, I'll make some for you instead.\n" -"\n" -"Respond with: **N** to disable, **Y** to enable:" +#: meowth/__main__.py:1134 meowth/__main__.py:3624 +msgid " or " msgstr "" -"__**Meowth Configuration**__\n" -"Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go " -"Helper Bot! I will be guiding you through some setup steps to get me setup " -"on your server.\n" -"\n" -"**Role Setup**\n" -"Before you begin the configuration, please make sure my role is moved to the " -"top end of the server role hierarchy. It can be under admins and mods, but " -"must be above team ands general roles. Here is an example: \n" -"\n" -"Reply with **cancel** at any time throughout the questions to cancel the " -"configure process.\n" -"\n" -"**Team Assignments**\n" -"Team assignment allows users to assign their Pokemon Go team role using the " -"**!team** command. If you have a bot that handles this already, you may want " -"to disable this feature.\n" -"If you are to use this feature, ensure existing team roles are as follows: " -"mystic, valor, instinct. These must be all lowercase letters. If they don't " -"exist yet, I'll make some for you instead.\n" -"\n" -"Respond with: **N** to disable, **Y** to enable:" -#: __main__.py:705 -msgid "" -"**Team Assignments enabled!**\n" -"---" -msgstr "" -"**Team Assignments enabled!**\n" -"---" +#: meowth/__main__.py:1140 +msgid " If you have any questions just ask an admin." +msgstr " If you have any questions just ask an admin." + +#: meowth/__main__.py:1141 +#, fuzzy +msgid "Meowth! Welcome to {server}, {user}! " +msgstr "Meowth! Welcome to {server_name}, {new_member_name}! " + +#: meowth/__main__.py:1143 +#, fuzzy +msgid "Set your team by typing {team_command}." +msgstr "Set your team by typing {team_command} without quotations." -#: __main__.py:709 +#: meowth/__main__.py:1183 meowth/__main__.py:1195 meowth/__main__.py:6448 msgid "" -"**Team Assignments disabled!**\n" -"---" +"Meowth! Please wait until the raid egg has hatched before announcing you're " +"coming or present." msgstr "" -"**Team Assignments disabled!**\n" -"---" +"Meowth! Please wait until the raid egg has hatched before announcing you're " +"coming or present." -#: __main__.py:712 __main__.py:739 __main__.py:758 __main__.py:781 -#: __main__.py:800 __main__.py:823 __main__.py:840 __main__.py:880 -#: __main__.py:897 __main__.py:924 +#: meowth/__main__.py:1230 meowth/__main__.py:5398 msgid "" -"**CONFIG CANCELLED!**\n" -"No changes have been made." +"Meowth! Someone has suggested a different location for the raid! Trainers " +"{trainer_list}: make sure you are headed to the right place!" msgstr "" -"**CONFIG CANCELLED!**\n" -"No changes have been made." +"Meowth! Someone has suggested a different location for the raid! Trainers " +"{trainer_list}: make sure you are headed to the right place!" -#: __main__.py:715 __main__.py:761 __main__.py:826 __main__.py:843 -#: __main__.py:927 -msgid "" -"I'm sorry I don't understand. Please reply with either **N** to disable, or " -"**Y** to enable." +#: meowth/__main__.py:1294 +msgid "has despawned" msgstr "" -"I'm sorry I don't understand. Please reply with either **N** to disable, or " -"**Y** to enable." -#: __main__.py:718 +#: meowth/__main__.py:1352 msgid "" -"**Welcome Message**\n" +"Save persistent state to file.\n" "\n" -" I can welcome new members to the server with a short message. Here is an " -"example:\n" +"File path is relative to current directory." msgstr "" -"**Welcome Message**\n" -"\n" -" I can welcome new members to the server with a short message. Here is an " -"example:\n" -#: __main__.py:720 -#, python-brace-format -#| msgid "" -#| "Sample message:```Meowth! Welcome to [SERVER], @[MEMBER]! Set your team " -#| "by typing '!team mystic' or '!team valor' or '!team instinct' without " -#| "quotations. If you have any questions just ask an admin.```" -msgid "" -"Meowth! Welcome to {server_name}, {owner_name.mention}! Set your team by " -"typing '**!team mystic**' or '**!team valor**' or '**!team instinct**' " -"without quotations. If you have any questions just ask an admin." +#: meowth/__main__.py:1352 +msgid "save" msgstr "" -"Meowth! Welcome to {server_name}, {owner_name.mention}! Set your team by " -"typing '**!team mystic**' or '**!team valor**' or '**!team instinct**' " -"without quotations. If you have any questions just ask an admin." -#: __main__.py:722 -#, python-brace-format -#| msgid "Meowth! Welcome to {server.name}, {new_member_name.mention}! " -msgid "" -"Meowth! Welcome to {server_name}, {owner_name.mention}! If you have any " -"questions just ask an admin." -msgstr "" -"Meowth! Welcome to {server_name}, {owner_name.mention}! If you have any " -"questions just ask an admin." +#: meowth/__main__.py:1359 meowth/__main__.py:1384 meowth/__main__.py:1397 +msgid "Error occured while trying to save!" +msgstr "Error occured while trying to save!" -#: __main__.py:723 +#: meowth/__main__.py:1377 msgid "" -"This welcome message can be in a specific channel or a direct message. If " -"you have a bot that handles this already, you may want to disable this " -"feature.\n" +"Restart after saving.\n" "\n" -"Respond with: **N** to disable, **Y** to enable:" +"Calls the save function and restarts Meowth." msgstr "" -"This welcome message can be in a specific channel or a direct message. If " -"you have a bot that handles this already, you may want to disable this " -"feature.\n" -"\n" -"Respond with: **N** to disable, **Y** to enable:" -#: __main__.py:728 +#: meowth/__main__.py:1377 +msgid "restart" +msgstr "" + +#: meowth/__main__.py:1386 +#, fuzzy +msgid "Restarting..." +msgstr "Starting up..." + +#: meowth/__main__.py:1390 msgid "" -"**Welcome Message enabled!**\n" -"---\n" -"**Welcome Message Channels**\n" -"Which channel in your server would you like me to post the Welcome Messages? " -"You can also choose to have them sent to the new member via Direct Message " -"(DM) instead.\n" +"Exit after saving.\n" "\n" -"Respond with: **channel-name** of a channel in your server or **DM** to " -"Direct Message:" +"Calls the save function and quits the script." msgstr "" -"**Welcome Message enabled!**\n" -"---\n" -"**Welcome Message Channels**\n" -"Which channel in your server would you like me to post the Welcome Messages? " -"You can also choose to have them sent to the new member via Direct Message " -"(DM) instead.\n" -"\n" -"Respond with: **channel-name** of a channel in your server or **DM** to " -"Direct Message:" -#: __main__.py:736 -msgid "" -"Channel names can't contain spaces, sorry. Please double check the name and " -"send your response again." +#: meowth/__main__.py:1390 +msgid "exit" msgstr "" -"Channel names can't contain spaces, sorry. Please double check the name and " -"send your response again." -#: __main__.py:748 -msgid "" -"**Welcome Channel set**\n" -"---" +#: meowth/__main__.py:1399 +#, fuzzy +msgid "Shutting down..." +msgstr "Starting up..." + +#: meowth/__main__.py:1403 +msgid "Changes a setting." msgstr "" -"**Welcome Channel set**\n" -"---" -#: __main__.py:751 -msgid "" -"The channel you provided isn't in your server. Please double check your " -"channel name and resend your response." +#: meowth/__main__.py:1403 +msgid "set" msgstr "" -"The channel you provided isn't in your server. Please double check your " -"channel name and resend your response." -#: __main__.py:755 -msgid "" -"**Welcome Message disabled!**\n" -"---" +#: meowth/__main__.py:1409 +msgid "Changes server regional pokemon." msgstr "" -"**Welcome Message disabled!**\n" -"---" -#: __main__.py:764 -msgid "" -"**Main Functions**\n" -"Main Functions include:\n" -" - **!want** and creating tracked Pokemon roles \n" -" - **!wild** Pokemon reports\n" -" - **!raid** reports and channel creation for raid management.\n" -"If you don't want __any__ of the Pokemon tracking or Raid management " -"features, you may want to disable them.\n" -"\n" -"Respond with: **N** to disable, or **Y** to enable:" +#: meowth/__main__.py:1409 +msgid "regional" msgstr "" -"**Main Functions**\n" -"Main Functions include:\n" -" - **!want** and creating tracked Pokemon roles \n" -" - **!wild** Pokemon reports\n" -" - **!raid** reports and channel creation for raid management.\n" -"If you don't want __any__ of the Pokemon tracking or Raid management " -"features, you may want to disable them.\n" -"\n" -"Respond with: **N** to disable, or **Y** to enable:" -#: __main__.py:769 -msgid "" -"**Main Functions enabled**\n" -"---\n" -"**Reporting Channels**\n" -"Pokemon raid or wild reports are contained within one or more channels. Each " -"channel will be able to represent different areas/communities. I'll need you " -"to provide a list of channels in your server you will allow reports from in " -"this format: `channel-name, channel-name, channel-name`" +#: meowth/__main__.py:1417 +msgid "Are you sure you want to clear all regionals?" msgstr "" -"**Main Functions enabled**\n" -"---\n" -"**Reporting Channels**\n" -"Pokemon raid or wild reports are contained within one or more channels. Each " -"channel will be able to represent different areas/communities. I'll need you " -"to provide a list of channels in your server you will allow reports from in " -"this format: `channel-name, channel-name, channel-name`" -#: __main__.py:771 -msgid "" -"If you do not require raid and wild reporting, you may want to disable this " -"function.\n" -"\n" -"Respond with: **N** to disable, or the **channel-name** list to enable, each " -"seperated with a comma and space:" +#: meowth/__main__.py:1438 +msgid "Meowth! Regional raid boss cleared!" msgstr "" -"If you do not require raid and wild reporting, you may want to disable this " -"function.\n" -"\n" -"Respond with: **N** to disable, or the **channel-name** list to enable, each " -"seperated with a comma and space:" -#: __main__.py:778 -msgid "" -"**Reporting Channels disabled**\n" -"---" +#: meowth/__main__.py:1444 +msgid "Meowth! Regional raid boss set to **{boss}**!" msgstr "" -"**Reporting Channels disabled**\n" -"---" -#: __main__.py:791 -msgid "" -"**Reporting Channels enabled**\n" -"---" +#: meowth/__main__.py:1447 +#, fuzzy +msgid "Meowth! That Pokemon doesn't appear in raids!" +msgstr "Meowth! The Pokemon {pokemon} does not appear in raids!" + +#: meowth/__main__.py:1453 +msgid "Changes server timezone." +msgstr "" + +#: meowth/__main__.py:1453 meowth/__main__.py:3152 +msgid "timezone" msgstr "" -"**Reporting Channels enabled**\n" -"---" -#: __main__.py:793 -#, python-brace-format +#: meowth/__main__.py:1459 meowth/__main__.py:1462 +#, fuzzy msgid "" -"The channel list you provided doesn't match with your servers channels.\n" -"The following aren't in your server: {invalid_channels}\n" -"Please double check your channel list and resend your reponse." +"I couldn't convert your answer to an appropriate timezone! Please double " +"check what you sent me and resend a number from **-12** to **12**." msgstr "" -"The channel list you provided doesn't match with your servers channels.\n" -"The following aren't in your server: {invalid_channels}\n" -"Please double check your channel list and resend your reponse." +"I couldn't convert your answer to an appropriate timezone!.\n" +"Please double check what you sent me and resend a number strarting from " +"**-12** to **12**." -#: __main__.py:796 +#: meowth/__main__.py:1466 msgid "" -"**Report Locations**\n" -"For each report, I generate Google Maps links to give people directions to " -"raids and spawns! To do this, I need to know which suburb/town/region each " -"report channel represents, to ensure we get the right location in the map. " -"For each report channel you provided, I will need it's corresponding general " -"location using only letters and spaces, with each location seperated by a " -"comma and space.\n" -"Example: `kansas city mo, hull uk, sydney nsw australia`\n" -"Each location will have to be in the same order as you provided the channels " -"in the previous question.\n" +"Timezone has been set to: `UTC{offset}`\n" +"The current time is **{now}**" +msgstr "" + +#: meowth/__main__.py:1471 +msgid "Changes server prefix." +msgstr "" + +#: meowth/__main__.py:1471 meowth/__main__.py:1553 +msgid "prefix" +msgstr "" + +#: meowth/__main__.py:1479 +msgid "Prefix has been set to: `{}`" +msgstr "" + +#: meowth/__main__.py:1482 +msgid "Prefix has been reset to default: `{}`" +msgstr "" + +#: meowth/__main__.py:1487 +msgid "Links a server member to a Silph Road Travelers Card." +msgstr "" + +#: meowth/__main__.py:1487 +msgid "silph" +msgstr "" + +#: meowth/__main__.py:1490 +msgid "Silph Road Travelers Card cleared!" +msgstr "" + +#: meowth/__main__.py:1500 +msgid "The Silph Extension isn't accessible at the moment, sorry!" +msgstr "" + +#: meowth/__main__.py:1505 +msgid "Silph Card for {silph_user} not found." +msgstr "" + +#: meowth/__main__.py:1509 +msgid "No Discord account found linked to this Travelers Card!" +msgstr "" + +#: meowth/__main__.py:1513 +msgid "This Travelers Card is linked to another Discord account!" +msgstr "" + +#: meowth/__main__.py:1527 +msgid "This Travelers Card has been successfully linked to you!" +msgstr "" + +#: meowth/__main__.py:1530 +msgid "Links a server member to a PokeBattler ID." +msgstr "" + +#: meowth/__main__.py:1530 +msgid "pokebattler" +msgstr "" + +#: meowth/__main__.py:1533 +msgid "Pokebattler ID cleared!" +msgstr "" + +#: meowth/__main__.py:1544 +msgid "Pokebattler ID set to {pbid}!" +msgstr "" + +#: meowth/__main__.py:1546 +msgid "Get a setting value" +msgstr "" + +#: meowth/__main__.py:1546 +msgid "get" +msgstr "" + +#: meowth/__main__.py:1553 +msgid "Get server prefix." +msgstr "" + +#: meowth/__main__.py:1557 +msgid "Prefix for this server is: `{}`" +msgstr "" + +#: meowth/__main__.py:1559 +msgid "Show Meowth's permissions for the guild and channel." +msgstr "" + +#: meowth/__main__.py:1559 +msgid "perms" +msgstr "" + +#: meowth/__main__.py:1570 +msgid "Bot Permissions" +msgstr "" + +#: meowth/__main__.py:1585 +msgid "**FAIL**" +msgstr "" + +#: meowth/__main__.py:1585 +msgid "**PASS**" +msgstr "" + +#: meowth/__main__.py:1593 +msgid "**MISSING**" +msgstr "" + +#: meowth/__main__.py:1596 +msgid "**ENABLED**" +msgstr "" + +#: meowth/__main__.py:1601 +msgid "GUILD" +msgstr "" + +#: meowth/__main__.py:1606 +msgid "CATEGORY" +msgstr "" + +#: meowth/__main__.py:1607 +msgid "CHANNEL" +msgstr "" + +#: meowth/__main__.py:1614 +msgid "I couldn't send an embed here, so I've sent you a DM" +msgstr "" + +#: meowth/__main__.py:1621 meowth/__main__.py:1956 +msgid "welcome" +msgstr "" + +#: meowth/__main__.py:1622 +msgid "" +"Test welcome on yourself or mentioned member.\n" "\n" -"Respond with: **location info, location info, location info** each matching " -"the order of the previous channel list:" +"Usage: !welcome [@member]" msgstr "" -"**Report Locations**\n" -"For each report, I generate Google Maps links to give people directions to " -"raids and spawns! To do this, I need to know which suburb/town/region each " -"report channel represents, to ensure we get the right location in the map. " -"For each report channel you provided, I will need it's corresponding general " -"location using only letters and spaces, with each location seperated by a " -"comma and space.\n" -"Example: `kansas city mo, hull uk, sydney nsw australia`\n" -"Each location will have to be in the same order as you provided the channels " -"in the previous question.\n" + +#: meowth/__main__.py:1630 +msgid "" +"Get current Meowth log.\n" "\n" -"Respond with: **location info, location info, location info** each matching " -"the order of the previous channel list:" +"Usage: !outputlog\n" +"Output is a link to hastebin." +msgstr "" -#: __main__.py:808 -#, python-brace-format +#: meowth/__main__.py:1641 msgid "" -"The number of cities don't match the number of channels you gave me " -"earlier!\n" -"I'll show you the two lists to compare:\n" -"{channellist}\n" -"{citylist}\n" -"Please double check that your locations match up with your provided channels " -"and resend your response." +"Repeats your message in an embed from Meowth.\n" +"\n" +"If the announcement isn't added at the same time as the command, Meowth will " +"wait 3 minutes for a followup message containing the announcement." +msgstr "" + +#: meowth/__main__.py:1641 +msgid "announce" +msgstr "" + +#: meowth/__main__.py:1644 +msgid "say" +msgstr "" + +#: meowth/__main__.py:1652 +msgid "I'll wait for your announcement!" msgstr "" -"The number of cities don't match the number of channels you gave me " -"earlier!\n" -"I'll show you the two lists to compare:\n" -"{channellist}\n" -"{citylist}\n" -"Please double check that your locations match up with your provided channels " -"and resend your response." -#: __main__.py:811 +#: meowth/__main__.py:1659 meowth/__main__.py:1715 msgid "" -"**Report Locations are set**\n" -"---\n" -"**Raid Reports**\n" -"Do you want **!raid** reports enabled? If you want __only__ the **!wild** " -"feature for reports, you may want to disable this.\n" +"Meowth! You took too long to send me your announcement! Retry when you're " +"ready." +msgstr "" + +#: meowth/__main__.py:1662 +msgid "Announcement" +msgstr "" + +#: meowth/__main__.py:1672 +msgid "to send it to all servers, " +msgstr "" + +#: meowth/__main__.py:1680 +msgid "That's what you sent, does it look good? React with " +msgstr "" + +#: meowth/__main__.py:1682 +msgid "to send to another channel, " +msgstr "" + +#: meowth/__main__.py:1684 +msgid "to send it to this channel, or " +msgstr "" + +#: meowth/__main__.py:1686 +msgid "to cancel" +msgstr "" + +#: meowth/__main__.py:1696 +#, fuzzy +msgid "Announcement Cancelled." +msgstr "Duplicate Report cancelled." + +#: meowth/__main__.py:1699 meowth/__main__.py:1711 +msgid "Announcement Sent." +msgstr "" + +#: meowth/__main__.py:1701 +msgid "What channel would you like me to send it to?" +msgstr "" + +#: meowth/__main__.py:1713 +msgid "Meowth! That channel doesn't exist! Retry when you're ready." +msgstr "" + +#: meowth/__main__.py:1726 meowth/__main__.py:3608 +msgid "For support, contact us on our Discord server. Invite Code: hhVjAN8" +msgstr "" + +#: meowth/__main__.py:1740 +msgid "Announcement sent to {} server owners: {} successful, {} failed." +msgstr "" + +#: meowth/__main__.py:1745 +#, fuzzy +msgid "Announcement Timed Out." +msgstr "Duplicate Report Timed Out." + +#: meowth/__main__.py:1751 +msgid "" +"Meowth Configuration\n" "\n" -"Respond with: **N** to disable, or **Y** to enable:" +"Meowth will DM you instructions on how to configure Meowth for your server." +"If it is not your first time configuring, you can choose a section to jump " +"to.You can also include a comma separated [list] of sections from the " +"following:all, team, welcome, raid, exraid, invite, counters, wild, " +"research, want, archive, timezone" msgstr "" -"**Report Locations are set**\n" -"---\n" -"**Raid Reports**\n" -"Do you want **!raid** reports enabled? If you want __only__ the **!wild** " -"feature for reports, you may want to disable this.\n" + +#: meowth/__main__.py:1751 +msgid "configure" +msgstr "" + +#: meowth/__main__.py:1790 +msgid "" +"I'm sorry, I couldn't understand some of what you entered. Let's just start " +"here." +msgstr "" + +#: meowth/__main__.py:1792 meowth/__main__.py:1909 meowth/__main__.py:1970 +#: meowth/__main__.py:2128 meowth/__main__.py:2351 meowth/__main__.py:2541 +#: meowth/__main__.py:2640 meowth/__main__.py:2739 meowth/__main__.py:2838 +#: meowth/__main__.py:3012 meowth/__main__.py:3092 meowth/__main__.py:3166 +#: meowth/__main__.py:3213 +msgid "" +"**MULTIPLE SESSIONS!**\n" "\n" -"Respond with: **N** to disable, or **Y** to enable:" +"It looks like you have **{yoursessions}** active configure sessions. I " +"recommend you send **cancel** first and then send your request again to " +"avoid confusing me.\n" +"\n" +"Your Sessions: **{yoursessions}** | Total Sessions: **{allsessions}**" +msgstr "" -#: __main__.py:816 +#: meowth/__main__.py:1793 +#, fuzzy msgid "" -"**Raid Reports enabled**\n" -"---" +"Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go " +"Helper Bot! I will be guiding you through some steps to get me setup on your " +"server.\n" +"\n" +"**Role Setup**\n" +"Before you begin the configuration, please make sure my role is moved to the " +"top end of the server role hierarchy. It can be under admins and mods, but " +"must be above team and general roles. [Here is an example](http://i.imgur." +"com/c5eaX1u.png)" msgstr "" -"**Raid Reports enabled**\n" +"__**Meowth Configuration**__\n" +"\n" +"Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go " +"Helper Bot! I will be guiding you through some setup steps to get me setup " +"on your server.\n" +"\n" +"**Team Assignment Configuration**\n" +"\n" +"First, I have a feature that allows users to assign their Pokemon Go team " +"using roles. If you have a bot that handles this already, or you don't want " +"this feature, type N, otherwise type Y to enable the feature!" + +#: meowth/__main__.py:1795 +msgid "" +"\n" +"\n" +"**Welcome Back**\n" +"This isn't your first time configuring. You can either reconfigure " +"everything by replying with **all** or reply with a comma separated list to " +"configure those commands. Example: `want, raid, wild`" +msgstr "" + +#: meowth/__main__.py:1799 +msgid "" +"\n" +"\n" +"**Enabled Commands:**\n" +"{enabled_commands}" +msgstr "" + +#: meowth/__main__.py:1800 +msgid "" +"\n" +"\n" +"**All Commands:**\n" +"**all** - To redo configuration\n" +"**team** - For Team Assignment configuration\n" +"**welcome** - For Welcome Message configuration\n" +"**raid** - for raid command configuration\n" +"**exraid** - for EX raid command configuration\n" +"**invite** - for invite command configuration\n" +"**counters** - for automatic counters configuration\n" +"**wild** - for wild command configuration\n" +"**research** - for !research command configuration\n" +"**meetup** - for !meetup command configuration\n" +"**want** - for want/unwant command configuration\n" +"**archive** - For !archive configuration\n" +"**trade** - For trade command configuration\n" +"**timezone** - For timezone configuration" +msgstr "" + +#: meowth/__main__.py:1801 meowth/__main__.py:1828 +msgid "" +"\n" +"\n" +"Reply with **cancel** at any time throughout the questions to cancel the " +"configure process." +msgstr "" + +#: meowth/__main__.py:1802 meowth/__main__.py:1829 +msgid "Meowth Configuration - {guild}" +msgstr "" + +#: meowth/__main__.py:1809 meowth/__main__.py:1947 meowth/__main__.py:2014 +#: meowth/__main__.py:2065 meowth/__main__.py:2106 meowth/__main__.py:2148 +#: meowth/__main__.py:2197 meowth/__main__.py:2219 meowth/__main__.py:2238 +#: meowth/__main__.py:2288 meowth/__main__.py:2371 meowth/__main__.py:2420 +#: meowth/__main__.py:2442 meowth/__main__.py:2461 meowth/__main__.py:2519 +#: meowth/__main__.py:2564 meowth/__main__.py:2604 meowth/__main__.py:2660 +#: meowth/__main__.py:2709 meowth/__main__.py:2759 meowth/__main__.py:2808 +#: meowth/__main__.py:2859 meowth/__main__.py:2908 meowth/__main__.py:2930 +#: meowth/__main__.py:2949 meowth/__main__.py:3031 meowth/__main__.py:3108 +#: meowth/__main__.py:3141 meowth/__main__.py:3181 meowth/__main__.py:3228 +#, fuzzy +msgid "" +"**CONFIG CANCELLED!**\n" +"\n" +"No changes have been made." +msgstr "" +"**CONFIG CANCELLED!**\n" +"No changes have been made." + +#: meowth/__main__.py:1823 +#, fuzzy +msgid "I'm sorry I don't understand. Please reply with the choices above." +msgstr "" +"I'm sorry I don't understand. Please reply with either **N** to disable, or " +"**Y** to enable." + +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 +msgid "Configuration Complete" +msgstr "" + +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 +msgid "" +"Meowth! Alright! Your settings have been saved and I'm ready to go! If you " +"need to change any of these settings, just type **!configure** in your " +"server again." +msgstr "" +"Meowth! Alright! Your settings have been saved and I'm ready to go! If you " +"need to change any of these settings, just type **!configure** in your " +"server again." + +#: meowth/__main__.py:1891 +msgid "All settings" +msgstr "" + +#: meowth/__main__.py:1891 meowth/__main__.py:3933 +msgid "all" +msgstr "" + +#: meowth/__main__.py:1895 +msgid "!team command settings" +msgstr "" + +#: meowth/__main__.py:1895 meowth/__main__.py:3452 meowth/__main__.py:3614 +#: meowth/__main__.py:4432 meowth/__main__.py:4592 meowth/__main__.py:5386 +#: meowth/__main__.py:5400 meowth/__main__.py:6410 +msgid "team" +msgstr "" + +#: meowth/__main__.py:1921 +#, fuzzy +msgid "Team Assignments" +msgstr "" +"**Team Assignments enabled!**\n" "---" -#: __main__.py:820 +#: meowth/__main__.py:1921 msgid "" -"**Raid Reports disabled**\n" +"Team assignment allows users to assign their Pokemon Go team role using the " +"**!team** command. If you have a bot that handles this already, you may want " +"to disable this feature.\n" +"\n" +"If you are to use this feature, ensure existing team roles are as follows: " +"mystic, valor, instinct. These must be all lowercase letters. If they don't " +"exist yet, I'll make some for you instead.\n" +"\n" +"Respond here with: **N** to disable, **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:1940 +#, fuzzy +msgid "Team Assignments enabled!" +msgstr "" +"**Team Assignments enabled!**\n" "---" + +#: meowth/__main__.py:1944 +#, fuzzy +msgid "Team Assignments disabled!" msgstr "" -"**Raid Reports disabled**\n" +"**Team Assignments disabled!**\n" "---" -#: __main__.py:828 +#: meowth/__main__.py:1950 meowth/__main__.py:2109 meowth/__main__.py:2522 +#: meowth/__main__.py:2567 +msgid "" +"I'm sorry I don't understand. Please reply with either **N** to disable, or " +"**Y** to enable." +msgstr "" +"I'm sorry I don't understand. Please reply with either **N** to disable, or " +"**Y** to enable." + +#: meowth/__main__.py:1956 +msgid "Welcome message settings" +msgstr "" + +#: meowth/__main__.py:1981 +#, fuzzy +msgid "" +"I can welcome new members to the server with a short message. Here is an " +"example, but it is customizable:\n" +"\n" +msgstr "" +"**Welcome Message**\n" +"\n" +" I can welcome new members to the server with a short message. Here is an " +"example:\n" + +#: meowth/__main__.py:1983 +msgid "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! Set your team by " +"typing '**!team mystic**' or '**!team valor**' or '**!team instinct**' " +"without quotations. If you have any questions just ask an admin." +msgstr "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! Set your team by " +"typing '**!team mystic**' or '**!team valor**' or '**!team instinct**' " +"without quotations. If you have any questions just ask an admin." + +#: meowth/__main__.py:1985 +msgid "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! If you have any " +"questions just ask an admin." +msgstr "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! If you have any " +"questions just ask an admin." + +#: meowth/__main__.py:1986 +#, fuzzy +msgid "" +"\n" +"\n" +"This welcome message can be in a specific channel or a direct message. If " +"you have a bot that handles this already, you may want to disable this " +"feature.\n" +"\n" +"Respond with: **N** to disable, **Y** to enable:" +msgstr "" +"This welcome message can be in a specific channel or a direct message. If " +"you have a bot that handles this already, you may want to disable this " +"feature.\n" +"\n" +"Respond with: **N** to disable, **Y** to enable:" + +#: meowth/__main__.py:1987 meowth/__main__.py:2004 +#, fuzzy +msgid "Welcome Message" +msgstr "" +"**Welcome Message disabled!**\n" +"---" + +#: meowth/__main__.py:1992 +#, fuzzy +msgid "Welcome Message enabled!" +msgstr "" +"**Welcome Message disabled!**\n" +"---" + +#: meowth/__main__.py:1995 +msgid "" +"Would you like a custom welcome message? You can reply with **N** to use the " +"default message above or enter your own below.\n" +"\n" +"I can read all [discord formatting](https://support.discordapp.com/hc/en-us/" +"articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-) " +"and I have the following template tags:\n" +"\n" +"**{@member}** - Replace member with user name or ID\n" +"**{#channel}** - Replace channel with channel name or ID\n" +"**{&role}** - Replace role name or ID (shows as @deleted-role DM preview)\n" +"**{user}** - Will mention the new user\n" +"**{server}** - Will print your server's name\n" +"Surround your message with [] to send it as an embed. **Warning:** Mentions " +"within embeds may be broken on mobile, this is a Discord bug." +msgstr "" + +#: meowth/__main__.py:2006 +msgid "Current Welcome Message" +msgstr "" + +#: meowth/__main__.py:2011 +msgid "Default welcome message set" +msgstr "" + +#: meowth/__main__.py:2017 +msgid "" +"Please shorten your message to less than 500 characters. You entered {count}." +msgstr "" + +#: meowth/__main__.py:2027 +msgid "" +"{msg}\n" +"\n" +"**Warning:**\n" +"The following could not be found: {errors}" +msgstr "" + +#: meowth/__main__.py:2028 +msgid "" +"Please check the data given and retry a new welcome message, or reply with " +"**N** to use the default." +msgstr "" + +#: meowth/__main__.py:2033 +msgid "Here's what you sent. Does it look ok?" +msgstr "" + +#: meowth/__main__.py:2040 +msgid "" +"Here's what you sent. Does it look ok?\n" +"\n" +"{welcome}" +msgstr "" + +#: meowth/__main__.py:2047 +msgid "" +"Please enter a new welcome message, or reply with **N** to use the default." +msgstr "" + +#: meowth/__main__.py:2051 +#, fuzzy +msgid "" +"Welcome Message set to:\n" +"\n" +"{}" +msgstr "" +"**Welcome Message disabled!**\n" +"---" + +#: meowth/__main__.py:2054 +#, fuzzy +msgid "Welcome Message Channel" +msgstr "" +"**Welcome Message disabled!**\n" +"---" + +#: meowth/__main__.py:2054 +#, fuzzy +msgid "" +"Which channel in your server would you like me to post the Welcome Messages? " +"You can also choose to have them sent to the new member via Direct Message " +"(DM) instead.\n" +"\n" +"Respond with: **channel-name** or ID of a channel in your server or **DM** " +"to Direct Message:" +msgstr "" +"**Welcome Message enabled!**\n" +"---\n" +"**Welcome Message Channels**\n" +"Which channel in your server would you like me to post the Welcome Messages? " +"You can also choose to have them sent to the new member via Direct Message " +"(DM) instead.\n" +"\n" +"Respond with: **channel-name** of a channel in your server or **DM** to " +"Direct Message:" + +#: meowth/__main__.py:2059 +msgid "Welcome DM set" +msgstr "" + +#: meowth/__main__.py:2062 +msgid "" +"Channel names can't contain spaces, sorry. Please double check the name and " +"send your response again." +msgstr "" +"Channel names can't contain spaces, sorry. Please double check the name and " +"send your response again." + +#: meowth/__main__.py:2093 meowth/__main__.py:2186 meowth/__main__.py:2409 +#: meowth/__main__.py:2698 meowth/__main__.py:2797 meowth/__main__.py:2897 +#: meowth/__main__.py:3069 meowth/__main__.py:3270 +msgid "" +"I couldn't set my own permissions in this channel. Please ensure I have the " +"correct permissions in {channel} using **{prefix}get perms**." +msgstr "" + +#: meowth/__main__.py:2094 +#, fuzzy +msgid "Welcome Channel set to {channel}" +msgstr "" +"**Welcome Channel set**\n" +"---" + +#: meowth/__main__.py:2097 +#, fuzzy +msgid "" +"The channel you provided isn't in your server. Please double check your " +"channel and resend your response." +msgstr "" +"The channel you provided isn't in your server. Please double check your " +"channel name and resend your response." + +#: meowth/__main__.py:2103 +#, fuzzy +msgid "Welcome Message disabled!" +msgstr "" +"**Welcome Message disabled!**\n" +"---" + +#: meowth/__main__.py:2114 +msgid "!raid reporting settings" +msgstr "" + +#: meowth/__main__.py:2114 meowth/__main__.py:4042 meowth/__main__.py:5039 +#: meowth/__main__.py:5601 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "raid" +msgstr "" + +#: meowth/__main__.py:2139 +#, fuzzy +msgid "Raid Reporting Channels" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2139 +#, fuzzy +msgid "" +"Raid Reporting allows users to report active raids with **!raid** or raid " +"eggs with **!raidegg**. Pokemon raid reports are contained within one or " +"more channels. Each channel will be able to represent different areas/" +"communities. I'll need you to provide a list of channels in your server you " +"will allow reports from in this format: `channel-name, channel-name, channel-" +"name`\n" +"\n" +"Example: `kansas-city-raids, hull-raids, sydney-raids`\n" +"\n" +"If you do not require raid or raid egg reporting, you may want to disable " +"this function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" +"**Main Functions enabled**\n" +"---\n" +"**Reporting Channels**\n" +"Pokemon raid or wild reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`" + +#: meowth/__main__.py:2145 +#, fuzzy +msgid "Raid Reporting disabled" +msgstr "" +"**Raid Reports disabled**\n" +"---" + +#: meowth/__main__.py:2177 +#, fuzzy +msgid "Raid Reporting Channels enabled" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2189 meowth/__main__.py:2412 meowth/__main__.py:2701 +#: meowth/__main__.py:2800 meowth/__main__.py:2900 meowth/__main__.py:3073 +#: meowth/__main__.py:3274 +#, fuzzy +msgid "" +"The channel list you provided doesn't match with your servers channels.\n" +"\n" +"The following aren't in your server: **{invalid_channels}**\n" +"\n" +"Please double check your channel list and resend your reponse." +msgstr "" +"The channel list you provided doesn't match with your servers channels.\n" +"The following aren't in your server: {invalid_channels}\n" +"Please double check your channel list and resend your reponse." + +#: meowth/__main__.py:2192 +#, fuzzy +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"the raid or egg! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need its corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" +"**Report Locations**\n" +"For each report, I generate Google Maps links to give people directions to " +"raids and spawns! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need it's corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list:" + +#: meowth/__main__.py:2192 +msgid "Raid Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 +msgid "Entered Channels" +msgstr "" + +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 +msgid "{citychannel_list}" +msgstr "" + +#: meowth/__main__.py:2206 meowth/__main__.py:2429 meowth/__main__.py:2718 +#: meowth/__main__.py:2817 meowth/__main__.py:2917 +#, fuzzy +msgid "" +"The number of cities doesn't match the number of channels you gave me " +"earlier!\n" +"\n" +"I'll show you the two lists to compare:\n" +"\n" +"{channellist}\n" +"{citylist}\n" +"\n" +"Please double check that your locations match up with your provided channels " +"and resend your response." +msgstr "" +"The number of cities don't match the number of channels you gave me " +"earlier!\n" +"I'll show you the two lists to compare:\n" +"{channellist}\n" +"{citylist}\n" +"Please double check that your locations match up with your provided channels " +"and resend your response." + +#: meowth/__main__.py:2209 +msgid "Raid Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2210 +msgid "" +"How would you like me to categorize the raid channels I create? Your options " +"are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**region** - If you want them categorized by region\n" +"**level** - If you want them categorized by level." +msgstr "" + +#: meowth/__main__.py:2210 meowth/__main__.py:2234 meowth/__main__.py:2285 +msgid "Raid Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2234 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as raid reporting channels." +msgstr "" + +#: meowth/__main__.py:2265 meowth/__main__.py:2316 meowth/__main__.py:2488 +#: meowth/__main__.py:2976 +msgid "" +"The category list you provided doesn't match with your server's categories." +msgstr "" + +#: meowth/__main__.py:2267 meowth/__main__.py:2274 meowth/__main__.py:2318 +#: meowth/__main__.py:2325 meowth/__main__.py:2490 meowth/__main__.py:2497 +#: meowth/__main__.py:2978 meowth/__main__.py:2985 +msgid "" +"\n" +"\n" +"The following aren't in your server: **{invalid_categories}**" +msgstr "" + +#: meowth/__main__.py:2268 meowth/__main__.py:2319 meowth/__main__.py:2491 +#: meowth/__main__.py:2979 +msgid "" +"\n" +"\n" +"Please double check your category list and resend your response. If you just " +"made these categories, try again." +msgstr "" + +#: meowth/__main__.py:2272 meowth/__main__.py:2495 meowth/__main__.py:2983 +#, fuzzy +msgid "" +"The number of categories I found in your server doesn't match the number of " +"channels you gave me earlier!\n" +"\n" +"I'll show you the two lists to compare:\n" +"\n" +"**Matched Channels:** {channellist}\n" +"**Matched Categories:** {catlist}\n" +"\n" +"Please double check that your categories match up with your provided " +"channels and resend your response." +msgstr "" +"The number of cities don't match the number of channels you gave me " +"earlier!\n" +"I'll show you the two lists to compare:\n" +"{channellist}\n" +"{citylist}\n" +"Please double check that your locations match up with your provided channels " +"and resend your response." + +#: meowth/__main__.py:2285 +msgid "" +"Pokemon Go currently has five levels of raids. Please provide the names of " +"the categories you would like each level of raid to appear in. Use the " +"following order: 1, 2, 3, 4, 5 \n" +"\n" +"You do not need to use different categories for each level, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `level 1-3, level 1-3, level 1-3, level 4, 1231231241561337813`" +msgstr "" + +#: meowth/__main__.py:2323 +msgid "" +"The number of categories I found in your server doesn't match the number of " +"raid levels! Make sure you give me exactly six categories, one for each " +"level of raid. You can use the same category for multiple levels if you " +"want, but I need to see six category names.\n" +"\n" +"**Matched Categories:** {catlist}\n" +"\n" +"Please double check your categories." +msgstr "" + +#: meowth/__main__.py:2329 meowth/__main__.py:2502 meowth/__main__.py:2990 +msgid "Sorry, I didn't understand your answer! Try again." +msgstr "" + +#: meowth/__main__.py:2332 +msgid "Raid Categories are set" +msgstr "" + +#: meowth/__main__.py:2337 +msgid "!exraid reporting settings" +msgstr "" + +#: meowth/__main__.py:2337 meowth/__main__.py:4643 +msgid "exraid" +msgstr "" + +#: meowth/__main__.py:2362 +#, fuzzy +msgid "EX Raid Reporting Channels" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2362 +#, fuzzy +msgid "" +"EX Raid Reporting allows users to report EX raids with **!exraid**. Pokemon " +"EX raid reports are contained within one or more channels. Each channel will " +"be able to represent different areas/communities. I'll need you to provide a " +"list of channels in your server you will allow reports from in this format: " +"`channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-raids, hull-raids, sydney-raids`\n" +"\n" +"If you do not require EX raid reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" +"**Main Functions enabled**\n" +"---\n" +"**Reporting Channels**\n" +"Pokemon raid or wild reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`" + +#: meowth/__main__.py:2368 +#, fuzzy +msgid "EX Raid Reporting disabled" +msgstr "" +"**Raid Reports disabled**\n" +"---" + +#: meowth/__main__.py:2400 +#, fuzzy +msgid "EX Raid Reporting Channels enabled" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2415 +msgid "EX Raid Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2415 +#, fuzzy +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"EX raids! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" +"**Report Locations**\n" +"For each report, I generate Google Maps links to give people directions to " +"raids and spawns! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need it's corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list:" + +#: meowth/__main__.py:2432 +msgid "EX Raid Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2433 +msgid "" +"How would you like me to categorize the EX raid channels I create? Your " +"options are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**other** - If you want them categorized in a provided category name or ID" +msgstr "" + +#: meowth/__main__.py:2433 meowth/__main__.py:2457 +msgid "EX Raid Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2457 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as EX raid reporting channels." +msgstr "" + +#: meowth/__main__.py:2505 +msgid "EX Raid Categories are set" +msgstr "" + +#: meowth/__main__.py:2507 +msgid "EX Raid Channel Read Permissions" +msgstr "" + +#: meowth/__main__.py:2507 +msgid "" +"Who do you want to be able to **see** the EX Raid channels? Your options " +"are:\n" +"\n" +"**everyone** - To have everyone be able to see all reported EX Raids\n" +"**same** - To only allow those with access to the reporting channel." +msgstr "" + +#: meowth/__main__.py:2512 +msgid "Everyone permission enabled" +msgstr "" + +#: meowth/__main__.py:2516 +msgid "Same permission enabled" +msgstr "" + +#: meowth/__main__.py:2527 +msgid "!invite command settings" +msgstr "" + +#: meowth/__main__.py:2527 meowth/__main__.py:4762 +msgid "invite" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "" +"Do you want access to EX raids controlled through members using the **!" +"invite** command?\n" +"If enabled, members will have read-only permissions for all EX Raids until " +"they use **!invite** to gain access. If disabled, EX Raids will inherit the " +"permissions from their reporting channels.\n" +"\n" +"Respond with: **N** to disable, or **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "Invite Configuration" +msgstr "" + +#: meowth/__main__.py:2557 +msgid "Invite Command enabled" +msgstr "" + +#: meowth/__main__.py:2561 +msgid "Invite Command disabled" +msgstr "" + +#: meowth/__main__.py:2572 +msgid "Automatic counters settings" +msgstr "" + +#: meowth/__main__.py:2572 meowth/__main__.py:5698 +msgid "counters" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "Automatic Counters Configuration" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "" +"Do you want to generate an automatic counters list in newly created raid " +"channels using PokeBattler?\n" +"If enabled, I will post a message containing the best counters for the raid " +"boss in new raid channels. Users will still be able to use **!counters** to " +"generate this list.\n" +"\n" +"Respond with: **N** to disable, or enable with a comma separated list of " +"boss levels that you would like me to generate counters for. Example:`3,4,5," +"EX`" +msgstr "" + +#: meowth/__main__.py:2601 +msgid "Automatic Counters disabled" +msgstr "" + +#: meowth/__main__.py:2618 +msgid "Automatic Counter Levels set to: {levels}" +msgstr "" + +#: meowth/__main__.py:2621 +msgid "" +"Please enter at least one level from 1 to EX separated by comma. Ex: `4,5," +"EX` or **N** to turn off automatic counters." +msgstr "" + +#: meowth/__main__.py:2626 +msgid "!wild reporting settings" +msgstr "" + +#: meowth/__main__.py:2626 meowth/__main__.py:3967 +msgid "wild" +msgstr "" + +#: meowth/__main__.py:2651 +#, fuzzy +msgid "Wild Reporting Channels" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2651 +#, fuzzy +msgid "" +"Wild Reporting allows users to report wild spawns with **!wild**. Pokemon " +"**wild** reports are contained within one or more channels. Each channel " +"will be able to represent different areas/communities. I'll need you to " +"provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-wilds, hull-wilds, sydney-wilds`\n" +"\n" +"If you do not require **wild** reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" +"**Main Functions enabled**\n" +"---\n" +"**Reporting Channels**\n" +"Pokemon raid or wild reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`" + +#: meowth/__main__.py:2657 +#, fuzzy +msgid "Wild Reporting disabled" +msgstr "" +"**Wild Reports disabled**\n" +"---" + +#: meowth/__main__.py:2689 +#, fuzzy +msgid "Wild Reporting Channels enabled" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2704 +#, fuzzy +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"wild spawns! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" +"**Report Locations**\n" +"For each report, I generate Google Maps links to give people directions to " +"raids and spawns! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need it's corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list:" + +#: meowth/__main__.py:2704 +msgid "Wild Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2721 +msgid "Wild Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2725 +msgid "!research reporting settings" +msgstr "" + +#: meowth/__main__.py:2725 meowth/__main__.py:4820 meowth/__main__.py:7164 +msgid "research" +msgstr "" + +#: meowth/__main__.py:2750 +msgid "Research Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2750 +#, fuzzy +msgid "" +"Research Reporting allows users to report field research with **!research**. " +"Pokemon **research** reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-research, hull-research, sydney-research`\n" +"\n" +"If you do not require **research** reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" +"**Main Functions enabled**\n" +"---\n" +"**Reporting Channels**\n" +"Pokemon raid or wild reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`" + +#: meowth/__main__.py:2756 +#, fuzzy +msgid "Research Reporting disabled" +msgstr "" +"**Raid Reports disabled**\n" +"---" + +#: meowth/__main__.py:2788 +#, fuzzy +msgid "Research Reporting Channels enabled" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2803 +#, fuzzy +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"field research! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need its corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" +"**Report Locations**\n" +"For each report, I generate Google Maps links to give people directions to " +"raids and spawns! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need it's corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list:" + +#: meowth/__main__.py:2803 +msgid "Research Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2820 +msgid "Research Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2824 +msgid "!meetup reporting settings" +msgstr "" + +#: meowth/__main__.py:2824 meowth/__main__.py:4947 meowth/__main__.py:5434 +msgid "meetup" +msgstr "" + +#: meowth/__main__.py:2850 +#, fuzzy +msgid "Meetup Reporting Channels" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2850 +#, fuzzy +msgid "" +"Meetup Reporting allows users to report meetups with **!meetup** or **!" +"event**. Meetup reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-meetups, hull-meetups, sydney-meetups`\n" +"\n" +"If you do not require meetup reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" +"**Main Functions enabled**\n" +"---\n" +"**Reporting Channels**\n" +"Pokemon raid or wild reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`" + +#: meowth/__main__.py:2856 +#, fuzzy +msgid "Meetup Reporting disabled" +msgstr "" +"**Reporting Channels disabled**\n" +"---" + +#: meowth/__main__.py:2888 +#, fuzzy +msgid "Meetup Reporting Channels enabled" +msgstr "" +"**Reporting Channels enabled**\n" +"---" + +#: meowth/__main__.py:2903 +#, fuzzy +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"meetups! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" +"**Report Locations**\n" +"For each report, I generate Google Maps links to give people directions to " +"raids and spawns! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need it's corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list:" + +#: meowth/__main__.py:2903 +msgid "Meetup Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2920 +msgid "Meetup Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2921 +msgid "" +"How would you like me to categorize the meetup channels I create? Your " +"options are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**other** - If you want them categorized in a provided category name or ID" +msgstr "" + +#: meowth/__main__.py:2921 meowth/__main__.py:2945 +msgid "Meetup Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2945 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as meetup reporting channels." +msgstr "" + +#: meowth/__main__.py:2993 +msgid "Meetup Categories are set" +msgstr "" + +#: meowth/__main__.py:2998 +msgid "!want/!unwant settings" +msgstr "" + +#: meowth/__main__.py:2998 meowth/__main__.py:3782 +msgid "want" +msgstr "" + +#: meowth/__main__.py:3023 +#, fuzzy +msgid "Pokemon Notifications" +msgstr "" +"**Pokemon Notifications enabled**\n" +"---" + +#: meowth/__main__.py:3023 +#, fuzzy +msgid "" +"The **!want** and **!unwant** commands let you add or remove roles for " +"Pokemon that will be mentioned in reports. This let you get notifications on " +"the Pokemon you want to track. I just need to know what channels you want to " +"allow people to manage their pokemon with the **!want** and **!unwant** " +"command.\n" +"\n" +"If you don't want to allow the management of tracked Pokemon roles, then you " +"may want to disable this feature.\n" +"\n" +"Repond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated by a comma and space." +msgstr "" +"**Pokemon Notifications**\n" +"The **!want** and **!unwant** commands let you add or remove roles for " +"Pokemon that will be mentioned in reports. This let you get notifications on " +"the Pokemon you want to track. I just need to know what channels you want to " +"allow people to manage their pokemon with the **!want** and **!unwant** " +"command. If you pick a channel that doesn't exist, I'll make it for you.\n" +"If you don't want to allow the management of tracked Pokemon roles, then you " +"may want to disable this feature.\n" +"\n" +"Repond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated by a comma and space." + +#: meowth/__main__.py:3028 +#, fuzzy +msgid "Pokemon Notifications disabled" +msgstr "" +"**Pokemon Notifications disabled**\n" +"---" + +#: meowth/__main__.py:3070 +#, fuzzy +msgid "Pokemon Notifications enabled" +msgstr "" +"**Pokemon Notifications enabled**\n" +"---" + +#: meowth/__main__.py:3078 +msgid "Configure !archive command settings" +msgstr "" + +#: meowth/__main__.py:3078 meowth/__main__.py:3533 +msgid "archive" +msgstr "" + +#: meowth/__main__.py:3103 +msgid "" +"The **!archive** command marks temporary raid channels for archival rather " +"than deletion. This can be useful for investigating potential violations of " +"your server's rules in these channels.\n" +"\n" +"If you would like to disable this feature, reply with **N**. Otherwise send " +"the category you would like me to place archived channels in. You can say " +"**same** to keep them in the same category, or type the name or ID of a " +"category in your server." +msgstr "" + +#: meowth/__main__.py:3103 meowth/__main__.py:3135 +msgid "Archive Configuration" +msgstr "" + +#: meowth/__main__.py:3113 +msgid "Archived channels will remain in the same category." +msgstr "" + +#: meowth/__main__.py:3117 +#, fuzzy +msgid "Archived Channels disabled." +msgstr "" +"**Reporting Channels disabled**\n" +"---" + +#: meowth/__main__.py:3128 +msgid "" +"I couldn't find the category you replied with! Please reply with **same** to " +"leave archived channels in the same category, or give the name or ID of an " +"existing category." +msgstr "" + +#: meowth/__main__.py:3132 +msgid "Archive category set." +msgstr "" + +#: meowth/__main__.py:3135 +msgid "" +"I can also listen in your raid channels for words or phrases that you want " +"to trigger an automatic archival. For example, if discussion of spoofing is " +"against your server rules, you might tell me to listen for the word " +"'spoofing'.\n" +"\n" +"Reply with **none** to disable this feature, or reply with a comma separated " +"list of phrases you want me to listen in raid channels for." +msgstr "" + +#: meowth/__main__.py:3139 +msgid "Phrase list disabled." +msgstr "" + +#: meowth/__main__.py:3148 +msgid "Archive Phrase list set." +msgstr "" + +#: meowth/__main__.py:3152 +msgid "Configure timezone and other settings" +msgstr "" + +#: meowth/__main__.py:3177 +msgid "" +"There are a few settings available that are not within **!configure**. To " +"set these, use **!set ** in any channel to set that setting.\n" +"\n" +"These include:\n" +"**!set regional ** - To set a server's regional raid boss\n" +"**!set prefix ** - To set my command prefix\n" +"**!set timezone ** - To set offset outside of **!configure**\n" +"**!set silph ** - To set a trainer's SilphRoad card (usable by " +"members)\n" +"**!set pokebattler ** - To set a trainer's pokebattler ID (usable by " +"members)\n" +"\n" +"However, we can do your timezone now to help coordinate reports for you. For " +"others, use the **!set** command.\n" +"\n" +"The current 24-hr time UTC is {utctime}. How many hours off from that are " +"you?\n" +"\n" +"Respond with: A number from **-12** to **12**:" +msgstr "" + +#: meowth/__main__.py:3177 +msgid "Timezone Configuration and Other Settings" +msgstr "" + +#: meowth/__main__.py:3187 meowth/__main__.py:3190 +#, fuzzy +msgid "" +"I couldn't convert your answer to an appropriate timezone!\n" +"\n" +"Please double check what you sent me and resend a number strarting from " +"**-12** to **12**." +msgstr "" +"I couldn't convert your answer to an appropriate timezone!.\n" +"Please double check what you sent me and resend a number strarting from " +"**-12** to **12**." + +#: meowth/__main__.py:3195 +#, fuzzy +msgid "Timezone set" +msgstr "" +"**Timezone set**\n" +"---" + +#: meowth/__main__.py:3199 +msgid "!trade reporting settings" +msgstr "" + +#: meowth/__main__.py:3199 +msgid "trade" +msgstr "" + +#: meowth/__main__.py:3224 +msgid "" +"The **!trade** command allows your users to organize and coordinate trades. " +"This command requires at least one channel specifically for trades.\n" +"\n" +"If you would like to disable this feature, reply with **N**. Otherwise, just " +"send the names or IDs of the channels you want to allow the **!trade** " +"command in, separated by commas." +msgstr "" + +#: meowth/__main__.py:3224 +msgid "Trade Configuration" +msgstr "" + +#: meowth/__main__.py:3232 +msgid "Trade disabled." +msgstr "" + +#: meowth/__main__.py:3271 +#, fuzzy +msgid "Pokemon Trades enabled" +msgstr "" +"**Pokemon Notifications enabled**\n" +"---" + +#: meowth/__main__.py:3279 +msgid "" +"Reloads the JSON files for the server\n" +"\n" +"Useful to avoid a full restart if boss list changed" +msgstr "" + +#: meowth/__main__.py:3279 +msgid "reload_json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "Edits or displays raid_info.json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "raid_json" +msgstr "" + +#: meowth/__main__.py:3292 +msgid "" +"\n" +"**Level {level} raid list:** `{raidlist}` \n" +msgstr "" + +#: meowth/__main__.py:3299 meowth/__main__.py:3312 meowth/__main__.py:3317 +msgid "**Level {level} raid list:** `{raidlist}` \n" +msgstr "" + +#: meowth/__main__.py:3310 +msgid "" +"I couldn't understand the list you supplied! Please use a comma-separated " +"list of Pokemon species numbers." +msgstr "" + +#: meowth/__main__.py:3311 +msgid "I will replace this:\n" +msgstr "" + +#: meowth/__main__.py:3316 +msgid "" +"\n" +"\n" +"With this:\n" +msgstr "" + +#: meowth/__main__.py:3321 +msgid "" +"\n" +"\n" +"Continue?" +msgstr "" + +#: meowth/__main__.py:3329 +msgid "Meowth! Configuration cancelled!" +msgstr "" + +#: meowth/__main__.py:3340 +msgid "Meowth! Configuration successful!" +msgstr "" + +#: meowth/__main__.py:3342 +msgid "Meowth! I'm not sure what went wrong, but configuration is cancelled!" +msgstr "" + +#: meowth/__main__.py:3345 +msgid "reset_board" +msgstr "" + +#: meowth/__main__.py:3360 +msgid "every user" +msgstr "" + +#: meowth/__main__.py:3382 +msgid "" +"Are you sure you want to reset the **{type}** report stats for **{target}**?" +msgstr "" + +#: meowth/__main__.py:3408 +msgid "{trainer}'s report stats have been cleared!" +msgstr "" + +#: meowth/__main__.py:3412 +msgid "" +"Changes raid boss.\n" +"\n" +"Usage: !changeraid \n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3412 +msgid "changeraid" +msgstr "" + +#: meowth/__main__.py:3420 +msgid "The channel you entered is not a raid channel." +msgstr "" + +#: meowth/__main__.py:3423 meowth/__main__.py:4330 +msgid "level-{egg_level}-egg-" +msgstr "" + +#: meowth/__main__.py:3442 meowth/__main__.py:3445 meowth/__main__.py:4346 +#: meowth/__main__.py:4349 meowth/__main__.py:4718 meowth/__main__.py:4721 +#: meowth/__main__.py:6416 meowth/__main__.py:6419 +#, fuzzy +msgid "**Possible Bosses:**" +msgstr "Possible Bosses: {boss_list}" + +#: meowth/__main__.py:3442 meowth/__main__.py:4346 meowth/__main__.py:4718 +#: meowth/__main__.py:6416 +msgid "{bosslist1}" +msgstr "" + +#: meowth/__main__.py:3443 meowth/__main__.py:4347 meowth/__main__.py:4719 +#: meowth/__main__.py:6417 +msgid "{bosslist2}" +msgstr "" + +#: meowth/__main__.py:3445 meowth/__main__.py:4349 meowth/__main__.py:4721 +#: meowth/__main__.py:6419 +msgid "{bosslist}" +msgstr "" + +#: meowth/__main__.py:3453 meowth/__main__.py:4433 meowth/__main__.py:4593 +#: meowth/__main__.py:5387 meowth/__main__.py:5401 meowth/__main__.py:6411 +msgid "status" +msgstr "" + +#: meowth/__main__.py:3457 meowth/__main__.py:3458 +msgid "Level {}" +msgstr "" + +#: meowth/__main__.py:3457 meowth/__main__.py:3458 +msgid "level\\s\\d" +msgstr "" + +#: meowth/__main__.py:3460 +#, fuzzy +msgid "Meowth! Level {} reported" +msgstr "Meowth! {member} is interested!" + +#: meowth/__main__.py:3460 meowth/__main__.py:3461 +msgid "Meowth!\\s.*\\sraid\\sreported" +msgstr "" + +#: meowth/__main__.py:3461 +msgid "Meowth! Level {}" +msgstr "" + +#: meowth/__main__.py:3477 +msgid "" +"Clears raid channel status lists.\n" +"\n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3477 +msgid "clearstatus" +msgstr "" + +#: meowth/__main__.py:3481 +msgid "" +"Are you sure you want to clear all status for this raid? Everybody will have " +"to RSVP again. If you are wanting to clear one user's status, use `!" +"setstatus cancel`" +msgstr "" + +#: meowth/__main__.py:3497 +#, fuzzy +msgid "Meowth! Raid status lists have been cleared!" +msgstr "Meowth! **!wild** commands have been disabled." + +#: meowth/__main__.py:3502 +msgid "" +"Changes raid channel status lists.\n" +"\n" +" Usage: !setstatus [count]\n" +" User can be a mention or ID number. Status can be maybeinterested/i, " +"coming/c, here/h, or cancel/x\n" +" Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3502 +msgid "setstatus" +msgstr "" + +#: meowth/__main__.py:3513 +msgid "Meowth! {status} is not a valid status!" +msgstr "" + +#: meowth/__main__.py:3519 +msgid "" +"Removes all 0 member pokemon roles.\n" +"\n" +" Usage: !cleanroles" +msgstr "" + +#: meowth/__main__.py:3519 +msgid "cleanroles" +msgstr "" + +#: meowth/__main__.py:3531 +msgid "Removed {cleancount} empty roles" +msgstr "" + +#: meowth/__main__.py:3533 +msgid "Marks a raid channel for archival." +msgstr "" + +#: meowth/__main__.py:3550 +msgid "Shows Meowth's uptime" +msgstr "" + +#: meowth/__main__.py:3550 +msgid "uptime" +msgstr "" + +#: meowth/__main__.py:3557 meowth/__main__.py:3607 +msgid "Uptime" +msgstr "" + +#: meowth/__main__.py:3561 meowth/__main__.py:3612 +msgid "I need the `Embed links` permission to send this" +msgstr "" + +#: meowth/__main__.py:3570 +msgid "{yr}y {mth}m {day}d {hr}:{min}" +msgstr "" + +#: meowth/__main__.py:3572 +msgid "{mth}m {day}d {hr}:{min}" +msgstr "" + +#: meowth/__main__.py:3574 +msgid "{day} days {hr} hrs {min} mins" +msgstr "" + +#: meowth/__main__.py:3576 +msgid "{hr} hrs {min} mins {sec} secs" +msgstr "" + +#: meowth/__main__.py:3578 +msgid "{min} mins {sec} secs" +msgstr "" + +#: meowth/__main__.py:3581 +msgid "Shows info about Meowth" +msgstr "" + +#: meowth/__main__.py:3581 +msgid "about" +msgstr "" + +#: meowth/__main__.py:3593 +msgid "" +"I'm Meowth! A Pokemon Go helper bot for Discord!\n" +"\n" +"I'm made by [{author_name}]({author_repo}) and improvements have been " +"contributed by many other people also.\n" +"\n" +"[Join our server]({server_invite}) if you have any questions or feedback.\n" +"\n" +msgstr "" + +#: meowth/__main__.py:3600 +msgid "About Meowth" +msgstr "" + +#: meowth/__main__.py:3601 +msgid "Owner" +msgstr "" + +#: meowth/__main__.py:3603 +msgid "Servers" +msgstr "" + +#: meowth/__main__.py:3604 +msgid "Members" +msgstr "" + +#: meowth/__main__.py:3605 +msgid "Your Server" +msgstr "" + +#: meowth/__main__.py:3606 +msgid "Your Members" +msgstr "" + +#: meowth/__main__.py:3614 +msgid "" +"Set your team role.\n" +"\n" +" Usage: !team \n" +" The team roles have to be created manually beforehand by the server " +"administrator." +msgstr "" + +#: meowth/__main__.py:3639 +msgid "Maximum guild roles reached." +msgstr "" + +#: meowth/__main__.py:3644 +msgid "" +"Meowth! My roles are ranked lower than the following team roles: " +"**{higher_roles_list}**\n" +"Please get an admin to move my roles above them!" +msgstr "" +"Meowth! My roles are ranked lower than the following team roles: " +"**{higher_roles_list}**\n" +"Please get an admin to move my roles above them!" + +#: meowth/__main__.py:3665 +msgid "Meowth! You already have a team role!" +msgstr "Meowth! You already have a team role!" + +#: meowth/__main__.py:3669 +#, fuzzy +msgid "Meowth! You are already in Team Harmony!" +msgstr "Meowth! You already have a team role!" + +#: meowth/__main__.py:3673 +msgid "" +"Meowth! {team_role} is not configured as a role on this server. Please " +"contact an admin for assistance." +msgstr "" +"Meowth! {team_role} is not configured as a role on this server. Please " +"contact an admin for assistance." + +#: meowth/__main__.py:3677 +msgid "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" +msgstr "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" + +#: meowth/__main__.py:3681 +msgid "" +"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " +"an admin!" +msgstr "" +"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " +"an admin!" + +#: meowth/__main__.py:3687 +msgid "Meowth! Added {member} to Team {team_name}! {team_emoji}" +msgstr "Meowth! Added {member} to Team {team_name}! {team_emoji}" + +#: meowth/__main__.py:3689 +msgid "Meowth! I can't add roles!" +msgstr "Meowth! I can't add roles!" + +#: meowth/__main__.py:3700 +msgid "Traveler Card" +msgstr "" + +#: meowth/__main__.py:3702 +msgid "{user}'s Trainer Profile" +msgstr "" + +#: meowth/__main__.py:3704 +msgid "Silph Road" +msgstr "" + +#: meowth/__main__.py:3705 +msgid "Pokebattler" +msgstr "" + +#: meowth/__main__.py:3706 +#, fuzzy +msgid "Raid Reports" +msgstr "" +"**Raid Reports enabled**\n" +"---" + +#: meowth/__main__.py:3707 +msgid "Egg Reports" +msgstr "" + +#: meowth/__main__.py:3708 +msgid "EX Raid Reports" +msgstr "" + +#: meowth/__main__.py:3709 +#, fuzzy +msgid "Wild Reports" +msgstr "" +"**Wild Reports enabled**\n" +"---" + +#: meowth/__main__.py:3710 +msgid "Research Reports" +msgstr "" + +#: meowth/__main__.py:3713 +msgid "" +"Displays the top ten reporters of a server.\n" +"\n" +" Usage: !leaderboard [type]\n" +" Accepted types: raids, eggs, exraids, wilds, research" +msgstr "" + +#: meowth/__main__.py:3713 +msgid "leaderboard" +msgstr "" + +#: meowth/__main__.py:3725 +msgid "" +"Leaderboard type not supported. Please select from: **total, raids, eggs, " +"exraids, wilds, research**" +msgstr "" + +#: meowth/__main__.py:3740 +msgid "Reporting Leaderboard ({type})" +msgstr "" + +#: meowth/__main__.py:3745 +msgid "Raids: **{raids}** | Eggs: **{eggs}** | " +msgstr "" + +#: meowth/__main__.py:3747 +msgid "EX Raids: **{exraids}** | " +msgstr "" + +#: meowth/__main__.py:3749 +msgid "Wilds: **{wilds}** | " +msgstr "" + +#: meowth/__main__.py:3751 +msgid "Research: **{research}** | " +msgstr "" + +#: meowth/__main__.py:3756 +msgid "No Reports" +msgstr "" + +#: meowth/__main__.py:3756 +msgid "Nobody has made a report or this report type is disabled." +msgstr "" + +#: meowth/__main__.py:3782 +msgid "" +"Add a Pokemon to your wanted list.\n" +"\n" +" Usage: !want \n" +" Meowth will mention you if anyone reports seeing\n" +" this species in their !wild or !raid command.\n" +"\n" +" Behind the scenes, Meowth tracks user !wants by\n" +" creating a server role for the Pokemon species, and\n" +" assigning it to the user." +msgstr "" + +#: meowth/__main__.py:3825 +msgid "Meowth! Did you mean **!list wants**?" +msgstr "" + +#: meowth/__main__.py:3846 +msgid "Maximum guild roles reached. Pokemon not added." +msgstr "" + +#: meowth/__main__.py:3867 +msgid "Meowth! Got it! {member} wants {pokemon}" +msgstr "Meowth! Got it! {member} wants {pokemon}" + +#: meowth/__main__.py:3872 +msgid "Meowth! {member}, I already know you want {pokemon}!" +msgstr "Meowth! {member}, I already know you want {pokemon}!" + +#: meowth/__main__.py:3875 +#, fuzzy +msgid "Meowth! {member}, out of your total {count} items:" +msgstr "" +"Meowth! {member} is on the way with a total of {trainer_count} trainers!" + +#: meowth/__main__.py:3877 +msgid "" +"\n" +"**{added_count} Added:** \n" +"\t{added_list}" +msgstr "" + +#: meowth/__main__.py:3879 +msgid "" +"\n" +"**{already_want_count} Already Following:** \n" +"\t{already_want_list}" +msgstr "" + +#: meowth/__main__.py:3883 +msgid "" +"\n" +"\t{word}" +msgstr "" + +#: meowth/__main__.py:3885 +msgid ": *({correction}?)*" +msgstr "" + +#: meowth/__main__.py:3886 +msgid "" +"\n" +"**{count} Not Valid:**" +msgstr "" + +#: meowth/__main__.py:3889 +msgid "" +"Remove a Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant \n" +" You will no longer be notified of reports about this Pokemon.\n" +"\n" +" Behind the scenes, Meowth removes the user from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3889 +msgid "unwant" +msgstr "" + +#: meowth/__main__.py:3933 +msgid "" +"Remove all Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant all\n" +" All Pokemon roles are removed.Behind the scenes, Meowth removes the user " +"from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3958 +msgid "{0}, you have no pokemon in your want list." +msgstr "{0}, you have no pokemon in your want list." + +#: meowth/__main__.py:3960 +msgid "{0}, I've removed {1} pokemon from your want list." +msgstr "{0}, I've removed {1} pokemon from your want list." + +#: meowth/__main__.py:3967 +msgid "" +"Report a wild Pokemon spawn location.\n" +"\n" +" Usage: !wild \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in." +msgstr "" + +#: meowth/__main__.py:3978 meowth/__main__.py:4064 meowth/__main__.py:4236 +#: meowth/__main__.py:4658 meowth/__main__.py:4839 meowth/__main__.py:4961 +#: meowth/__main__.py:5042 meowth/__main__.py:5049 meowth/__main__.py:5051 +#: meowth/__main__.py:5285 meowth/__main__.py:5305 meowth/__main__.py:5329 +#: meowth/__main__.py:6600 meowth/__main__.py:6761 meowth/__main__.py:6765 +#: meowth/__main__.py:6779 meowth/__main__.py:6861 +msgid "%I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:3981 meowth/__main__.py:3997 +msgid "" +"Meowth! Give more details when reporting! Usage: **!wild " +"**" +msgstr "" +"Meowth! Give more details when reporting! Usage: **!wild " +"**" + +#: meowth/__main__.py:4012 +msgid "**This {pokemon} has despawned!**" +msgstr "" + +#: meowth/__main__.py:4014 +#, fuzzy +msgid "Meowth! Click here for my directions to the wild {pokemon}!" +msgstr "Meowth! Click here for directions to the wild {pokemon}!" + +#: meowth/__main__.py:4014 meowth/__main__.py:4921 +msgid "Ask {author} if my directions aren't perfect!" +msgstr "" + +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 +msgid "**Details:**" +msgstr "" + +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 +msgid "{pokemon} ({pokemonnumber}) {type}" +msgstr "" + +#: meowth/__main__.py:4017 +msgid "**Reactions:**" +msgstr "" + +#: meowth/__main__.py:4017 +msgid "{emoji}: I'm on my way!" +msgstr "" + +#: meowth/__main__.py:4018 +msgid "{emoji}: The Pokemon despawned!" +msgstr "" + +#: meowth/__main__.py:4019 meowth/__main__.py:4183 meowth/__main__.py:4353 +#: meowth/__main__.py:4725 meowth/__main__.py:4839 meowth/__main__.py:4986 +msgid "Reported by @{author} - {timestamp}" +msgstr "" + +#: meowth/__main__.py:4020 +#, fuzzy +msgid "" +"{roletest}Meowth! Wild {pokemon} reported by {member}! Details: " +"{location_details}" +msgstr "" +"Meowth! Wild {pokemon} reported by {member}! Details: {location_details}" + +#: meowth/__main__.py:4042 +msgid "" +"Report an ongoing raid or a raid egg.\n" +"\n" +" Usage: !raid [weather] [minutes]\n" +" Meowth will insert into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for " +"the purposes of organizing the raid." +msgstr "" + +#: meowth/__main__.py:4067 meowth/__main__.py:4095 meowth/__main__.py:4136 +#: meowth/__main__.py:4145 meowth/__main__.py:4304 +msgid "" +"Meowth! Give more details when reporting! Usage: **!raid " +"**" +msgstr "" +"Meowth! Give more details when reporting! Usage: **!raid " +"**" + +#: meowth/__main__.py:4077 +msgid "Meowth! **!raid assume** is not allowed in this level egg." +msgstr "Meowth! **!raid assume** is not allowed in this level egg." + +#: meowth/__main__.py:4089 +msgid "" +"Meowth! Please wait until the egg has hatched before changing it to an open " +"raid!" +msgstr "" +"Meowth! Please wait until the egg has hatched before changing it to an open " +"raid!" + +#: meowth/__main__.py:4124 meowth/__main__.py:4411 meowth/__main__.py:4516 +msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" +msgstr "Meowth! The Pokemon {pokemon} does not appear in raids!" + +#: meowth/__main__.py:4127 +#, fuzzy +msgid "" +"Meowth! The Pokemon {pokemon} only appears in EX Raids! Use **!exraid** to " +"report one!" +msgstr "Meowth! The Pokemon {pokemon} does not appear in raids!" + +#: meowth/__main__.py:4131 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} raids currently last no more " +"than {raidtime} minutes..." +msgstr "" +"Meowth...that's too long. {raidtype}s currently last no more than one hour..." + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "clear" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "extreme" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "none" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "rainy" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "sunny" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "cloudy" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "fog" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "partlycloudy" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "snow" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "windy" +msgstr "" + +#: meowth/__main__.py:4151 meowth/__main__.py:4310 +msgid "Meowth! I couldn't find a gym named '{0}'." +msgstr "" + +#: meowth/__main__.py:4155 meowth/__main__.py:4314 +msgid "No notes for this gym." +msgstr "" + +#: meowth/__main__.py:4175 meowth/__main__.py:4557 +msgid "Meowth! Click here for directions to the raid!" +msgstr "Meowth! Click here for directions to the raid!" + +#: meowth/__main__.py:4177 meowth/__main__.py:4343 +msgid "" +"**Name:** {0}\n" +"**Notes:** {1}" +msgstr "" + +#: meowth/__main__.py:4178 meowth/__main__.py:4344 +msgid "**Gym:**" +msgstr "" + +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 +msgid "**Weaknesses:**" +msgstr "" + +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 +#, fuzzy +msgid "{weakness_list}" +msgstr "Weaknesses: {weakness_list}" + +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4429 +#: meowth/__main__.py:4723 +msgid "**Next Group:**" +msgstr "" + +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4723 +#: meowth/__main__.py:4984 meowth/__main__.py:6612 +msgid "Set with **!starttime**" +msgstr "" + +#: meowth/__main__.py:4182 meowth/__main__.py:4352 meowth/__main__.py:4724 +#: meowth/__main__.py:4985 +msgid "Set with **!timerset**" +msgstr "" + +#: meowth/__main__.py:4182 meowth/__main__.py:4564 meowth/__main__.py:4724 +msgid "**Expires:**" +msgstr "" + +#: meowth/__main__.py:4186 +msgid "" +"Meowth! {pokemon} raid reported by {member}! Details: {location_details}. " +"Coordinate in {raid_channel}" +msgstr "" +"Meowth! {pokemon} raid reported by {member}! Details: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4188 +msgid "" +"{roletest}Meowth! {pokemon} raid reported by {member} in {citychannel}! " +"Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4229 +msgid "" +"Meowth! Hey {member}, if you can, set the time left on the raid using **!" +"timerset ** so others can check it with **!timer**." +msgstr "" +"Meowth! Hey {member}, if you can, set the time left on the raid using **!" +"timerset ** so others can check it with **!timer**." + +#: meowth/__main__.py:4243 +msgid "" +"Meowth! Give more details when reporting! Usage: **!raidegg " +"**" +msgstr "" +"Meowth! Give more details when reporting! Usage: **!raidegg " +"**" + +#: meowth/__main__.py:4249 meowth/__main__.py:4294 +msgid "" +"Meowth! Give more details when reporting! Use at least: **!raidegg " +"**. Type **!help** raidegg for more info." +msgstr "" +"Meowth! Give more details when reporting! Use at least: **!raidegg " +"**. Type **!help** raidegg for more info." + +#: meowth/__main__.py:4255 meowth/__main__.py:5078 +msgid "Did you mean egg hatch time {0} or time remaining before hatch {1}?" +msgstr "" + +#: meowth/__main__.py:4275 meowth/__main__.py:5097 meowth/__main__.py:5155 +#: meowth/__main__.py:5238 meowth/__main__.py:5279 +msgid "Meowth! Please enter a time in the future." +msgstr "" + +#: meowth/__main__.py:4289 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} Raid Eggs currently last no more " +"than {hatchtime} minutes..." +msgstr "" +"Meowth...that's too long. {raidtype}s currently last no more than one hour..." + +#: meowth/__main__.py:4319 +msgid "Meowth! Raid egg levels are only from 1-5!" +msgstr "Meowth! Raid egg levels are only from 1-5!" + +#: meowth/__main__.py:4341 meowth/__main__.py:4426 meowth/__main__.py:4716 +msgid "Meowth! Click here for directions to the coming raid!" +msgstr "Meowth! Click here for directions to the coming raid!" + +#: meowth/__main__.py:4352 meowth/__main__.py:4430 +msgid "**Hatches:**" +msgstr "" + +#: meowth/__main__.py:4355 +msgid "" +"Meowth! Level {level} raid egg reported by {member}! Details: " +"{location_details}. Coordinate in {raid_channel}" +msgstr "" +"Meowth! Level {level} raid egg reported by {member}! Details: " +"{location_details}. Coordinate in {raid_channel}" + +#: meowth/__main__.py:4357 +msgid "" +"Meowth! Level {level} raid egg reported by {member} in {citychannel}! " +"Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4381 +msgid "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**." +msgstr "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**." + +#: meowth/__main__.py:4414 meowth/__main__.py:4519 +msgid "" +"Meowth! The Pokemon {pokemon} does not hatch from level {level} raid eggs!" +msgstr "" +"Meowth! The Pokemon {pokemon} does not hatch from level {level} raid eggs!" + +#: meowth/__main__.py:4448 +#, fuzzy +msgid "" +"{roletest}Meowth! This egg will be assumed to be {pokemon} when it hatches!" +msgstr "Meowth! This egg will be assumed to be {pokemon} when it hatches!" + +#: meowth/__main__.py:4493 meowth/__main__.py:5374 meowth/__main__.py:5443 +#: meowth/__main__.py:6402 +msgid "Coordinate here" +msgstr "" + +#: meowth/__main__.py:4531 +msgid "The event has started!" +msgstr "" + +#: meowth/__main__.py:4537 +msgid "" +"Meowth! The egg has hatched into a {pokemon} raid! Details: " +"{location_details}. Coordinate in {raid_channel}" +msgstr "" +"Meowth! The egg has hatched into a {pokemon} raid! Details: " +"{location_details}. Coordinate in {raid_channel}" + +#: meowth/__main__.py:4538 +msgid "" +"Meowth! The egg reported by {member} in {citychannel} hatched into a " +"{pokemon} raid! Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4542 meowth/__main__.py:4728 +msgid "Use the **!invite** command to gain access and coordinate" +msgstr "" + +#: meowth/__main__.py:4543 meowth/__main__.py:4729 +msgid " after using **!invite** to gain access" +msgstr "" + +#: meowth/__main__.py:4545 meowth/__main__.py:4731 +msgid "Coordinate" +msgstr "" + +#: meowth/__main__.py:4547 +#, fuzzy +msgid "" +"Meowth! The EX egg has hatched into a {pokemon} raid! Details: " +"{location_details}. {invitemsgstr} coordinate in {raid_channel}" +msgstr "" +"Meowth! The egg has hatched into a {pokemon} raid! Details: " +"{location_details}. Coordinate in {raid_channel}" + +#: meowth/__main__.py:4548 +msgid "" +"Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here{invitemsgstr2}!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4562 meowth/__main__.py:4564 meowth/__main__.py:5024 +#: meowth/__main__.py:5028 meowth/__main__.py:5031 meowth/__main__.py:5045 +#: meowth/__main__.py:5047 meowth/__main__.py:5174 meowth/__main__.py:5175 +#: meowth/__main__.py:5181 meowth/__main__.py:5182 meowth/__main__.py:5184 +#: meowth/__main__.py:5185 meowth/__main__.py:5307 meowth/__main__.py:6767 +#: meowth/__main__.py:6773 meowth/__main__.py:6775 meowth/__main__.py:6777 +msgid "%B %d at %I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:4567 +msgid "Ends on %B %d at %I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:4590 +#, fuzzy +msgid "" +"{roletest}Meowth! Trainers {trainer_list}: The raid egg has just hatched " +"into a {pokemon} raid!\n" +"If you couldn't before, you're now able to update your status with **!" +"coming** or **!here**. If you've changed your plans, use **!cancel**." +msgstr "" +"Meowth! Trainers {trainer_list}: The raid egg has just hatched into a " +"{pokemon} raid!\n" +"You're now able to update your status with **!coming** or **!here**. If " +"you've changed your plans, use **!cancel**." + +#: meowth/__main__.py:4643 +msgid "" +"Report an upcoming EX raid.\n" +"\n" +" Usage: !exraid \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for " +"the purposes of organizing the raid." +msgstr "" + +#: meowth/__main__.py:4662 meowth/__main__.py:4669 +#, fuzzy +msgid "Meowth! Give more details when reporting! Usage: **!exraid **" +msgstr "" +"Meowth! Give more details when reporting! Usage: **!raidegg " +"**" + +#: meowth/__main__.py:4681 +msgid "ex-raid-egg-" +msgstr "" + +#: meowth/__main__.py:4733 +#, fuzzy +msgid "" +"Meowth! EX raid egg reported by {member}! Details: {location_details}. " +"{invitemsgstr} in {raid_channel}" +msgstr "" +"Meowth! Level {level} raid egg reported by {member}! Details: " +"{location_details}. Coordinate in {raid_channel}" + +#: meowth/__main__.py:4735 +msgid "" +"Meowth! EX raid reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here{invitemsgstr2}!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4757 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**. " +"**** can just be written exactly how it appears on your EX " +"Raid Pass." +msgstr "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**." + +#: meowth/__main__.py:4762 +msgid "Join an EX Raid." +msgstr "" + +#: meowth/__main__.py:4790 +msgid "" +"Meowth! No EX Raids have been reported in this server! Use **!exraid** to " +"report one!" +msgstr "" + +#: meowth/__main__.py:4792 +msgid "" +"Meowth! {0}, you've told me you have an invite to an EX Raid, and I'm just " +"going to take your word for it! The following {1} EX Raids have been " +"reported:\n" +"{2}\n" +"Reply with **the number** (1, 2, etc) of the EX Raid you have been invited " +"to. If none of them match your invite, type 'N' and report it with **!" +"exraid**" +msgstr "" + +#: meowth/__main__.py:4796 +msgid "Meowth! Be sure to report your EX Raid with **!exraid**!" +msgstr "" + +#: meowth/__main__.py:4799 +msgid "" +"Meowth! I couldn't tell which EX Raid you meant! Try the **!invite** command " +"again, and make sure you respond with the number of the channel that matches!" +msgstr "" + +#: meowth/__main__.py:4810 +msgid "" +"Meowth! Alright {0}, you can now send messages in {1}! Make sure you let the " +"trainers in there know if you can make it to the EX Raid!" +msgstr "" + +#: meowth/__main__.py:4814 +#, fuzzy +msgid "" +"Meowth! I couldn't understand your reply! Try the **!invite** command again!" +msgstr "Meowth...I couldn't understand your time format..." + +#: meowth/__main__.py:4820 +msgid "" +"Report Field research\n" +"\n" +" Guided report method with just !research. If you supply arguments in " +"one\n" +" line, avoid commas in anything but your separations between pokestop,\n" +" quest, reward. Order matters if you supply arguments. If a pokemon name\n" +" is included in reward, a @mention will be used if role exists.\n" +"\n" +" Usage: !research [pokestop name [optional URL], quest, reward]" +msgstr "" + +#: meowth/__main__.py:4844 +msgid "" +"entered an incorrect amount of arguments.\n" +"\n" +"Usage: **!research** or **!research , , **" +msgstr "" + +#: meowth/__main__.py:4849 meowth/__main__.py:4873 +msgid "**Pokestop:**" +msgstr "" + +#: meowth/__main__.py:4850 meowth/__main__.py:4891 +msgid "**Quest:**" +msgstr "" + +#: meowth/__main__.py:4851 meowth/__main__.py:4909 +msgid "**Reward:**" +msgstr "" + +#: meowth/__main__.py:4854 +msgid "**New Research Report**" +msgstr "" + +#: meowth/__main__.py:4854 +msgid "" +"Meowth! I'll help you report a research quest!\n" +"\n" +"First, I'll need to know what **pokestop** you received the quest from. " +"Reply with the name of the **pokestop**. You can reply with **cancel** to " +"stop anytime." +msgstr "" + +#: meowth/__main__.py:4862 meowth/__main__.py:4882 meowth/__main__.py:4900 +msgid "took too long to respond" +msgstr "" + +#: meowth/__main__.py:4865 meowth/__main__.py:4885 meowth/__main__.py:4903 +msgid "cancelled the report" +msgstr "" + +#: meowth/__main__.py:4874 +msgid "" +"Great! Now, reply with the **quest** that you received from **{location}**. " +"You can reply with **cancel** to stop anytime.\n" +"\n" +"Here's what I have so far:" +msgstr "" + +#: meowth/__main__.py:4892 +msgid "" +"Fantastic! Now, reply with the **reward** for the **{quest}** quest that you " +"received from **{location}**. You can reply with **cancel** to stop " +"anytime.\n" +"\n" +"Here's what I have so far:" +msgstr "" + +#: meowth/__main__.py:4919 +msgid "{roletest}Field Research reported by {author}" +msgstr "" + +#: meowth/__main__.py:4920 +#, fuzzy +msgid "Meowth! Click here for my directions to the research!" +msgstr "Meowth! Click here for directions to the raid!" + +#: meowth/__main__.py:4941 +#, fuzzy +msgid "**Research Report Cancelled**" +msgstr "" +"**Raid Reports enabled**\n" +"---" + +#: meowth/__main__.py:4941 +msgid "" +"Meowth! Your report has been cancelled because you {error}! Retry when " +"you're ready." +msgstr "" + +#: meowth/__main__.py:4947 +msgid "" +"Report an upcoming event.\n" +"\n" +" Usage: !meetup \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +"\n" +" Finally, Meowth will create a separate channel for the report, for the " +"purposes of organizing the event." +msgstr "" + +#: meowth/__main__.py:4964 +#, fuzzy +msgid "Meowth! Give more details when reporting! Usage: **!meetup **" +msgstr "" +"Meowth! Give more details when reporting! Usage: **!raidegg " +"**" + +#: meowth/__main__.py:4970 +msgid "meetup-" +msgstr "" + +#: meowth/__main__.py:4981 +#, fuzzy +msgid "Meowth! Click here for directions to the event!" +msgstr "Meowth! Click here for directions to the raid!" + +#: meowth/__main__.py:4982 +msgid "**Event Location:**" +msgstr "" + +#: meowth/__main__.py:4984 +msgid "**Event Starts:**" +msgstr "" + +#: meowth/__main__.py:4985 +msgid "**Event Ends:**" +msgstr "" + +#: meowth/__main__.py:4988 +#, fuzzy +msgid "" +"Meowth! Meetup reported by {member}! Details: {location_details}. Coordinate " +"in {raid_channel}" +msgstr "" +"Meowth! {pokemon} raid reported by {member}! Details: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4990 +#, fuzzy +msgid "" +"Meowth! Meetup reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here!\n" +"\n" +"To update your status, choose from the following commands: **!maybe**, **!" +"coming**, **!here**, **!cancel**. If you are bringing more than one trainer/" +"account, add in the number of accounts total, teams optional, on your first " +"status update.\n" +"Example: `!coming 5 2m 2v 1i`\n" +"\n" +"To see the list of trainers who have given their status:\n" +"**!list interested**, **!list coming**, **!list here** or use just **!list** " +"to see all lists. Use **!list teams** to see team distribution.\n" +"\n" +"Sometimes I'm not great at directions, but I'll correct my directions if " +"anybody sends me a maps link or uses **!location new
**. You can " +"see the location of the event by using **!location**\n" +"\n" +"You can set the start time with **!starttime ** (you can " +"also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" +"You can set the end time with **!timerset ** and access " +"this with **!timer**.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" +"Meowth! {pokemon} raid reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here!\n" +"\n" +"To update your status, choose from the following commands:\n" +"**!interested, !coming, !here, !cancel**\n" +"If you are bringing more than one trainer/account, add the number of " +"accounts total on your first status update.\n" +"Example: `!coming 5`\n" +"\n" +"To see the list of trainers who have given their status:\n" +"**!list interested, !list coming, !list here**\n" +"Alternatively **!list** by itself will show all of the above.\n" +"\n" +"**!location** will show the current raid location.\n" +"**!location new
** will let you correct the raid address.\n" +"Sending a Google Maps link will also update the raid location.\n" +"\n" +"**!timer** will show the current raid time.\n" +"**!timerset** will let you correct the raid countdown time.\n" +"\n" +"Message **!starting** when the raid is beginning to clear the raid's 'here' " +"list.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." + +#: meowth/__main__.py:5008 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time that the event starts with **!" +"starttime ** and also set the time that the event ends using " +"**!timerset **." +msgstr "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**." + +#: meowth/__main__.py:5024 +msgid "This event will start at {expiry_time}" +msgstr "" + +#: meowth/__main__.py:5026 +msgid "Nobody has told me a start time! Set it with **!starttime**" +msgstr "" + +#: meowth/__main__.py:5028 +msgid " | This event will end at {expiry_time}" +msgstr "" + +#: meowth/__main__.py:5031 +msgid "This event will end at {expiry_time}" +msgstr "" + +#: meowth/__main__.py:5033 +msgid "Nobody has told me a end time! Set it with **!timerset**" +msgstr "" + +#: meowth/__main__.py:5036 meowth/__main__.py:5598 +msgid "egg" +msgstr "" + +#: meowth/__main__.py:5037 meowth/__main__.py:5597 +msgid "hatch" +msgstr "" + +#: meowth/__main__.py:5040 meowth/__main__.py:5600 +msgid "end" +msgstr "" + +#: meowth/__main__.py:5042 +#, fuzzy +msgid "This {raidtype}'s timer has already expired as of {expiry_time}!" +msgstr "" +"Meowth! This {raidtype}'s timer has already expired as of {expiry_time} " +"({expiry_time24})!" + +#: meowth/__main__.py:5045 +#, fuzzy +msgid "This {raidtype} will {raidaction} on {expiry}!" +msgstr "" +"Meowth! This {raidtype} will {raidaction} at {expiry_time} ({expiry_time24})!" + +#: meowth/__main__.py:5047 +#, fuzzy +msgid "" +"No one told me when the {raidtype} will {raidaction}, so I'm assuming it " +"will {raidaction} on {expiry}!" +msgstr "" +"Meowth! No one told me when the {raidtype} will {raidaction}, so I'm " +"assuming it will {raidaction} at {expiry_time} ({expiry_time24})!" + +#: meowth/__main__.py:5049 +#, fuzzy +msgid "This {raidtype} will {raidaction} at {expiry_time}!" +msgstr "" +"Meowth! This {raidtype} will {raidaction} at {expiry_time} ({expiry_time24})!" + +#: meowth/__main__.py:5051 +#, fuzzy +msgid "" +"No one told me when the {raidtype} will {raidaction}, so I'm assuming it " +"will {raidaction} at {expiry_time}!" +msgstr "" +"Meowth! No one told me when the {raidtype} will {raidaction}, so I'm " +"assuming it will {raidaction} at {expiry_time} ({expiry_time24})!" + +#: meowth/__main__.py:5054 +msgid "" +"Set the remaining duration on a raid.\n" +"\n" +" Usage: !timerset \n" +" Works only in raid channels, can be set or overridden by anyone.\n" +" Meowth displays the end time in HH:MM local time." +msgstr "" + +#: meowth/__main__.py:5054 +msgid "timerset" +msgstr "" + +#: meowth/__main__.py:5069 +msgid "Raid Egg" +msgstr "" + +#: meowth/__main__.py:5073 +msgid "Raid" +msgstr "" + +#: meowth/__main__.py:5100 meowth/__main__.py:5105 meowth/__main__.py:5116 +#, fuzzy +msgid "" +"Meowth! I couldn't understand your time format. Try again like this: **!" +"timerset **" +msgstr "" +"Meowth... I couldn't understand your time format. Try again like this: !" +"timerset H:MM" + +#: meowth/__main__.py:5119 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} {raidtype}s currently last no " +"more than {maxtime} minutes..." +msgstr "" +"Meowth...that's too long. {raidtype}s currently last no more than one hour..." + +#: meowth/__main__.py:5135 meowth/__main__.py:5143 +msgid "" +"Meowth! Your timer wasn't formatted correctly. Change your **!timerset** to " +"match this format: **MM/DD HH:MM AM/PM** (You can also omit AM/PM and use 24-" +"hour time!)" +msgstr "" + +#: meowth/__main__.py:5148 +msgid "Meowth! Please enter a time after your start time." +msgstr "" + +#: meowth/__main__.py:5157 +msgid "Meowth! Timerset isn't supported for EX Raids after they have hatched." +msgstr "" + +#: meowth/__main__.py:5168 +msgid "The channel has been reactivated." +msgstr "" + +#: meowth/__main__.py:5174 meowth/__main__.py:5181 meowth/__main__.py:5184 +msgid "Ends on {end}" +msgstr "" + +#: meowth/__main__.py:5180 +msgid "%B %d at %I:%M %p (%H:%M) | " +msgstr "" + +#: meowth/__main__.py:5180 +msgid "Hatches on {expiry}" +msgstr "" + +#: meowth/__main__.py:5205 +msgid "" +"Have Meowth resend the expire time message for a raid.\n" +"\n" +" Usage: !timer\n" +" The expiry time should have been previously set with !timerset." +msgstr "" + +#: meowth/__main__.py:5205 +msgid "timer" +msgstr "" + +#: meowth/__main__.py:5211 +msgid "Meowth!" +msgstr "" + +#: meowth/__main__.py:5215 +msgid "" +"Set a time for a group to start a raid\n" +"\n" +" Usage: !starttime [HH:MM AM/PM]\n" +" (You can also omit AM/PM and use 24-hour time!)\n" +" Works only in raid channels. Sends a message and sets a group start time " +"that\n" +" can be seen using !starttime (without a time). One start time is allowed " +"at\n" +" a time and is visibile in !list output. Cleared with !starting." +msgstr "" + +#: meowth/__main__.py:5215 +msgid "starttime" +msgstr "" + +#: meowth/__main__.py:5241 +msgid "Meowth! Please enter a time before your end time." +msgstr "" + +#: meowth/__main__.py:5262 meowth/__main__.py:5268 +msgid "" +"Meowth! Your start time wasn't formatted correctly. Change your **!" +"starttime** to match this format: **HH:MM AM/PM** (You can also omit AM/PM " +"and use 24-hour time!)" +msgstr "" + +#: meowth/__main__.py:5276 +msgid "Meowth! The raid will be over before that...." +msgstr "" + +#: meowth/__main__.py:5282 +msgid "Meowth! The egg will not hatch by then!" +msgstr "" + +#: meowth/__main__.py:5285 +msgid "" +"Meowth! There is already a start time of **{start}** set! Do you want to " +"change it?" +msgstr "" + +#: meowth/__main__.py:5293 +msgid "Start time change cancelled." +msgstr "" + +#: meowth/__main__.py:5308 +msgid "Meowth! The current start time has been set to: **{starttime}**" +msgstr "" + +#: meowth/__main__.py:5329 +msgid "Meowth! The current start time is: **{starttime}**" +msgstr "" + +#: meowth/__main__.py:5331 +msgid "" +"Meowth! No start time has been set, set one with **!starttime HH:MM AM/PM**! " +"(You can also omit AM/PM and use 24-hour time!)" +msgstr "" + +#: meowth/__main__.py:5333 +msgid "" +"Get raid location.\n" +"\n" +" Usage: !location\n" +" Works only in raid channels. Gives the raid location link." +msgstr "" + +#: meowth/__main__.py:5333 +msgid "location" +msgstr "" + +#: meowth/__main__.py:5354 +#, fuzzy +msgid "" +"Meowth! Here's the current location for the raid!\n" +"Details: {location}" +msgstr "" +"Meowth! Here's the current location for the raid!\n" +"Details:{location}" + +#: meowth/__main__.py:5358 +msgid "" +"Change raid location.\n" +"\n" +" Usage: !location new \n" +" Works only in raid channels. Changes the google map links." +msgstr "" + +#: meowth/__main__.py:5358 +msgid "new" +msgstr "" + +#: meowth/__main__.py:5367 +msgid "" +"Meowth! We're missing the new location details! Usage: **!location new **" +msgstr "" +"Meowth! We're missing the new location details! Usage: **!location new **" + +#: meowth/__main__.py:5416 +msgid "" +"Recover a raid channel if it is no longer responding to commands\n" +"\n" +" Usage: !recover\n" +" Only necessary after a crash." +msgstr "" + +#: meowth/__main__.py:5416 +msgid "recover" +msgstr "" + +#: meowth/__main__.py:5422 +msgid "Meowth! I can't recover this channel because I know about it already!" +msgstr "" + +#: meowth/__main__.py:5433 +msgid "level-[1-5]-egg" +msgstr "" + +#: meowth/__main__.py:5481 +msgid "Ends on %B %d at %I:%M %p" +msgstr "" + +#: meowth/__main__.py:5524 +msgid "Meowth! I couldn't recognize this as a raid channel!" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5534 +msgid "is interested" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5536 +msgid "on the way" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5538 +msgid "at the raid" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5540 +msgid "left the raid" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5540 +msgid "no longer" +msgstr "" + +#: meowth/__main__.py:5542 +msgid "trainers" +msgstr "" + +#: meowth/__main__.py:5590 +msgid "" +"Meowth! This channel has been recovered! However, there may be some " +"inaccuracies in what I remembered! Here's what I have:" +msgstr "" + +#: meowth/__main__.py:5602 +msgid "" +"\n" +"I'm not sure when this {raidtype} will {action}, so please use **!timerset** " +"if you can!" +msgstr "" + +#: meowth/__main__.py:5609 +msgid "" +"A command to report a raid channel as a duplicate.\n" +"\n" +" Usage: !duplicate\n" +" Works only in raid channels. When three users report a channel as a " +"duplicate,\n" +" Meowth deactivates the channel and marks it for deletion." +msgstr "" + +#: meowth/__main__.py:5609 +msgid "duplicate" +msgstr "" + +#: meowth/__main__.py:5630 +#, fuzzy +msgid "Meowth! You've already made a duplicate report for this {raidtype}!" +msgstr "Meowth! You've already made a duplicate report for this raid!" + +#: meowth/__main__.py:5651 +#, fuzzy +msgid "Meowth! Are you sure you wish to remove this {raidtype}?" +msgstr "Meowth! Are you sure you wish to remove this raid?" + +#: meowth/__main__.py:5660 +msgid "Duplicate Report cancelled." +msgstr "Duplicate Report cancelled." + +#: meowth/__main__.py:5669 +#, fuzzy +msgid "Duplicate Confirmed" +msgstr "Duplicate Report Timed Out." + +#: meowth/__main__.py:5686 +msgid "Duplicate Report Timed Out." +msgstr "Duplicate Report Timed Out." + +#: meowth/__main__.py:5694 +msgid "Duplicate report #{duplicate_report_count} received." +msgstr "Duplicate report #{duplicate_report_count} received." + +#: meowth/__main__.py:5698 +msgid "" +"Simulate a Raid battle with Pokebattler.\n" +"\n" +" Usage: !counters [pokemon] [weather] [user]\n" +" See !help weather for acceptable values for weather.\n" +" If [user] is a valid Pokebattler user id, Meowth will simulate the Raid " +"with that user's Pokebox.\n" +" Uses current boss and weather by default if available.\n" +" " +msgstr "" + +#: meowth/__main__.py:5739 meowth/__main__.py:5766 +msgid "" +"Meowth! You're missing some details! Be sure to enter a pokemon that appears " +"in raids! Usage: **!counters [weather] [user ID]**" +msgstr "" + +#: meowth/__main__.py:5776 +msgid "user #{user}'s" +msgstr "" + +#: meowth/__main__.py:5779 +msgid "Level 30" +msgstr "" + +#: meowth/__main__.py:5821 meowth/__main__.py:5904 +msgid "{pkmn} | {weather} | {movesetstr}" +msgstr "" + +#: meowth/__main__.py:5822 meowth/__main__.py:5882 +msgid "**CP:** {raid_cp}\n" +msgstr "" + +#: meowth/__main__.py:5823 meowth/__main__.py:5883 +msgid "**Weather:** {weather}\n" +msgstr "" + +#: meowth/__main__.py:5824 meowth/__main__.py:5884 +msgid "**Attacker Level:** {atk_levels}" +msgstr "" + +#: meowth/__main__.py:5828 meowth/__main__.py:5888 meowth/__main__.py:5908 +msgid "Results courtesy of Pokebattler" +msgstr "" + +#: meowth/__main__.py:5835 meowth/__main__.py:5893 meowth/__main__.py:5913 +msgid "{move1} | {move2}" +msgstr "" + +#: meowth/__main__.py:5836 meowth/__main__.py:5894 meowth/__main__.py:5914 +msgid "#{index} - {ctr_name}" +msgstr "" + +#: meowth/__main__.py:5837 +msgid "CP" +msgstr "" + +#: meowth/__main__.py:5840 +msgid "Results with {userstr} attackers" +msgstr "" + +#: meowth/__main__.py:5840 meowth/__main__.py:5925 +msgid "" +"[See your personalized results!](https://www.pokebattler.com/raids/{pkmn})" +msgstr "" + +#: meowth/__main__.py:5842 +msgid "Difficulty rating: {est}" +msgstr "" + +#: meowth/__main__.py:5842 +msgid "Pokebattler Estimator:" +msgstr "" + +#: meowth/__main__.py:5881 +msgid "{pkmn} | {weather} | Unknown Moveset" +msgstr "" + +#: meowth/__main__.py:5923 +msgid "**Possible Movesets:**" +msgstr "" + +#: meowth/__main__.py:5925 +msgid "Results with Level 30 attackers" +msgstr "" + +#: meowth/__main__.py:5929 +msgid "" +"Sets the weather for the raid.\n" +" Usage: !weather \n" +" Only usable in raid channels.\n" +" Acceptable options: none, extreme, clear, rainy, partlycloudy, cloudy, " +"windy, snow, fog" +msgstr "" + +#: meowth/__main__.py:5929 +msgid "weather" +msgstr "" + +#: meowth/__main__.py:5938 +msgid "Meowth! Enter one of the following weather conditions: {}" +msgstr "" + +#: meowth/__main__.py:5953 +#, fuzzy +msgid "Meowth! Weather set to {}!" +msgstr "Meowth! {member} has left the raid!" + +#: meowth/__main__.py:5959 +msgid "" +"Indicate you are interested in the raid.\n" +"\n" +" Usage: !interested [count] [party]\n" +" Works only in raid channels. If count is omitted, assumes you are a " +"group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:5959 meowth/__main__.py:6867 +msgid "interested" +msgstr "" + +#: meowth/__main__.py:5996 meowth/__main__.py:6194 +msgid "{word} doesn't appear in level {egglevel} raids! Please try again." +msgstr "" + +#: meowth/__main__.py:6042 +#, fuzzy +msgid "Meowth! {member} is interested! {emoji}: 1" +msgstr "Meowth! {member} is interested!" + +#: meowth/__main__.py:6044 +msgid "" +"Meowth! {member} is interested with a total of {trainer_count} trainers!" +msgstr "" +"Meowth! {member} is interested with a total of {trainer_count} trainers!" + +#: meowth/__main__.py:6058 +msgid "" +"Indicate you are on the way to a raid.\n" +"\n" +" Usage: !coming [count] [party]\n" +" Works only in raid channels. If count is omitted, checks for previous !" +"maybe\n" +" command and takes the count from that. If it finds none, assumes you are " +"a group\n" +" of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:6058 meowth/__main__.py:6913 +msgid "coming" +msgstr "" + +#: meowth/__main__.py:6088 +msgid "{word} doesn't appear in level {egglevel} raids!" +msgstr "" + +#: meowth/__main__.py:6092 +msgid "" +"Invalid Pokemon detected. Please check the pinned message for the list of " +"possible bosses and try again." +msgstr "" + +#: meowth/__main__.py:6148 +#, fuzzy +msgid "Meowth! {member} is on the way! {emoji}: 1" +msgstr "Meowth! {member} is on the way!" + +#: meowth/__main__.py:6150 +msgid "" +"Meowth! {member} is on the way with a total of {trainer_count} trainers!" +msgstr "" +"Meowth! {member} is on the way with a total of {trainer_count} trainers!" + +#: meowth/__main__.py:6164 +msgid "" +"Indicate you have arrived at the raid.\n" +"\n" +" Usage: !here [count] [party]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:6164 meowth/__main__.py:6959 +msgid "here" +msgstr "" + +#: meowth/__main__.py:6234 +msgid "" +"\n" +"There is a group already in the lobby! Use **!lobby** to join them or **!" +"backout** to request a backout! Otherwise, you may have to wait for the next " +"group!" +msgstr "" + +#: meowth/__main__.py:6257 +#, fuzzy +msgid "Meowth! {member} is at the {raidtype}! {emoji}: 1" +msgstr "Meowth! {member} is at the raid!" + +#: meowth/__main__.py:6260 +#, fuzzy +msgid "" +"Meowth! {member} is at the {raidtype} with a total of {trainer_count} " +"trainers!" +msgstr "" +"Meowth! {member} is at the raid with a total of {trainer_count} trainers!" + +#: meowth/__main__.py:6322 +msgid "Only one non-team count can be accepted." +msgstr "" + +#: meowth/__main__.py:6334 +msgid "Only one count per team accepted." +msgstr "" + +#: meowth/__main__.py:6338 +msgid "Invalid format, please check and try again." +msgstr "" + +#: meowth/__main__.py:6342 +msgid "" +"Team counts are higher than the total, double check your counts and try " +"again. You entered **" +msgstr "" + +#: meowth/__main__.py:6343 +msgid "** total and **" +msgstr "" + +#: meowth/__main__.py:6344 +msgid "** in your party." +msgstr "" + +#: meowth/__main__.py:6349 +msgid "" +"Meowth! Something is not adding up! Try making sure your total matches what " +"each team adds up to!" +msgstr "" + +#: meowth/__main__.py:6416 meowth/__main__.py:6419 +msgid "**Boss Interest:**" +msgstr "" + +#: meowth/__main__.py:6422 +msgid "**Status List**" +msgstr "" + +#: meowth/__main__.py:6422 msgid "" -"**Wild Reports**\n" -"Do you want **!wild** reports enabled? If you want __only__ the **!raid** " -"feature for reports, you may want to disable this.\n" -"\n" -"Respond with: **N** to disable, or **Y** to enable:" +"Maybe: **{channelmaybe}** | Coming: **{channelcoming}** | Here: " +"**{channelhere}**" msgstr "" -"**Wild Reports**\n" -"Do you want **!wild** reports enabled? If you want __only__ the **!raid** " -"feature for reports, you may want to disable this.\n" -"\n" -"Respond with: **N** to disable, or **Y** to enable:" -#: __main__.py:833 -msgid "" -"**Wild Reports enabled**\n" -"---" +#: meowth/__main__.py:6423 +msgid "**Team List**" msgstr "" -"**Wild Reports enabled**\n" -"---" -#: __main__.py:837 +#: meowth/__main__.py:6435 msgid "" -"**Wild Reports disabled**\n" -"---" +"Indicate you are entering the raid lobby.\n" +"\n" +" Usage: !lobby [message]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people." +msgstr "" + +#: meowth/__main__.py:6435 meowth/__main__.py:7008 +msgid "lobby" msgstr "" -"**Wild Reports disabled**\n" -"---" -#: __main__.py:846 +#: meowth/__main__.py:6457 msgid "" -"**Pokemon Notifications**\n" -"The **!want** and **!unwant** commands let you add or remove roles for " -"Pokemon that will be mentioned in reports. This let you get notifications on " -"the Pokemon you want to track. I just need to know what channels you want to " -"allow people to manage their pokemon with the **!want** and **!unwant** " -"command. If you pick a channel that doesn't exist, I'll make it for you.\n" -"If you don't want to allow the management of tracked Pokemon roles, then you " -"may want to disable this feature.\n" -"\n" -"Repond with: **N** to disable, or the **channel-name** list to enable, each " -"seperated by a comma and space." +"Meowth! I can't understand how many are in your group. Just say **!here** if " +"you're by yourself, or **!coming 5** for example if there are 5 in your " +"group." msgstr "" -"**Pokemon Notifications**\n" -"The **!want** and **!unwant** commands let you add or remove roles for " -"Pokemon that will be mentioned in reports. This let you get notifications on " -"the Pokemon you want to track. I just need to know what channels you want to " -"allow people to manage their pokemon with the **!want** and **!unwant** " -"command. If you pick a channel that doesn't exist, I'll make it for you.\n" -"If you don't want to allow the management of tracked Pokemon roles, then you " -"may want to disable this feature.\n" -"\n" -"Repond with: **N** to disable, or the **channel-name** list to enable, each " -"seperated by a comma and space." +"Meowth! I can't understand how many are in your group. Just say **!here** if " +"you're by yourself, or **!coming 5** for example if there are 5 in your " +"group." -#: __main__.py:851 +#: meowth/__main__.py:6467 msgid "" -"**Pokemon Notifications disabled**\n" -"---" +"Meowth! There is no group in the lobby for you to join! Use **!starting** if " +"the group waiting at the raid is entering the lobby!" msgstr "" -"**Pokemon Notifications disabled**\n" -"---" -#: __main__.py:861 +#: meowth/__main__.py:6471 +#, fuzzy +msgid "Meowth! {member} is entering the lobby!" +msgstr "Meowth! {member} is on the way!" + +#: meowth/__main__.py:6473 +#, fuzzy msgid "" -"**Pokemon Notifications enabled**\n" -"---" +"Meowth! {member} is entering the lobby with a total of {trainer_count} " +"trainers!" msgstr "" -"**Pokemon Notifications enabled**\n" -"---" +"Meowth! {member} is on the way with a total of {trainer_count} trainers!" -#: __main__.py:872 +#: meowth/__main__.py:6482 msgid "" -"Meowth! You didn't give me enough permissions to create channels! Please " -"check my permissions and that my role is above general roles. Let me know if " -"you'd like me to check again.\n" +"Indicate you are no longer interested in a raid.\n" "\n" -"Respond with: **Y** to try again, or **N** to skip and create the missing " -"channels yourself." +" Usage: !cancel\n" +" Works only in raid channels. Removes you and your party\n" +" from the list of trainers who are \"otw\" or \"here\"." msgstr "" -"Meowth! You didn't give me enough permissions to create channels! Please " -"check my permissions and that my role is above general roles. Let me know if " -"you'd like me to check again.\n" -"\n" -"Respond with: **Y** to try again, or **N** to skip and create the missing " -"channels yourself." -#: __main__.py:883 -msgid "" -"I'm sorry I don't understand. Please reply with either **Y** to try again, " -"or **N** to skip and create the missing channels yourself." +#: meowth/__main__.py:6482 +msgid "cancel" msgstr "" -"I'm sorry I don't understand. Please reply with either **Y** to try again, " -"or **N** to skip and create the missing channels yourself." -#: __main__.py:889 -#, python-brace-format +#: meowth/__main__.py:6497 +msgid "Meowth! {member} has no status to cancel!" +msgstr "Meowth! {member} has no status to cancel!" + +#: meowth/__main__.py:6501 +msgid "Meowth! {member} is no longer interested!" +msgstr "Meowth! {member} is no longer interested!" + +#: meowth/__main__.py:6503 msgid "" -"The channel list you provided doesn't match with your servers channels.\n" -"The following aren't in your server:{invalid_channels}\n" -"Please double check your channel list and resend your reponse." +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"interested!" msgstr "" -"The channel list you provided doesn't match with your servers channels.\n" -"The following aren't in your server:{invalid_channels}\n" -"Please double check your channel list and resend your reponse." +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"interested!" -#: __main__.py:893 -#, python-brace-format -#| msgid "" -#| "**Timezone Configuration**\n" -#| "\n" -#| "Meowth! Ok, to finish the raid configuration I need to know what timezone " -#| "you're in! This will help me coordinate raids for you. The current 24-hr " -#| "time UTC is {utctime}. How many hours off from that are you? Please enter " -#| "your answer as a number between -12 and 12." -msgid "" -"**Timezone Configuration**\n" -"To help coordinate raids reports for you, I need to know what timezone " -"you're in! The current 24-hr time UTC is {utctime}. How many hours off from " -"that are you?\n" -"\n" -"Respond with: A number from **-12** to **12**:" +#: meowth/__main__.py:6506 +#, fuzzy +msgid "Meowth! {member} has left the {raidtype}!" +msgstr "Meowth! {member} has left the raid!" + +#: meowth/__main__.py:6508 +#, fuzzy +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers have left the " +"{raidtype}!" msgstr "" -"**Timezone Configuration**\n" -"To help coordinate raids reports for you, I need to know what timezone " -"you're in! The current 24-hr time UTC is {utctime}. How many hours off from " -"that are you?\n" -"\n" -"Respond with: A number from **-12** to **12**:" +"Meowth! {member} and their total of {trainer_count} trainers have left the " +"raid!" + +#: meowth/__main__.py:6511 +msgid "Meowth! {member} is no longer on their way!" +msgstr "Meowth! {member} is no longer on their way!" -#: __main__.py:903 __main__.py:906 +#: meowth/__main__.py:6513 msgid "" -"I couldn't convert your answer to an appropriate timezone!.\n" -"Please double check what you sent me and resend a number strarting from " -"**-12** to **12**." +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"on their way!" msgstr "" -"I couldn't convert your answer to an appropriate timezone!.\n" -"Please double check what you sent me and resend a number strarting from " -"**-12** to **12**." +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"on their way!" + +#: meowth/__main__.py:6516 +#, fuzzy +msgid "Meowth! {member} has backed out of the lobby!" +msgstr "Meowth! {member} has left the raid!" -#: __main__.py:911 +#: meowth/__main__.py:6518 +#, fuzzy msgid "" -"**Timezone set**\n" -"---" +"Meowth! {member} and their total of {trainer_count} trainers have backed out " +"of the lobby!" msgstr "" -"**Timezone set**\n" -"---" +"Meowth! {member} and their total of {trainer_count} trainers have left the " +"raid!" -#: __main__.py:921 +#: meowth/__main__.py:6536 msgid "" -"**Main Functions disabled**\n" -"---" +"Meowth! The group of {count} in the lobby has entered the raid! Wish them " +"luck!" msgstr "" -"**Main Functions disabled**\n" -"---" -#: __main__.py:932 +#: meowth/__main__.py:6551 msgid "" -"Meowth! Alright! Your settings have been saved and I'm ready to go! If you " -"need to change any of these settings, just type **!configure** in your " -"server again." +"Signal that a raid is starting.\n" +"\n" +" Usage: !starting [team]\n" +" Works only in raid channels. Sends a message and clears the waiting " +"list. Users who are waiting\n" +" for a second group must reannounce with the :here: emoji or !here." msgstr "" -"Meowth! Alright! Your settings have been saved and I'm ready to go! If you " -"need to change any of these settings, just type **!configure** in your " -"server again." -#: __main__.py:944 -msgid " If you have any questions just ask an admin." -msgstr " If you have any questions just ask an admin." +#: meowth/__main__.py:6551 +#, fuzzy +msgid "starting" +msgstr "Starting up..." -#: __main__.py:946 -#, python-brace-format -#| msgid "Meowth! Welcome to {server.name}, {new_member_name.mention}! " -msgid "Meowth! Welcome to {server_name}, {new_member_name}! " -msgstr "Meowth! Welcome to {server_name}, {new_member_name}! " +#: meowth/__main__.py:6566 +#, fuzzy +msgid "Meowth! How can you start when the egg hasn't hatched!?" +msgstr "Meowth! How can you start when there's no one waiting at this raid!?" -#: __main__.py:948 -#, python-brace-format -msgid "Set your team by typing {team_command} without quotations." -msgstr "Set your team by typing {team_command} without quotations." +#: meowth/__main__.py:6570 +#, fuzzy +msgid "Meowth! Please wait for the group in the lobby to enter the raid." +msgstr "" +"Meowth! Please wait until the egg has hatched before changing it to an open " +"raid!" -#: __main__.py:995 __main__.py:1012 __main__.py:1035 -msgid "Error occured while trying to save!" -msgstr "Error occured while trying to save!" +#: meowth/__main__.py:6594 +msgid "Meowth! How can you start when there's no one waiting at this raid!?" +msgstr "Meowth! How can you start when there's no one waiting at this raid!?" -#: __main__.py:1077 -#, python-brace-format -msgid "" -"Meowth! My roles are ranked lower than the following team roles: " -"**{higher_roles_list}**\n" -"Please get an admin to move my roles above them!" +#: meowth/__main__.py:6600 +msgid " to start at **{}** " msgstr "" -"Meowth! My roles are ranked lower than the following team roles: " -"**{higher_roles_list}**\n" -"Please get an admin to move my roles above them!" - -#: __main__.py:1094 -msgid "Meowth! You already have a team role!" -msgstr "Meowth! You already have a team role!" -#: __main__.py:1098 -#, python-brace-format -#| msgid "" -#| "Meowth! The \"{entered_team}\" role isn't configured on this server! " -#| "Contact an admin!" +#: meowth/__main__.py:6604 +#, fuzzy msgid "" -"Meowth! {team_role} is not configured as a role on this server. Please " -"contact an admin for assistance." +"Starting - Meowth! The group that was waiting{timestr}is starting the raid! " +"Trainers {trainer_list}, if you are not in this group and are waiting for " +"the next group, please respond with {here_emoji} or **!here**. If you need " +"to ask those that just started to back out of their lobby, use **!backout**" msgstr "" -"Meowth! {team_role} is not configured as a role on this server. Please " -"contact an admin for assistance." +"Meowth! The group that was waiting is starting the raid! Trainers " +"{trainer_list}, please respond with {here_emoji} or **!here** if you are " +"waiting for another group!" -#: __main__.py:1102 -#, python-brace-format -msgid "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" -msgstr "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" +#: meowth/__main__.py:6612 +msgid "**Next Group**" +msgstr "" -#: __main__.py:1106 -#, python-brace-format +#: meowth/__main__.py:6624 msgid "" -"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " -"an admin!" +"Request players in lobby to backout\n" +"\n" +" Usage: !backout\n" +" Will alert all trainers in the lobby that a backout is requested." msgstr "" -"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " -"an admin!" -#: __main__.py:1110 -#, python-brace-format -msgid "Meowth! Added {member} to Team {team_name}! {team_emoji}" -msgstr "Meowth! Added {member} to Team {team_name}! {team_emoji}" +#: meowth/__main__.py:6624 +msgid "backout" +msgstr "" -#: __main__.py:1112 -msgid "Meowth! I can't add roles!" -msgstr "Meowth! I can't add roles!" +#: meowth/__main__.py:6646 +#, fuzzy +msgid "Meowth! There's no one else in the lobby for this raid!" +msgstr "Meowth! Are you sure you wish to remove this raid?" -#: __main__.py:1144 -#, python-brace-format -msgid "Meowth! {member}, I already know you want {pokemon}!" -msgstr "Meowth! {member}, I already know you want {pokemon}!" +#: meowth/__main__.py:6652 +msgid "" +"Backout - Meowth! {author} has indicated that the group consisting of " +"{lobby_list} and the people with them has backed out of the lobby! If this " +"is inaccurate, please use **!lobby** or **!cancel** to help me keep my lists " +"accurate!" +msgstr "" -#: __main__.py:1151 -#, python-brace-format -msgid "Meowth! Got it! {member} wants {pokemon}" -msgstr "Meowth! Got it! {member} wants {pokemon}" +#: meowth/__main__.py:6666 +#, fuzzy +msgid "Meowth! There's no one in the lobby for this raid!" +msgstr "Meowth! How can you start when there's no one waiting at this raid!?" -#: __main__.py:1218 -#, python-brace-format -msgid "{0}, you have no pokemon in your want list." -msgstr "{0}, you have no pokemon in your want list." +#: meowth/__main__.py:6669 +msgid "" +"Backout - Meowth! {author} has requested a backout! If one of the following " +"trainers reacts with the check mark, I will assume the group is backing out " +"of the raid lobby as requested! {lobby_list}" +msgstr "" -#: __main__.py:1219 -#, python-brace-format -msgid "{0}, I've removed {1} pokemon from your want list." -msgstr "{0}, I've removed {1} pokemon from your want list." +#: meowth/__main__.py:6680 +msgid "Meowth! {user} confirmed the group is backing out!" +msgstr "" -#: __main__.py:1242 __main__.py:1255 +#: meowth/__main__.py:6692 msgid "" -"Meowth! Give more details when reporting! Usage: **!wild " -"**" +"Lists all raid info for the current channel.\n" +"\n" +" Usage: !list\n" +" Works only in raid or city channels. Calls the interested, waiting, and " +"here lists. Also prints\n" +" the raid timer. In city channels, lists all active raids." msgstr "" -"Meowth! Give more details when reporting! Usage: **!wild " -"**" -#: __main__.py:1270 -#, python-brace-format -msgid "Meowth! Click here for directions to the wild {pokemon}!" -msgstr "Meowth! Click here for directions to the wild {pokemon}!" +#: meowth/__main__.py:6692 +msgid "list" +msgstr "" -#: __main__.py:1270 -msgid "This is just my best guess!" -msgstr "This is just my best guess!" +#: meowth/__main__.py:6699 +msgid "**Meowth!** " +msgstr "" -#: __main__.py:1272 -#, python-brace-format -#| msgid "" -#| "Meowth! Wild {pokemon} reported by {member}! Details:{location_details}" -msgid "" -"Meowth! Wild {pokemon} reported by {member}! Details: {location_details}" +#: meowth/__main__.py:6755 +msgid " (assumed)" msgstr "" -"Meowth! Wild {pokemon} reported by {member}! Details: {location_details}" -#: __main__.py:1294 -#| msgid "" -#| "Meowth! Please restrict raid reports to a city channel or the default " -#| "channel!" -msgid "Meowth! Please restrict raid reports to a city channel!" -msgstr "Meowth! Please restrict raid reports to a city channel!" +#: meowth/__main__.py:6761 +msgid " Next group: **{}**" +msgstr "" -#: __main__.py:1313 -msgid "" -"Meowth! Please wait until the egg has hatched before changing it to an open " -"raid!" +#: meowth/__main__.py:6765 meowth/__main__.py:6767 +msgid " - Hatches: {expiry}{is_assumed}" msgstr "" -"Meowth! Please wait until the egg has hatched before changing it to an open " -"raid!" -#: __main__.py:1316 __main__.py:1349 -msgid "" -"Meowth! Give more details when reporting! Usage: **!raid " -"**" +#: meowth/__main__.py:6773 meowth/__main__.py:6777 +msgid " - Starts: {expiry}{is_assumed}" msgstr "" -"Meowth! Give more details when reporting! Usage: **!raid " -"**" -#: __main__.py:1343 __main__.py:1664 __main__.py:1861 __main__.py:1893 -#, python-brace-format -msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" -msgstr "Meowth! The Pokemon {pokemon} does not appear in raids!" +#: meowth/__main__.py:6775 +msgid " - Ends: {expiry}{is_assumed}" +msgstr "" -#: __main__.py:1361 __main__.py:1911 -msgid "Meowth! Click here for directions to the raid!" -msgstr "Meowth! Click here for directions to the raid!" +#: meowth/__main__.py:6779 +msgid " - Expiry: {expiry}{is_assumed}" +msgstr "" -#: __main__.py:1361 __main__.py:1687 __main__.py:1911 -#, python-brace-format -msgid "Weaknesses: {weakness_list}" -msgstr "Weaknesses: {weakness_list}" +#: meowth/__main__.py:6780 +msgid " {raidchannel}{expiry_text}\n" +msgstr "" -#: __main__.py:1363 -#, python-brace-format -#| msgid "" -#| "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -#| "Coordinate in {raid_channel}" +#: meowth/__main__.py:6781 +#, fuzzy msgid "" -"Meowth! {pokemon} raid reported by {member}! Details: {location_details}. " -"Coordinate in {raid_channel}" +" {interestcount} interested, {comingcount} coming, {herecount} here, " +"{lobbycount} in the lobby.{start_str}\n" msgstr "" -"Meowth! {pokemon} raid reported by {member}! Details: {location_details}. " -"Coordinate in {raid_channel}" +"\n" +"{raidchannel} - {interestcount} interested, {comingcount} coming, " +"{herecount} here. End time: {expiry}{manualtimer}" -#: __main__.py:1366 -#, python-brace-format +#: meowth/__main__.py:6784 msgid "" -"Meowth! {pokemon} raid reported by {member} in {citychannel}! Details: " -"{location_details}. Coordinate here!\n" -"\n" -"To update your status, choose from the following commands:\n" -"**!interested, !coming, !here, !cancel**\n" -"If you are bringing more than one trainer/account, add the number of " -"accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested, !list coming, !list here**\n" -"Alternatively **!list** by itself will show all of the above.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"**!timer** will show the current raid time.\n" -"**!timerset** will let you correct the raid countdown time.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' " -"list.\n" +"**Here's the current channels for {0}**\n" "\n" -"This channel will be deleted five minutes after the timer expires." msgstr "" -"Meowth! {pokemon} raid reported by {member} in {citychannel}! Details: " -"{location_details}. Coordinate here!\n" -"\n" -"To update your status, choose from the following commands:\n" -"**!interested, !coming, !here, !cancel**\n" -"If you are bringing more than one trainer/account, add the number of " -"accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested, !list coming, !list here**\n" -"Alternatively **!list** by itself will show all of the above.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"**!timer** will show the current raid time.\n" -"**!timerset** will let you correct the raid countdown time.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' " -"list.\n" -"\n" -"This channel will be deleted five minutes after the timer expires." -#: __main__.py:1406 -#, python-brace-format -#| msgid "" -#| "Meowth! Hey {member}, if you can, set the time left on the raid using **!" -#| "timerset H:MM** so others can check it with **!timer**." -msgid "" -"Meowth! Hey {member}, if you can, set the time left on the raid using **!" -"timerset ** so others can check it with **!timer**." +#: meowth/__main__.py:6786 +msgid "**Active Raids:**\n" +msgstr "" + +#: meowth/__main__.py:6792 +msgid "**Active Raids:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6796 +msgid "**Raid Eggs:**\n" msgstr "" -"Meowth! Hey {member}, if you can, set the time left on the raid using **!" -"timerset ** so others can check it with **!timer**." -#: __main__.py:1422 -#, python-brace-format -#| msgid "Meowth! This raid's timer has already expired as of {expiry_time}!" -msgid "" -"Meowth! This {raidtype}'s timer has already expired as of {expiry_time} " -"({expiry_time24})!" +#: meowth/__main__.py:6802 +msgid "**Raid Eggs:** (continued)\n" msgstr "" -"Meowth! This {raidtype}'s timer has already expired as of {expiry_time} " -"({expiry_time24})!" -#: __main__.py:1425 -#, python-brace-format -#| msgid "Meowth! This raid will end at {expiry_time}!" -msgid "" -"Meowth! This {raidtype} will {raidaction} at {expiry_time} ({expiry_time24})!" +#: meowth/__main__.py:6806 +msgid "**EX Raids:**\n" msgstr "" -"Meowth! This {raidtype} will {raidaction} at {expiry_time} ({expiry_time24})!" -#: __main__.py:1427 -#, python-brace-format -#| msgid "" -#| "Meowth! No one told me when the raid ends, so I'm assuming it will end at " -#| "{expiry_time}!" -msgid "" -"Meowth! No one told me when the {raidtype} will {raidaction}, so I'm " -"assuming it will {raidaction} at {expiry_time} ({expiry_time24})!" +#: meowth/__main__.py:6812 +msgid "**EX Raids:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6815 +msgid "**Meetups:**\n" +msgstr "" + +#: meowth/__main__.py:6821 +msgid "**Meetups:** (continued)\n" msgstr "" -"Meowth! No one told me when the {raidtype} will {raidaction}, so I'm " -"assuming it will {raidaction} at {expiry_time} ({expiry_time24})!" -#: __main__.py:1445 +#: meowth/__main__.py:6824 +#, fuzzy msgid "" -"Timerset isn't supported for exraids. Please get a mod/admin to remove the " -"channel if channel needs to be removed." +"Meowth! No active raids! Report one with **!raid [weather] " +"[timer]**." +msgstr "Meowth! No active raids! Report one with **!raid **." + +#: meowth/__main__.py:6858 +msgid " Nobody has updated their status yet!" msgstr "" -"Timerset isn't supported for exraids. Please get a mod/admin to remove the " -"channel if channel needs to be removed." -#: __main__.py:1470 -#, python-brace-format -#| msgid "" -#| "Meowth...that's too long. Raids currently last no more than two hours..." +#: meowth/__main__.py:6861 msgid "" -"Meowth...that's too long. {raidtype}s currently last no more than one hour..." +"\n" +"The next group will be starting at **{}**" msgstr "" -"Meowth...that's too long. {raidtype}s currently last no more than one hour..." -#: __main__.py:1507 +#: meowth/__main__.py:6867 msgid "" -"Exraids don't expire. Please get a mod/admin to remove the channel if " -"channel needs to be removed." +"Lists the number and users who are interested in the raid.\n" +"\n" +" Usage: !list interested\n" +" Works only in raid channels." msgstr "" -"Exraids don't expire. Please get a mod/admin to remove the channel if " -"channel needs to be removed." -#: __main__.py:1520 -#, python-brace-format -#| msgid "Meowth! {0} is interested!" -msgid "Meowth! {member} is interested!" -msgstr "Meowth! {member} is interested!" +#: meowth/__main__.py:6873 meowth/__main__.py:6919 meowth/__main__.py:6965 +#: meowth/__main__.py:7014 meowth/__main__.py:7060 meowth/__main__.py:7106 +#: meowth/__main__.py:7149 meowth/__main__.py:7167 meowth/__main__.py:7200 +msgid "**Meowth!**" +msgstr "" + +#: meowth/__main__.py:6891 meowth/__main__.py:6898 meowth/__main__.py:6937 +#: meowth/__main__.py:6944 meowth/__main__.py:6984 meowth/__main__.py:6991 +#: meowth/__main__.py:7031 meowth/__main__.py:7038 +msgid "**{name}**" +msgstr "" + +#: meowth/__main__.py:6894 meowth/__main__.py:6901 meowth/__main__.py:6940 +#: meowth/__main__.py:6947 meowth/__main__.py:6987 meowth/__main__.py:6994 +#: meowth/__main__.py:7034 meowth/__main__.py:7041 +msgid "**{name} ({count})**" +msgstr "" + +#: meowth/__main__.py:6895 meowth/__main__.py:6902 meowth/__main__.py:6941 +#: meowth/__main__.py:6948 meowth/__main__.py:6988 meowth/__main__.py:6995 +#: meowth/__main__.py:7035 meowth/__main__.py:7042 +msgid "{name} **({count})**" +msgstr "" -#: __main__.py:1522 -#, python-brace-format +#: meowth/__main__.py:6907 meowth/__main__.py:6909 msgid "" -"Meowth! {member} is interested with a total of {trainer_count} trainers!" +" including {trainer_list} and the people with them! Let them know if there " +"is a group forming" msgstr "" -"Meowth! {member} is interested with a total of {trainer_count} trainers!" +" including {trainer_list} and the people with them! Let them know if there " +"is a group forming" -#: __main__.py:1534 -#, python-brace-format -msgid "Meowth! {member} is on the way!" -msgstr "Meowth! {member} is on the way!" +#: meowth/__main__.py:6910 +#, fuzzy +msgid " {trainer_count} interested{including_string}!" +msgstr "Meowth! {trainer_count} interested{including_string}!" -#: __main__.py:1536 -#, python-brace-format +#: meowth/__main__.py:6913 msgid "" -"Meowth! {member} is on the way with a total of {trainer_count} trainers!" +"Lists the number and users who are coming to a raid.\n" +"\n" +" Usage: !list coming\n" +" Works only in raid channels." msgstr "" -"Meowth! {member} is on the way with a total of {trainer_count} trainers!" -#: __main__.py:1548 -#, python-brace-format -msgid "Meowth! {member} is at the raid!" -msgstr "Meowth! {member} is at the raid!" +#: meowth/__main__.py:6953 meowth/__main__.py:6955 +msgid "" +" including {trainer_list} and the people with them! Be considerate and wait " +"for them if possible" +msgstr "" +" including {trainer_list} and the people with them! Be considerate and wait " +"for them if possible" + +#: meowth/__main__.py:6956 +#, fuzzy +msgid " {trainer_count} on the way{including_string}!" +msgstr "Meowth! {trainer_count} on the way{including_string}!" -#: __main__.py:1550 -#, python-brace-format +#: meowth/__main__.py:6959 msgid "" -"Meowth! {member} is at the raid with a total of {trainer_count} trainers!" +"List the number and users who are present at a raid.\n" +"\n" +" Usage: !list here\n" +" Works only in raid channels." msgstr "" -"Meowth! {member} is at the raid with a total of {trainer_count} trainers!" -#: __main__.py:1565 -#, python-brace-format -#| msgid "Meowth! {member} is at the raid!" -msgid "Meowth! {member} has no status to cancel!" -msgstr "Meowth! {member} has no status to cancel!" +#: meowth/__main__.py:7002 meowth/__main__.py:7004 +msgid "" +" including {trainer_list} and the people with them! Be considerate and let " +"them know if and when you'll be there" +msgstr "" +" including {trainer_list} and the people with them! Be considerate and let " +"them know if and when you'll be there" -#: __main__.py:1569 -#, python-brace-format -msgid "Meowth! {member} is no longer interested!" -msgstr "Meowth! {member} is no longer interested!" +#: meowth/__main__.py:7005 +#, fuzzy +msgid " {trainer_count} waiting at the {raidtype}{including_string}!" +msgstr "Meowth! {trainer_count} waiting at the raid{including_string}!" -#: __main__.py:1571 -#, python-brace-format +#: meowth/__main__.py:7008 msgid "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"interested!" +"List the number and users who are in the raid lobby.\n" +"\n" +" Usage: !list lobby\n" +" Works only in raid channels." msgstr "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"interested!" -#: __main__.py:1574 -#, python-brace-format -msgid "Meowth! {member} has left the raid!" -msgstr "Meowth! {member} has left the raid!" +#: meowth/__main__.py:7048 meowth/__main__.py:7050 +#, fuzzy +msgid "" +" including {trainer_list} and the people with them! Use **!lobby** if you " +"are joining them or **!backout** to request a backout" +msgstr "" +" including {trainer_list} and the people with them! Let them know if there " +"is a group forming" + +#: meowth/__main__.py:7051 +#, fuzzy +msgid " {trainer_count} in the lobby{including_string}!" +msgstr "Meowth! {trainer_count} on the way{including_string}!" -#: __main__.py:1576 -#, python-brace-format -#| msgid "" -#| "Meowth! {member} and their total of trainer_count} trainers have left the " -#| "raid!" +#: meowth/__main__.py:7054 msgid "" -"Meowth! {member} and their total of {trainer_count} trainers have left the " -"raid!" +"List each possible boss and the number of users that have RSVP'd for it.\n" +"\n" +" Usage: !list bosses\n" +" Works only in raid channels." msgstr "" -"Meowth! {member} and their total of {trainer_count} trainers have left the " -"raid!" -#: __main__.py:1579 -#, python-brace-format -msgid "Meowth! {member} is no longer on their way!" -msgstr "Meowth! {member} is no longer on their way!" +#: meowth/__main__.py:7054 +msgid "bosses" +msgstr "" -#: __main__.py:1581 -#, python-brace-format +#: meowth/__main__.py:7093 msgid "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"on their way!" +"{type}{name}: **{total} total,** {interested} interested, {coming} coming, " +"{here} waiting{type}\n" msgstr "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"on their way!" -#: __main__.py:1629 __main__.py:2373 -#, python-brace-format -#| msgid "" -#| "Meowth! Someone has suggested a different location for the raid than what " -#| "I guessed! Trainers {trainer_list}: make sure you are headed to the right " -#| "place!" +#: meowth/__main__.py:7095 msgid "" -"Meowth! Someone has suggested a different location for the raid! Trainers " -"{trainer_list}: make sure you are headed to the right place!" +" Boss numbers for the raid:\n" +"{}" +msgstr "" + +#: meowth/__main__.py:7097 +msgid " Nobody has told me what boss they want!" msgstr "" -"Meowth! Someone has suggested a different location for the raid! Trainers " -"{trainer_list}: make sure you are headed to the right place!" -#: __main__.py:1656 __main__.py:1670 -#| msgid "" -#| "Meowth! Give more details when reporting! Usage: **!raid " -#| "**" +#: meowth/__main__.py:7100 msgid "" -"Meowth! Give more details when reporting! Usage: **!exraid " -"**" +"List the teams for the users that have RSVP'd to a raid.\n" +"\n" +" Usage: !list teams\n" +" Works only in raid channels." msgstr "" -"Meowth! Give more details when reporting! Usage: **!exraid " -"**" -#: __main__.py:1687 -#| msgid "Meowth! Click here for directions to the raid!" -msgid "Meowth! Click here for directions to the EX raid!" -msgstr "Meowth! Click here for directions to the EX raid!" +#: meowth/__main__.py:7100 +msgid "teams" +msgstr "" -#: __main__.py:1689 -#, python-brace-format -#| msgid "" -#| "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -#| "Coordinate in {raid_channel}" +#: meowth/__main__.py:7131 msgid "" -"Meowth! {pokemon} EX raid reported by {member}! Details: {location_details}. " -"Send proof of your invite to this EX raid to an admin and coordinate in " -"{raid_channel}" +"{emoji} **{total} total,** {interested} interested, {coming} coming, {here} " +"waiting {emoji}\n" msgstr "" -"Meowth! {pokemon} EX raid reported by {member}! Details: {location_details}. " -"Send proof of your invite to this EX raid to an admin and coordinate in " -"{raid_channel}" -#: __main__.py:1692 -#, python-brace-format +#: meowth/__main__.py:7134 msgid "" -"Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: " -"{location_details}. Coordinate here!\n" -"\n" -"To update your status, choose from the following commands:\n" -"**!interested, !coming, !here, !cancel**\n" -"If you are bringing more than one trainer/account, add the number of " -"accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested, !list coming, !list here**\n" -"Alternatively **!list** by itself will show all of the above.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' " -"list.\n" -"\n" -"This channel needs to be manually deleted!" +"**{grey_number} total,** {greymaybe} interested, {greycoming} coming, " +"{greyhere} waiting" msgstr "" -"Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: " -"{location_details}. Coordinate here!\n" -"\n" -"To update your status, choose from the following commands:\n" -"**!interested, !coming, !here, !cancel**\n" -"If you are bringing more than one trainer/account, add the number of " -"accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested, !list coming, !list here**\n" -"Alternatively **!list** by itself will show all of the above.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' " -"list.\n" -"\n" -"This channel needs to be manually deleted!" -#: __main__.py:1749 -#| msgid "" -#| "Meowth! Give more details when reporting! Usage: **!raid " -#| "**" +#: meowth/__main__.py:7138 msgid "" -"Meowth! Give more details when reporting! Usage: **!raidegg " -"**" +" Team numbers for the raid:\n" +"{}" +msgstr "" + +#: meowth/__main__.py:7140 +msgid " Nobody has updated their status!" msgstr "" -"Meowth! Give more details when reporting! Usage: **!raidegg " -"**" -#: __main__.py:1756 __main__.py:1782 -#| msgid "" -#| "Meowth! Give more details when reporting! Usage: **!raid " -#| "**" +#: meowth/__main__.py:7143 msgid "" -"Meowth! Give more details when reporting! Use at least: **!raidegg " -"**. Type **!help** raidegg for more info." +"List the wants for the user\n" +"\n" +" Usage: !list wants\n" +" Works only in the want channel." msgstr "" -"Meowth! Give more details when reporting! Use at least: **!raidegg " -"**. Type **!help** raidegg for more info." -#: __main__.py:1788 -msgid "Meowth! Raid egg levels are only from 1-5!" -msgstr "Meowth! Raid egg levels are only from 1-5!" +#: meowth/__main__.py:7143 +msgid "wants" +msgstr "" -#: __main__.py:1802 -#| msgid "Meowth! Click here for directions to the raid!" -msgid "Meowth! Click here for directions to the coming raid!" -msgstr "Meowth! Click here for directions to the coming raid!" +#: meowth/__main__.py:7159 +msgid " Your current **!want** list is: ```{wantlist}```" +msgstr "" -#: __main__.py:1802 -#, python-brace-format -msgid "Possible Bosses: {boss_list}" -msgstr "Possible Bosses: {boss_list}" +#: meowth/__main__.py:7161 +msgid " You don't have any wants! use **!want** to add some." +msgstr "" -#: __main__.py:1804 -#, python-brace-format -#| msgid "" -#| "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -#| "Coordinate in {raid_channel}" +#: meowth/__main__.py:7164 +msgid "List the quests for the channel" +msgstr "" + +#: meowth/__main__.py:7182 meowth/__main__.py:7188 msgid "" -"Meowth! Level {level} raid egg reported by {member}! Details: " -"{location_details}. Coordinate in {raid_channel}" +"**Reward**: {reward}, **Pokestop**: [{location}]({url}), **Quest**: {quest}, " +"**Reported By**: {author}" msgstr "" -"Meowth! Level {level} raid egg reported by {member}! Details: " -"{location_details}. Coordinate in {raid_channel}" -#: __main__.py:1807 -#, python-brace-format +#: meowth/__main__.py:7184 msgid "" -"Meowth! Level {level} raid egg reported by {member} in {citychannel}! " -"Details: {location_details}. Coordinate here!\n" -"\n" -"Message **!interested** if you're interested in attending.\n" -"If you are interested in bringing more than one trainer/account, add in the " -"number at the end of the commend.\n" -"Example: `!interested 5`\n" -"\n" -"Use **!list interested** to see the list of trainers who are interested.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"**!timer** will show how long until the egg catches into an open raid.\n" -"**!timerset** will let you correct the egg countdown time.\n" -"\n" -"Message **!raid ** to update this channel into an open raid.\n" -"Message **!raid assume ** to have the channel auto-update into an " -"open raid.\n" -"\n" -"When this egg raid expires, there will be 15 minutes to update it into an " -"open raid before it'll be deleted." +"Meowth! **Here's the current research reports for {channel}**\n" +"{questmsg}" msgstr "" -"Meowth! Level {level} raid egg reported by {member} in {citychannel}! " -"Details: {location_details}. Coordinate here!\n" -"\n" -"Message **!interested** if you're interested in attending.\n" -"If you are interested in bringing more than one trainer/account, add in the " -"number at the end of the commend.\n" -"Example: `!interested 5`\n" -"\n" -"Use **!list interested** to see the list of trainers who are interested.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"**!timer** will show how long until the egg catches into an open raid.\n" -"**!timerset** will let you correct the egg countdown time.\n" -"\n" -"Message **!raid ** to update this channel into an open raid.\n" -"Message **!raid assume ** to have the channel auto-update into an " -"open raid.\n" -"\n" -"When this egg raid expires, there will be 15 minutes to update it into an " -"open raid before it'll be deleted." -#: __main__.py:1844 -#, python-brace-format -#| msgid "" -#| "Meowth! Hey {member}, if you can, set the time left on the raid using **!" -#| "timerset H:MM** so others can check it with **!timer**." +#: meowth/__main__.py:7192 msgid "" -"Meowth! Hey {member}, if you can, set the time left until the egg hatches " -"using **!timerset ** so others can check it with **!timer**." +" **Here's the current research reports for {channel}**\n" +"{questmsg}" msgstr "" -"Meowth! Hey {member}, if you can, set the time left until the egg hatches " -"using **!timerset ** so others can check it with **!timer**." -#: __main__.py:1853 -msgid "Meowth! **!raid assume** is not allowed in this level egg." -msgstr "Meowth! **!raid assume** is not allowed in this level egg." +#: meowth/__main__.py:7194 +msgid " There are no reported research reports. Report one with **!research**" +msgstr "" -#: __main__.py:1865 __main__.py:1897 -#, python-brace-format -#| msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" -msgid "" -"Meowth! The Pokemon {pokemon} does not hatch from level {level} raid eggs!" +#: meowth/__main__.py:7197 +msgid "List the wilds for the channel" msgstr "" -"Meowth! The Pokemon {pokemon} does not hatch from level {level} raid eggs!" -#: __main__.py:1873 -#, python-brace-format -msgid "Meowth! This egg will be assumed to be {pokemon} when it hatches!" -msgstr "Meowth! This egg will be assumed to be {pokemon} when it hatches!" +#: meowth/__main__.py:7197 +msgid "wilds" +msgstr "" -#: __main__.py:1913 -#, python-brace-format -#| msgid "" -#| "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -#| "Coordinate in {raid_channel}" +#: meowth/__main__.py:7215 msgid "" -"Meowth! The egg has hatched into a {pokemon} raid! Details: " -"{location_details}. Coordinate in {raid_channel}" +"**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: " +"{author}" msgstr "" -"Meowth! The egg has hatched into a {pokemon} raid! Details: " -"{location_details}. Coordinate in {raid_channel}" -#: __main__.py:1915 -#, python-brace-format +#: meowth/__main__.py:7217 +#, fuzzy msgid "" -"Meowth! The egg reported by {member} in {citychannel} hatched into a " -"{pokemon} raid! Details: {location_details}. Coordinate here!\n" -"\n" -"To update your status, choose from the following commands:\n" -"**!interested, !coming, !here, !cancel**\n" -"If you are bringing more than one trainer/account, add the number of " -"accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested, !list coming, !list here**\n" -"Alternatively **!list** by itself will show all of the above.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"**!timer** will show the current raid time.\n" -"**!timerset** will let you correct the raid countdown time.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' " -"list.\n" -"\n" -"This channel will be deleted five minutes after the timer expires." +"Meowth! **Here's the current wild reports for {channel}**\n" +"{wildmsg}" msgstr "" -"Meowth! The egg reported by {member} in {citychannel} hatched into a " -"{pokemon} raid! Details: {location_details}. Coordinate here!\n" -"\n" -"To update your status, choose from the following commands:\n" -"**!interested, !coming, !here, !cancel**\n" -"If you are bringing more than one trainer/account, add the number of " -"accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested, !list coming, !list here**\n" -"Alternatively **!list** by itself will show all of the above.\n" -"\n" -"**!location** will show the current raid location.\n" -"**!location new
** will let you correct the raid address.\n" -"Sending a Google Maps link will also update the raid location.\n" -"\n" -"**!timer** will show the current raid time.\n" -"**!timerset** will let you correct the raid countdown time.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' " -"list.\n" -"\n" -"This channel will be deleted five minutes after the timer expires." +"Meowth! Here's the current location for the raid!\n" +"Details:{location}" -#: __main__.py:1965 -#, python-brace-format +#: meowth/__main__.py:7221 msgid "" -"Meowth! Trainers {trainer_list}: The raid egg has just hatched into a " -"{pokemon} raid!\n" -"You're now able to update your status with **!coming** or **!here**. If " -"you've changed your plans, use **!cancel**." +"**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: " +"{author}\n" +"**Location**: <{url}>" msgstr "" -"Meowth! Trainers {trainer_list}: The raid egg has just hatched into a " -"{pokemon} raid!\n" -"You're now able to update your status with **!coming** or **!here**. If " -"you've changed your plans, use **!cancel**." -#: __main__.py:1984 +#: meowth/__main__.py:7225 msgid "" -"Meowth! I can't understand how many are in your group. Just say **!" -"interested** if you're by yourself, or **!interested 5** for example if " -"there are 5 in your group." +" **Here's the current wild reports for {channel}**\n" +"{wildmsg}" msgstr "" -"Meowth! I can't understand how many are in your group. Just say **!" -"interested** if you're by yourself, or **!interested 5** for example if " -"there are 5 in your group." -#: __main__.py:2009 __main__.py:2044 +#: meowth/__main__.py:7227 +#, fuzzy msgid "" -"Meowth! Please wait until the raid egg has hatched before announcing you're " -"coming or present." +" There are no reported wild pokemon. Report one with **!wild " +"**" +msgstr "Meowth! No active raids! Report one with **!raid **." + +#: meowth/errors.py:140 +msgid "Meowth! I'm missing some details! Usage: {prefix}{command}" msgstr "" -"Meowth! Please wait until the raid egg has hatched before announcing you're " -"coming or present." -#: __main__.py:2020 +#: meowth/errors.py:173 msgid "" -"Meowth! I can't understand how many are in your group. Just say **!coming** " -"if you're by yourself, or **!coming 5** for example if there are 5 in your " -"group." +"Meowth! Team Management is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." msgstr "" -"Meowth! I can't understand how many are in your group. Just say **!coming** " -"if you're by yourself, or **!coming 5** for example if there are 5 in your " -"group." -#: __main__.py:2055 +#: meowth/errors.py:178 msgid "" -"Meowth! I can't understand how many are in your group. Just say **!here** if " -"you're by yourself, or **!coming 5** for example if there are 5 in your " -"group." +"Meowth! Pokemon Notifications are not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." msgstr "" -"Meowth! I can't understand how many are in your group. Just say **!here** if " -"you're by yourself, or **!coming 5** for example if there are 5 in your " -"group." -#: __main__.py:2099 -#, python-brace-format -#| msgid "" -#| "Meowth! The group that was waiting is starting the raid! Trainers " -#| "{trainer_list}, please respond with {here_emoji} or !here if you are " -#| "waiting for another group!" +#: meowth/errors.py:183 msgid "" -"Meowth! The group that was waiting is starting the raid! Trainers " -"{trainer_list}, please respond with {here_emoji} or **!here** if you are " -"waiting for another group!" +"Meowth! Wild Reporting is not enabled on this server. **{prefix}{cmd_name}** " +"is unable to be used." msgstr "" -"Meowth! The group that was waiting is starting the raid! Trainers " -"{trainer_list}, please respond with {here_emoji} or **!here** if you are " -"waiting for another group!" -#: __main__.py:2101 -msgid "Meowth! How can you start when there's no one waiting at this raid!?" -msgstr "Meowth! How can you start when there's no one waiting at this raid!?" +#: meowth/errors.py:188 +msgid "" +"Meowth! Reporting is not enabled for this channel. **{prefix}{cmd_name}** is " +"unable to be used." +msgstr "" -#: __main__.py:2122 -#, python-brace-format -#| msgid "Current Raids in {0}:" -msgid "Meowth! Current Raids for {0}:" -msgstr "Meowth! Current Raids for {0}:" +#: meowth/errors.py:193 +msgid "" +"Meowth! Raid Management is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." +msgstr "" -#: __main__.py:2146 -#, python-brace-format +#: meowth/errors.py:198 msgid "" -"\n" -"{raidchannel} - {interestcount} interested, {comingcount} coming, " -"{herecount} here. End time: {expiry}{manualtimer}" +"Meowth! EX Raid Management is not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." msgstr "" -"\n" -"{raidchannel} - {interestcount} interested, {comingcount} coming, " -"{herecount} here. End time: {expiry}{manualtimer}" -#: __main__.py:2149 -msgid "Meowth! No active raids! Report one with **!raid **." -msgstr "Meowth! No active raids! Report one with **!raid **." +#: meowth/errors.py:203 +msgid "" +"Meowth! Research Reporting is not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." +msgstr "" -#: __main__.py:2174 -#, python-brace-format -#| msgid "" -#| "Meowth! Hey {member}, I don't know if you meant **!coming** to say that " -#| "you are coming or **!otw** to see the other trainers on their way" +#: meowth/errors.py:208 msgid "" -"Meowth! Hey {member}, I don't know if you meant **!coming** to say that you " -"are coming or **!list coming** to see the other trainers on their way" +"Meowth! Meetup Reporting is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." msgstr "" -"Meowth! Hey {member}, I don't know if you meant **!coming** to say that you " -"are coming or **!list coming** to see the other trainers on their way" -#: __main__.py:2242 -#| msgid "Meowth! You already have a team role!" -msgid "Meowth! You've already made a duplicate report for this raid!" -msgstr "Meowth! You've already made a duplicate report for this raid!" +#: meowth/errors.py:213 +msgid "" +"Meowth! Channel Archiving is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." +msgstr "" -#: __main__.py:2265 -msgid "Meowth! Are you sure you wish to remove this raid?" -msgstr "Meowth! Are you sure you wish to remove this raid?" +#: meowth/errors.py:218 +msgid "" +"Meowth! EX Raid Invite is not enabled on this server. **{prefix}{cmd_name}** " +"is unable to be used." +msgstr "" -#: __main__.py:2278 -msgid "Duplicate Report cancelled." -msgstr "Duplicate Report cancelled." +#: meowth/errors.py:224 meowth/errors.py:419 meowth/errors.py:436 +#: meowth/errors.py:453 +msgid "Meowth! Please use **{prefix}{cmd_name}** in " +msgstr "" -#: __main__.py:2293 -msgid "Duplicate Report Timed Out." -msgstr "Duplicate Report Timed Out." +#: meowth/errors.py:227 meowth/errors.py:354 meowth/errors.py:371 +#: meowth/errors.py:388 meowth/errors.py:405 meowth/errors.py:422 +#: meowth/errors.py:439 meowth/errors.py:456 +msgid "a Region report channel." +msgstr "" -#: __main__.py:2301 -#, python-brace-format -msgid "Duplicate report #{duplicate_report_count} received." -msgstr "Duplicate report #{duplicate_report_count} received." +#: meowth/errors.py:229 meowth/errors.py:356 meowth/errors.py:373 +#: meowth/errors.py:390 meowth/errors.py:407 meowth/errors.py:424 +#: meowth/errors.py:441 meowth/errors.py:458 +msgid "one of the following region channels:" +msgstr "" -#: __main__.py:2325 -#, python-brace-format -msgid "" -"Meowth! Here's the current location for the raid!\n" -"Details:{location}" +#: meowth/errors.py:241 +msgid "Meowth! Please use **{prefix}{cmd_name}** in the following channel" +msgstr "" + +#: meowth/errors.py:244 +msgid "s:\n" msgstr "" -"Meowth! Here's the current location for the raid!\n" -"Details:{location}" -#: __main__.py:2338 +#: meowth/errors.py:246 +msgid ": " +msgstr "" + +#: meowth/errors.py:262 msgid "" -"Meowth! We're missing the new location details! Usage: **!location new **" +"Meowth! Please use **{prefix}{cmd_name}** in a Raid channel. Use **{prefix}" +"list** in any " +msgstr "" + +#: meowth/errors.py:265 meowth/errors.py:282 meowth/errors.py:335 +msgid "Region report channel to see active raids." msgstr "" -"Meowth! We're missing the new location details! Usage: **!location new **" -#: __main__.py:2395 -#, python-brace-format +#: meowth/errors.py:267 meowth/errors.py:284 meowth/errors.py:337 +msgid "of the following Region channels to see active raids:" +msgstr "" + +#: meowth/errors.py:279 msgid "" -" including {trainer_list} and the people with them! Let them know if there " -"is a group forming" +"Meowth! Please use **{prefix}{cmd_name}** in an Egg channel. Use **{prefix}" +"list** in any " msgstr "" -" including {trainer_list} and the people with them! Let them know if there " -"is a group forming" -#: __main__.py:2396 -#, python-brace-format -msgid "Meowth! {trainer_count} interested{including_string}!" -msgstr "Meowth! {trainer_count} interested{including_string}!" +#: meowth/errors.py:295 +msgid "Meowth! **{prefix}{cmd_name}** can't be used in a Raid channel." +msgstr "" -#: __main__.py:2419 -#, python-brace-format +#: meowth/errors.py:301 msgid "" -" including {trainer_list} and the people with them! Be considerate and wait " -"for them if possible" +"Meowth! Please use **{prefix}{cmd_name}** in an Active Raid channel. Use " +"**{prefix}list** in any " msgstr "" -" including {trainer_list} and the people with them! Be considerate and wait " -"for them if possible" -#: __main__.py:2420 -#, python-brace-format -msgid "Meowth! {trainer_count} on the way{including_string}!" -msgstr "Meowth! {trainer_count} on the way{including_string}!" +#: meowth/errors.py:310 +msgid "Region report channel to see active channels." +msgstr "" + +#: meowth/errors.py:312 +msgid "of the following Region channels to see active channels:" +msgstr "" -#: __main__.py:2442 -#, python-brace-format +#: meowth/errors.py:320 meowth/errors.py:345 msgid "" -" including {trainer_list} and the people with them! Be considerate and let " -"them know if and when you'll be there" +"\n" +"This is an egg channel. The channel needs to be activated with **{prefix}" +"raid ** before I accept commands!" msgstr "" -" including {trainer_list} and the people with them! Be considerate and let " -"them know if and when you'll be there" -#: __main__.py:2443 -#, python-brace-format -msgid "Meowth! {trainer_count} waiting at the raid{including_string}!" -msgstr "Meowth! {trainer_count} waiting at the raid{including_string}!" +#: meowth/errors.py:326 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in an Active channel. Use " +"**{prefix}list** in any " +msgstr "" -#: __main__.py:2449 -#| msgid "Meowth! {member} is no longer interested!" -msgid "Meowth! We've moved this command to **!list interested**." -msgstr "Meowth! We've moved this command to **!list interested**." +#: meowth/errors.py:351 +msgid "Meowth! Please use **{prefix}{cmd_name}** in either a Raid channel or " +msgstr "" -#: __main__.py:2454 -msgid "Meowth! We've moved this command to **!list coming**." -msgstr "Meowth! We've moved this command to **!list coming**." +#: meowth/errors.py:368 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in either a Raid Egg channel or " +msgstr "" -#: __main__.py:2459 -msgid "Meowth! We've moved this command to **!list here**." -msgstr "Meowth! We've moved this command to **!list here**." +#: meowth/errors.py:385 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in either a EX Raid channel or one " +"of the following region channels:" +msgstr "" -#: __main__.py:2471 -msgid "Meowth! I'll wait for you to send your pass!" -msgstr "Meowth! I'll wait for you to send your pass!" +#: meowth/errors.py:402 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in a EX Raid channel. Use " +"**{prefix}list** in any of the following region channels to see active raids:" +msgstr "" -#~ msgid "Meowth! That's right!" -#~ msgstr "Meowth! That's right!" +#~ msgid "" +#~ "Meowth! \"{entered_word}\" is not a Pokemon! Did you mean " +#~ "\"{corrected_word}\"?" +#~ msgstr "" +#~ "Meowth! \"{entered_word}\" is not a Pokemon! Did you mean " +#~ "\"{corrected_word}\"?" #~ msgid "" -#~ "Meowth! That's right! I've been rebooted! You don't need to do anything " -#~ "this time, but you may find some commands don't respond in currently " -#~ "active channels, or the channels may not delete as expected. Sorry for " -#~ "any inconvenience!" +#~ "\n" +#~ "Reboot messages sent: {success_count} successful, {fail_count} failed." #~ msgstr "" -#~ "Meowth! That's right! I've been rebooted! You don't need to do anything " -#~ "this time, but you may find some commands don't respond in currently " -#~ "active channels, or the channels may not delete as expected. Sorry for " -#~ "any inconvenience!" +#~ "\n" +#~ "Reboot messages sent: {success_count} successful, {fail_count} failed." #~ msgid "" #~ "__**Meowth Configuration**__\n" -#~ "\n" #~ "Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon " #~ "Go Helper Bot! I will be guiding you through some setup steps to get me " #~ "setup on your server.\n" #~ "\n" -#~ "**Team Assignment Configuration**\n" +#~ "**Role Setup**\n" +#~ "Before you begin the configuration, please make sure my role is moved to " +#~ "the top end of the server role hierarchy. It can be under admins and " +#~ "mods, but must be above team ands general roles. Here is an example: " +#~ "\n" +#~ "\n" +#~ "Reply with **cancel** at any time throughout the questions to cancel the " +#~ "configure process.\n" +#~ "\n" +#~ "**Team Assignments**\n" +#~ "Team assignment allows users to assign their Pokemon Go team role using " +#~ "the **!team** command. If you have a bot that handles this already, you " +#~ "may want to disable this feature.\n" +#~ "If you are to use this feature, ensure existing team roles are as " +#~ "follows: mystic, valor, instinct. These must be all lowercase letters. If " +#~ "they don't exist yet, I'll make some for you instead.\n" #~ "\n" -#~ "First, I have a feature that allows users to assign their Pokemon Go team " -#~ "using roles. If you have a bot that handles this already, or you don't " -#~ "want this feature, type N, otherwise type Y to enable the feature!" +#~ "Respond with: **N** to disable, **Y** to enable:" #~ msgstr "" #~ "__**Meowth Configuration**__\n" -#~ "\n" #~ "Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon " #~ "Go Helper Bot! I will be guiding you through some setup steps to get me " #~ "setup on your server.\n" #~ "\n" -#~ "**Team Assignment Configuration**\n" +#~ "**Role Setup**\n" +#~ "Before you begin the configuration, please make sure my role is moved to " +#~ "the top end of the server role hierarchy. It can be under admins and " +#~ "mods, but must be above team ands general roles. Here is an example: " +#~ "\n" +#~ "\n" +#~ "Reply with **cancel** at any time throughout the questions to cancel the " +#~ "configure process.\n" +#~ "\n" +#~ "**Team Assignments**\n" +#~ "Team assignment allows users to assign their Pokemon Go team role using " +#~ "the **!team** command. If you have a bot that handles this already, you " +#~ "may want to disable this feature.\n" +#~ "If you are to use this feature, ensure existing team roles are as " +#~ "follows: mystic, valor, instinct. These must be all lowercase letters. If " +#~ "they don't exist yet, I'll make some for you instead.\n" +#~ "\n" +#~ "Respond with: **N** to disable, **Y** to enable:" + +#~ msgid "" +#~ "**Main Functions**\n" +#~ "Main Functions include:\n" +#~ " - **!want** and creating tracked Pokemon roles \n" +#~ " - **!wild** Pokemon reports\n" +#~ " - **!raid** reports and channel creation for raid management.\n" +#~ "If you don't want __any__ of the Pokemon tracking or Raid management " +#~ "features, you may want to disable them.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or **Y** to enable:" +#~ msgstr "" +#~ "**Main Functions**\n" +#~ "Main Functions include:\n" +#~ " - **!want** and creating tracked Pokemon roles \n" +#~ " - **!wild** Pokemon reports\n" +#~ " - **!raid** reports and channel creation for raid management.\n" +#~ "If you don't want __any__ of the Pokemon tracking or Raid management " +#~ "features, you may want to disable them.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or **Y** to enable:" + +#~ msgid "" +#~ "If you do not require raid and wild reporting, you may want to disable " +#~ "this function.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or the **channel-name** list to enable, " +#~ "each seperated with a comma and space:" +#~ msgstr "" +#~ "If you do not require raid and wild reporting, you may want to disable " +#~ "this function.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or the **channel-name** list to enable, " +#~ "each seperated with a comma and space:" + +#~ msgid "" +#~ "**Report Locations are set**\n" +#~ "---\n" +#~ "**Raid Reports**\n" +#~ "Do you want **!raid** reports enabled? If you want __only__ the **!wild** " +#~ "feature for reports, you may want to disable this.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or **Y** to enable:" +#~ msgstr "" +#~ "**Report Locations are set**\n" +#~ "---\n" +#~ "**Raid Reports**\n" +#~ "Do you want **!raid** reports enabled? If you want __only__ the **!wild** " +#~ "feature for reports, you may want to disable this.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or **Y** to enable:" + +#~ msgid "" +#~ "**Wild Reports**\n" +#~ "Do you want **!wild** reports enabled? If you want __only__ the **!raid** " +#~ "feature for reports, you may want to disable this.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or **Y** to enable:" +#~ msgstr "" +#~ "**Wild Reports**\n" +#~ "Do you want **!wild** reports enabled? If you want __only__ the **!raid** " +#~ "feature for reports, you may want to disable this.\n" +#~ "\n" +#~ "Respond with: **N** to disable, or **Y** to enable:" + +#~ msgid "" +#~ "Meowth! You didn't give me enough permissions to create channels! Please " +#~ "check my permissions and that my role is above general roles. Let me know " +#~ "if you'd like me to check again.\n" +#~ "\n" +#~ "Respond with: **Y** to try again, or **N** to skip and create the missing " +#~ "channels yourself." +#~ msgstr "" +#~ "Meowth! You didn't give me enough permissions to create channels! Please " +#~ "check my permissions and that my role is above general roles. Let me know " +#~ "if you'd like me to check again.\n" +#~ "\n" +#~ "Respond with: **Y** to try again, or **N** to skip and create the missing " +#~ "channels yourself." + +#~ msgid "" +#~ "I'm sorry I don't understand. Please reply with either **Y** to try " +#~ "again, or **N** to skip and create the missing channels yourself." +#~ msgstr "" +#~ "I'm sorry I don't understand. Please reply with either **Y** to try " +#~ "again, or **N** to skip and create the missing channels yourself." + +#~ msgid "" +#~ "The channel list you provided doesn't match with your servers channels.\n" +#~ "The following aren't in your server:{invalid_channels}\n" +#~ "Please double check your channel list and resend your reponse." +#~ msgstr "" +#~ "The channel list you provided doesn't match with your servers channels.\n" +#~ "The following aren't in your server:{invalid_channels}\n" +#~ "Please double check your channel list and resend your reponse." + +#~| msgid "" +#~| "**Timezone Configuration**\n" +#~| "\n" +#~| "Meowth! Ok, to finish the raid configuration I need to know what " +#~| "timezone you're in! This will help me coordinate raids for you. The " +#~| "current 24-hr time UTC is {utctime}. How many hours off from that are " +#~| "you? Please enter your answer as a number between -12 and 12." +#~ msgid "" +#~ "**Timezone Configuration**\n" +#~ "To help coordinate raids reports for you, I need to know what timezone " +#~ "you're in! The current 24-hr time UTC is {utctime}. How many hours off " +#~ "from that are you?\n" +#~ "\n" +#~ "Respond with: A number from **-12** to **12**:" +#~ msgstr "" +#~ "**Timezone Configuration**\n" +#~ "To help coordinate raids reports for you, I need to know what timezone " +#~ "you're in! The current 24-hr time UTC is {utctime}. How many hours off " +#~ "from that are you?\n" +#~ "\n" +#~ "Respond with: A number from **-12** to **12**:" + +#~ msgid "" +#~ "**Main Functions disabled**\n" +#~ "---" +#~ msgstr "" +#~ "**Main Functions disabled**\n" +#~ "---" + +#~ msgid "This is just my best guess!" +#~ msgstr "This is just my best guess!" + +#~| msgid "" +#~| "Meowth! Please restrict raid reports to a city channel or the default " +#~| "channel!" +#~ msgid "Meowth! Please restrict raid reports to a city channel!" +#~ msgstr "Meowth! Please restrict raid reports to a city channel!" + +#~ msgid "" +#~ "Timerset isn't supported for exraids. Please get a mod/admin to remove " +#~ "the channel if channel needs to be removed." +#~ msgstr "" +#~ "Timerset isn't supported for exraids. Please get a mod/admin to remove " +#~ "the channel if channel needs to be removed." + +#~ msgid "" +#~ "Exraids don't expire. Please get a mod/admin to remove the channel if " +#~ "channel needs to be removed." +#~ msgstr "" +#~ "Exraids don't expire. Please get a mod/admin to remove the channel if " +#~ "channel needs to be removed." + +#~| msgid "" +#~| "Meowth! Give more details when reporting! Usage: **!raid " +#~| "**" +#~ msgid "" +#~ "Meowth! Give more details when reporting! Usage: **!exraid " +#~ "**" +#~ msgstr "" +#~ "Meowth! Give more details when reporting! Usage: **!exraid " +#~ "**" + +#~| msgid "Meowth! Click here for directions to the raid!" +#~ msgid "Meowth! Click here for directions to the EX raid!" +#~ msgstr "Meowth! Click here for directions to the EX raid!" + +#~| msgid "" +#~| "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " +#~| "Coordinate in {raid_channel}" +#~ msgid "" +#~ "Meowth! {pokemon} EX raid reported by {member}! Details: " +#~ "{location_details}. Send proof of your invite to this EX raid to an admin " +#~ "and coordinate in {raid_channel}" +#~ msgstr "" +#~ "Meowth! {pokemon} EX raid reported by {member}! Details: " +#~ "{location_details}. Send proof of your invite to this EX raid to an admin " +#~ "and coordinate in {raid_channel}" + +#~ msgid "" +#~ "Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: " +#~ "{location_details}. Coordinate here!\n" +#~ "\n" +#~ "To update your status, choose from the following commands:\n" +#~ "**!interested, !coming, !here, !cancel**\n" +#~ "If you are bringing more than one trainer/account, add the number of " +#~ "accounts total on your first status update.\n" +#~ "Example: `!coming 5`\n" +#~ "\n" +#~ "To see the list of trainers who have given their status:\n" +#~ "**!list interested, !list coming, !list here**\n" +#~ "Alternatively **!list** by itself will show all of the above.\n" +#~ "\n" +#~ "**!location** will show the current raid location.\n" +#~ "**!location new
** will let you correct the raid address.\n" +#~ "Sending a Google Maps link will also update the raid location.\n" +#~ "\n" +#~ "Message **!starting** when the raid is beginning to clear the raid's " +#~ "'here' list.\n" +#~ "\n" +#~ "This channel needs to be manually deleted!" +#~ msgstr "" +#~ "Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: " +#~ "{location_details}. Coordinate here!\n" +#~ "\n" +#~ "To update your status, choose from the following commands:\n" +#~ "**!interested, !coming, !here, !cancel**\n" +#~ "If you are bringing more than one trainer/account, add the number of " +#~ "accounts total on your first status update.\n" +#~ "Example: `!coming 5`\n" +#~ "\n" +#~ "To see the list of trainers who have given their status:\n" +#~ "**!list interested, !list coming, !list here**\n" +#~ "Alternatively **!list** by itself will show all of the above.\n" +#~ "\n" +#~ "**!location** will show the current raid location.\n" +#~ "**!location new
** will let you correct the raid address.\n" +#~ "Sending a Google Maps link will also update the raid location.\n" #~ "\n" -#~ "First, I have a feature that allows users to assign their Pokemon Go team " -#~ "using roles. If you have a bot that handles this already, or you don't " -#~ "want this feature, type N, otherwise type Y to enable the feature!" +#~ "Message **!starting** when the raid is beginning to clear the raid's " +#~ "'here' list.\n" +#~ "\n" +#~ "This channel needs to be manually deleted!" + +#~ msgid "" +#~ "Meowth! Level {level} raid egg reported by {member} in {citychannel}! " +#~ "Details: {location_details}. Coordinate here!\n" +#~ "\n" +#~ "Message **!interested** if you're interested in attending.\n" +#~ "If you are interested in bringing more than one trainer/account, add in " +#~ "the number at the end of the commend.\n" +#~ "Example: `!interested 5`\n" +#~ "\n" +#~ "Use **!list interested** to see the list of trainers who are interested.\n" +#~ "\n" +#~ "**!location** will show the current raid location.\n" +#~ "**!location new
** will let you correct the raid address.\n" +#~ "Sending a Google Maps link will also update the raid location.\n" +#~ "\n" +#~ "**!timer** will show how long until the egg catches into an open raid.\n" +#~ "**!timerset** will let you correct the egg countdown time.\n" +#~ "\n" +#~ "Message **!raid ** to update this channel into an open raid.\n" +#~ "Message **!raid assume ** to have the channel auto-update into " +#~ "an open raid.\n" +#~ "\n" +#~ "When this egg raid expires, there will be 15 minutes to update it into an " +#~ "open raid before it'll be deleted." +#~ msgstr "" +#~ "Meowth! Level {level} raid egg reported by {member} in {citychannel}! " +#~ "Details: {location_details}. Coordinate here!\n" +#~ "\n" +#~ "Message **!interested** if you're interested in attending.\n" +#~ "If you are interested in bringing more than one trainer/account, add in " +#~ "the number at the end of the commend.\n" +#~ "Example: `!interested 5`\n" +#~ "\n" +#~ "Use **!list interested** to see the list of trainers who are interested.\n" +#~ "\n" +#~ "**!location** will show the current raid location.\n" +#~ "**!location new
** will let you correct the raid address.\n" +#~ "Sending a Google Maps link will also update the raid location.\n" +#~ "\n" +#~ "**!timer** will show how long until the egg catches into an open raid.\n" +#~ "**!timerset** will let you correct the egg countdown time.\n" +#~ "\n" +#~ "Message **!raid ** to update this channel into an open raid.\n" +#~ "Message **!raid assume ** to have the channel auto-update into " +#~ "an open raid.\n" +#~ "\n" +#~ "When this egg raid expires, there will be 15 minutes to update it into an " +#~ "open raid before it'll be deleted." + +#~ msgid "" +#~ "Meowth! The egg reported by {member} in {citychannel} hatched into a " +#~ "{pokemon} raid! Details: {location_details}. Coordinate here!\n" +#~ "\n" +#~ "To update your status, choose from the following commands:\n" +#~ "**!interested, !coming, !here, !cancel**\n" +#~ "If you are bringing more than one trainer/account, add the number of " +#~ "accounts total on your first status update.\n" +#~ "Example: `!coming 5`\n" +#~ "\n" +#~ "To see the list of trainers who have given their status:\n" +#~ "**!list interested, !list coming, !list here**\n" +#~ "Alternatively **!list** by itself will show all of the above.\n" +#~ "\n" +#~ "**!location** will show the current raid location.\n" +#~ "**!location new
** will let you correct the raid address.\n" +#~ "Sending a Google Maps link will also update the raid location.\n" +#~ "\n" +#~ "**!timer** will show the current raid time.\n" +#~ "**!timerset** will let you correct the raid countdown time.\n" +#~ "\n" +#~ "Message **!starting** when the raid is beginning to clear the raid's " +#~ "'here' list.\n" +#~ "\n" +#~ "This channel will be deleted five minutes after the timer expires." +#~ msgstr "" +#~ "Meowth! The egg reported by {member} in {citychannel} hatched into a " +#~ "{pokemon} raid! Details: {location_details}. Coordinate here!\n" +#~ "\n" +#~ "To update your status, choose from the following commands:\n" +#~ "**!interested, !coming, !here, !cancel**\n" +#~ "If you are bringing more than one trainer/account, add the number of " +#~ "accounts total on your first status update.\n" +#~ "Example: `!coming 5`\n" +#~ "\n" +#~ "To see the list of trainers who have given their status:\n" +#~ "**!list interested, !list coming, !list here**\n" +#~ "Alternatively **!list** by itself will show all of the above.\n" +#~ "\n" +#~ "**!location** will show the current raid location.\n" +#~ "**!location new
** will let you correct the raid address.\n" +#~ "Sending a Google Maps link will also update the raid location.\n" +#~ "\n" +#~ "**!timer** will show the current raid time.\n" +#~ "**!timerset** will let you correct the raid countdown time.\n" +#~ "\n" +#~ "Message **!starting** when the raid is beginning to clear the raid's " +#~ "'here' list.\n" +#~ "\n" +#~ "This channel will be deleted five minutes after the timer expires." + +#~ msgid "" +#~ "Meowth! I can't understand how many are in your group. Just say **!" +#~ "interested** if you're by yourself, or **!interested 5** for example if " +#~ "there are 5 in your group." +#~ msgstr "" +#~ "Meowth! I can't understand how many are in your group. Just say **!" +#~ "interested** if you're by yourself, or **!interested 5** for example if " +#~ "there are 5 in your group." + +#~ msgid "" +#~ "Meowth! I can't understand how many are in your group. Just say **!" +#~ "coming** if you're by yourself, or **!coming 5** for example if there are " +#~ "5 in your group." +#~ msgstr "" +#~ "Meowth! I can't understand how many are in your group. Just say **!" +#~ "coming** if you're by yourself, or **!coming 5** for example if there are " +#~ "5 in your group." + +#~| msgid "Current Raids in {0}:" +#~ msgid "Meowth! Current Raids for {0}:" +#~ msgstr "Meowth! Current Raids for {0}:" + +#~| msgid "" +#~| "Meowth! Hey {member}, I don't know if you meant **!coming** to say that " +#~| "you are coming or **!otw** to see the other trainers on their way" +#~ msgid "" +#~ "Meowth! Hey {member}, I don't know if you meant **!coming** to say that " +#~ "you are coming or **!list coming** to see the other trainers on their way" +#~ msgstr "" +#~ "Meowth! Hey {member}, I don't know if you meant **!coming** to say that " +#~ "you are coming or **!list coming** to see the other trainers on their way" + +#~| msgid "Meowth! {member} is no longer interested!" +#~ msgid "Meowth! We've moved this command to **!list interested**." +#~ msgstr "Meowth! We've moved this command to **!list interested**." + +#~ msgid "Meowth! We've moved this command to **!list coming**." +#~ msgstr "Meowth! We've moved this command to **!list coming**." + +#~ msgid "Meowth! We've moved this command to **!list here**." +#~ msgstr "Meowth! We've moved this command to **!list here**." + +#~ msgid "Meowth! I'll wait for you to send your pass!" +#~ msgstr "Meowth! I'll wait for you to send your pass!" + +#~ msgid "Meowth! That's right!" +#~ msgstr "Meowth! That's right!" + +#~ msgid "" +#~ "Meowth! That's right! I've been rebooted! You don't need to do anything " +#~ "this time, but you may find some commands don't respond in currently " +#~ "active channels, or the channels may not delete as expected. Sorry for " +#~ "any inconvenience!" +#~ msgstr "" +#~ "Meowth! That's right! I've been rebooted! You don't need to do anything " +#~ "this time, but you may find some commands don't respond in currently " +#~ "active channels, or the channels may not delete as expected. Sorry for " +#~ "any inconvenience!" #~ msgid "" #~ "Meowth! Team assignments enabled! Please make sure that my role is moved " @@ -1826,9 +5384,6 @@ msgstr "Meowth! I'll wait for you to send your pass!" #~ "Meowth! Please restrict wild reports to city channels or the default " #~ "channel!" -#~ msgid "Meowth! **!wild** commands have been disabled." -#~ msgstr "Meowth! **!wild** commands have been disabled." - #~ msgid "" #~ "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " #~ "Coordinate here!\n" @@ -1893,16 +5448,6 @@ msgstr "Meowth! I'll wait for you to send your pass!" #~ msgid "Meowth...I can't do that! No negative numbers, please!" #~ msgstr "Meowth...I can't do that! No negative numbers, please!" -#~ msgid "Meowth...I couldn't understand your time format..." -#~ msgstr "Meowth...I couldn't understand your time format..." - -#~ msgid "" -#~ "Meowth... I couldn't understand your time format. Try again like this: !" -#~ "timerset H:MM" -#~ msgstr "" -#~ "Meowth... I couldn't understand your time format. Try again like this: !" -#~ "timerset H:MM" - #~ msgid "" #~ "Meowth! Exactly *how many* are interested? There wasn't a number anywhere " #~ "in your message. Or, just say `!maybe` if you're by yourself." diff --git a/locale/fr/LC_MESSAGES/meowth.mo b/locale/fr/LC_MESSAGES/meowth.mo index 539ba33dcb2b3c12b67cf57b51835df2ee8e9ccb..53ecac9b969e500583e41aff4a73e560b1a8a16d 100644 GIT binary patch delta 809 zcmX}qT}V@57{Kvow(=vZwOU(S;fdIo%+0=C*-Wd8KCsQ0CicOkP(y7iw;~WnH-$k& zJrtHf7v4lg1YQ`0RM3S)^Z^kBQFpGc!i!)RLjBJ+df<6~=Y7w1&ig#?$<13ndb8i{ z)>}fXDdjwR$!``0B2^|5#Iu;f`dn6N`#}%wYrbo#n+1rm=(hUF^g;+=mA$L~2nnfYWHM|H3V} zsZyjFd(m&niag+A2MeF7M0&7#u}BPuup8eXn-yQRNDBtA4F_=-zQhRr#Q}^gDf$ro z%$-X`j$kvI^D!L5*Eq!crE8hUDSVGxakEXN4o~9=yp3jsf3Ot~EiYDf4}HvM(5&z` zHe%Q=aum~Oo}z~|3*hlWlf*^xQ=u;UUkaKa6d)Y$|DYj-SjD)SG>^ypPAE)PkY;cy zg>W)DO4q!%5OiEtlANSatgwIKvk)=%_ZSzG8KbXz@=-WK=sz2&;I=jK4+cw&?D%_&^ zNN6(J6f5JY8AGo`_vlnxm(Cs@(YNhQI^O<7M>?E3-FZphb=}aLCxbk*tZ zvr|>4wl3Y%(;gBc8DbP$ib((&AskS!$16+(*pNgZyqzyG2qYvdK0pu+AK12c` zFu(uvyze=us=Md1>wJOMRKH!P&Ur7-_5VE2`_}y4+kWI%6Mj~Cy^q(a*CxpqX+QsZ ze)03QHzdg-?XS@eX#WN6RoYLzF-e}&b=vR#i6r>}?Z15uf4?b7=4k)=k0;3&xc=R@ zB*~Y#@5#3%$%lCVecJnI|JU37`iI_;B>YSM9=|?F`@6KiPWxYJe?a>e--q!QkMsV~1?EhoR+C2?>d|$44E9G)%6}NBuc(RE4qB2_5s?r9-;k_Bzb~1=l%A_ zl7xTBzYp!Z9%K%@KTUgy_Lpe+m;48QiJ$L*2xHn)v>NBTw4b6q@QEZTXrHG2UD|Kc zYTTduBs{16E!w|H`voo{0?EOLoIlI7qRX$)>iWN-{YUWOf6yM|{dXYVXY`&{{e2o? zU8Vg3?K#?)X*1eKK7|au2K}J@@@vs2nDH|2fA$G@&GSz~yuZtRPd^QvdH;WCuh3qC z3BSelZ=ZpNw1cxg?l02*Q{I1%Hs!v*#9*J{{XgIrT_$fl?{aaDmZc`YPRmr1-=h`3 zf9e8rrTrP&FVlXV_LpcML`i;`c89i0dkG?|eTi25x&N~3ONaJZ-hYYqOSJ!m_OH@T zo^d+9^|MLBpUJmr5!K|!xOtQILE3jP-*3_W72f~OpLRWZ?sLcl@BazykHY^J$^Z$H z2d_du?*9c^{w2SkB?*rt%PX!gU!(mM-v4jf5$#vnN%CiDU*AcRf6Q~gNc#@nKM7Ob z%=_nPxs>$QT(15l?bmt#hIM40_BUuziR9e~%PHDrTIuCiXz%CwKcp2M-+#^Z;0mqo z|A(}a*Z)NOe%hxY+RxHnqlE;?_h=zu@)dE z&(TVb{}!$K{X^QvY2REX2_l%Br~P-(>&vt^dEXx=$tP)FrWL}9zMe>{=AMqp5`^j>qERw@;b=tEHC{?7Eak;{%fi6 z_q+J}?Y!Q=>!EP{S=s}RULWBlnbOZ;Ua9`zXTcl$eT3g-&J0)GkHC)kMW8>o$$v`(7unCbSC~hz#oUg zoBL=V=k?RPuJHPCUYI1)DcPkT$>T)pF>g zGT@*bjf$1-D;wa{?DTD}X)#K(bZuBp1{w-_ttAT!$BXe+dVD?W_w#OgyzH+QYZK@I zffp7I95|hqo8$Gl^h|zzd?-Dc_VXMvmQI(=^`gC=w*A==Bz3|}M%<&dK>v;?cRzpg zVJ98tgK{_?wE|Cv=_ns=MYUMj}Uf-b&Ak@|y(@*u)_X>ulTLh|p+|^?DG?gt1?ai`AlSr1wrm zzmboe4fB*6pkO!O$ofcUX`(V0Ie4n{C--OJvF@-~TZfCAbQRb*LQqEIY&e#}bVC$<3+`}$q3j#1#Xvh1XJznrY0|7F_GhC`|NIPLHp3`6`jvn_oz zn2dG3KxQP(E)YRcWRZ*zGA?b6U7h{_INfJ(+yfU z86tFH(Y-ulK9O`qPpSjw52Yif*3C1B2oumA&9U#ZVZ~56+iImx%*^nd)SIBU3^cU~M~ZA>GTp^7&%av_(OX=hBn& zJrpAA7`N8SIb&WAiDPhj!5Sb=Oc-8DG_G!NQP1Uq>sgPBvCLoA z#SY9JIPf@ZU`0sZl02p!jb=tJV$Hp`TNJo~>5|61nD5Dgo4GuYDhdfvXq{8_yw9xvy8oKBuDfIAkjA88MP z*J!I@G+Y@xV>J#tSR!6~tuHyKeS;Z}bLBO74NE18xI@Ne>E;#9ibdaeC~YIsW{)e! zDq%FE=S;bl=L3^8*nUm3ie5z?UHrBI^+4qhJ7s@TYupSR06;A$CzgUg*4>{c$`XVz`I4w$c-2OYk@j`v$Ua@2I`$Wdv|GkF)xg6GAmVJvpjD#E^ik5-Y)3FCr<`F#?L z=+F0aCYoy?vo|sW0oeuf4&E9ff8q9C7!Jl``GZG=mEmUh_H<~Is$@9KVFeUq1mL-j z>`$;<<_Jt8g7Im{yxkHee|t#}3g3J{!u^cU>)i@>6YAcZa5taaQ@C|Qay-b6G|sTi z_TigL$uc-*n3ioMONesae9q9l7aEM|o=cvBZJ_1=!(^S8;D8{E%t%x}&DrEA@X)Bu z$QJcrYwiT@pA>RK2711DWEun3%f?G_gnrh;zl7m-y-7~?-3XqW@2B3MvTx(V$Ah{ZNqnY z=gK(GdN)5nPqN}!x{-CUwYrGm8E&Q9*+y1$W&Z5W(ak-&5G}0>TYQ!Ve>4Z^l;?AP z5Av=I{M@}fe}bv-H0laY_`o(mLs*?j`-qQKeJw1^iNp&F&Z0iDYbw1WyA;fKr(XTB zP6t|TyIHv@OMQ_A6V>zkip1gOTzF#`s$TQ)Zoz`gLOF_S#txDt(Y;>c9d9?e*dDn5 zzF9xGd>zyU`xoH4ndt?S7vv8TJ{GXtW)^rB>@e2cjc3%c%F3NZYz&f&h(4f|_XD-u zoXOE3-{R9K@2=K#+GiSC|Er&bdU?fDC={KLtI0dBaw1pfdfC=We)UeIFvDZ`zmo&A zyRvl1mg5Y`b$Ur|Zb{@d<$E}A)y&JI>BBKBd30f+65D&})I{a3I>m_!;m5i3R9O;8Tl^zfkL^VE0a>zXQXk=oXoJm*G)#UiT~Fnh zmoP~Mx$abBRxIlMcuHUe7!^TBFs%_?nuXV(eL3DlsB~NI@q}T{H00})2hv;%q2#S< z{r4~vla?^T>_lpz43mi$ZabrR(>}8ah=b^a=-hK}j_JDjs=_IAVJ2}NaYF+^JT!Tn zKDBiEG-DIg8x;uAu%jN15ZD_einlK;G#G=?(Vb#}!*i2$=w>b+c@p?lS`oolP-l?F zOkZu1PpS*Kln%K$<+5t)#z)Fh=~ECfPR#ljIMx{xuv~7iggD zF2l$Nt(IM`h&A$Oe!J|__BuH_a@NKT&s-Bs1&F_fxbVECy0yw4X;TGb9%^PQdQ0cM zdM0OJ6VU|M#d-1+1Xe=gCL79tSC&vFVcG)LvPLg@U|fPzpl=j32QcJ1z-WlC*h%<1 zu_)9;7qg>G2*S6WUmq01tt%GT)YChAjc7=*4~qeoX^?IP7;Qx3Cmkf@Ocwf8tJjjb zzsYC=%#5XQNGQo}G5z6D3?EX}D+td?^)IEkQ_>{C`HtofrSq1wXHVjNC*An&+>hii+~O^wyYY>a$C>%ak`8KKilhGBPyd>4^UV}hxM+ZWH4 zyVX~~71lB*7i5%}b3|+^3T51gkzMah+ISp<-vf;9L`g=?2bKWVQ4f3*n$f9vY3Y@? zLS^tqlQq&C)JafVf5hT3Fo9qBbpk2PG4zYSRJPahITBU_aQ3hss(KIch>Z@LLjDbWw9IYswLf~suq!#zk>Yxr-2ZK4Fc*EZG6Yq~u7I3z{y$ zE)gX~NfT_5`mbY#83?(zE>)nSxIyZ_rs6A{+8@U>+$3&_9GgSn`dm!D%_0VwYlA#0 zY|c^HitBEe9bAHWY>~lj1O)F|8mnHs#k`(WR>^G?%mYLY!c~*hlsBLOB^`tgD$3r` z?aX*jo0&PO8lRYFLP#sXLV*<u)1BzH;z@OoE zYCLlh2Sysq%ApNXH?Ly40Zo>g80IS_Wh_W8$Ls-6ENo!AL540C{6?!mGl$X@vOAhQ zfr#?Uj#Mj641Hi_1|^@72?*I>k_iE=MO`+oOv#M8RQjqzAy}IgkcjI51Lmhv-H>dM zP_y7Fgcoq{7dhpe<}!2AG&7l{08#?l_Y#cxWLuQy0ZA39dIcVV>V`q5JB>)a3SC(z zQKlxF4F)-NFjnd?v@$yvu_L}A!K9aLNfoj{Oj9Al$idv~tJ8;KMKluCaNo9qp(~yq zl6jre`zTRTyBHoh$y{h`I#Vmtjk1A+LSn@z10#fVjzVY)NKEP?*DB?_y;*2bfyJ6R z#Y5Z)GhdXL>1HI@f=CO0g5i)bkkrJGSa`n=?0zO!Hp#%S0ua`u1b$`UL-M4VEvY`+ zGer{12mw7;Hp;N(Y>6SH`;n#TohCveyY`m=Gy_p*5gPkrj2(ExnX-an!B$G36H~Kw zjlsbhHKP-!=c62K+GY$&(~2)haM)IZ7#SFGR9>r%M_eo>e%lqJrEYH?O1Gin70;De zg0dAhNsy?lSpAF&3AKhewt!zi`Iu&zOHX+AYH2%?{Yqd-o#d1$iaa-?nALW<7G5)0 zZaHl`1%exPJ~YAulxik^pY~qW+$l52uf$vk7P0;)=CNdap(NILT#hqKJ5?ZnghHQ< zSXG)w8d&GO{+POL=8|6Je2vbQ(UHnX1^4JsxrjU60}(?66_lPp9RA&jV0(-<-P7JT z)P#)%wpTdPUGj=K)py>3{M;L|W7=~Q>VL0rdUZ#;>7dkQR2K_l<((S^!b&6W@=*)c z_IfCm3EZ6Dt9rL^u~pSr&WddnZpaKEL#=3HV_vYT65Mx{1e~Q_KIgvaxvP%U5i!H! z_5{m5Xt@NaEfPotp&Nf%venZX%sQG*!U#=+FhYAm!XrcSNv#7XeT#>BXbN+n@>FfC z?uA*J55ChJr@C(lFbE>*o_Sp31GK5OPlo-Chit~E;xg6%hQDr*3>>7@cE z+j*D82GBWeplbONmI$}(wh65R&qCM+GWAUGFjrwd?}t_ug0;geB-7jS7UDhFsU=4Ou&lf zP|wxgX|89ZxP;8F=|jbp2<#v=%xjae^Vm1yF=9QAoWXc3e)3C|CxFwNs40uH}VnB^Z z#$mXD_@i-~hBkaDF53hrT?AYYx#yHKM5O$PdA2pdj0FDlyEj5yPw-j)IYQ zwyQnUSCnwd=9Ck<&#f>*h7h2|=oX^`il)wmSD}9VsQ!4tlr|YKg zJ(~2h2|J*N#SQKhG6wgmL1r#wJ%|@w)Y8?fS7W88ftf#dVfp;!<@3)SNo)QPe&T z?Q%tks4G-C-Me4OKJ)Qy4i)M57%G{vM}nOpTcHAvM}Va7*bi#Sa`TqeO&vDQAoWV3 z13ALh$0{H0enl~{M9rgO*_0|2lg+LyFrsS=bf3jEkgMGGB0=X^$6%Evw(2GNlIZ`a zwNEX@t)%7}f>{C-<`FILUW;%n5OydvO!CK~5pEs0$iDGv)i#;Xp*yA8X0W)BQVQX9 zs9M?_Q9s+Gf$vyRQNmK5bICKu&YwAX=EyvkC}JEc^JmrycoSfOMwHs2(ppc596 zLza07R@KAFMt3OdOmf+bia*~A>x**CBmI@E_T8${jqDX-{0UeX171_PVcCWRf-k(7+r zIh4YFeAQS)eGaIwZG_VREKNnv>MDdX?G1sq5)2om$j5Bkt>W$3)f_lrd+ZeexKgHZ z6QgCE3}KAI4q8U@RIB6zbktabSqCrPi(|8zZslt05Ma6Yu0*Y~5pkHh+}oB!+#a|F z(V0uO4_C>Bbg>bUr;nuDN0f>~u%qqU;5`1oXPw0N=P^0~7Y7mo{5ao6Grtj1D$^zf07FCPBn;*rDY z;Uh~&ANzqfl?V?>qAGr6ZqQJp2InouWd!NR^;JA~RbKm(mOEVYb%Y z;)DL$gfi=*xXQ@!{SwaS!0D5xm+Q$MX&pX55{V-nbVUMV2}Qd;z8`#F^dFM7(C&&y zE?sMx=~J`@J4@tOF4fa!Y!oJyR`7k$Y`#B~vphIhZB7?)Si!=Y zvbRFISD%dY9{S_+87gACarqH?dBQ2~G2Ri$eZeUCDsk0%={gL)svXu^O zUSh7pK(K=CVBtyVh2W%)c#kKE5Bl#SrY=((e6HHrYTt zQGa9h*pM7Y*mxX%gIPDY^1@_Z+#lr=oPk`pVWyp1>d87}gj7^lA+6*XCoK4R&s&*+hq?blwk`X0k&PMm;}2?^MMCX!y0ATm79|L-ow^ zx{!A?b*Rp6!ue?I46btWPK#777b7&WgEK)3P(4Z=(sbSEWXBTe%`PpNOE0)oneky> zXrmJs$Bh^(8)xxU?L_UMW7~`@)=kT4n|k>2S`e#%csVb(fg zvh&4V=l32*KIhU;V`nB9Xk6GgF$Q0g0UQ?;%jKJq1odr8U@H&IWf4K-UC3pRITsk+ zBRk@2OCHYk!Aa`?YC%%#zCA%XNCJu>*(!%KiO7xRtCqM^=qg7rssoVP zkOl>Huk8YKVyZz=nAdpcRu>2W+R@(O=0I%dfon3cF;_MrR_77jWM>Ag8*?_hdkKdJ z)k!=(=#u2?m?nFApBVskEPK`4`G#ba;1dgA&hcO?y(~gNT45uk#TQ{#f+ck`{JqZE zB1E>Jt3>W@^x=xmLxp00k@Go zkK0#mF;o6m^D@VvdC44pVc6+r7E%#?d~U{Gm*L7HflgjvO=4oblx7_q&Ho2rK*SmG8+u$WR06d5Yuuu9V^ zHv?TE#D=i#3~-QEaa0>1%iN)QfG&EnMn^J7P8!LI$OQ~smBW!@VQOLB!lb|8a?s5p z^Utt>Re&YP!n1B5OyIHnLyZ?{y)TI!dswQ>T!3b_o6)ENoLe*@*BYCI(-Q&5^NG`l zqmY0LFeiO_k}cLvcC->Z;U_C+EkRYeGq0`T5#)){w$^=N7`eTu zwtc)Bra3Klep4=kqkXxYv(^`k&UI8?Q@|fr#fU<~kCw{h*hpJ&+%2tO&x!4`!@-Cp&g zsP6gbl%|;w>@qn`nRN?$c|XOAR%&0(gSB^|dMFi{Ei`^w@1&j$-6PA6P{S<~R6Y{q zvg4bA!=z1RT1PQT?D(-kZEAyi-TAyfo(5hwoX-h8=Q3m&*eCUIhph9$qq; zQb|pc6AgPh<=VCE@`HhvhLNFV~PiDSL~Ze9@#% zq1Jxyl4YTIB4J6kOpOpPlExFFM6ms#8{R4Qa;T~~6G-0)m{xM#pEt>tyNJ<)gFU%? zhN|pyB_@IbT-Sk69g2~YdFe&fp~G(NmwubFazH}KY?OsX z#BQ7sWf6wOMQEwju1UnI&)n{ve0>)l)*~A1++vy>&ao4toY6^_F$P2hI=_$lPURk*`Jb6?(HYb1yZi#M{ zuI=0+OS8xRB=TIk4>P7|J9X~rOeu_}>W_w*PLwO;!$M}DQAG~=VjeJ-5OHT+#c((7 z_%tO!gO+tcI7nUHm7Vr<^v<6LLaXI#*qc3Vk%{<`ykCRMU0O>5#4*Ybsjr4{JJBIen#*QG#5~eWVca zhc%;k$nbXLaZ@PZX$d=QTG4k~2Bn>Rt~?E6E) z5iP8_f$8Q!)mJx|oLBnrT@QA=>=9@H)#9#2%YVWpB5Gf2CB(Jx?tX|^2Xq$JR_|4K zlGIL-b@hclN()JlWoIpzR{X{^p`Nr}cEH}<*0a?D8>edtVhrR+;k>MWWFzb#MF7^3 zEvobY$urfqtD1^&%~N|AXzueft#*^)T)DsCz+!5h7@us|n5?$VVyHc%#3y$%izsY+ zOv2T&A>sGs2jw)FQ{3VaXYUh32Bi%=XVjaXMa8&+)&KOy9qVeJ8Ay@>;k^??1 zkE$?STvOEc!bF=!P%$%yF=ZjR?&S>dkkJ!>qPfo1=VHlC!4)#v*G)DuISo1#9#9Uv zmT285)Gi4cQ0?}UvP^j1qMA93YsoYB zwv@1&kes!6mPZeU+Cw9oMMbue*0G!m5>3ib2@--XtR+Wj3wM%J0I@N1ou-`ti-k#@exoQPNFgiSkCbl1@s@D1FD1hachn8~*gJu)ZEhk_BzVpaV zJ+bJLO->9|h9IC=#e`nq8>7ey`B>n^docdBM4Ss{LJ6*zs1l|tKvYF#<2`C;o2Q+W z!T5|O6ukIEHf`tYd}B&=lLy}WoFItxl312t47UL+&Qp7m2cq|Wq2MqLIjpv4fHasT z>?OA1iNL-#9o0mxvzI{`EUc=MIMst@8Z4#PINeLOTh?19CBPhtONW5zF=Z=fG5v|z zMD`6fDk%QQnt+36R-MZv$_W8pda?0=i77*n<&?aUtE13+YYm>7b;5qCcIYcrIzq9! zq}L)07wvWQ&CdT87TyP{z#mVbPUla_h5L8OSZ1o>`9>6t^qqqcm;eoJrpUco$n=U9 zjXnPyCT`rRM6GJ7l@pZem6LVVYj4r3HU$g9m1khX!f)$L;&aIAYpm~VKf=SGq^=>3+p_XtHK34eY$ zg>w*7Ij)#&u~c42U^Z5~JDjbpPHhKNu3+_ORYhY_Bc`&n&;JfFTHV)awr~($*`f%G zN#li#sc3l{!=Xg>JsXZ7EM}Q-3I7k;jw%YioLg}Z$Y$R}6|CCqmIucwK?@KROF1Ik zL6w4jD9a)g2>EJ1cgp$|By421tIUa9a8N@56u!sm9=eW^5n($z+O&DWo4clJ_fhhjhaZrE1R*i5&%FWtFCoiJ>ssdi5b8QtW& z)|$eM$pPc2AkXeGDyJ0POTH5*c}0_Xm1D-N4M0V^aac5q*Y=U_&Nq7dAyzYu4R|`I zZFtklDs}{xw~GjlJaF?|vJ4eLc|(MFg32t(XV*wfT};#1b7riR+}UHaX)hZf8jOs2 zm34$wApWjg?ljm)VH=DisEC`3^&a5K zx7R5?l}ij=EQD<{a_*cj7*WvHZX_z?>_+3(&W=6l7z_cGBN;6M#_9-HKwU&uMj!JZ z_6&Il1xUHYH|EJQXfv2L;oBd~0NN=V+bErSoX;`$=C`(4z6n>yuC$t|Os@zDIySyi zLMCG+J-Mu+@SZ7HUjV#fbG4G%+HK?|Vvf-;G0$>_??^X?+9>*0sDh?;LC&PMhrrCmMQ=<5805Q6X)7op-p%je6QyT1i7Rd@0Q4F+f-W# z36;%Y_?jN4LLhm&^lgj{=}$flLleWo>L7OT@KeZnY7puo_NB8`hDF34h=pXEY%R!< z#lDq~U}}wxc)smV`Iimb&R}-ig6m)e_p>{PKmuWpBGgd<6X<4Oefm&#s62uAl;H#K z#bg5lAUuH?GQkUzs#h07D$8<;D@>@j^G(cbo7Wg~=*1lFj#Oj(m2 zX6)<0NV(&E!Xl8cw30B(VSLCeU{MizmCkHOI~?UtxWIN7O>>{l&PX|c$7n#1SUT~q zwF9tQ0kGTLlQWY&jAw`U{#H9eW&6fghOeuF!M3u6V%JuN7$IQSq=HBg&@ zw7Q_OtM+Tm@CYFS(FxxzER}*`F*KVRg7YlXRTUU+P&iD@?X}7+FTHr;w6-&aVx-j5 zYP&Zg@Rr*8zA8)e5$9V3Vd4qAsP`+@KvzXXtJoU%O%sRra_;*Q=dxm&6H&BXq=u=l8%*3!8 zif=YBLcrNZta#5VqjTa4b3M;!S$A@h^(^8F<=0@MANOU<3N7JwbWl9zO`R_agA|s^ zjI;T5ruT-k`Qdc0Ad2r9X@0HSEACixCX5@4#nEn72BzvYyNi25_P{KXkp*twiGF(! z-p#s@=d|&!=CYf8ZoFUFa3Or%&9yzI*0}e!EI_`h&tJ{lw9=}h-Se@i+KL20y#)F( zS-=)+V+>s>_q}uxOy3^Qo>%2pDpA>tPy@avBSCg9?whgVqfV1oHWU|xdy2-~gvoNU zi2NEJv2mW9y^X7@!<+-<<|gG*r&LqqIOv~E*GEFd&~}Syhm0#!>%b+$Wx%+Km|nr8 zumJFicH5s0WDlacD;H4%hw5ngT}`)D?GoIxej-C0G*worPTf@JAkYNINhIGx(N1}* z>b&^{c^}|%!t(w>T0GE6G@Cv^w4ffFg~7Bdy7MAPneg|?XYBz3U#gktkG-Gq@AF&Ep232&t*f8 zZb%Et%h|?gK&=u3HhYmu%H>=2LD!0cxY-hZ`p)e_yJFGi#$D1R4*|WhqwF`hlm&vc zY|CfkKi**y#{)=KprJg7ML8H8OZ;%U9j4Mho%*JNkno>3OzVmL2xwwsFQzGKatq@Fl40aYzs9J}|&AWCq%yhW_DiD#d1iJ2q z1vJmpiwZ<{rWy*}2q{r5zA{xgf^dw?gTeY}lshhFyT`s45mf?@9(njERWaPkRM5L9 ztfGad8#v1{;9Iiv9}AsA5hPm%13Ksh2yZHppf1gTvzm@*=-Sgtj)&xgDh^YDd*h(} zFyHw)FryJ9N`V`33EZ@}*sC1X0sQ6bI-+5rZ}98QL-=(FBd4kETvgFXj z|F1or9Jt*PMxDxk)x#fO=MX?uJdbHVbd0))idZkbIA`Z@WBN?~FkXvkw8o`IGHvE) zOI-N|95J3{kUP@rVa^&yY_HIjWhk{BM(eXy^*tNy(#RX<$nH;@Yp&F==N?TIZK$%_+mFu;&;dkPcr9pe;0 zz+lp4J|#P;(?oraD$X3O(su*EPoxunYuWocyQ`$g0O8hNI=bp|f?TR$LXLlkbKr3i z*0nRxc8^jv)2Q}=lEhLKQktnIe!Xd#H7_l4&CW)Em{3>l zW(#g(wF)?cHHQ*13MNSLRB<%GLO{Fr*@sNxRHTHChEP&&Cnn4N=+8ZEw}*#SzTB6( X$5#zBpwjKXZr};j%+h6i-N63^?2yk~ diff --git a/locale/fr/LC_MESSAGES/meowth.po b/locale/fr/LC_MESSAGES/meowth.po index d94c01f0f..7b56fb678 100644 --- a/locale/fr/LC_MESSAGES/meowth.po +++ b/locale/fr/LC_MESSAGES/meowth.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-10 01:26+1000\n" +"POT-Creation-Date: 2018-07-17 08:21+CEST\n" "PO-Revision-Date: 2017-09-10 17:19-0400\n" "Last-Translator: Scragly\n" "Language-Team: \n" @@ -18,886 +18,4822 @@ msgstr "" "X-Generator: Poedit 2.0.3\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: meowth.py:181 +#: meowth/__main__.py:151 +msgid "load" +msgstr "" + +#: meowth/__main__.py:159 +msgid "**Error when loading extension" +msgstr "" + +#: meowth/__main__.py:163 +msgid "**Extension {ext} Loaded.**\n" +msgstr "" + +#: meowth/__main__.py:165 +msgid "unload" +msgstr "" + +#: meowth/__main__.py:172 +msgid "**Extension{plural} {est} unloaded.**\n" +msgstr "" + +#: meowth/__main__.py:339 msgid "Received admin command {command} from unauthorized user, {user}!" msgstr "" "Commande d'administrateur {command} reçue à partir d'un utilisateur non " "autorisé {user}!" -#: meowth.py:188 -msgid "" -"Meowth! \"{entered_word}\" is not a Pokemon! Did you mean " -"\"{corrected_word}\"?" -msgstr "" -"Meowth! \"{entered_word}\" n'est pas un Pokémon! Voulez-vous dire " -"\"{corrected_word}\"?" - -#: meowth.py:190 -msgid "Meowth! \"{entered_word}\" is not a Pokemon! Check your spelling!" +#: meowth/__main__.py:350 meowth/__main__.py:3833 +#, fuzzy +msgid "Meowth! **{word}** isn't a Pokemon!" msgstr "Meowth! \"{entered_word}\" n'est pas un Pokémon! Vérifiez l'écriture!" -#: meowth.py:199 -msgid "" -"This channel timer has expired! The channel has been deactivated and will be " -"deleted in 5 minutes.\n" -"To reactivate the channel, use !timerset to set the timer again." +#: meowth/__main__.py:352 +msgid " Did you mean **{correction}**?" msgstr "" -"Ce salon de raid a expiré! Le salon a été désactivé et sera supprimé dans 5 " -"minutes.\n" -"Pour réactiver le salon, utilisez **!timerset** pour réinitialiser la " -"minuterie.\v" -#: meowth.py:286 -msgid "Meowth! That's right!" -msgstr "Meowth! Aucun soucis!" - -#: meowth.py:290 -msgid "" -"Meowth! That's right! I've been rebooted! You don't need to do anything this " -"time, but you may find some commands don't respond in currently active " -"channels, or the channels may not delete as expected. Sorry for any " -"inconvenience!" +#: meowth/__main__.py:451 +msgid "Did you mean: '{0}'" msgstr "" -"Meowth! J'ai été redémarré! Vous n'avez pas besoin de faire de quoi cette " -"fois, mais c'est possible que certaines commandes ne fonctionnent pas dans " -"les salons actuellement actifs, ou les salons peuvent ne pas supprimer comme " -"prévu. Désolé pour tout inconvénient!" -#: meowth.py:298 -msgid "" -"Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and " -"someone has invited me to your server! Type !help to see a list of things I " -"can do, and type !configure in any channel of your server to begin!" +#: meowth/__main__.py:502 meowth/__main__.py:4009 meowth/__main__.py:4172 +#: meowth/__main__.py:4423 meowth/__main__.py:4554 meowth/__main__.py:4918 +msgid "{pokemon} - " msgstr "" -"Meowth! Je suis Meowth, un robot qui aide les communautés Pokémon Go sur " -"Discord, et quelqu'un m'a invitié à votre serveur! Tapez **!help** pour voir " -"une liste de choses que je peux faire, et tapez **!configure** dans " -"n'importe quelle salon de votre serveur pour commencer!" -#: meowth.py:307 +#: meowth/__main__.py:503 +#, fuzzy msgid "" -"__**Meowth Configuration**__\n" +"{roletest}Meowth! {pkmn} raid reported by {member} in {channel}! Coordinate " +"here!\n" "\n" -"Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go " -"Helper Bot! I will be guiding you through some setup steps to get me setup " -"on your server.\n" -"\n" -"**Team Assignment Configuration**\n" -"\n" -"First, I have a feature that allows users to assign their Pokemon Go team " -"using roles. If you have a bot that handles this already, or you don't want " -"this feature, type N, otherwise type Y to enable the feature!" +"For help, react to this message with the question mark and I will DM you a " +"list of commands you can use!" msgstr "" -"__**Configuration de Meowth**__\n" -"\n" -"Meowth! Bienvenue dans la configuration de Meowth, le robot assistant de " -"Pokémon Go! Je vais vous guider à travers certaines étapes d'installation " -"pour me configurer sur votre serveur.\n" -"\n" -"**Configuration de l'équipe**\n" -"Tout d'abord, j'ai une fonctionnalité qui permet aux utilisateurs d'assigner " -"leur équipe Pokémon Go en utilisant les rôles. Si vous avez un robot qui le " -"gère déjà, ou si vous ne voulez pas cette fonctionnalité, tapez N, sinon " -"tapez Y pour activer la fonctionnalité!" +"Meowth! Un raid {0} a été reporté par {1} ! Détails : {2}. Instructions " +"ici ! Merci de répondre (ne pas réagir) à ce message avec {3} pour informer " +"que vous êtes en chemin, ou avec {4} si vous êtes déjà sur place !" -#: meowth.py:315 +#: meowth/__main__.py:505 +#, fuzzy msgid "" -"Meowth! Team assignments enabled! Please make sure that my role is moved to " -"the top of your server role hierarchy, or at least above your team roles. " -"Your team roles must be 'mystic', 'valor', and 'instinct' and *must* be " -"lowercase. I should have made some for you if you didn't have them, you can " -"set their colors and other settings later." +"Meowth! Level {level} raid egg reported by {member} in {channel}! Coordinate " +"here!\n" +"\n" +"For help, react to this message with the question mark and I will DM you a " +"list of commands you can use!" msgstr "" -"Meowth! Les affectations d'équipe sont activées! Assurez-vous que mon rôle " -"est déplacé vers le haut de votre hiérarchie de rôle de serveur, ou au moins " -"au-dessus de vos rôles d'équipe. Les rôles de vos équipes doivent être " -"«mystic», «valor» et «instinct» en anglais et *doivent* être en minuscules. " -"J'aurais dû en faire quelques-unes si vous ne les avez pas, vous pouvez " -"régler leurs couleurs et autres paramètres plus tard." +"Meowth! Un raid {0} a été reporté par {1} ! Détails : {2}. Instructions " +"ici ! Merci de répondre (ne pas réagir) à ce message avec {3} pour informer " +"que vous êtes en chemin, ou avec {4} si vous êtes déjà sur place !" -#: meowth.py:318 +#: meowth/__main__.py:507 +#, fuzzy msgid "" -"**Welcome Message Configuration**\n" +"Meowth! EX raid reported by {member} in {channel}! Coordinate here!\n" "\n" -"Next, I have a feature where I welcome new members to the server with a " -"short welcome message in a channel or with a direct message. If you have a " -"bot that handles this already, or if you don't want this feature, type N, " -"otherwise type Y to enable this feature!" +"For help, react to this message with the question mark and I will DM you a " +"list of commands you can use!" msgstr "" -"**Configuration des messages de bienvenue**\n" -"\n" -"Ensuite, j'ai une fonctionnalité où j'accueille de nouveaux membres au " -"serveur avec un petit message de bienvenue dans un salon ou avec un message " -"direct. Si vous avez déjà un robot qui le gère, ou si vous ne voulez pas " -"cette fonctionnalité, tapez N, sinon tapez Y pour activer cette " -"fonctionnalité!" +"Meowth! Un raid {0} a été reporté par {1} ! Détails : {2}. Instructions " +"ici ! Merci de répondre (ne pas réagir) à ce message avec {3} pour informer " +"que vous êtes en chemin, ou avec {4} si vous êtes déjà sur place !" -#: meowth.py:320 -msgid "" -"Sample message:```Meowth! Welcome to [SERVER], @[MEMBER]! Set your team by " -"typing '!team mystic' or '!team valor' or '!team instinct' without " -"quotations. If you have any questions just ask an admin.```" +#: meowth/__main__.py:513 +msgid "exraid-egg-" msgstr "" -"Exemple de message:```Meowth! Bienvenue sur [SERVER], @[MEMBER]! Choisir " -"votre équipe en tapant «!team mystic» ou «!team valor» ou «!team instinct» " -"sans guillemets. Si vous avez des questions, demandez à un administrateur.```" -#: meowth.py:322 -msgid "" -"Sample message:```Meowth! Welcome to [SERVER], @[MEMBER]! If you have any " -"questions just ask an admin.```" +#: meowth/__main__.py:546 +msgid "level-{level}-egg-" msgstr "" -"Exemple de message:```Meowth! Bienvenue sur [SERVER], @[MEMBER]! Si vous " -"avez des questions, demandez à un administrateur.```" -#: meowth.py:326 +#: meowth/__main__.py:562 meowth/__main__.py:2024 msgid "" -"Meowth! Welcome message enabled!\n" -"\n" -"**Welcome Message Channel Configuration**\n" -"\n" -"Now I need to know what channel you want me to post these welcome messages " -"in. Reply with a channel name or 'DM' if you would rather I direct message " -"the user." +"The following could not be found:\n" +"{}" +msgstr "" + +#: meowth/__main__.py:562 meowth/__main__.py:2024 +msgid "Warning" msgstr "" -"Meowth! Message de bienvenue activé!\n" -"\n" -"**Configuration du salon de message de bienvenue**\n" -"\n" -"Maintenant, j'ai besoin de savoir dans quel salon vous voulez publier ces " -"messages de bienvenue. Répondez avec le nom du salon, ou avec «DM» si vous " -"préférez que je communique directement avec l'utilisateur." -#: meowth.py:334 +#: meowth/__main__.py:566 msgid "" -"**Main Function Configuration**\n" +"{}\n" "\n" -"Meowth! Alright. Next I just want to check that you want to enable *any* of " -"my main functions. These include assigning roles for each Pokemon a user " -"wants, wild spawn reports, creating channels for raids, and keeping track of " -"users coming to each raid. If you don't want me to do *any* of that, type N, " -"otherwise type Y to start enabling my main functions!" +"**Warning:**\n" +"The following could not be found: {}" msgstr "" -"**Configuration de la fonction principale**\n" -"\n" -"Meowth! Bien. Ensuite, je veux simplement vérifier que vous voulez activer " -"*toutes* mes principales fonctions. Ceux-ci incluent l'attribution de rôles " -"pour chaque Pokémon qu'un utilisateur voudrait, les rapports de Pokémon " -"sauvages, la création de salons pour les raids et le suivi des utilisateurs " -"qui arrivent à chaque raid. Si vous ne voulez pas que je fasse au moins *un* " -"de cela, tapez N, sinon tapez Y pour commencer à activer mes principales " -"fonctions!" -#: meowth.py:338 +#: meowth/__main__.py:706 +#, fuzzy msgid "" -"Meowth! Okay. Now make sure that I have either an admin role on your server, " -"or at least a role with these permissions: 'read messages', 'send messages', " -"'embed links', 'manage roles', and 'manage channels'. Also, check if my role " -"is at the top of your server role hierarchy." +"This channel has been successfully reported as a duplicate and will be " +"deleted in 1 minute. Check the channel list for the other raid channel to " +"coordinate in!\n" +"If this was in error, reset the raid with **!timerset**" msgstr "" -"Meowth! D'accord. Maintenant, assurez-vous que j'ai un rôle d'administration " -"sur votre serveur, ou au moins un rôle avec ces autorisations: «lire les " -"messages», «envoyer des messages», «intégrer des liens», «gérer les rôles» " -"et «gérer les salons». Vérifiez également si mon rôle est au sommet de votre " -"hiérarchie de rôle de serveur." +"Ce salon a été signalé comme une duplication et a été désactivé. Vérifiez la " +"liste des salons pour l'autre salon de raid à coordonner! S'il s'agissait " +"d'une erreur, vous pouvez réinitialiser le raid avec **!timerset**" -#: meowth.py:339 -msgid "" -"**City Channel Configuration**\n" -"\n" -"Meowth! Next, I need to know which channels will be used for raid and/or " -"wild reports. If your server covers only one community, that's probably your " -"server's default channel. If you cover multiple communities, you should " -"probably have a channel for each community that only those with roles for " -"that community can see. Otherwise your users could be spammed with " -"notifications for raids that are not relevant to them!" +#: meowth/__main__.py:721 meowth/__main__.py:5428 +msgid "hatched-" msgstr "" -"**Configuration des salons de villes**\n" -"\n" -"Meowth! Ensuite, je dois savoir quels salons seront utilisés pour les " -"rapports de raid et/ou Pokémon sauvages. Si votre serveur ne couvre qu'une " -"seule communauté, c'est probablement le salon par défaut de votre serveur. " -"Si vous couvrez plusieurs communautés, vous devriez probablement avoir un " -"salon pour chaque communauté que seuls ceux qui ont des rôles pour cette " -"communauté peuvent voir. Sinon, vos utilisateurs pourraient être «spammés» " -"avec des notifications de raids qui ne leur sont pas pertinentes!" -#: meowth.py:340 +#: meowth/__main__.py:725 msgid "" -"Here's what I need: a list of channels in your server that will be used for " -"raid and/or wild reports. Give them in this format: channelname, " -"channelname, channelname" +"**This egg has hatched!**\n" +"\n" +"...or the time has just expired. Trainers {trainer_list}: Update the raid to " +"the pokemon that hatched using **!raid ** or reset the hatch timer " +"with **!timerset**. This channel will be deactivated until I get an update " +"and I'll delete it in 45 minutes if I don't hear anything." msgstr "" -"Voici ce que j'ai besoin: une liste des salons dans votre serveur qui sera " -"utilisé pour les rapports de raids et/ou Pokémon sauvages. Donnez-les dans " -"ce format: nom-de-salon, nom-de-salon, nom-de-salon" -#: meowth.py:341 -msgid "" -"In other words, the name of each channel, each separated by a comma and a " -"single space. If you do not require raid and wild reporting and are only " -"requiring want/unwant, reply with 'N'; however, want/unwant is quite limited " -"without raid or wild reporting." +#: meowth/__main__.py:727 +msgid "**This level {level} raid egg has expired!**" msgstr "" -"En d'autres termes, le nom de chaque salon, chacun séparé par une virgule et " -"un espace unique. Si vous n'avez pas besoin de raid et de rapports sauvages " -"et ne requiert que «want/unwant», répondez avec N; Cependant, le «want/" -"unwant» est assez limité sans raid ou rapports sauvages." -#: meowth.py:353 -msgid "" -"Meowth! Great! Looks like all of these are names of channels in your server." +#: meowth/__main__.py:731 meowth/__main__.py:5429 +msgid "expired-" msgstr "" -"Meowth! Génial! On dirait que tous ces noms sont des noms des salons dans " -"votre serveur." -#: meowth.py:355 +#: meowth/__main__.py:735 +#, fuzzy msgid "" -"Meowth! Something went wrong! Please type !configure to start over! Make " -"sure the channels above are created already!" +"This channel timer has expired! The channel has been deactivated and will be " +"deleted in 5 minutes.\n" +"To reactivate the channel, use **!timerset** to set the timer again." msgstr "" -"Meowth! Il y a eu un problème! Tapez **!configure** pour recommencer! " -"Assurez-vous que les salons ci-dessus sont déjà créés!" +"Ce salon de raid a expiré! Le salon a été désactivé et sera supprimé dans 5 " +"minutes.\n" +"Pour réactiver le salon, utilisez **!timerset** pour réinitialiser la " +"minuterie.\v" -#: meowth.py:357 -msgid "" -"**City Location Configuration**\n" -"\n" -"Meowth! Alright, we need to set starting locations for each of the channels " -"you just mentioned in the SAME ORDER you typed before. This is what I use to " -"generate Google Maps links to give people directions to raids and spawns! " -"Knowing what town everything is in is often good enough to narrow it down. " -"One way to put it is, for each channel you just listed, I need a location " -"specific enough that I'll know hich First Baptist Church people mean. This " -"is important, so please enter it in just this way. For each channel, give me " -"a location using only letters, no punctuation. So something like 'kansas " -"city mo' or 'hull uk' without the quotes and separate your locations with a " -"comma and single space." +#: meowth/__main__.py:737 +msgid " raid" msgstr "" -"**Configuration des emplacements des villes**\n" -"\n" -"Meowth! D'accord, nous devons définir les emplacements de départ pour chacun " -"des salons que vous venez de mentionner dans le MÊME ORDRE que vous avez " -"tapé auparavant. C'est ce que j'utilise pour générer des liens Google Maps " -"pour donner aux gens des instructions pour se rendre aux raids et aux " -"Pokémon sauvages! Savoir dans quelle ville tout se trouve est souvent assez. " -"Une façon de le dire est que, pour chaque salon que vous venez d'énumérer, " -"j'ai besoin d'un emplacement précis pour savoir quelle Église Baptiste les " -"gens font référence. Ceci est important, alors, inscrivez-le de cette façon. " -"Pour chaque chaîne, donnez-moi un emplacement en utilisant uniquement des " -"lettres, pas de ponctuation. Donc, quelque chose comme «laval qc» ou «Hull " -"Royaume-Uni» sans guillemets et séparez vos emplacements avec une virgule et " -"un espace unique." -#: meowth.py:364 -msgid "" -"Meowth! There weren't the same number of cities and channels! Please type !" -"configure to start over!" +#: meowth/__main__.py:737 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "event" msgstr "" -"Meowth! Il n'y avait pas le même nombre de villes et de salons! Tapez **!" -"configure** pour recommencer!" -#: meowth.py:367 -msgid "" -"**Raid Command**\n" -"\n" -"Meowth! Alright. Do you want raid reports in these channels? Reply with 'Y' " -"to enable !raid reports, or 'N' to disable !raid" +#: meowth/__main__.py:738 +msgid "**This {pokemon}{raidtype} has expired!**" msgstr "" -"**Commande de raid**\n" -"\n" -"Meowth! Bien. Voulez-vous des rapports de raid dans ces salons? Réponde avec " -"'Y' pour activer les rapports de **!raid**, ou 'N' pour désactiver **!raid**." -#: meowth.py:371 -msgid "" -"**Timezone Configuration**\n" -"\n" -"Meowth! Ok, to finish the raid configuration I need to know what timezone " -"you're in! This will help me coordinate raids for you. The current 24-hr " -"time UTC is {utctime}. How many hours off from that are you? Please enter " -"your answer as a number between -12 and 12." +#: meowth/__main__.py:796 +msgid "archived-" msgstr "" -"**Configuration de la fuseau horaire**\n" -"\n" -"Meowth! Ok, pour terminer la configuration du raid, j'ai besoin de savoir " -"dans quel fuseau horaire vous êtes! Cela m'aidera à coordonner des raids " -"pour vous. Le UTC actuel de 24 heures est {utctime}. À combien d'heures de " -"différence êtes-vous? Entrez votre réponse avec un nombre entre -12 et 12." -#: meowth.py:375 +#: meowth/__main__.py:805 msgid "" -"Meowth! I couldn't convert your answer to a number! Type !configure in your " -"server to start again." +"-----------------------------------------------\n" +"**The channel has been archived and removed from view for everybody but " +"Meowth and those with Manage Channel permissions. Any messages that were " +"deleted after the channel was marked for archival will be posted below. You " +"will need to delete this channel manually.**\n" +"-----------------------------------------------" msgstr "" -"Meowth! Je n'ai pas pu convertir votre réponse à un nombre! Tapez **!" -"configure** dans votre serveur pour recommencer." -#: meowth.py:380 -msgid "" -"**Wild Command**\n" -"\n" -"Meowth! Alright. Do you want wild reports in these channels? Reply with 'Y' " -"to enable !wild reports, or 'N' to disable !wild" +#: meowth/__main__.py:1037 +msgid "Starting up..." msgstr "" -"**Commande pour Pokémon sauvages**\n" -"\n" -"Meowth! Bien. Voulez-vous des rapports sauvages dans ces salons? Répondre " -"avec 'Y' pour activer les rapports **!wild**, ou 'N' pour les désactiver." -#: meowth.py:386 +#: meowth/__main__.py:1090 msgid "" -"Meowth! Ok. Time to do one last check that I have either an admin role on " -"your server, or at least a role with these permissions: 'read messages', " -"'send messages', 'embed links', 'manage roles', and 'manage channels'. Also, " -"check if my role is at the top of your server role hierarchy. You can " -"restrict me to specific channels by editing channel-specific permissions if " -"you like.\n" +"Meowth! That's right!\n" "\n" -"**Want/Unwant Configuration**\n" -"\n" -"The last thing you should know is that the !want and !unwant commands can " -"produce a lot of clutter if they are allowed on your main channels. I " -"suggest having a dedicated channel for want and unwant. Just type the name " -"or names of the channel(s) you want me to allow. If you type something that " -"isn't a name of an existing channel, I'll create one by that name. If you do " -"not want to enable want/unwant, reply with 'N'. " +"{server_count} servers connected.\n" +"{member_count} members found." msgstr "" -"Meowth! D'accord. C'est le temps de faire une dernière vérification que j'ai " -"un rôle d'administrateur sur votre serveur, ou au moins un rôle avec ces " -"permissions:«lire les messages», «envoyer des messages», «intégrer des " -"liens», «gérer les rôles» et «gérer les salons». Vérifiez également si mon " -"rôle est au sommet de votre hiérarchie de rôle de serveur. Vous pouvez me " -"limiter à des salons spécifiques en modifiant les permissions spécifiques du " -"salon si vous le souhaitez.\n" -"\n" -"**Configuration want/unwant**\n" -"\n" -"La dernière chose que vous devriez savoir, c'est que les commandes **!want** " -"et **!unwant** peuvent produire beaucoup d'encombrement s'ils sont autorisés " -"dans les salons principaux. Je suggère d'avoir un salon dédié pour want/" -"unwant. Tapez simplement le nom ou les noms des salons que vous souhaitez " -"que je permette. Si vous tapez quelque chose qui n'est pas un nom d'un salon " -"existant, je vais en créer un avec ce nom. Si vous ne voulez pas activer la " -"commande want/unwant, répondez avec N." -#: meowth.py:404 +#: meowth/__main__.py:1116 +#, fuzzy msgid "" -"Meowth! You didn't give me enough permissions! Type !configure to start over!" -msgstr "" -"Meowth! Vous ne m'avez pas donné suffisamment de permissions! Tapez **!" -"configure** pour recommencer!" - -#: meowth.py:412 -msgid "Meowth! Okay. All of my main functions have been disabled." +"Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and " +"someone has invited me to your server! Type **!help** to see a list of " +"things I can do, and type **!configure** in any channel of your server to " +"begin!" msgstr "" -"Meowth! D'accord. Toutes mes principales fonctions ont été désactivées." +"Meowth! Je suis Meowth, un robot qui aide les communautés Pokémon Go sur " +"Discord, et quelqu'un m'a invitié à votre serveur! Tapez **!help** pour voir " +"une liste de choses que je peux faire, et tapez **!configure** dans " +"n'importe quelle salon de votre serveur pour commencer!" -#: meowth.py:413 -msgid "" -"**Emojis**\n" -"\n" -"Meowth! Alright! I'm ready to go! One more thing. I like to use custom emoji " -"for certain things, especially for displaying type weaknesses for raid " -"bosses! I'm going to send you a .rar file that contains all the emoji I " -"need. There are 23 in all. All you have to do is download, extract, and " -"upload the images to Discord as custom emoji. You can do this all at once, " -"and you can just leave the emoji titles alone!\n" -"\n" -"By the way: if you need to change any of these settings, just type !" -"configure in your server and we can do this again." -msgstr "" -"**Émojis**\n" -"\n" -"Meowth! Bien! Je suis prêt à partir! Encore une chose. J'aime utiliser des " -"émojis personnalisés pour certaines choses, en particulier pour afficher les " -"faiblesses pour les Pokémon de raid! Je vais vous envoyer un fichier .rar " -"qui contient tous les émojis dont j'ai besoin. Il y en a 23 au total. Tout " -"ce que vous avez à faire est de télécharger les émojis sur votre ordinateur, " -"de les extraire et de télécharger les images sur Discord comme émoji " -"personnalisé (dans les paramètres du serveur). Vous pouvez le faire tout à " -"la fois, et vous pouvez simplement ne pas changer les titres de ces émojis!\n" -"\n" -"Si vous devez changer l'un de ces paramètres, tapez !configure dans votre " -"serveur et nous pouvons le faire à nouveau." +#: meowth/__main__.py:1134 meowth/__main__.py:3624 +msgid " or " +msgstr " ou " -#: meowth.py:427 +#: meowth/__main__.py:1140 msgid " If you have any questions just ask an admin." msgstr " Si vous avez une question, demandez à un administrateur." -#: meowth.py:429 -msgid "Meowth! Welcome to {server.name}, {new_member_name.mention}! " +#: meowth/__main__.py:1141 +#, fuzzy +msgid "Meowth! Welcome to {server}, {user}! " msgstr "Meowth! Bienvenue à {server.name}, {new_member_name.mention}! " -#: meowth.py:431 -msgid "Set your team by typing {team_command} without quotations." +#: meowth/__main__.py:1143 +#, fuzzy +msgid "Set your team by typing {team_command}." msgstr "Définissez votre équipe en tapant {team_command} sans les guillemets." -#: meowth.py:439 -msgid "WARNING: no default channel configured. Unable to send welcome message." +#: meowth/__main__.py:1183 meowth/__main__.py:1195 meowth/__main__.py:6448 +msgid "" +"Meowth! Please wait until the raid egg has hatched before announcing you're " +"coming or present." msgstr "" -"ATTENTION: aucun salon par défaut n'est configuré. Impossible d'envoyer le " -"message de bienvenue." - -#: meowth.py:472 -msgid "Error occured while trying to save!" -msgstr "Une erreur s'est produite lors de l'enregistrement de sauvegarde!" -#: meowth.py:506 +#: meowth/__main__.py:1230 meowth/__main__.py:5398 msgid "" -"Meowth! My roles are ranked lower than the following team roles: " -"**{higher_roles_list}**\n" -"Please get an admin to move my roles above them!" +"Meowth! Someone has suggested a different location for the raid! Trainers " +"{trainer_list}: make sure you are headed to the right place!" msgstr "" -"Meowth! Mes rôles sont inférieurs aux rôles suivants: **{higher_roles_list} " -"**\n" -"Contacter un administrateur pour déplacer mes rôles au-dessus d'eux!" +"Quelqu'un a suggéré un lieu différent pour le raid! Joueurs {trainer_list}: " +"assurez-vous d'aller au bon endroit!" -#: meowth.py:523 -msgid "Meowth! You already have a team role!" -msgstr "Meowth! Vous avez déjà un rôle d'équipe!" +#: meowth/__main__.py:1294 +msgid "has despawned" +msgstr "" -#: meowth.py:527 +#: meowth/__main__.py:1352 msgid "" -"WARNING: Role {team_role} in team_dict not configured as a role on the " -"server!" +"Save persistent state to file.\n" +"\n" +"File path is relative to current directory." msgstr "" -"ATTENTION: Le rôle {team_role} dans team_dict n'est pas configuré comme un " -"rôle sur le serveur!" -#: meowth.py:531 -msgid "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" +#: meowth/__main__.py:1352 +msgid "save" msgstr "" -"Meowth! \"{entered_team}\" n'est pas une équipe valide ! Essayez " -"{available_teams}" -#: meowth.py:535 +#: meowth/__main__.py:1359 meowth/__main__.py:1384 meowth/__main__.py:1397 +msgid "Error occured while trying to save!" +msgstr "Une erreur s'est produite lors de l'enregistrement de sauvegarde!" + +#: meowth/__main__.py:1377 msgid "" -"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " -"an admin!" +"Restart after saving.\n" +"\n" +"Calls the save function and restarts Meowth." msgstr "" -"Meowth! Le rôle \"{entered_team}\" n'est pas configuré sur ce serveur ! " -"Contacter un administrateur!" -#: meowth.py:539 -msgid "Meowth! Added {member} to Team {team_name}! {team_emoji}" -msgstr "Meowth! {member} ajouté à l'équipe {team_name}! {team_emoji}" +#: meowth/__main__.py:1377 +msgid "restart" +msgstr "" -#: meowth.py:541 -msgid "Meowth! I can't add roles!" -msgstr "Meowth! Je ne peux pas ajouter de rôle!" +#: meowth/__main__.py:1386 +msgid "Restarting..." +msgstr "" -#: meowth.py:558 +#: meowth/__main__.py:1390 msgid "" -"Meowth! Please use one of the following channels for **!want** commands: " -"{want_channel_list}" +"Exit after saving.\n" +"\n" +"Calls the save function and quits the script." msgstr "" -"Meowth! Utilisez l'un des salons suivants pour les commandes **!want **: " -"{want_channel_list}" -#: meowth.py:574 -msgid "Meowth! {member}, I already know you want {pokemon}!" -msgstr "Meowth! {member}, je sais déjà que vous voulez {pokemon}!" - -#: meowth.py:581 -msgid "Meowth! Got it! {member} wants {pokemon}" -msgstr "Meowth! Compris! {member} veut {pokemon}" +#: meowth/__main__.py:1390 +msgid "exit" +msgstr "" -#: meowth.py:595 -msgid "" -"Meowth! Please restrict wild reports to city channels or the default channel!" +#: meowth/__main__.py:1399 +msgid "Shutting down..." msgstr "" -"Meowth! Limitez les rapports sauvages aux salons de la ville ou dans le " -"salon par défaut!" -#: meowth.py:600 meowth.py:613 -msgid "" -"Meowth! Give more details when reporting! Usage: **!wild " -"**" +#: meowth/__main__.py:1403 +msgid "Changes a setting." msgstr "" -"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!wild " -" **" -#: meowth.py:628 -msgid "Meowth! Click here for directions to the wild {pokemon}!" +#: meowth/__main__.py:1403 +msgid "set" msgstr "" -"Meowth! Cliquez ici pour obtenir les directions vers le {pokemon} sauvage!" -#: meowth.py:628 -msgid "This is just my best guess!" -msgstr "Voici ma meilleure suggestion!" +#: meowth/__main__.py:1409 +msgid "Changes server regional pokemon." +msgstr "" -#: meowth.py:630 -msgid "Meowth! Wild {pokemon} reported by {member}! Details:{location_details}" +#: meowth/__main__.py:1409 +msgid "regional" msgstr "" -"Meowth! Un {pokemon} sauvage a été reporté par {member}! Détails: " -"{location_details}" -#: meowth.py:632 -msgid "Meowth! **!wild** commands have been disabled." -msgstr "Meowth! Les commandes **!wild** ont été désactivées." +#: meowth/__main__.py:1417 +msgid "Are you sure you want to clear all regionals?" +msgstr "" -#: meowth.py:650 -msgid "" -"Meowth! Please restrict raid reports to a city channel or the default " -"channel!" +#: meowth/__main__.py:1438 +msgid "Meowth! Regional raid boss cleared!" msgstr "" -"Meowth! Veuillez limiter les rapports de raid à un salon de ville ou dans le " -"salon par défaut!" -#: meowth.py:655 -msgid "" -"Meowth! Give more details when reporting! Usage: **!raid " -"**" +#: meowth/__main__.py:1444 +msgid "Meowth! Regional raid boss set to **{boss}**!" msgstr "" -"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!raid " -" **" -#: meowth.py:671 -msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" +#: meowth/__main__.py:1447 +#, fuzzy +msgid "Meowth! That Pokemon doesn't appear in raids!" msgstr "Meowth! Le Pokemon {pokemon} n'apparaît pas en raid!" -#: meowth.py:682 -msgid "Meowth! Click here for directions to the raid!" -msgstr "Meowth! Cliquer ici pour obtenir les directions pour le raid!" +#: meowth/__main__.py:1453 +msgid "Changes server timezone." +msgstr "" -#: meowth.py:682 -msgid "Weaknesses: {weakness_list}" -msgstr "Faiblesses: {weakness_list}" +#: meowth/__main__.py:1453 meowth/__main__.py:3152 +msgid "timezone" +msgstr "" -#: meowth.py:684 +#: meowth/__main__.py:1459 meowth/__main__.py:1462 msgid "" -"Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -"Coordinate in {raid_channel}" +"I couldn't convert your answer to an appropriate timezone! Please double " +"check what you sent me and resend a number from **-12** to **12**." msgstr "" -"Meowth! Un {pokemon} a été reporté dans un raid par {member}! Détails: " -"{location_details}. Coordonner dans {raid_channel}" -#: meowth.py:687 +#: meowth/__main__.py:1466 msgid "" -"Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -"Coordinate here!\n" -"\n" -"Reply to this message with **!coming** (`!coming [number]` for trainers with " -"you) to say you are on your way, and reply with **!here** once you arrive.\n" -"If you are at the raid already, reply with **!here** (`!here [number]` for " -"trainers with you).\n" -"If you are interested in the raid and want to wait for a group, use **!" -"maybe**.\n" -"If your plans change, reply with **!cancel** if you are no longer on the way " -"or if you have left the raid.\n" -"You can set the time remaining with **!timerset H:MM** and access this with " -"**!timer**.\n" -"\n" -"You can see the list of trainers interested with **!interest**, trainers on " -"their way with **!otw**, trainers at the raid with **!waiting**, or all " -"lists with **!lists**.\n" -"Once you start a raid, use **!starting** to clear the waiting list to allow " -"the next group to coordinate.\n" -"\n" -"Sometimes I'm not great at directions, but I'll correct my directions if " -"anybody sends me a maps link.\n" -"\n" -"This channel will be deleted in 2 hours or five minutes after the timer " -"expires." +"Timezone has been set to: `UTC{offset}`\n" +"The current time is **{now}**" msgstr "" -"Meowth! Raid de {pokemon} rapporté par {member}! Détails: " -"{location_details}. Coordonnez ici!\n" -"\n" -"Répondez à ce message avec **!coming** (`!coming [chiffre]` pour les joueurs " -"avec vous) pour dire que vous êtes sur votre chemin.\n" -"Une fois que vous arrivez, ou si vous êtes déjà au raid, répondez avec **!" -"here** (`!here [chiffre]` pour les joueurs avec vous).\n" -"Si vous êtes intéressé(e) par le raid et souhaitez attendre un groupe, " -"utilisez **!maybe**.\n" -"Si vos plans changent, répondez avec **!cancel** si vous n'êtes plus sur le " -"chemin ou si vous avez quitté le raid.\n" -"Vous pouvez régler le temps restant avec **!timerset H:MM** et voir le temps " -"restant avec **!timer**.\n" -"\n" -"Vous pouvez voir la liste des joeurs intéressés avec **!interest**, les " -"joueurs en route avec **!otw**, le joueurs au raid avec **!waiting**, ou " -"toutes ces listes ensemble avec **!lists**.\n" -"Une fois que vous démarrez un raid, utilisez **!starting** pour effacer la " -"liste d'attente pour permettre au prochain groupe de se coordonner.\n" -"\n" -"Parfois, je ne suis pas bon avec les directions, mais je vais corriger mes " -"directions si quelqu'un m'envoie un lien de Google Maps.\n" -"\n" -"Ce salon sera supprimé dans 2 heures si aucun temps d'expiration a été " -"spécifié pour le raid." -#: meowth.py:714 -msgid "" -"Meowth! Hey {member}, if you can, set the time left on the raid using **!" -"timerset H:MM** so others can check it with **!timer**." +#: meowth/__main__.py:1471 +msgid "Changes server prefix." msgstr "" -"Meowth! {member}, si vous le pouvez, définissez le temps restant sur le raid " -"en utilisant **!timerset H:MM** afin que les autres puissent le voir avec **!" -"timer**." -#: meowth.py:761 -msgid "Meowth! {member}, I already know you don't want {pokemon}!" -msgstr "Meowth! {member}, je sais déjà que vous ne voulez pas {pokemon}!" +#: meowth/__main__.py:1471 meowth/__main__.py:1553 +msgid "prefix" +msgstr "" -#: meowth.py:768 -msgid "Meowth! Got it! {member} no longer wants {pokemon}" -msgstr "Meowth! Compris! {member} ne cherche plus {pokemon}!" +#: meowth/__main__.py:1479 +msgid "Prefix has been set to: `{}`" +msgstr "" -#: meowth.py:775 -msgid "Meowth! This raid's timer has already expired as of {expiry_time}!" +#: meowth/__main__.py:1482 +msgid "Prefix has been reset to default: `{}`" msgstr "" -"Meowth! La minuterie de ce raid a déjà expiré à partir de {expiry_time}!" -#: meowth.py:778 -msgid "Meowth! This raid will end at {expiry_time}!" -msgstr "Meowth! Le raid se termine à {expiry_time}!" +#: meowth/__main__.py:1487 +msgid "Links a server member to a Silph Road Travelers Card." +msgstr "" -#: meowth.py:780 -msgid "" -"Meowth! No one told me when the raid ends, so I'm assuming it will end at " -"{expiry_time}!" +#: meowth/__main__.py:1487 +msgid "silph" msgstr "" -"Meowth! Personne ne m'a dit quand le raid se termine, alors je suppose que " -"ça se terminera à {expiry_time}!" -#: meowth.py:793 -msgid "" -"Meowth...that's too long. Raids currently last no more than two hours..." +#: meowth/__main__.py:1490 +msgid "Silph Road Travelers Card cleared!" msgstr "" -"Meowth... c'est trop long. Les raids ne durent actuellement pas plus de deux " -"heures." -#: meowth.py:796 -msgid "Meowth...I can't do that! No negative numbers, please!" +#: meowth/__main__.py:1500 +msgid "The Silph Extension isn't accessible at the moment, sorry!" msgstr "" -"Meowth... Je ne peux pas faire ça! Pas de chiffres négatifs, s'il vous plaît!" -#: meowth.py:799 -msgid "Meowth...I couldn't understand your time format..." -msgstr "Meowth... Je n'arrive pas à comprendre le format de l'heure..." +#: meowth/__main__.py:1505 +msgid "Silph Card for {silph_user} not found." +msgstr "" -#: meowth.py:828 -msgid "" -"Meowth... I couldn't understand your time format. Try again like this: !" -"timerset H:MM" +#: meowth/__main__.py:1509 +msgid "No Discord account found linked to this Travelers Card!" msgstr "" -"Meowth... Je n'arrive pas à comprendre votre format pour l'heure. Essayez de " -"nouveau comme ceci: **!timerset H:MM**" -#: meowth.py:851 -msgid "Meowth! {0} is interested!" -msgstr "Meowth! {0} est intéressé(e)!" +#: meowth/__main__.py:1513 +msgid "This Travelers Card is linked to another Discord account!" +msgstr "" -#: meowth.py:853 -msgid "" -"Meowth! {member} is interested with a total of {trainer_count} trainers!" +#: meowth/__main__.py:1527 +msgid "This Travelers Card has been successfully linked to you!" msgstr "" -"Meowth! {member} est intéressé(e) avec un total de {trainer_count} joueurs!" -#: meowth.py:868 -msgid "Meowth! {member} is on the way!" -msgstr "Meowth! {member} est en chemin!" +#: meowth/__main__.py:1530 +msgid "Links a server member to a PokeBattler ID." +msgstr "" -#: meowth.py:870 -msgid "" -"Meowth! {member} is on the way with a total of {trainer_count} trainers!" +#: meowth/__main__.py:1530 +msgid "pokebattler" msgstr "" -"Meowth! {member} est en chemin avec un total de {trainer_count} joueurs!" -#: meowth.py:883 -msgid "Meowth! {member} is at the raid!" -msgstr "Meowth! {member} attend au raid!" +#: meowth/__main__.py:1533 +msgid "Pokebattler ID cleared!" +msgstr "" -#: meowth.py:885 -msgid "" -"Meowth! {member} is at the raid with a total of {trainer_count} trainers!" -msgstr "Meowth! {member} est au raid avec un total de {trainer_count} joueurs!" +#: meowth/__main__.py:1544 +msgid "Pokebattler ID set to {pbid}!" +msgstr "" -#: meowth.py:898 -msgid "Meowth! {member} is no longer interested!" -msgstr "Meowth! {member} n'est plus intéressé(e)!" +#: meowth/__main__.py:1546 +msgid "Get a setting value" +msgstr "" -#: meowth.py:900 -msgid "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"interested!" +#: meowth/__main__.py:1546 +msgid "get" msgstr "" -"Meowth! {member} et le total de {trainer_count} joueurs avec lui ne sont " -"plus intéressé(e)s!" -#: meowth.py:903 -msgid "Meowth! {member} has left the raid!" -msgstr "Meowth! {member} a quitté le raid!" +#: meowth/__main__.py:1553 +msgid "Get server prefix." +msgstr "" -#: meowth.py:905 -msgid "" -"Meowth! {member} and their total of {trainer_count} trainers have left the " -"raid!" +#: meowth/__main__.py:1557 +msgid "Prefix for this server is: `{}`" msgstr "" -"Meowth! {member} et le total de {trainer_count} joueurs avec lui ont quitté " -"le raid!" -#: meowth.py:908 -msgid "Meowth! {member} is no longer on their way!" -msgstr "Meowth! {member} n'est plus en chemin!" +#: meowth/__main__.py:1559 +msgid "Show Meowth's permissions for the guild and channel." +msgstr "" -#: meowth.py:910 -msgid "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"on their way!" +#: meowth/__main__.py:1559 +msgid "perms" msgstr "" -"Meowth! {member} et le total de {trainer_count} joueurs avec lui ne sont " -"plus en chemin!" -#: meowth.py:954 -msgid "" -"Meowth! Someone has suggested a different location for the raid than what I " -"guessed! Trainers {trainer_list}: make sure you are headed to the right " -"place!" +#: meowth/__main__.py:1570 +msgid "Bot Permissions" msgstr "" -"Meowth! Quelqu'un a suggéré un lieu différent pour le raid que ce que j'ai " -"supposé! Joueurs {trainer_list}: assurez-vous d'aller au bon endroit!" -#: meowth.py:986 -msgid "" -"Meowth! Exactly *how many* are interested? There wasn't a number anywhere in " -"your message. Or, just say `!maybe` if you're by yourself." +#: meowth/__main__.py:1585 +msgid "**FAIL**" msgstr "" -"Meowth! Exactement *combien* sont intéressés? Il n'y avait aucun numéro dans " -"votre message. Ou dites simplement **!maybe** si vous êtes seul." -#: meowth.py:990 meowth.py:1035 meowth.py:1082 -msgid "" -"Meowth...I got confused because there were several numbers in your message. " -"I don't know which one is the right one." +#: meowth/__main__.py:1585 +msgid "**PASS**" msgstr "" -"Meowth... Je me suis confondu parce qu'il y avait plusieurs chiffres dans " -"votre message. Je ne sais pas lequel est le bon." -#: meowth.py:1031 -msgid "" -"Meowth! Exactly *how many* are coming? There wasn't a number anywhere in " -"your message. Or, just say **!coming** if you're by yourself." +#: meowth/__main__.py:1593 +msgid "**MISSING**" msgstr "" -"Meowth! Exactement *combien* arrivent-ils? Il n'y avait aucun numéro dans " -"votre message. Ou dites simplement **!coming ** si vous êtes seul." -#: meowth.py:1078 -msgid "" -"Meowth! Exactly *how many* are here? There wasn't a number anywhere in your " -"message. Or, just say **!here** if you're by yourself." +#: meowth/__main__.py:1596 +msgid "**ENABLED**" msgstr "" -"Meowth! Exactement *combien* sont-ils ici? Il n'y avait aucun numéro dans " -"votre message. Ou dites simplement **!here ** si vous êtes seul." -#: meowth.py:1139 -msgid "" -" including {trainer_list} and the people with them! Let them know if there " -"is a group forming" +#: meowth/__main__.py:1601 +msgid "GUILD" msgstr "" -" avec {trainer_list} et les joueurs avec eux! Faites-leur savoir s'il y a un " -"groupe qui se forme." -#: meowth.py:1140 -msgid "Meowth! {trainer_count} interested{including_string}!" -msgstr "Meowth! {trainer_count} intéressé(s){including_string}!" +#: meowth/__main__.py:1606 +msgid "CATEGORY" +msgstr "" -#: meowth.py:1171 -msgid "" -" including {trainer_list} and the people with them! Be considerate and wait " -"for them if possible" +#: meowth/__main__.py:1607 +msgid "CHANNEL" msgstr "" -" avec {trainer_list} et les joueurs avec eux! Merci de les attendre si " -"possible." -#: meowth.py:1172 -msgid "Meowth! {trainer_count} on the way{including_string}!" -msgstr "Meowth! {trainer_count} en chemin{including_string}!" +#: meowth/__main__.py:1614 +msgid "I couldn't send an embed here, so I've sent you a DM" +msgstr "" -#: meowth.py:1202 +#: meowth/__main__.py:1621 meowth/__main__.py:1956 +msgid "welcome" +msgstr "" + +#: meowth/__main__.py:1622 +msgid "" +"Test welcome on yourself or mentioned member.\n" +"\n" +"Usage: !welcome [@member]" +msgstr "" + +#: meowth/__main__.py:1630 +msgid "" +"Get current Meowth log.\n" +"\n" +"Usage: !outputlog\n" +"Output is a link to hastebin." +msgstr "" + +#: meowth/__main__.py:1641 +msgid "" +"Repeats your message in an embed from Meowth.\n" +"\n" +"If the announcement isn't added at the same time as the command, Meowth will " +"wait 3 minutes for a followup message containing the announcement." +msgstr "" + +#: meowth/__main__.py:1641 +msgid "announce" +msgstr "" + +#: meowth/__main__.py:1644 +msgid "say" +msgstr "" + +#: meowth/__main__.py:1652 +msgid "I'll wait for your announcement!" +msgstr "" + +#: meowth/__main__.py:1659 meowth/__main__.py:1715 +msgid "" +"Meowth! You took too long to send me your announcement! Retry when you're " +"ready." +msgstr "" + +#: meowth/__main__.py:1662 +msgid "Announcement" +msgstr "" + +#: meowth/__main__.py:1672 +msgid "to send it to all servers, " +msgstr "" + +#: meowth/__main__.py:1680 +msgid "That's what you sent, does it look good? React with " +msgstr "" + +#: meowth/__main__.py:1682 +msgid "to send to another channel, " +msgstr "" + +#: meowth/__main__.py:1684 +msgid "to send it to this channel, or " +msgstr "" + +#: meowth/__main__.py:1686 +msgid "to cancel" +msgstr "" + +#: meowth/__main__.py:1696 +msgid "Announcement Cancelled." +msgstr "" + +#: meowth/__main__.py:1699 meowth/__main__.py:1711 +msgid "Announcement Sent." +msgstr "" + +#: meowth/__main__.py:1701 +msgid "What channel would you like me to send it to?" +msgstr "" + +#: meowth/__main__.py:1713 +msgid "Meowth! That channel doesn't exist! Retry when you're ready." +msgstr "" + +#: meowth/__main__.py:1726 meowth/__main__.py:3608 +msgid "For support, contact us on our Discord server. Invite Code: hhVjAN8" +msgstr "" + +#: meowth/__main__.py:1740 +msgid "Announcement sent to {} server owners: {} successful, {} failed." +msgstr "" + +#: meowth/__main__.py:1745 +msgid "Announcement Timed Out." +msgstr "" + +#: meowth/__main__.py:1751 +msgid "" +"Meowth Configuration\n" +"\n" +"Meowth will DM you instructions on how to configure Meowth for your server." +"If it is not your first time configuring, you can choose a section to jump " +"to.You can also include a comma separated [list] of sections from the " +"following:all, team, welcome, raid, exraid, invite, counters, wild, " +"research, want, archive, timezone" +msgstr "" + +#: meowth/__main__.py:1751 +msgid "configure" +msgstr "" + +#: meowth/__main__.py:1790 +msgid "" +"I'm sorry, I couldn't understand some of what you entered. Let's just start " +"here." +msgstr "" + +#: meowth/__main__.py:1792 meowth/__main__.py:1909 meowth/__main__.py:1970 +#: meowth/__main__.py:2128 meowth/__main__.py:2351 meowth/__main__.py:2541 +#: meowth/__main__.py:2640 meowth/__main__.py:2739 meowth/__main__.py:2838 +#: meowth/__main__.py:3012 meowth/__main__.py:3092 meowth/__main__.py:3166 +#: meowth/__main__.py:3213 +msgid "" +"**MULTIPLE SESSIONS!**\n" +"\n" +"It looks like you have **{yoursessions}** active configure sessions. I " +"recommend you send **cancel** first and then send your request again to " +"avoid confusing me.\n" +"\n" +"Your Sessions: **{yoursessions}** | Total Sessions: **{allsessions}**" +msgstr "" + +#: meowth/__main__.py:1793 +#, fuzzy +msgid "" +"Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go " +"Helper Bot! I will be guiding you through some steps to get me setup on your " +"server.\n" +"\n" +"**Role Setup**\n" +"Before you begin the configuration, please make sure my role is moved to the " +"top end of the server role hierarchy. It can be under admins and mods, but " +"must be above team and general roles. [Here is an example](http://i.imgur." +"com/c5eaX1u.png)" +msgstr "" +"__**Configuration de Meowth**__\n" +"\n" +"Meowth! Bienvenue dans la configuration de Meowth, le robot assistant de " +"Pokémon Go! Je vais vous guider à travers certaines étapes d'installation " +"pour me configurer sur votre serveur.\n" +"\n" +"**Configuration de l'équipe**\n" +"Tout d'abord, j'ai une fonctionnalité qui permet aux utilisateurs d'assigner " +"leur équipe Pokémon Go en utilisant les rôles. Si vous avez un robot qui le " +"gère déjà, ou si vous ne voulez pas cette fonctionnalité, tapez N, sinon " +"tapez Y pour activer la fonctionnalité!" + +#: meowth/__main__.py:1795 +msgid "" +"\n" +"\n" +"**Welcome Back**\n" +"This isn't your first time configuring. You can either reconfigure " +"everything by replying with **all** or reply with a comma separated list to " +"configure those commands. Example: `want, raid, wild`" +msgstr "" + +#: meowth/__main__.py:1799 +msgid "" +"\n" +"\n" +"**Enabled Commands:**\n" +"{enabled_commands}" +msgstr "" + +#: meowth/__main__.py:1800 +msgid "" +"\n" +"\n" +"**All Commands:**\n" +"**all** - To redo configuration\n" +"**team** - For Team Assignment configuration\n" +"**welcome** - For Welcome Message configuration\n" +"**raid** - for raid command configuration\n" +"**exraid** - for EX raid command configuration\n" +"**invite** - for invite command configuration\n" +"**counters** - for automatic counters configuration\n" +"**wild** - for wild command configuration\n" +"**research** - for !research command configuration\n" +"**meetup** - for !meetup command configuration\n" +"**want** - for want/unwant command configuration\n" +"**archive** - For !archive configuration\n" +"**trade** - For trade command configuration\n" +"**timezone** - For timezone configuration" +msgstr "" + +#: meowth/__main__.py:1801 meowth/__main__.py:1828 +msgid "" +"\n" +"\n" +"Reply with **cancel** at any time throughout the questions to cancel the " +"configure process." +msgstr "" + +#: meowth/__main__.py:1802 meowth/__main__.py:1829 +msgid "Meowth Configuration - {guild}" +msgstr "" + +#: meowth/__main__.py:1809 meowth/__main__.py:1947 meowth/__main__.py:2014 +#: meowth/__main__.py:2065 meowth/__main__.py:2106 meowth/__main__.py:2148 +#: meowth/__main__.py:2197 meowth/__main__.py:2219 meowth/__main__.py:2238 +#: meowth/__main__.py:2288 meowth/__main__.py:2371 meowth/__main__.py:2420 +#: meowth/__main__.py:2442 meowth/__main__.py:2461 meowth/__main__.py:2519 +#: meowth/__main__.py:2564 meowth/__main__.py:2604 meowth/__main__.py:2660 +#: meowth/__main__.py:2709 meowth/__main__.py:2759 meowth/__main__.py:2808 +#: meowth/__main__.py:2859 meowth/__main__.py:2908 meowth/__main__.py:2930 +#: meowth/__main__.py:2949 meowth/__main__.py:3031 meowth/__main__.py:3108 +#: meowth/__main__.py:3141 meowth/__main__.py:3181 meowth/__main__.py:3228 +msgid "" +"**CONFIG CANCELLED!**\n" +"\n" +"No changes have been made." +msgstr "" + +#: meowth/__main__.py:1823 +msgid "I'm sorry I don't understand. Please reply with the choices above." +msgstr "" + +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 +msgid "Configuration Complete" +msgstr "" + +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 +msgid "" +"Meowth! Alright! Your settings have been saved and I'm ready to go! If you " +"need to change any of these settings, just type **!configure** in your " +"server again." +msgstr "" + +#: meowth/__main__.py:1891 +msgid "All settings" +msgstr "" + +#: meowth/__main__.py:1891 meowth/__main__.py:3933 +msgid "all" +msgstr "" + +#: meowth/__main__.py:1895 +msgid "!team command settings" +msgstr "" + +#: meowth/__main__.py:1895 meowth/__main__.py:3452 meowth/__main__.py:3614 +#: meowth/__main__.py:4432 meowth/__main__.py:4592 meowth/__main__.py:5386 +#: meowth/__main__.py:5400 meowth/__main__.py:6410 +msgid "team" +msgstr "" + +#: meowth/__main__.py:1921 +msgid "Team Assignments" +msgstr "" + +#: meowth/__main__.py:1921 +msgid "" +"Team assignment allows users to assign their Pokemon Go team role using the " +"**!team** command. If you have a bot that handles this already, you may want " +"to disable this feature.\n" +"\n" +"If you are to use this feature, ensure existing team roles are as follows: " +"mystic, valor, instinct. These must be all lowercase letters. If they don't " +"exist yet, I'll make some for you instead.\n" +"\n" +"Respond here with: **N** to disable, **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:1940 +msgid "Team Assignments enabled!" +msgstr "" + +#: meowth/__main__.py:1944 +msgid "Team Assignments disabled!" +msgstr "" + +#: meowth/__main__.py:1950 meowth/__main__.py:2109 meowth/__main__.py:2522 +#: meowth/__main__.py:2567 +msgid "" +"I'm sorry I don't understand. Please reply with either **N** to disable, or " +"**Y** to enable." +msgstr "" + +#: meowth/__main__.py:1956 +msgid "Welcome message settings" +msgstr "" + +#: meowth/__main__.py:1981 +msgid "" +"I can welcome new members to the server with a short message. Here is an " +"example, but it is customizable:\n" +"\n" +msgstr "" + +#: meowth/__main__.py:1983 +#, fuzzy +msgid "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! Set your team by " +"typing '**!team mystic**' or '**!team valor**' or '**!team instinct**' " +"without quotations. If you have any questions just ask an admin." +msgstr "" +"Exemple de message:```Meowth! Bienvenue sur [SERVER], @[MEMBER]! Choisir " +"votre équipe en tapant «!team mystic» ou «!team valor» ou «!team instinct» " +"sans guillemets. Si vous avez des questions, demandez à un administrateur.```" + +#: meowth/__main__.py:1985 +#, fuzzy +msgid "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! If you have any " +"questions just ask an admin." +msgstr "Meowth! Bienvenue à {server.name}, {new_member_name.mention}! " + +#: meowth/__main__.py:1986 +msgid "" +"\n" +"\n" +"This welcome message can be in a specific channel or a direct message. If " +"you have a bot that handles this already, you may want to disable this " +"feature.\n" +"\n" +"Respond with: **N** to disable, **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:1987 meowth/__main__.py:2004 +msgid "Welcome Message" +msgstr "" + +#: meowth/__main__.py:1992 +msgid "Welcome Message enabled!" +msgstr "" + +#: meowth/__main__.py:1995 +msgid "" +"Would you like a custom welcome message? You can reply with **N** to use the " +"default message above or enter your own below.\n" +"\n" +"I can read all [discord formatting](https://support.discordapp.com/hc/en-us/" +"articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-) " +"and I have the following template tags:\n" +"\n" +"**{@member}** - Replace member with user name or ID\n" +"**{#channel}** - Replace channel with channel name or ID\n" +"**{&role}** - Replace role name or ID (shows as @deleted-role DM preview)\n" +"**{user}** - Will mention the new user\n" +"**{server}** - Will print your server's name\n" +"Surround your message with [] to send it as an embed. **Warning:** Mentions " +"within embeds may be broken on mobile, this is a Discord bug." +msgstr "" + +#: meowth/__main__.py:2006 +msgid "Current Welcome Message" +msgstr "" + +#: meowth/__main__.py:2011 +msgid "Default welcome message set" +msgstr "" + +#: meowth/__main__.py:2017 +msgid "" +"Please shorten your message to less than 500 characters. You entered {count}." +msgstr "" + +#: meowth/__main__.py:2027 +msgid "" +"{msg}\n" +"\n" +"**Warning:**\n" +"The following could not be found: {errors}" +msgstr "" + +#: meowth/__main__.py:2028 +msgid "" +"Please check the data given and retry a new welcome message, or reply with " +"**N** to use the default." +msgstr "" + +#: meowth/__main__.py:2033 +msgid "Here's what you sent. Does it look ok?" +msgstr "" + +#: meowth/__main__.py:2040 +msgid "" +"Here's what you sent. Does it look ok?\n" +"\n" +"{welcome}" +msgstr "" + +#: meowth/__main__.py:2047 +msgid "" +"Please enter a new welcome message, or reply with **N** to use the default." +msgstr "" + +#: meowth/__main__.py:2051 +msgid "" +"Welcome Message set to:\n" +"\n" +"{}" +msgstr "" + +#: meowth/__main__.py:2054 +msgid "Welcome Message Channel" +msgstr "" + +#: meowth/__main__.py:2054 +msgid "" +"Which channel in your server would you like me to post the Welcome Messages? " +"You can also choose to have them sent to the new member via Direct Message " +"(DM) instead.\n" +"\n" +"Respond with: **channel-name** or ID of a channel in your server or **DM** " +"to Direct Message:" +msgstr "" + +#: meowth/__main__.py:2059 +msgid "Welcome DM set" +msgstr "" + +#: meowth/__main__.py:2062 +msgid "" +"Channel names can't contain spaces, sorry. Please double check the name and " +"send your response again." +msgstr "" + +#: meowth/__main__.py:2093 meowth/__main__.py:2186 meowth/__main__.py:2409 +#: meowth/__main__.py:2698 meowth/__main__.py:2797 meowth/__main__.py:2897 +#: meowth/__main__.py:3069 meowth/__main__.py:3270 +msgid "" +"I couldn't set my own permissions in this channel. Please ensure I have the " +"correct permissions in {channel} using **{prefix}get perms**." +msgstr "" + +#: meowth/__main__.py:2094 +msgid "Welcome Channel set to {channel}" +msgstr "" + +#: meowth/__main__.py:2097 +msgid "" +"The channel you provided isn't in your server. Please double check your " +"channel and resend your response." +msgstr "" + +#: meowth/__main__.py:2103 +msgid "Welcome Message disabled!" +msgstr "" + +#: meowth/__main__.py:2114 +msgid "!raid reporting settings" +msgstr "" + +#: meowth/__main__.py:2114 meowth/__main__.py:4042 meowth/__main__.py:5039 +#: meowth/__main__.py:5601 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "raid" +msgstr "" + +#: meowth/__main__.py:2139 +msgid "Raid Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2139 +msgid "" +"Raid Reporting allows users to report active raids with **!raid** or raid " +"eggs with **!raidegg**. Pokemon raid reports are contained within one or " +"more channels. Each channel will be able to represent different areas/" +"communities. I'll need you to provide a list of channels in your server you " +"will allow reports from in this format: `channel-name, channel-name, channel-" +"name`\n" +"\n" +"Example: `kansas-city-raids, hull-raids, sydney-raids`\n" +"\n" +"If you do not require raid or raid egg reporting, you may want to disable " +"this function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2145 +msgid "Raid Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2177 +msgid "Raid Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2189 meowth/__main__.py:2412 meowth/__main__.py:2701 +#: meowth/__main__.py:2800 meowth/__main__.py:2900 meowth/__main__.py:3073 +#: meowth/__main__.py:3274 +msgid "" +"The channel list you provided doesn't match with your servers channels.\n" +"\n" +"The following aren't in your server: **{invalid_channels}**\n" +"\n" +"Please double check your channel list and resend your reponse." +msgstr "" + +#: meowth/__main__.py:2192 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"the raid or egg! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need its corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2192 +msgid "Raid Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 +msgid "Entered Channels" +msgstr "" + +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 +msgid "{citychannel_list}" +msgstr "" + +#: meowth/__main__.py:2206 meowth/__main__.py:2429 meowth/__main__.py:2718 +#: meowth/__main__.py:2817 meowth/__main__.py:2917 +msgid "" +"The number of cities doesn't match the number of channels you gave me " +"earlier!\n" +"\n" +"I'll show you the two lists to compare:\n" +"\n" +"{channellist}\n" +"{citylist}\n" +"\n" +"Please double check that your locations match up with your provided channels " +"and resend your response." +msgstr "" + +#: meowth/__main__.py:2209 +msgid "Raid Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2210 +msgid "" +"How would you like me to categorize the raid channels I create? Your options " +"are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**region** - If you want them categorized by region\n" +"**level** - If you want them categorized by level." +msgstr "" + +#: meowth/__main__.py:2210 meowth/__main__.py:2234 meowth/__main__.py:2285 +msgid "Raid Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2234 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as raid reporting channels." +msgstr "" + +#: meowth/__main__.py:2265 meowth/__main__.py:2316 meowth/__main__.py:2488 +#: meowth/__main__.py:2976 +msgid "" +"The category list you provided doesn't match with your server's categories." +msgstr "" + +#: meowth/__main__.py:2267 meowth/__main__.py:2274 meowth/__main__.py:2318 +#: meowth/__main__.py:2325 meowth/__main__.py:2490 meowth/__main__.py:2497 +#: meowth/__main__.py:2978 meowth/__main__.py:2985 +msgid "" +"\n" +"\n" +"The following aren't in your server: **{invalid_categories}**" +msgstr "" + +#: meowth/__main__.py:2268 meowth/__main__.py:2319 meowth/__main__.py:2491 +#: meowth/__main__.py:2979 +msgid "" +"\n" +"\n" +"Please double check your category list and resend your response. If you just " +"made these categories, try again." +msgstr "" + +#: meowth/__main__.py:2272 meowth/__main__.py:2495 meowth/__main__.py:2983 +msgid "" +"The number of categories I found in your server doesn't match the number of " +"channels you gave me earlier!\n" +"\n" +"I'll show you the two lists to compare:\n" +"\n" +"**Matched Channels:** {channellist}\n" +"**Matched Categories:** {catlist}\n" +"\n" +"Please double check that your categories match up with your provided " +"channels and resend your response." +msgstr "" + +#: meowth/__main__.py:2285 +msgid "" +"Pokemon Go currently has five levels of raids. Please provide the names of " +"the categories you would like each level of raid to appear in. Use the " +"following order: 1, 2, 3, 4, 5 \n" +"\n" +"You do not need to use different categories for each level, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `level 1-3, level 1-3, level 1-3, level 4, 1231231241561337813`" +msgstr "" + +#: meowth/__main__.py:2323 +msgid "" +"The number of categories I found in your server doesn't match the number of " +"raid levels! Make sure you give me exactly six categories, one for each " +"level of raid. You can use the same category for multiple levels if you " +"want, but I need to see six category names.\n" +"\n" +"**Matched Categories:** {catlist}\n" +"\n" +"Please double check your categories." +msgstr "" + +#: meowth/__main__.py:2329 meowth/__main__.py:2502 meowth/__main__.py:2990 +msgid "Sorry, I didn't understand your answer! Try again." +msgstr "" + +#: meowth/__main__.py:2332 +msgid "Raid Categories are set" +msgstr "" + +#: meowth/__main__.py:2337 +msgid "!exraid reporting settings" +msgstr "" + +#: meowth/__main__.py:2337 meowth/__main__.py:4643 +msgid "exraid" +msgstr "" + +#: meowth/__main__.py:2362 +msgid "EX Raid Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2362 +msgid "" +"EX Raid Reporting allows users to report EX raids with **!exraid**. Pokemon " +"EX raid reports are contained within one or more channels. Each channel will " +"be able to represent different areas/communities. I'll need you to provide a " +"list of channels in your server you will allow reports from in this format: " +"`channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-raids, hull-raids, sydney-raids`\n" +"\n" +"If you do not require EX raid reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2368 +msgid "EX Raid Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2400 +msgid "EX Raid Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2415 +msgid "EX Raid Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2415 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"EX raids! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2432 +msgid "EX Raid Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2433 +msgid "" +"How would you like me to categorize the EX raid channels I create? Your " +"options are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**other** - If you want them categorized in a provided category name or ID" +msgstr "" + +#: meowth/__main__.py:2433 meowth/__main__.py:2457 +msgid "EX Raid Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2457 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as EX raid reporting channels." +msgstr "" + +#: meowth/__main__.py:2505 +msgid "EX Raid Categories are set" +msgstr "" + +#: meowth/__main__.py:2507 +msgid "EX Raid Channel Read Permissions" +msgstr "" + +#: meowth/__main__.py:2507 +msgid "" +"Who do you want to be able to **see** the EX Raid channels? Your options " +"are:\n" +"\n" +"**everyone** - To have everyone be able to see all reported EX Raids\n" +"**same** - To only allow those with access to the reporting channel." +msgstr "" + +#: meowth/__main__.py:2512 +msgid "Everyone permission enabled" +msgstr "" + +#: meowth/__main__.py:2516 +msgid "Same permission enabled" +msgstr "" + +#: meowth/__main__.py:2527 +msgid "!invite command settings" +msgstr "" + +#: meowth/__main__.py:2527 meowth/__main__.py:4762 +msgid "invite" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "" +"Do you want access to EX raids controlled through members using the **!" +"invite** command?\n" +"If enabled, members will have read-only permissions for all EX Raids until " +"they use **!invite** to gain access. If disabled, EX Raids will inherit the " +"permissions from their reporting channels.\n" +"\n" +"Respond with: **N** to disable, or **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "Invite Configuration" +msgstr "" + +#: meowth/__main__.py:2557 +msgid "Invite Command enabled" +msgstr "" + +#: meowth/__main__.py:2561 +msgid "Invite Command disabled" +msgstr "" + +#: meowth/__main__.py:2572 +msgid "Automatic counters settings" +msgstr "" + +#: meowth/__main__.py:2572 meowth/__main__.py:5698 +msgid "counters" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "Automatic Counters Configuration" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "" +"Do you want to generate an automatic counters list in newly created raid " +"channels using PokeBattler?\n" +"If enabled, I will post a message containing the best counters for the raid " +"boss in new raid channels. Users will still be able to use **!counters** to " +"generate this list.\n" +"\n" +"Respond with: **N** to disable, or enable with a comma separated list of " +"boss levels that you would like me to generate counters for. Example:`3,4,5," +"EX`" +msgstr "" + +#: meowth/__main__.py:2601 +msgid "Automatic Counters disabled" +msgstr "" + +#: meowth/__main__.py:2618 +msgid "Automatic Counter Levels set to: {levels}" +msgstr "" + +#: meowth/__main__.py:2621 +msgid "" +"Please enter at least one level from 1 to EX separated by comma. Ex: `4,5," +"EX` or **N** to turn off automatic counters." +msgstr "" + +#: meowth/__main__.py:2626 +msgid "!wild reporting settings" +msgstr "" + +#: meowth/__main__.py:2626 meowth/__main__.py:3967 +msgid "wild" +msgstr "" + +#: meowth/__main__.py:2651 +msgid "Wild Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2651 +msgid "" +"Wild Reporting allows users to report wild spawns with **!wild**. Pokemon " +"**wild** reports are contained within one or more channels. Each channel " +"will be able to represent different areas/communities. I'll need you to " +"provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-wilds, hull-wilds, sydney-wilds`\n" +"\n" +"If you do not require **wild** reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2657 +msgid "Wild Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2689 +msgid "Wild Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2704 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"wild spawns! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2704 +msgid "Wild Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2721 +msgid "Wild Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2725 +msgid "!research reporting settings" +msgstr "" + +#: meowth/__main__.py:2725 meowth/__main__.py:4820 meowth/__main__.py:7164 +msgid "research" +msgstr "" + +#: meowth/__main__.py:2750 +msgid "Research Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2750 +msgid "" +"Research Reporting allows users to report field research with **!research**. " +"Pokemon **research** reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-research, hull-research, sydney-research`\n" +"\n" +"If you do not require **research** reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2756 +msgid "Research Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2788 +msgid "Research Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2803 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"field research! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need its corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2803 +msgid "Research Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2820 +msgid "Research Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2824 +msgid "!meetup reporting settings" +msgstr "" + +#: meowth/__main__.py:2824 meowth/__main__.py:4947 meowth/__main__.py:5434 +msgid "meetup" +msgstr "" + +#: meowth/__main__.py:2850 +msgid "Meetup Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2850 +msgid "" +"Meetup Reporting allows users to report meetups with **!meetup** or **!" +"event**. Meetup reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-meetups, hull-meetups, sydney-meetups`\n" +"\n" +"If you do not require meetup reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2856 +msgid "Meetup Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2888 +msgid "Meetup Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2903 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"meetups! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2903 +msgid "Meetup Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2920 +msgid "Meetup Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2921 +msgid "" +"How would you like me to categorize the meetup channels I create? Your " +"options are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**other** - If you want them categorized in a provided category name or ID" +msgstr "" + +#: meowth/__main__.py:2921 meowth/__main__.py:2945 +msgid "Meetup Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2945 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as meetup reporting channels." +msgstr "" + +#: meowth/__main__.py:2993 +msgid "Meetup Categories are set" +msgstr "" + +#: meowth/__main__.py:2998 +msgid "!want/!unwant settings" +msgstr "" + +#: meowth/__main__.py:2998 meowth/__main__.py:3782 +msgid "want" +msgstr "" + +#: meowth/__main__.py:3023 +msgid "Pokemon Notifications" +msgstr "" + +#: meowth/__main__.py:3023 +msgid "" +"The **!want** and **!unwant** commands let you add or remove roles for " +"Pokemon that will be mentioned in reports. This let you get notifications on " +"the Pokemon you want to track. I just need to know what channels you want to " +"allow people to manage their pokemon with the **!want** and **!unwant** " +"command.\n" +"\n" +"If you don't want to allow the management of tracked Pokemon roles, then you " +"may want to disable this feature.\n" +"\n" +"Repond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated by a comma and space." +msgstr "" + +#: meowth/__main__.py:3028 +msgid "Pokemon Notifications disabled" +msgstr "" + +#: meowth/__main__.py:3070 +msgid "Pokemon Notifications enabled" +msgstr "" + +#: meowth/__main__.py:3078 +msgid "Configure !archive command settings" +msgstr "" + +#: meowth/__main__.py:3078 meowth/__main__.py:3533 +msgid "archive" +msgstr "" + +#: meowth/__main__.py:3103 +msgid "" +"The **!archive** command marks temporary raid channels for archival rather " +"than deletion. This can be useful for investigating potential violations of " +"your server's rules in these channels.\n" +"\n" +"If you would like to disable this feature, reply with **N**. Otherwise send " +"the category you would like me to place archived channels in. You can say " +"**same** to keep them in the same category, or type the name or ID of a " +"category in your server." +msgstr "" + +#: meowth/__main__.py:3103 meowth/__main__.py:3135 +msgid "Archive Configuration" +msgstr "" + +#: meowth/__main__.py:3113 +msgid "Archived channels will remain in the same category." +msgstr "" + +#: meowth/__main__.py:3117 +msgid "Archived Channels disabled." +msgstr "" + +#: meowth/__main__.py:3128 +msgid "" +"I couldn't find the category you replied with! Please reply with **same** to " +"leave archived channels in the same category, or give the name or ID of an " +"existing category." +msgstr "" + +#: meowth/__main__.py:3132 +msgid "Archive category set." +msgstr "" + +#: meowth/__main__.py:3135 +msgid "" +"I can also listen in your raid channels for words or phrases that you want " +"to trigger an automatic archival. For example, if discussion of spoofing is " +"against your server rules, you might tell me to listen for the word " +"'spoofing'.\n" +"\n" +"Reply with **none** to disable this feature, or reply with a comma separated " +"list of phrases you want me to listen in raid channels for." +msgstr "" + +#: meowth/__main__.py:3139 +msgid "Phrase list disabled." +msgstr "" + +#: meowth/__main__.py:3148 +msgid "Archive Phrase list set." +msgstr "" + +#: meowth/__main__.py:3152 +msgid "Configure timezone and other settings" +msgstr "" + +#: meowth/__main__.py:3177 +msgid "" +"There are a few settings available that are not within **!configure**. To " +"set these, use **!set ** in any channel to set that setting.\n" +"\n" +"These include:\n" +"**!set regional ** - To set a server's regional raid boss\n" +"**!set prefix ** - To set my command prefix\n" +"**!set timezone ** - To set offset outside of **!configure**\n" +"**!set silph ** - To set a trainer's SilphRoad card (usable by " +"members)\n" +"**!set pokebattler ** - To set a trainer's pokebattler ID (usable by " +"members)\n" +"\n" +"However, we can do your timezone now to help coordinate reports for you. For " +"others, use the **!set** command.\n" +"\n" +"The current 24-hr time UTC is {utctime}. How many hours off from that are " +"you?\n" +"\n" +"Respond with: A number from **-12** to **12**:" +msgstr "" + +#: meowth/__main__.py:3177 +msgid "Timezone Configuration and Other Settings" +msgstr "" + +#: meowth/__main__.py:3187 meowth/__main__.py:3190 +msgid "" +"I couldn't convert your answer to an appropriate timezone!\n" +"\n" +"Please double check what you sent me and resend a number strarting from " +"**-12** to **12**." +msgstr "" + +#: meowth/__main__.py:3195 +msgid "Timezone set" +msgstr "" + +#: meowth/__main__.py:3199 +msgid "!trade reporting settings" +msgstr "" + +#: meowth/__main__.py:3199 +msgid "trade" +msgstr "" + +#: meowth/__main__.py:3224 +msgid "" +"The **!trade** command allows your users to organize and coordinate trades. " +"This command requires at least one channel specifically for trades.\n" +"\n" +"If you would like to disable this feature, reply with **N**. Otherwise, just " +"send the names or IDs of the channels you want to allow the **!trade** " +"command in, separated by commas." +msgstr "" + +#: meowth/__main__.py:3224 +msgid "Trade Configuration" +msgstr "" + +#: meowth/__main__.py:3232 +msgid "Trade disabled." +msgstr "" + +#: meowth/__main__.py:3271 +msgid "Pokemon Trades enabled" +msgstr "" + +#: meowth/__main__.py:3279 +msgid "" +"Reloads the JSON files for the server\n" +"\n" +"Useful to avoid a full restart if boss list changed" +msgstr "" + +#: meowth/__main__.py:3279 +msgid "reload_json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "Edits or displays raid_info.json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "raid_json" +msgstr "" + +#: meowth/__main__.py:3292 +msgid "" +"\n" +"**Level {level} raid list:** `{raidlist}` \n" +msgstr "" + +#: meowth/__main__.py:3299 meowth/__main__.py:3312 meowth/__main__.py:3317 +msgid "**Level {level} raid list:** `{raidlist}` \n" +msgstr "" + +#: meowth/__main__.py:3310 +msgid "" +"I couldn't understand the list you supplied! Please use a comma-separated " +"list of Pokemon species numbers." +msgstr "" + +#: meowth/__main__.py:3311 +msgid "I will replace this:\n" +msgstr "" + +#: meowth/__main__.py:3316 +msgid "" +"\n" +"\n" +"With this:\n" +msgstr "" + +#: meowth/__main__.py:3321 +msgid "" +"\n" +"\n" +"Continue?" +msgstr "" + +#: meowth/__main__.py:3329 +msgid "Meowth! Configuration cancelled!" +msgstr "" + +#: meowth/__main__.py:3340 +msgid "Meowth! Configuration successful!" +msgstr "" + +#: meowth/__main__.py:3342 +msgid "Meowth! I'm not sure what went wrong, but configuration is cancelled!" +msgstr "" + +#: meowth/__main__.py:3345 +msgid "reset_board" +msgstr "" + +#: meowth/__main__.py:3360 +msgid "every user" +msgstr "" + +#: meowth/__main__.py:3382 +msgid "" +"Are you sure you want to reset the **{type}** report stats for **{target}**?" +msgstr "" + +#: meowth/__main__.py:3408 +msgid "{trainer}'s report stats have been cleared!" +msgstr "" + +#: meowth/__main__.py:3412 +msgid "" +"Changes raid boss.\n" +"\n" +"Usage: !changeraid \n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3412 +msgid "changeraid" +msgstr "" + +#: meowth/__main__.py:3420 +msgid "The channel you entered is not a raid channel." +msgstr "" + +#: meowth/__main__.py:3423 meowth/__main__.py:4330 +msgid "level-{egg_level}-egg-" +msgstr "" + +#: meowth/__main__.py:3442 meowth/__main__.py:3445 meowth/__main__.py:4346 +#: meowth/__main__.py:4349 meowth/__main__.py:4718 meowth/__main__.py:4721 +#: meowth/__main__.py:6416 meowth/__main__.py:6419 +msgid "**Possible Bosses:**" +msgstr "" + +#: meowth/__main__.py:3442 meowth/__main__.py:4346 meowth/__main__.py:4718 +#: meowth/__main__.py:6416 +msgid "{bosslist1}" +msgstr "" + +#: meowth/__main__.py:3443 meowth/__main__.py:4347 meowth/__main__.py:4719 +#: meowth/__main__.py:6417 +msgid "{bosslist2}" +msgstr "" + +#: meowth/__main__.py:3445 meowth/__main__.py:4349 meowth/__main__.py:4721 +#: meowth/__main__.py:6419 +msgid "{bosslist}" +msgstr "" + +#: meowth/__main__.py:3453 meowth/__main__.py:4433 meowth/__main__.py:4593 +#: meowth/__main__.py:5387 meowth/__main__.py:5401 meowth/__main__.py:6411 +msgid "status" +msgstr "" + +#: meowth/__main__.py:3457 meowth/__main__.py:3458 +msgid "Level {}" +msgstr "" + +#: meowth/__main__.py:3457 meowth/__main__.py:3458 +msgid "level\\s\\d" +msgstr "" + +#: meowth/__main__.py:3460 +#, fuzzy +msgid "Meowth! Level {} reported" +msgstr "Meowth! {0} est intéressé(e)!" + +#: meowth/__main__.py:3460 meowth/__main__.py:3461 +msgid "Meowth!\\s.*\\sraid\\sreported" +msgstr "" + +#: meowth/__main__.py:3461 +msgid "Meowth! Level {}" +msgstr "" + +#: meowth/__main__.py:3477 +msgid "" +"Clears raid channel status lists.\n" +"\n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3477 +msgid "clearstatus" +msgstr "" + +#: meowth/__main__.py:3481 +msgid "" +"Are you sure you want to clear all status for this raid? Everybody will have " +"to RSVP again. If you are wanting to clear one user's status, use `!" +"setstatus cancel`" +msgstr "" + +#: meowth/__main__.py:3497 +#, fuzzy +msgid "Meowth! Raid status lists have been cleared!" +msgstr "Meowth! Les commandes **!wild** ont été désactivées." + +#: meowth/__main__.py:3502 +msgid "" +"Changes raid channel status lists.\n" +"\n" +" Usage: !setstatus [count]\n" +" User can be a mention or ID number. Status can be maybeinterested/i, " +"coming/c, here/h, or cancel/x\n" +" Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3502 +msgid "setstatus" +msgstr "" + +#: meowth/__main__.py:3513 +msgid "Meowth! {status} is not a valid status!" +msgstr "" + +#: meowth/__main__.py:3519 +msgid "" +"Removes all 0 member pokemon roles.\n" +"\n" +" Usage: !cleanroles" +msgstr "" + +#: meowth/__main__.py:3519 +msgid "cleanroles" +msgstr "" + +#: meowth/__main__.py:3531 +msgid "Removed {cleancount} empty roles" +msgstr "" + +#: meowth/__main__.py:3533 +msgid "Marks a raid channel for archival." +msgstr "" + +#: meowth/__main__.py:3550 +msgid "Shows Meowth's uptime" +msgstr "" + +#: meowth/__main__.py:3550 +msgid "uptime" +msgstr "" + +#: meowth/__main__.py:3557 meowth/__main__.py:3607 +msgid "Uptime" +msgstr "" + +#: meowth/__main__.py:3561 meowth/__main__.py:3612 +msgid "I need the `Embed links` permission to send this" +msgstr "" + +#: meowth/__main__.py:3570 +msgid "{yr}y {mth}m {day}d {hr}:{min}" +msgstr "" + +#: meowth/__main__.py:3572 +msgid "{mth}m {day}d {hr}:{min}" +msgstr "" + +#: meowth/__main__.py:3574 +msgid "{day} days {hr} hrs {min} mins" +msgstr "" + +#: meowth/__main__.py:3576 +msgid "{hr} hrs {min} mins {sec} secs" +msgstr "" + +#: meowth/__main__.py:3578 +msgid "{min} mins {sec} secs" +msgstr "" + +#: meowth/__main__.py:3581 +msgid "Shows info about Meowth" +msgstr "" + +#: meowth/__main__.py:3581 +msgid "about" +msgstr "" + +#: meowth/__main__.py:3593 +msgid "" +"I'm Meowth! A Pokemon Go helper bot for Discord!\n" +"\n" +"I'm made by [{author_name}]({author_repo}) and improvements have been " +"contributed by many other people also.\n" +"\n" +"[Join our server]({server_invite}) if you have any questions or feedback.\n" +"\n" +msgstr "" + +#: meowth/__main__.py:3600 +msgid "About Meowth" +msgstr "" + +#: meowth/__main__.py:3601 +msgid "Owner" +msgstr "" + +#: meowth/__main__.py:3603 +msgid "Servers" +msgstr "" + +#: meowth/__main__.py:3604 +msgid "Members" +msgstr "" + +#: meowth/__main__.py:3605 +msgid "Your Server" +msgstr "" + +#: meowth/__main__.py:3606 +msgid "Your Members" +msgstr "" + +#: meowth/__main__.py:3614 +msgid "" +"Set your team role.\n" +"\n" +" Usage: !team \n" +" The team roles have to be created manually beforehand by the server " +"administrator." +msgstr "" + +#: meowth/__main__.py:3639 +msgid "Maximum guild roles reached." +msgstr "" + +#: meowth/__main__.py:3644 +msgid "" +"Meowth! My roles are ranked lower than the following team roles: " +"**{higher_roles_list}**\n" +"Please get an admin to move my roles above them!" +msgstr "" +"Meowth! Mes rôles sont inférieurs aux rôles suivants: **{higher_roles_list} " +"**\n" +"Contacter un administrateur pour déplacer mes rôles au-dessus d'eux!" + +#: meowth/__main__.py:3665 +msgid "Meowth! You already have a team role!" +msgstr "Meowth! Vous avez déjà un rôle d'équipe!" + +#: meowth/__main__.py:3669 +#, fuzzy +msgid "Meowth! You are already in Team Harmony!" +msgstr "Meowth! Vous avez déjà un rôle d'équipe!" + +#: meowth/__main__.py:3673 +#, fuzzy +msgid "" +"Meowth! {team_role} is not configured as a role on this server. Please " +"contact an admin for assistance." +msgstr "" +"Meowth! Le rôle \"{entered_team}\" n'est pas configuré sur ce serveur ! " +"Contacter un administrateur!" + +#: meowth/__main__.py:3677 +msgid "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" +msgstr "" +"Meowth! \"{entered_team}\" n'est pas une équipe valide ! Essayez " +"{available_teams}" + +#: meowth/__main__.py:3681 +msgid "" +"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " +"an admin!" +msgstr "" +"Meowth! Le rôle \"{entered_team}\" n'est pas configuré sur ce serveur ! " +"Contacter un administrateur!" + +#: meowth/__main__.py:3687 +msgid "Meowth! Added {member} to Team {team_name}! {team_emoji}" +msgstr "Meowth! {member} ajouté à l'équipe {team_name}! {team_emoji}" + +#: meowth/__main__.py:3689 +msgid "Meowth! I can't add roles!" +msgstr "Meowth! Je ne peux pas ajouter de rôle!" + +#: meowth/__main__.py:3700 +msgid "Traveler Card" +msgstr "" + +#: meowth/__main__.py:3702 +msgid "{user}'s Trainer Profile" +msgstr "" + +#: meowth/__main__.py:3704 +msgid "Silph Road" +msgstr "" + +#: meowth/__main__.py:3705 +msgid "Pokebattler" +msgstr "" + +#: meowth/__main__.py:3706 +msgid "Raid Reports" +msgstr "" + +#: meowth/__main__.py:3707 +msgid "Egg Reports" +msgstr "" + +#: meowth/__main__.py:3708 +msgid "EX Raid Reports" +msgstr "" + +#: meowth/__main__.py:3709 +msgid "Wild Reports" +msgstr "" + +#: meowth/__main__.py:3710 +msgid "Research Reports" +msgstr "" + +#: meowth/__main__.py:3713 +msgid "" +"Displays the top ten reporters of a server.\n" +"\n" +" Usage: !leaderboard [type]\n" +" Accepted types: raids, eggs, exraids, wilds, research" +msgstr "" + +#: meowth/__main__.py:3713 +msgid "leaderboard" +msgstr "" + +#: meowth/__main__.py:3725 +msgid "" +"Leaderboard type not supported. Please select from: **total, raids, eggs, " +"exraids, wilds, research**" +msgstr "" + +#: meowth/__main__.py:3740 +msgid "Reporting Leaderboard ({type})" +msgstr "" + +#: meowth/__main__.py:3745 +msgid "Raids: **{raids}** | Eggs: **{eggs}** | " +msgstr "" + +#: meowth/__main__.py:3747 +msgid "EX Raids: **{exraids}** | " +msgstr "" + +#: meowth/__main__.py:3749 +msgid "Wilds: **{wilds}** | " +msgstr "" + +#: meowth/__main__.py:3751 +msgid "Research: **{research}** | " +msgstr "" + +#: meowth/__main__.py:3756 +msgid "No Reports" +msgstr "" + +#: meowth/__main__.py:3756 +msgid "Nobody has made a report or this report type is disabled." +msgstr "" + +#: meowth/__main__.py:3782 +msgid "" +"Add a Pokemon to your wanted list.\n" +"\n" +" Usage: !want \n" +" Meowth will mention you if anyone reports seeing\n" +" this species in their !wild or !raid command.\n" +"\n" +" Behind the scenes, Meowth tracks user !wants by\n" +" creating a server role for the Pokemon species, and\n" +" assigning it to the user." +msgstr "" + +#: meowth/__main__.py:3825 +msgid "Meowth! Did you mean **!list wants**?" +msgstr "" + +#: meowth/__main__.py:3846 +msgid "Maximum guild roles reached. Pokemon not added." +msgstr "" + +#: meowth/__main__.py:3867 +msgid "Meowth! Got it! {member} wants {pokemon}" +msgstr "Meowth! Compris! {member} veut {pokemon}" + +#: meowth/__main__.py:3872 +msgid "Meowth! {member}, I already know you want {pokemon}!" +msgstr "Meowth! {member}, je sais déjà que vous voulez {pokemon}!" + +#: meowth/__main__.py:3875 +#, fuzzy +msgid "Meowth! {member}, out of your total {count} items:" +msgstr "" +"Meowth! {member} est en chemin avec un total de {trainer_count} joueurs!" + +#: meowth/__main__.py:3877 +msgid "" +"\n" +"**{added_count} Added:** \n" +"\t{added_list}" +msgstr "" + +#: meowth/__main__.py:3879 +msgid "" +"\n" +"**{already_want_count} Already Following:** \n" +"\t{already_want_list}" +msgstr "" + +#: meowth/__main__.py:3883 +msgid "" +"\n" +"\t{word}" +msgstr "" + +#: meowth/__main__.py:3885 +msgid ": *({correction}?)*" +msgstr "" + +#: meowth/__main__.py:3886 +msgid "" +"\n" +"**{count} Not Valid:**" +msgstr "" + +#: meowth/__main__.py:3889 +msgid "" +"Remove a Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant \n" +" You will no longer be notified of reports about this Pokemon.\n" +"\n" +" Behind the scenes, Meowth removes the user from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3889 +msgid "unwant" +msgstr "" + +#: meowth/__main__.py:3933 +msgid "" +"Remove all Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant all\n" +" All Pokemon roles are removed.Behind the scenes, Meowth removes the user " +"from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3958 +msgid "{0}, you have no pokemon in your want list." +msgstr "" + +#: meowth/__main__.py:3960 +msgid "{0}, I've removed {1} pokemon from your want list." +msgstr "" + +#: meowth/__main__.py:3967 +msgid "" +"Report a wild Pokemon spawn location.\n" +"\n" +" Usage: !wild \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in." +msgstr "" + +#: meowth/__main__.py:3978 meowth/__main__.py:4064 meowth/__main__.py:4236 +#: meowth/__main__.py:4658 meowth/__main__.py:4839 meowth/__main__.py:4961 +#: meowth/__main__.py:5042 meowth/__main__.py:5049 meowth/__main__.py:5051 +#: meowth/__main__.py:5285 meowth/__main__.py:5305 meowth/__main__.py:5329 +#: meowth/__main__.py:6600 meowth/__main__.py:6761 meowth/__main__.py:6765 +#: meowth/__main__.py:6779 meowth/__main__.py:6861 +msgid "%I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:3981 meowth/__main__.py:3997 +msgid "" +"Meowth! Give more details when reporting! Usage: **!wild " +"**" +msgstr "" +"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!wild " +" **" + +#: meowth/__main__.py:4012 +msgid "**This {pokemon} has despawned!**" +msgstr "" + +#: meowth/__main__.py:4014 +#, fuzzy +msgid "Meowth! Click here for my directions to the wild {pokemon}!" +msgstr "" +"Meowth! Cliquez ici pour obtenir les directions vers le {pokemon} sauvage!" + +#: meowth/__main__.py:4014 meowth/__main__.py:4921 +msgid "Ask {author} if my directions aren't perfect!" +msgstr "" + +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 +msgid "**Details:**" +msgstr "" + +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 +msgid "{pokemon} ({pokemonnumber}) {type}" +msgstr "" + +#: meowth/__main__.py:4017 +msgid "**Reactions:**" +msgstr "" + +#: meowth/__main__.py:4017 +msgid "{emoji}: I'm on my way!" +msgstr "" + +#: meowth/__main__.py:4018 +msgid "{emoji}: The Pokemon despawned!" +msgstr "" + +#: meowth/__main__.py:4019 meowth/__main__.py:4183 meowth/__main__.py:4353 +#: meowth/__main__.py:4725 meowth/__main__.py:4839 meowth/__main__.py:4986 +msgid "Reported by @{author} - {timestamp}" +msgstr "" + +#: meowth/__main__.py:4020 +#, fuzzy +msgid "" +"{roletest}Meowth! Wild {pokemon} reported by {member}! Details: " +"{location_details}" +msgstr "" +"Meowth! Un {pokemon} sauvage a été reporté par {member}! Détails: " +"{location_details}" + +#: meowth/__main__.py:4042 +msgid "" +"Report an ongoing raid or a raid egg.\n" +"\n" +" Usage: !raid [weather] [minutes]\n" +" Meowth will insert into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for " +"the purposes of organizing the raid." +msgstr "" + +#: meowth/__main__.py:4067 meowth/__main__.py:4095 meowth/__main__.py:4136 +#: meowth/__main__.py:4145 meowth/__main__.py:4304 +msgid "" +"Meowth! Give more details when reporting! Usage: **!raid " +"**" +msgstr "" +"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!raid " +" **" + +#: meowth/__main__.py:4077 +msgid "Meowth! **!raid assume** is not allowed in this level egg." +msgstr "" + +#: meowth/__main__.py:4089 +msgid "" +"Meowth! Please wait until the egg has hatched before changing it to an open " +"raid!" +msgstr "" + +#: meowth/__main__.py:4124 meowth/__main__.py:4411 meowth/__main__.py:4516 +msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" +msgstr "Meowth! Le Pokemon {pokemon} n'apparaît pas en raid!" + +#: meowth/__main__.py:4127 +#, fuzzy +msgid "" +"Meowth! The Pokemon {pokemon} only appears in EX Raids! Use **!exraid** to " +"report one!" +msgstr "Meowth! Le Pokemon {pokemon} n'apparaît pas en raid!" + +#: meowth/__main__.py:4131 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} raids currently last no more " +"than {raidtime} minutes..." +msgstr "" +"Meowth... c'est trop long. Les raids ne durent actuellement pas plus de deux " +"heures." + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "clear" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "extreme" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "none" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "rainy" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "sunny" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "cloudy" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "fog" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "partlycloudy" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "snow" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "windy" +msgstr "" + +#: meowth/__main__.py:4151 meowth/__main__.py:4310 +msgid "Meowth! I couldn't find a gym named '{0}'." +msgstr "" + +#: meowth/__main__.py:4155 meowth/__main__.py:4314 +msgid "No notes for this gym." +msgstr "" + +#: meowth/__main__.py:4175 meowth/__main__.py:4557 +msgid "Meowth! Click here for directions to the raid!" +msgstr "Meowth! Cliquer ici pour obtenir les directions pour le raid!" + +#: meowth/__main__.py:4177 meowth/__main__.py:4343 +msgid "" +"**Name:** {0}\n" +"**Notes:** {1}" +msgstr "" + +#: meowth/__main__.py:4178 meowth/__main__.py:4344 +msgid "**Gym:**" +msgstr "" + +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 +msgid "**Weaknesses:**" +msgstr "" + +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 +#, fuzzy +msgid "{weakness_list}" +msgstr "Faiblesses: {weakness_list}" + +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4429 +#: meowth/__main__.py:4723 +msgid "**Next Group:**" +msgstr "" + +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4723 +#: meowth/__main__.py:4984 meowth/__main__.py:6612 +msgid "Set with **!starttime**" +msgstr "" + +#: meowth/__main__.py:4182 meowth/__main__.py:4352 meowth/__main__.py:4724 +#: meowth/__main__.py:4985 +msgid "Set with **!timerset**" +msgstr "" + +#: meowth/__main__.py:4182 meowth/__main__.py:4564 meowth/__main__.py:4724 +msgid "**Expires:**" +msgstr "" + +#: meowth/__main__.py:4186 +#, fuzzy +msgid "" +"Meowth! {pokemon} raid reported by {member}! Details: {location_details}. " +"Coordinate in {raid_channel}" +msgstr "" +"Meowth! Un {pokemon} a été reporté dans un raid par {member}! Détails: " +"{location_details}. Coordonner dans {raid_channel}" + +#: meowth/__main__.py:4188 +msgid "" +"{roletest}Meowth! {pokemon} raid reported by {member} in {citychannel}! " +"Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4229 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time left on the raid using **!" +"timerset ** so others can check it with **!timer**." +msgstr "" +"Meowth! {member}, si vous le pouvez, définissez le temps restant sur le raid " +"en utilisant **!timerset H:MM** afin que les autres puissent le voir avec **!" +"timer**." + +#: meowth/__main__.py:4243 +#, fuzzy +msgid "" +"Meowth! Give more details when reporting! Usage: **!raidegg " +"**" +msgstr "" +"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!raid " +" **" + +#: meowth/__main__.py:4249 meowth/__main__.py:4294 +#, fuzzy +msgid "" +"Meowth! Give more details when reporting! Use at least: **!raidegg " +"**. Type **!help** raidegg for more info." +msgstr "" +"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!raid " +" **" + +#: meowth/__main__.py:4255 meowth/__main__.py:5078 +msgid "Did you mean egg hatch time {0} or time remaining before hatch {1}?" +msgstr "" + +#: meowth/__main__.py:4275 meowth/__main__.py:5097 meowth/__main__.py:5155 +#: meowth/__main__.py:5238 meowth/__main__.py:5279 +msgid "Meowth! Please enter a time in the future." +msgstr "" + +#: meowth/__main__.py:4289 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} Raid Eggs currently last no more " +"than {hatchtime} minutes..." +msgstr "" +"Meowth... c'est trop long. Les raids ne durent actuellement pas plus de deux " +"heures." + +#: meowth/__main__.py:4319 +msgid "Meowth! Raid egg levels are only from 1-5!" +msgstr "" + +#: meowth/__main__.py:4341 meowth/__main__.py:4426 meowth/__main__.py:4716 +#, fuzzy +msgid "Meowth! Click here for directions to the coming raid!" +msgstr "Meowth! Cliquer ici pour obtenir les directions pour le raid!" + +#: meowth/__main__.py:4352 meowth/__main__.py:4430 +msgid "**Hatches:**" +msgstr "" + +#: meowth/__main__.py:4355 +#, fuzzy +msgid "" +"Meowth! Level {level} raid egg reported by {member}! Details: " +"{location_details}. Coordinate in {raid_channel}" +msgstr "" +"Meowth! Un {pokemon} a été reporté dans un raid par {member}! Détails: " +"{location_details}. Coordonner dans {raid_channel}" + +#: meowth/__main__.py:4357 +msgid "" +"Meowth! Level {level} raid egg reported by {member} in {citychannel}! " +"Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4381 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**." +msgstr "" +"Meowth! {member}, si vous le pouvez, définissez le temps restant sur le raid " +"en utilisant **!timerset H:MM** afin que les autres puissent le voir avec **!" +"timer**." + +#: meowth/__main__.py:4414 meowth/__main__.py:4519 +#, fuzzy +msgid "" +"Meowth! The Pokemon {pokemon} does not hatch from level {level} raid eggs!" +msgstr "Meowth! Le Pokemon {pokemon} n'apparaît pas en raid!" + +#: meowth/__main__.py:4448 +msgid "" +"{roletest}Meowth! This egg will be assumed to be {pokemon} when it hatches!" +msgstr "" + +#: meowth/__main__.py:4493 meowth/__main__.py:5374 meowth/__main__.py:5443 +#: meowth/__main__.py:6402 +msgid "Coordinate here" +msgstr "" + +#: meowth/__main__.py:4531 +msgid "The event has started!" +msgstr "" + +#: meowth/__main__.py:4537 +#, fuzzy +msgid "" +"Meowth! The egg has hatched into a {pokemon} raid! Details: " +"{location_details}. Coordinate in {raid_channel}" +msgstr "" +"Meowth! Un {pokemon} a été reporté dans un raid par {member}! Détails: " +"{location_details}. Coordonner dans {raid_channel}" + +#: meowth/__main__.py:4538 +msgid "" +"Meowth! The egg reported by {member} in {citychannel} hatched into a " +"{pokemon} raid! Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4542 meowth/__main__.py:4728 +msgid "Use the **!invite** command to gain access and coordinate" +msgstr "" + +#: meowth/__main__.py:4543 meowth/__main__.py:4729 +msgid " after using **!invite** to gain access" +msgstr "" + +#: meowth/__main__.py:4545 meowth/__main__.py:4731 +msgid "Coordinate" +msgstr "" + +#: meowth/__main__.py:4547 +#, fuzzy +msgid "" +"Meowth! The EX egg has hatched into a {pokemon} raid! Details: " +"{location_details}. {invitemsgstr} coordinate in {raid_channel}" +msgstr "" +"Meowth! Un {pokemon} a été reporté dans un raid par {member}! Détails: " +"{location_details}. Coordonner dans {raid_channel}" + +#: meowth/__main__.py:4548 +msgid "" +"Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here{invitemsgstr2}!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4562 meowth/__main__.py:4564 meowth/__main__.py:5024 +#: meowth/__main__.py:5028 meowth/__main__.py:5031 meowth/__main__.py:5045 +#: meowth/__main__.py:5047 meowth/__main__.py:5174 meowth/__main__.py:5175 +#: meowth/__main__.py:5181 meowth/__main__.py:5182 meowth/__main__.py:5184 +#: meowth/__main__.py:5185 meowth/__main__.py:5307 meowth/__main__.py:6767 +#: meowth/__main__.py:6773 meowth/__main__.py:6775 meowth/__main__.py:6777 +msgid "%B %d at %I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:4567 +msgid "Ends on %B %d at %I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:4590 +msgid "" +"{roletest}Meowth! Trainers {trainer_list}: The raid egg has just hatched " +"into a {pokemon} raid!\n" +"If you couldn't before, you're now able to update your status with **!" +"coming** or **!here**. If you've changed your plans, use **!cancel**." +msgstr "" + +#: meowth/__main__.py:4643 +msgid "" +"Report an upcoming EX raid.\n" +"\n" +" Usage: !exraid \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for " +"the purposes of organizing the raid." +msgstr "" + +#: meowth/__main__.py:4662 meowth/__main__.py:4669 +#, fuzzy +msgid "Meowth! Give more details when reporting! Usage: **!exraid **" +msgstr "" +"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!raid " +" **" + +#: meowth/__main__.py:4681 +msgid "ex-raid-egg-" +msgstr "" + +#: meowth/__main__.py:4733 +#, fuzzy +msgid "" +"Meowth! EX raid egg reported by {member}! Details: {location_details}. " +"{invitemsgstr} in {raid_channel}" +msgstr "" +"Meowth! Un {pokemon} a été reporté dans un raid par {member}! Détails: " +"{location_details}. Coordonner dans {raid_channel}" + +#: meowth/__main__.py:4735 +msgid "" +"Meowth! EX raid reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here{invitemsgstr2}!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4757 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**. " +"**** can just be written exactly how it appears on your EX " +"Raid Pass." +msgstr "" +"Meowth! {member}, si vous le pouvez, définissez le temps restant sur le raid " +"en utilisant **!timerset H:MM** afin que les autres puissent le voir avec **!" +"timer**." + +#: meowth/__main__.py:4762 +msgid "Join an EX Raid." +msgstr "" + +#: meowth/__main__.py:4790 +msgid "" +"Meowth! No EX Raids have been reported in this server! Use **!exraid** to " +"report one!" +msgstr "" + +#: meowth/__main__.py:4792 +msgid "" +"Meowth! {0}, you've told me you have an invite to an EX Raid, and I'm just " +"going to take your word for it! The following {1} EX Raids have been " +"reported:\n" +"{2}\n" +"Reply with **the number** (1, 2, etc) of the EX Raid you have been invited " +"to. If none of them match your invite, type 'N' and report it with **!" +"exraid**" +msgstr "" + +#: meowth/__main__.py:4796 +msgid "Meowth! Be sure to report your EX Raid with **!exraid**!" +msgstr "" + +#: meowth/__main__.py:4799 +msgid "" +"Meowth! I couldn't tell which EX Raid you meant! Try the **!invite** command " +"again, and make sure you respond with the number of the channel that matches!" +msgstr "" + +#: meowth/__main__.py:4810 +msgid "" +"Meowth! Alright {0}, you can now send messages in {1}! Make sure you let the " +"trainers in there know if you can make it to the EX Raid!" +msgstr "" + +#: meowth/__main__.py:4814 +#, fuzzy +msgid "" +"Meowth! I couldn't understand your reply! Try the **!invite** command again!" +msgstr "Meowth... Je n'arrive pas à comprendre le format de l'heure..." + +#: meowth/__main__.py:4820 +msgid "" +"Report Field research\n" +"\n" +" Guided report method with just !research. If you supply arguments in " +"one\n" +" line, avoid commas in anything but your separations between pokestop,\n" +" quest, reward. Order matters if you supply arguments. If a pokemon name\n" +" is included in reward, a @mention will be used if role exists.\n" +"\n" +" Usage: !research [pokestop name [optional URL], quest, reward]" +msgstr "" + +#: meowth/__main__.py:4844 +msgid "" +"entered an incorrect amount of arguments.\n" +"\n" +"Usage: **!research** or **!research , , **" +msgstr "" + +#: meowth/__main__.py:4849 meowth/__main__.py:4873 +msgid "**Pokestop:**" +msgstr "" + +#: meowth/__main__.py:4850 meowth/__main__.py:4891 +msgid "**Quest:**" +msgstr "" + +#: meowth/__main__.py:4851 meowth/__main__.py:4909 +msgid "**Reward:**" +msgstr "" + +#: meowth/__main__.py:4854 +msgid "**New Research Report**" +msgstr "" + +#: meowth/__main__.py:4854 +msgid "" +"Meowth! I'll help you report a research quest!\n" +"\n" +"First, I'll need to know what **pokestop** you received the quest from. " +"Reply with the name of the **pokestop**. You can reply with **cancel** to " +"stop anytime." +msgstr "" + +#: meowth/__main__.py:4862 meowth/__main__.py:4882 meowth/__main__.py:4900 +msgid "took too long to respond" +msgstr "" + +#: meowth/__main__.py:4865 meowth/__main__.py:4885 meowth/__main__.py:4903 +msgid "cancelled the report" +msgstr "" + +#: meowth/__main__.py:4874 +msgid "" +"Great! Now, reply with the **quest** that you received from **{location}**. " +"You can reply with **cancel** to stop anytime.\n" +"\n" +"Here's what I have so far:" +msgstr "" + +#: meowth/__main__.py:4892 +msgid "" +"Fantastic! Now, reply with the **reward** for the **{quest}** quest that you " +"received from **{location}**. You can reply with **cancel** to stop " +"anytime.\n" +"\n" +"Here's what I have so far:" +msgstr "" + +#: meowth/__main__.py:4919 +msgid "{roletest}Field Research reported by {author}" +msgstr "" + +#: meowth/__main__.py:4920 +#, fuzzy +msgid "Meowth! Click here for my directions to the research!" +msgstr "Meowth! Cliquer ici pour obtenir les directions pour le raid!" + +#: meowth/__main__.py:4941 +msgid "**Research Report Cancelled**" +msgstr "" + +#: meowth/__main__.py:4941 +msgid "" +"Meowth! Your report has been cancelled because you {error}! Retry when " +"you're ready." +msgstr "" + +#: meowth/__main__.py:4947 +msgid "" +"Report an upcoming event.\n" +"\n" +" Usage: !meetup \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +"\n" +" Finally, Meowth will create a separate channel for the report, for the " +"purposes of organizing the event." +msgstr "" + +#: meowth/__main__.py:4964 +#, fuzzy +msgid "Meowth! Give more details when reporting! Usage: **!meetup **" +msgstr "" +"Meowth! Donnez moi plus d'informations s'il vous plaît! Utilisez: **!wild " +" **" + +#: meowth/__main__.py:4970 +msgid "meetup-" +msgstr "" + +#: meowth/__main__.py:4981 +#, fuzzy +msgid "Meowth! Click here for directions to the event!" +msgstr "Meowth! Cliquer ici pour obtenir les directions pour le raid!" + +#: meowth/__main__.py:4982 +msgid "**Event Location:**" +msgstr "" + +#: meowth/__main__.py:4984 +msgid "**Event Starts:**" +msgstr "" + +#: meowth/__main__.py:4985 +msgid "**Event Ends:**" +msgstr "" + +#: meowth/__main__.py:4988 +#, fuzzy +msgid "" +"Meowth! Meetup reported by {member}! Details: {location_details}. Coordinate " +"in {raid_channel}" +msgstr "" +"Meowth! Un {pokemon} a été reporté dans un raid par {member}! Détails: " +"{location_details}. Coordonner dans {raid_channel}" + +#: meowth/__main__.py:4990 +msgid "" +"Meowth! Meetup reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here!\n" +"\n" +"To update your status, choose from the following commands: **!maybe**, **!" +"coming**, **!here**, **!cancel**. If you are bringing more than one trainer/" +"account, add in the number of accounts total, teams optional, on your first " +"status update.\n" +"Example: `!coming 5 2m 2v 1i`\n" +"\n" +"To see the list of trainers who have given their status:\n" +"**!list interested**, **!list coming**, **!list here** or use just **!list** " +"to see all lists. Use **!list teams** to see team distribution.\n" +"\n" +"Sometimes I'm not great at directions, but I'll correct my directions if " +"anybody sends me a maps link or uses **!location new
**. You can " +"see the location of the event by using **!location**\n" +"\n" +"You can set the start time with **!starttime ** (you can " +"also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" +"You can set the end time with **!timerset ** and access " +"this with **!timer**.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:5008 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time that the event starts with **!" +"starttime ** and also set the time that the event ends using " +"**!timerset **." +msgstr "" +"Meowth! {member}, si vous le pouvez, définissez le temps restant sur le raid " +"en utilisant **!timerset H:MM** afin que les autres puissent le voir avec **!" +"timer**." + +#: meowth/__main__.py:5024 +#, fuzzy +msgid "This event will start at {expiry_time}" +msgstr "Meowth! Le raid se termine à {expiry_time}!" + +#: meowth/__main__.py:5026 +msgid "Nobody has told me a start time! Set it with **!starttime**" +msgstr "" + +#: meowth/__main__.py:5028 +#, fuzzy +msgid " | This event will end at {expiry_time}" +msgstr "Meowth! Le raid se termine à {expiry_time}!" + +#: meowth/__main__.py:5031 +#, fuzzy +msgid "This event will end at {expiry_time}" +msgstr "Meowth! Le raid se termine à {expiry_time}!" + +#: meowth/__main__.py:5033 +msgid "Nobody has told me a end time! Set it with **!timerset**" +msgstr "" + +#: meowth/__main__.py:5036 meowth/__main__.py:5598 +msgid "egg" +msgstr "" + +#: meowth/__main__.py:5037 meowth/__main__.py:5597 +msgid "hatch" +msgstr "" + +#: meowth/__main__.py:5040 meowth/__main__.py:5600 +msgid "end" +msgstr "" + +#: meowth/__main__.py:5042 +#, fuzzy +msgid "This {raidtype}'s timer has already expired as of {expiry_time}!" +msgstr "" +"Meowth! La minuterie de ce raid a déjà expiré à partir de {expiry_time}!" + +#: meowth/__main__.py:5045 +#, fuzzy +msgid "This {raidtype} will {raidaction} on {expiry}!" +msgstr "Meowth! Le raid se termine à {expiry_time}!" + +#: meowth/__main__.py:5047 +#, fuzzy +msgid "" +"No one told me when the {raidtype} will {raidaction}, so I'm assuming it " +"will {raidaction} on {expiry}!" +msgstr "" +"Meowth! Personne ne m'a dit quand le raid se termine, alors je suppose que " +"ça se terminera à {expiry_time}!" + +#: meowth/__main__.py:5049 +#, fuzzy +msgid "This {raidtype} will {raidaction} at {expiry_time}!" +msgstr "Meowth! Le raid se termine à {expiry_time}!" + +#: meowth/__main__.py:5051 +#, fuzzy +msgid "" +"No one told me when the {raidtype} will {raidaction}, so I'm assuming it " +"will {raidaction} at {expiry_time}!" +msgstr "" +"Meowth! Personne ne m'a dit quand le raid se termine, alors je suppose que " +"ça se terminera à {expiry_time}!" + +#: meowth/__main__.py:5054 +msgid "" +"Set the remaining duration on a raid.\n" +"\n" +" Usage: !timerset \n" +" Works only in raid channels, can be set or overridden by anyone.\n" +" Meowth displays the end time in HH:MM local time." +msgstr "" + +#: meowth/__main__.py:5054 +msgid "timerset" +msgstr "" + +#: meowth/__main__.py:5069 +msgid "Raid Egg" +msgstr "" + +#: meowth/__main__.py:5073 +msgid "Raid" +msgstr "" + +#: meowth/__main__.py:5100 meowth/__main__.py:5105 meowth/__main__.py:5116 +#, fuzzy +msgid "" +"Meowth! I couldn't understand your time format. Try again like this: **!" +"timerset **" +msgstr "" +"Meowth... Je n'arrive pas à comprendre votre format pour l'heure. Essayez de " +"nouveau comme ceci: **!timerset H:MM**" + +#: meowth/__main__.py:5119 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} {raidtype}s currently last no " +"more than {maxtime} minutes..." +msgstr "" +"Meowth... c'est trop long. Les raids ne durent actuellement pas plus de deux " +"heures." + +#: meowth/__main__.py:5135 meowth/__main__.py:5143 +msgid "" +"Meowth! Your timer wasn't formatted correctly. Change your **!timerset** to " +"match this format: **MM/DD HH:MM AM/PM** (You can also omit AM/PM and use 24-" +"hour time!)" +msgstr "" + +#: meowth/__main__.py:5148 +msgid "Meowth! Please enter a time after your start time." +msgstr "" + +#: meowth/__main__.py:5157 +msgid "Meowth! Timerset isn't supported for EX Raids after they have hatched." +msgstr "" + +#: meowth/__main__.py:5168 +msgid "The channel has been reactivated." +msgstr "" + +#: meowth/__main__.py:5174 meowth/__main__.py:5181 meowth/__main__.py:5184 +msgid "Ends on {end}" +msgstr "" + +#: meowth/__main__.py:5180 +msgid "%B %d at %I:%M %p (%H:%M) | " +msgstr "" + +#: meowth/__main__.py:5180 +msgid "Hatches on {expiry}" +msgstr "" + +#: meowth/__main__.py:5205 +msgid "" +"Have Meowth resend the expire time message for a raid.\n" +"\n" +" Usage: !timer\n" +" The expiry time should have been previously set with !timerset." +msgstr "" + +#: meowth/__main__.py:5205 +msgid "timer" +msgstr "" + +#: meowth/__main__.py:5211 +msgid "Meowth!" +msgstr "" + +#: meowth/__main__.py:5215 +msgid "" +"Set a time for a group to start a raid\n" +"\n" +" Usage: !starttime [HH:MM AM/PM]\n" +" (You can also omit AM/PM and use 24-hour time!)\n" +" Works only in raid channels. Sends a message and sets a group start time " +"that\n" +" can be seen using !starttime (without a time). One start time is allowed " +"at\n" +" a time and is visibile in !list output. Cleared with !starting." +msgstr "" + +#: meowth/__main__.py:5215 +msgid "starttime" +msgstr "" + +#: meowth/__main__.py:5241 +msgid "Meowth! Please enter a time before your end time." +msgstr "" + +#: meowth/__main__.py:5262 meowth/__main__.py:5268 +msgid "" +"Meowth! Your start time wasn't formatted correctly. Change your **!" +"starttime** to match this format: **HH:MM AM/PM** (You can also omit AM/PM " +"and use 24-hour time!)" +msgstr "" + +#: meowth/__main__.py:5276 +#, fuzzy +msgid "Meowth! The raid will be over before that...." +msgstr "Meowth! Le raid se termine à {expiry_time}!" + +#: meowth/__main__.py:5282 +#, fuzzy +msgid "Meowth! The egg will not hatch by then!" +msgstr "Meowth! Le raid se termine à {expiry_time}!" + +#: meowth/__main__.py:5285 +msgid "" +"Meowth! There is already a start time of **{start}** set! Do you want to " +"change it?" +msgstr "" + +#: meowth/__main__.py:5293 +msgid "Start time change cancelled." +msgstr "" + +#: meowth/__main__.py:5308 +msgid "Meowth! The current start time has been set to: **{starttime}**" +msgstr "" + +#: meowth/__main__.py:5329 +msgid "Meowth! The current start time is: **{starttime}**" +msgstr "" + +#: meowth/__main__.py:5331 +msgid "" +"Meowth! No start time has been set, set one with **!starttime HH:MM AM/PM**! " +"(You can also omit AM/PM and use 24-hour time!)" +msgstr "" + +#: meowth/__main__.py:5333 +msgid "" +"Get raid location.\n" +"\n" +" Usage: !location\n" +" Works only in raid channels. Gives the raid location link." +msgstr "" + +#: meowth/__main__.py:5333 +msgid "location" +msgstr "" + +#: meowth/__main__.py:5354 +#, fuzzy +msgid "" +"Meowth! Here's the current location for the raid!\n" +"Details: {location}" +msgstr "" +"Meowth! Nous manquons les détails du nouvel emplacement! Utilisez: **!" +"location **" + +#: meowth/__main__.py:5358 +msgid "" +"Change raid location.\n" +"\n" +" Usage: !location new \n" +" Works only in raid channels. Changes the google map links." +msgstr "" + +#: meowth/__main__.py:5358 +msgid "new" +msgstr "" + +#: meowth/__main__.py:5367 +#, fuzzy +msgid "" +"Meowth! We're missing the new location details! Usage: **!location new **" +msgstr "" +"Meowth! Nous manquons les détails du nouvel emplacement! Utilisez: **!" +"location **" + +#: meowth/__main__.py:5416 +msgid "" +"Recover a raid channel if it is no longer responding to commands\n" +"\n" +" Usage: !recover\n" +" Only necessary after a crash." +msgstr "" + +#: meowth/__main__.py:5416 +msgid "recover" +msgstr "" + +#: meowth/__main__.py:5422 +msgid "Meowth! I can't recover this channel because I know about it already!" +msgstr "" + +#: meowth/__main__.py:5433 +msgid "level-[1-5]-egg" +msgstr "" + +#: meowth/__main__.py:5481 +msgid "Ends on %B %d at %I:%M %p" +msgstr "" + +#: meowth/__main__.py:5524 +msgid "Meowth! I couldn't recognize this as a raid channel!" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5534 +#, fuzzy +msgid "is interested" +msgstr "Meowth! {0} est intéressé(e)!" + +#: meowth/__main__.py:5528 meowth/__main__.py:5536 +msgid "on the way" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5538 +msgid "at the raid" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5540 +msgid "left the raid" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5540 +msgid "no longer" +msgstr "" + +#: meowth/__main__.py:5542 +msgid "trainers" +msgstr "" + +#: meowth/__main__.py:5590 +msgid "" +"Meowth! This channel has been recovered! However, there may be some " +"inaccuracies in what I remembered! Here's what I have:" +msgstr "" + +#: meowth/__main__.py:5602 +msgid "" +"\n" +"I'm not sure when this {raidtype} will {action}, so please use **!timerset** " +"if you can!" +msgstr "" + +#: meowth/__main__.py:5609 +msgid "" +"A command to report a raid channel as a duplicate.\n" +"\n" +" Usage: !duplicate\n" +" Works only in raid channels. When three users report a channel as a " +"duplicate,\n" +" Meowth deactivates the channel and marks it for deletion." +msgstr "" + +#: meowth/__main__.py:5609 +msgid "duplicate" +msgstr "" + +#: meowth/__main__.py:5630 +#, fuzzy +msgid "Meowth! You've already made a duplicate report for this {raidtype}!" +msgstr "Meowth! Vous avez déjà un rôle d'équipe!" + +#: meowth/__main__.py:5651 +msgid "Meowth! Are you sure you wish to remove this {raidtype}?" +msgstr "" + +#: meowth/__main__.py:5660 +msgid "Duplicate Report cancelled." +msgstr "" + +#: meowth/__main__.py:5669 +msgid "Duplicate Confirmed" +msgstr "" + +#: meowth/__main__.py:5686 +msgid "Duplicate Report Timed Out." +msgstr "" + +#: meowth/__main__.py:5694 +msgid "Duplicate report #{duplicate_report_count} received." +msgstr "" + +#: meowth/__main__.py:5698 +msgid "" +"Simulate a Raid battle with Pokebattler.\n" +"\n" +" Usage: !counters [pokemon] [weather] [user]\n" +" See !help weather for acceptable values for weather.\n" +" If [user] is a valid Pokebattler user id, Meowth will simulate the Raid " +"with that user's Pokebox.\n" +" Uses current boss and weather by default if available.\n" +" " +msgstr "" + +#: meowth/__main__.py:5739 meowth/__main__.py:5766 +msgid "" +"Meowth! You're missing some details! Be sure to enter a pokemon that appears " +"in raids! Usage: **!counters [weather] [user ID]**" +msgstr "" + +#: meowth/__main__.py:5776 +msgid "user #{user}'s" +msgstr "" + +#: meowth/__main__.py:5779 +msgid "Level 30" +msgstr "" + +#: meowth/__main__.py:5821 meowth/__main__.py:5904 +msgid "{pkmn} | {weather} | {movesetstr}" +msgstr "" + +#: meowth/__main__.py:5822 meowth/__main__.py:5882 +msgid "**CP:** {raid_cp}\n" +msgstr "" + +#: meowth/__main__.py:5823 meowth/__main__.py:5883 +msgid "**Weather:** {weather}\n" +msgstr "" + +#: meowth/__main__.py:5824 meowth/__main__.py:5884 +msgid "**Attacker Level:** {atk_levels}" +msgstr "" + +#: meowth/__main__.py:5828 meowth/__main__.py:5888 meowth/__main__.py:5908 +msgid "Results courtesy of Pokebattler" +msgstr "" + +#: meowth/__main__.py:5835 meowth/__main__.py:5893 meowth/__main__.py:5913 +msgid "{move1} | {move2}" +msgstr "" + +#: meowth/__main__.py:5836 meowth/__main__.py:5894 meowth/__main__.py:5914 +msgid "#{index} - {ctr_name}" +msgstr "" + +#: meowth/__main__.py:5837 +msgid "CP" +msgstr "" + +#: meowth/__main__.py:5840 +msgid "Results with {userstr} attackers" +msgstr "" + +#: meowth/__main__.py:5840 meowth/__main__.py:5925 +msgid "" +"[See your personalized results!](https://www.pokebattler.com/raids/{pkmn})" +msgstr "" + +#: meowth/__main__.py:5842 +msgid "Difficulty rating: {est}" +msgstr "" + +#: meowth/__main__.py:5842 +msgid "Pokebattler Estimator:" +msgstr "" + +#: meowth/__main__.py:5881 +msgid "{pkmn} | {weather} | Unknown Moveset" +msgstr "" + +#: meowth/__main__.py:5923 +msgid "**Possible Movesets:**" +msgstr "" + +#: meowth/__main__.py:5925 +msgid "Results with Level 30 attackers" +msgstr "" + +#: meowth/__main__.py:5929 +msgid "" +"Sets the weather for the raid.\n" +" Usage: !weather \n" +" Only usable in raid channels.\n" +" Acceptable options: none, extreme, clear, rainy, partlycloudy, cloudy, " +"windy, snow, fog" +msgstr "" + +#: meowth/__main__.py:5929 +msgid "weather" +msgstr "" + +#: meowth/__main__.py:5938 +msgid "Meowth! Enter one of the following weather conditions: {}" +msgstr "" + +#: meowth/__main__.py:5953 +#, fuzzy +msgid "Meowth! Weather set to {}!" +msgstr "Meowth! {member} a quitté le raid!" + +#: meowth/__main__.py:5959 +msgid "" +"Indicate you are interested in the raid.\n" +"\n" +" Usage: !interested [count] [party]\n" +" Works only in raid channels. If count is omitted, assumes you are a " +"group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:5959 meowth/__main__.py:6867 +msgid "interested" +msgstr "" + +#: meowth/__main__.py:5996 meowth/__main__.py:6194 +msgid "{word} doesn't appear in level {egglevel} raids! Please try again." +msgstr "" + +#: meowth/__main__.py:6042 +#, fuzzy +msgid "Meowth! {member} is interested! {emoji}: 1" +msgstr "Meowth! {member} n'est plus intéressé(e)!" + +#: meowth/__main__.py:6044 +msgid "" +"Meowth! {member} is interested with a total of {trainer_count} trainers!" +msgstr "" +"Meowth! {member} est intéressé(e) avec un total de {trainer_count} joueurs!" + +#: meowth/__main__.py:6058 +msgid "" +"Indicate you are on the way to a raid.\n" +"\n" +" Usage: !coming [count] [party]\n" +" Works only in raid channels. If count is omitted, checks for previous !" +"maybe\n" +" command and takes the count from that. If it finds none, assumes you are " +"a group\n" +" of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:6058 meowth/__main__.py:6913 +msgid "coming" +msgstr "" + +#: meowth/__main__.py:6088 +msgid "{word} doesn't appear in level {egglevel} raids!" +msgstr "" + +#: meowth/__main__.py:6092 +msgid "" +"Invalid Pokemon detected. Please check the pinned message for the list of " +"possible bosses and try again." +msgstr "" + +#: meowth/__main__.py:6148 +#, fuzzy +msgid "Meowth! {member} is on the way! {emoji}: 1" +msgstr "Meowth! {member} est en chemin!" + +#: meowth/__main__.py:6150 +msgid "" +"Meowth! {member} is on the way with a total of {trainer_count} trainers!" +msgstr "" +"Meowth! {member} est en chemin avec un total de {trainer_count} joueurs!" + +#: meowth/__main__.py:6164 +msgid "" +"Indicate you have arrived at the raid.\n" +"\n" +" Usage: !here [count] [party]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:6164 meowth/__main__.py:6959 +msgid "here" +msgstr "" + +#: meowth/__main__.py:6234 +msgid "" +"\n" +"There is a group already in the lobby! Use **!lobby** to join them or **!" +"backout** to request a backout! Otherwise, you may have to wait for the next " +"group!" +msgstr "" + +#: meowth/__main__.py:6257 +#, fuzzy +msgid "Meowth! {member} is at the {raidtype}! {emoji}: 1" +msgstr "Meowth! {member} attend au raid!" + +#: meowth/__main__.py:6260 +#, fuzzy +msgid "" +"Meowth! {member} is at the {raidtype} with a total of {trainer_count} " +"trainers!" +msgstr "Meowth! {member} est au raid avec un total de {trainer_count} joueurs!" + +#: meowth/__main__.py:6322 +msgid "Only one non-team count can be accepted." +msgstr "" + +#: meowth/__main__.py:6334 +msgid "Only one count per team accepted." +msgstr "" + +#: meowth/__main__.py:6338 +msgid "Invalid format, please check and try again." +msgstr "" + +#: meowth/__main__.py:6342 +msgid "" +"Team counts are higher than the total, double check your counts and try " +"again. You entered **" +msgstr "" + +#: meowth/__main__.py:6343 +msgid "** total and **" +msgstr "" + +#: meowth/__main__.py:6344 +msgid "** in your party." +msgstr "" + +#: meowth/__main__.py:6349 +msgid "" +"Meowth! Something is not adding up! Try making sure your total matches what " +"each team adds up to!" +msgstr "" + +#: meowth/__main__.py:6416 meowth/__main__.py:6419 +msgid "**Boss Interest:**" +msgstr "" + +#: meowth/__main__.py:6422 +msgid "**Status List**" +msgstr "" + +#: meowth/__main__.py:6422 +msgid "" +"Maybe: **{channelmaybe}** | Coming: **{channelcoming}** | Here: " +"**{channelhere}**" +msgstr "" + +#: meowth/__main__.py:6423 +msgid "**Team List**" +msgstr "" + +#: meowth/__main__.py:6435 +msgid "" +"Indicate you are entering the raid lobby.\n" +"\n" +" Usage: !lobby [message]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people." +msgstr "" + +#: meowth/__main__.py:6435 meowth/__main__.py:7008 +msgid "lobby" +msgstr "" + +#: meowth/__main__.py:6457 +msgid "" +"Meowth! I can't understand how many are in your group. Just say **!here** if " +"you're by yourself, or **!coming 5** for example if there are 5 in your " +"group." +msgstr "" + +#: meowth/__main__.py:6467 +msgid "" +"Meowth! There is no group in the lobby for you to join! Use **!starting** if " +"the group waiting at the raid is entering the lobby!" +msgstr "" + +#: meowth/__main__.py:6471 +#, fuzzy +msgid "Meowth! {member} is entering the lobby!" +msgstr "Meowth! {member} est en chemin!" + +#: meowth/__main__.py:6473 +#, fuzzy +msgid "" +"Meowth! {member} is entering the lobby with a total of {trainer_count} " +"trainers!" +msgstr "" +"Meowth! {member} est en chemin avec un total de {trainer_count} joueurs!" + +#: meowth/__main__.py:6482 +msgid "" +"Indicate you are no longer interested in a raid.\n" +"\n" +" Usage: !cancel\n" +" Works only in raid channels. Removes you and your party\n" +" from the list of trainers who are \"otw\" or \"here\"." +msgstr "" + +#: meowth/__main__.py:6482 +msgid "cancel" +msgstr "" + +#: meowth/__main__.py:6497 +#, fuzzy +msgid "Meowth! {member} has no status to cancel!" +msgstr "Meowth! {member} attend au raid!" + +#: meowth/__main__.py:6501 +msgid "Meowth! {member} is no longer interested!" +msgstr "Meowth! {member} n'est plus intéressé(e)!" + +#: meowth/__main__.py:6503 +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"interested!" +msgstr "" +"Meowth! {member} et le total de {trainer_count} joueurs avec lui ne sont " +"plus intéressé(e)s!" + +#: meowth/__main__.py:6506 +#, fuzzy +msgid "Meowth! {member} has left the {raidtype}!" +msgstr "Meowth! {member} a quitté le raid!" + +#: meowth/__main__.py:6508 +#, fuzzy +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers have left the " +"{raidtype}!" +msgstr "" +"Meowth! {member} et le total de {trainer_count} joueurs avec lui ont quitté " +"le raid!" + +#: meowth/__main__.py:6511 +msgid "Meowth! {member} is no longer on their way!" +msgstr "Meowth! {member} n'est plus en chemin!" + +#: meowth/__main__.py:6513 +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"on their way!" +msgstr "" +"Meowth! {member} et le total de {trainer_count} joueurs avec lui ne sont " +"plus en chemin!" + +#: meowth/__main__.py:6516 +#, fuzzy +msgid "Meowth! {member} has backed out of the lobby!" +msgstr "Meowth! {member} a quitté le raid!" + +#: meowth/__main__.py:6518 +#, fuzzy +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers have backed out " +"of the lobby!" +msgstr "" +"Meowth! {member} et le total de {trainer_count} joueurs avec lui ont quitté " +"le raid!" + +#: meowth/__main__.py:6536 +msgid "" +"Meowth! The group of {count} in the lobby has entered the raid! Wish them " +"luck!" +msgstr "" + +#: meowth/__main__.py:6551 +msgid "" +"Signal that a raid is starting.\n" +"\n" +" Usage: !starting [team]\n" +" Works only in raid channels. Sends a message and clears the waiting " +"list. Users who are waiting\n" +" for a second group must reannounce with the :here: emoji or !here." +msgstr "" + +#: meowth/__main__.py:6551 +msgid "starting" +msgstr "" + +#: meowth/__main__.py:6566 +#, fuzzy +msgid "Meowth! How can you start when the egg hasn't hatched!?" +msgstr "" +"Meowth! Comment pouvez-vous commencer quand il n'y a personne en attente " +"pour ce raid!?" + +#: meowth/__main__.py:6570 +msgid "Meowth! Please wait for the group in the lobby to enter the raid." +msgstr "" + +#: meowth/__main__.py:6594 +msgid "Meowth! How can you start when there's no one waiting at this raid!?" +msgstr "" +"Meowth! Comment pouvez-vous commencer quand il n'y a personne en attente " +"pour ce raid!?" + +#: meowth/__main__.py:6600 +msgid " to start at **{}** " +msgstr "" + +#: meowth/__main__.py:6604 +#, fuzzy +msgid "" +"Starting - Meowth! The group that was waiting{timestr}is starting the raid! " +"Trainers {trainer_list}, if you are not in this group and are waiting for " +"the next group, please respond with {here_emoji} or **!here**. If you need " +"to ask those that just started to back out of their lobby, use **!backout**" +msgstr "" +"Meowth! Le groupe qui attendait vient de lancer le raid! Joueurs " +"{trainer_list}, merci de répondre avec {here_emoji} ou avec **!here** si " +"vous faites un autre groupe!" + +#: meowth/__main__.py:6612 +msgid "**Next Group**" +msgstr "" + +#: meowth/__main__.py:6624 +msgid "" +"Request players in lobby to backout\n" +"\n" +" Usage: !backout\n" +" Will alert all trainers in the lobby that a backout is requested." +msgstr "" + +#: meowth/__main__.py:6624 +msgid "backout" +msgstr "" + +#: meowth/__main__.py:6646 +#, fuzzy +msgid "Meowth! There's no one else in the lobby for this raid!" +msgstr "" +"Meowth! Comment pouvez-vous commencer quand il n'y a personne en attente " +"pour ce raid!?" + +#: meowth/__main__.py:6652 +msgid "" +"Backout - Meowth! {author} has indicated that the group consisting of " +"{lobby_list} and the people with them has backed out of the lobby! If this " +"is inaccurate, please use **!lobby** or **!cancel** to help me keep my lists " +"accurate!" +msgstr "" + +#: meowth/__main__.py:6666 +#, fuzzy +msgid "Meowth! There's no one in the lobby for this raid!" +msgstr "" +"Meowth! Comment pouvez-vous commencer quand il n'y a personne en attente " +"pour ce raid!?" + +#: meowth/__main__.py:6669 +msgid "" +"Backout - Meowth! {author} has requested a backout! If one of the following " +"trainers reacts with the check mark, I will assume the group is backing out " +"of the raid lobby as requested! {lobby_list}" +msgstr "" + +#: meowth/__main__.py:6680 +msgid "Meowth! {user} confirmed the group is backing out!" +msgstr "" + +#: meowth/__main__.py:6692 +msgid "" +"Lists all raid info for the current channel.\n" +"\n" +" Usage: !list\n" +" Works only in raid or city channels. Calls the interested, waiting, and " +"here lists. Also prints\n" +" the raid timer. In city channels, lists all active raids." +msgstr "" + +#: meowth/__main__.py:6692 +msgid "list" +msgstr "" + +#: meowth/__main__.py:6699 +msgid "**Meowth!** " +msgstr "" + +#: meowth/__main__.py:6755 +msgid " (assumed)" +msgstr "" + +#: meowth/__main__.py:6761 +msgid " Next group: **{}**" +msgstr "" + +#: meowth/__main__.py:6765 meowth/__main__.py:6767 +msgid " - Hatches: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6773 meowth/__main__.py:6777 +msgid " - Starts: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6775 +msgid " - Ends: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6779 +msgid " - Expiry: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6780 +msgid " {raidchannel}{expiry_text}\n" +msgstr "" + +#: meowth/__main__.py:6781 +msgid "" +" {interestcount} interested, {comingcount} coming, {herecount} here, " +"{lobbycount} in the lobby.{start_str}\n" +msgstr "" + +#: meowth/__main__.py:6784 +msgid "" +"**Here's the current channels for {0}**\n" +"\n" +msgstr "" + +#: meowth/__main__.py:6786 +msgid "**Active Raids:**\n" +msgstr "" + +#: meowth/__main__.py:6792 +msgid "**Active Raids:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6796 +msgid "**Raid Eggs:**\n" +msgstr "" + +#: meowth/__main__.py:6802 +msgid "**Raid Eggs:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6806 +msgid "**EX Raids:**\n" +msgstr "" + +#: meowth/__main__.py:6812 +msgid "**EX Raids:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6815 +msgid "**Meetups:**\n" +msgstr "" + +#: meowth/__main__.py:6821 +msgid "**Meetups:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6824 +#, fuzzy +msgid "" +"Meowth! No active raids! Report one with **!raid [weather] " +"[timer]**." +msgstr "" +"Meowth! Il n'y a pas de raids actifs! Signaler un avec: **!raid **." + +#: meowth/__main__.py:6858 +msgid " Nobody has updated their status yet!" +msgstr "" + +#: meowth/__main__.py:6861 +msgid "" +"\n" +"The next group will be starting at **{}**" +msgstr "" + +#: meowth/__main__.py:6867 +msgid "" +"Lists the number and users who are interested in the raid.\n" +"\n" +" Usage: !list interested\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:6873 meowth/__main__.py:6919 meowth/__main__.py:6965 +#: meowth/__main__.py:7014 meowth/__main__.py:7060 meowth/__main__.py:7106 +#: meowth/__main__.py:7149 meowth/__main__.py:7167 meowth/__main__.py:7200 +msgid "**Meowth!**" +msgstr "" + +#: meowth/__main__.py:6891 meowth/__main__.py:6898 meowth/__main__.py:6937 +#: meowth/__main__.py:6944 meowth/__main__.py:6984 meowth/__main__.py:6991 +#: meowth/__main__.py:7031 meowth/__main__.py:7038 +msgid "**{name}**" +msgstr "" + +#: meowth/__main__.py:6894 meowth/__main__.py:6901 meowth/__main__.py:6940 +#: meowth/__main__.py:6947 meowth/__main__.py:6987 meowth/__main__.py:6994 +#: meowth/__main__.py:7034 meowth/__main__.py:7041 +msgid "**{name} ({count})**" +msgstr "" + +#: meowth/__main__.py:6895 meowth/__main__.py:6902 meowth/__main__.py:6941 +#: meowth/__main__.py:6948 meowth/__main__.py:6988 meowth/__main__.py:6995 +#: meowth/__main__.py:7035 meowth/__main__.py:7042 +msgid "{name} **({count})**" +msgstr "" + +#: meowth/__main__.py:6907 meowth/__main__.py:6909 +msgid "" +" including {trainer_list} and the people with them! Let them know if there " +"is a group forming" +msgstr "" +" avec {trainer_list} et les joueurs avec eux! Faites-leur savoir s'il y a un " +"groupe qui se forme." + +#: meowth/__main__.py:6910 +#, fuzzy +msgid " {trainer_count} interested{including_string}!" +msgstr "Meowth! {trainer_count} intéressé(s){including_string}!" + +#: meowth/__main__.py:6913 +msgid "" +"Lists the number and users who are coming to a raid.\n" +"\n" +" Usage: !list coming\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:6953 meowth/__main__.py:6955 +msgid "" +" including {trainer_list} and the people with them! Be considerate and wait " +"for them if possible" +msgstr "" +" avec {trainer_list} et les joueurs avec eux! Merci de les attendre si " +"possible." + +#: meowth/__main__.py:6956 +#, fuzzy +msgid " {trainer_count} on the way{including_string}!" +msgstr "Meowth! {trainer_count} en chemin{including_string}!" + +#: meowth/__main__.py:6959 +msgid "" +"List the number and users who are present at a raid.\n" +"\n" +" Usage: !list here\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7002 meowth/__main__.py:7004 +msgid "" +" including {trainer_list} and the people with them! Be considerate and let " +"them know if and when you'll be there" +msgstr "" +" avec {trainer_list} et les personnes avec eux! Merci de préciser dans " +"combien de temps vous arrivez." + +#: meowth/__main__.py:7005 +#, fuzzy +msgid " {trainer_count} waiting at the {raidtype}{including_string}!" +msgstr "Meowth! {trainer_count} attend(ent) au raid{including_string}!" + +#: meowth/__main__.py:7008 +msgid "" +"List the number and users who are in the raid lobby.\n" +"\n" +" Usage: !list lobby\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7048 meowth/__main__.py:7050 +#, fuzzy +msgid "" +" including {trainer_list} and the people with them! Use **!lobby** if you " +"are joining them or **!backout** to request a backout" +msgstr "" +" avec {trainer_list} et les joueurs avec eux! Faites-leur savoir s'il y a un " +"groupe qui se forme." + +#: meowth/__main__.py:7051 +#, fuzzy +msgid " {trainer_count} in the lobby{including_string}!" +msgstr "Meowth! {trainer_count} en chemin{including_string}!" + +#: meowth/__main__.py:7054 +msgid "" +"List each possible boss and the number of users that have RSVP'd for it.\n" +"\n" +" Usage: !list bosses\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7054 +msgid "bosses" +msgstr "" + +#: meowth/__main__.py:7093 +msgid "" +"{type}{name}: **{total} total,** {interested} interested, {coming} coming, " +"{here} waiting{type}\n" +msgstr "" + +#: meowth/__main__.py:7095 +msgid "" +" Boss numbers for the raid:\n" +"{}" +msgstr "" + +#: meowth/__main__.py:7097 +msgid " Nobody has told me what boss they want!" +msgstr "" + +#: meowth/__main__.py:7100 msgid "" -" including {trainer_list} and the people with them! Be considerate and let " -"them know if and when you'll be there" +"List the teams for the users that have RSVP'd to a raid.\n" +"\n" +" Usage: !list teams\n" +" Works only in raid channels." msgstr "" -" avec {trainer_list} et les personnes avec eux! Merci de préciser dans " -"combien de temps vous arrivez." -#: meowth.py:1203 -msgid "Meowth! {trainer_count} waiting at the raid{including_string}!" -msgstr "Meowth! {trainer_count} attend(ent) au raid{including_string}!" +#: meowth/__main__.py:7100 +msgid "teams" +msgstr "" + +#: meowth/__main__.py:7131 +msgid "" +"{emoji} **{total} total,** {interested} interested, {coming} coming, {here} " +"waiting {emoji}\n" +msgstr "" + +#: meowth/__main__.py:7134 +msgid "" +"**{grey_number} total,** {greymaybe} interested, {greycoming} coming, " +"{greyhere} waiting" +msgstr "" + +#: meowth/__main__.py:7138 +msgid "" +" Team numbers for the raid:\n" +"{}" +msgstr "" + +#: meowth/__main__.py:7140 +msgid " Nobody has updated their status!" +msgstr "" + +#: meowth/__main__.py:7143 +msgid "" +"List the wants for the user\n" +"\n" +" Usage: !list wants\n" +" Works only in the want channel." +msgstr "" + +#: meowth/__main__.py:7143 +msgid "wants" +msgstr "" + +#: meowth/__main__.py:7159 +msgid " Your current **!want** list is: ```{wantlist}```" +msgstr "" + +#: meowth/__main__.py:7161 +msgid " You don't have any wants! use **!want** to add some." +msgstr "" + +#: meowth/__main__.py:7164 +msgid "List the quests for the channel" +msgstr "" + +#: meowth/__main__.py:7182 meowth/__main__.py:7188 +msgid "" +"**Reward**: {reward}, **Pokestop**: [{location}]({url}), **Quest**: {quest}, " +"**Reported By**: {author}" +msgstr "" + +#: meowth/__main__.py:7184 +msgid "" +"Meowth! **Here's the current research reports for {channel}**\n" +"{questmsg}" +msgstr "" + +#: meowth/__main__.py:7192 +msgid "" +" **Here's the current research reports for {channel}**\n" +"{questmsg}" +msgstr "" + +#: meowth/__main__.py:7194 +msgid " There are no reported research reports. Report one with **!research**" +msgstr "" + +#: meowth/__main__.py:7197 +msgid "List the wilds for the channel" +msgstr "" + +#: meowth/__main__.py:7197 +msgid "wilds" +msgstr "" -#: meowth.py:1215 -msgid "Current Raids in {0}:" -msgstr "Raids actuels dans {0}:" +#: meowth/__main__.py:7215 +msgid "" +"**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: " +"{author}" +msgstr "" + +#: meowth/__main__.py:7217 +msgid "" +"Meowth! **Here's the current wild reports for {channel}**\n" +"{wildmsg}" +msgstr "" + +#: meowth/__main__.py:7221 +msgid "" +"**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: " +"{author}\n" +"**Location**: <{url}>" +msgstr "" -#: meowth.py:1229 -msgid "{0.mention} - interested = {1}, {2} = {3}, {4} = {5}, Ends at {6}" -msgstr "{0.mention} - intéressé(s) = {1}, {2} = {3}, {4} = {5}, Fini à {6}" +#: meowth/__main__.py:7225 +msgid "" +" **Here's the current wild reports for {channel}**\n" +"{wildmsg}" +msgstr "" -#: meowth.py:1232 -msgid "Meowth! No active raids! Report one with **!raid **." +#: meowth/__main__.py:7227 +#, fuzzy +msgid "" +" There are no reported wild pokemon. Report one with **!wild " +"**" msgstr "" "Meowth! Il n'y a pas de raids actifs! Signaler un avec: **!raid **." -#: meowth.py:1263 +#: meowth/errors.py:140 +msgid "Meowth! I'm missing some details! Usage: {prefix}{command}" +msgstr "" + +#: meowth/errors.py:173 msgid "" -"Meowth! The group that was waiting is starting the raid! Trainers " -"{trainer_list}, please respond with {here_emoji} or !here if you are waiting " -"for another group!" +"Meowth! Team Management is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." msgstr "" -"Meowth! Le groupe qui attendait vient de lancer le raid! Joueurs " -"{trainer_list}, merci de répondre avec {here_emoji} ou avec **!here** si " -"vous faites un autre groupe!" -#: meowth.py:1265 -msgid "Meowth! How can you start when there's no one waiting at this raid!?" +#: meowth/errors.py:178 +msgid "" +"Meowth! Pokemon Notifications are not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." msgstr "" -"Meowth! Comment pouvez-vous commencer quand il n'y a personne en attente " -"pour ce raid!?" -#: meowth.py:1272 +#: meowth/errors.py:183 msgid "" -"Meowth! Hey {member}, I don't know if you meant **!coming** to say that you " -"are coming or **!otw** to see the other trainers on their way" +"Meowth! Wild Reporting is not enabled on this server. **{prefix}{cmd_name}** " +"is unable to be used." msgstr "" -"Meowth! {member}, je ne sais pas si vous vouliez dire **!coming** pour dire " -"que vous venez ou **!otw** pour voir les autres joueurs en route." -#: meowth.py:1277 +#: meowth/errors.py:188 msgid "" -"Meowth! Hey {member}, I don't know if you meant **!maybe** to say that you " -"are interested or **!interest** to see the other trainers interest" +"Meowth! Reporting is not enabled for this channel. **{prefix}{cmd_name}** is " +"unable to be used." msgstr "" -"{membre}, je ne sais pas si vous vouliez dire **!maybe** pour dire que vous " -"êtes intéressé(e) ou **!interest** pour voir l'intérêt des autres joueurs." -#: meowth.py:1296 +#: meowth/errors.py:193 msgid "" -"This channel has been reported as a duplicate and has been deactivated. " -"Check the channel list for the other raid channel to coordinate in! If this " -"was an error you can reset the raid with **!timerset**" +"Meowth! Raid Management is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." msgstr "" -"Ce salon a été signalé comme une duplication et a été désactivé. Vérifiez la " -"liste des salons pour l'autre salon de raid à coordonner! S'il s'agissait " -"d'une erreur, vous pouvez réinitialiser le raid avec **!timerset**" -#: meowth.py:1320 +#: meowth/errors.py:198 msgid "" -"Meowth! We're missing the new location details! Usage: **!location " -"**" +"Meowth! EX Raid Management is not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." msgstr "" -"Meowth! Nous manquons les détails du nouvel emplacement! Utilisez: **!" -"location **" -#: meowth.py:1338 +#: meowth/errors.py:203 msgid "" -"Meowth! Someone has suggested a different location for the raid! Trainers " -"{trainer_list}: make sure you are headed to the right place!" +"Meowth! Research Reporting is not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:208 +msgid "" +"Meowth! Meetup Reporting is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." +msgstr "" + +#: meowth/errors.py:213 +msgid "" +"Meowth! Channel Archiving is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." +msgstr "" + +#: meowth/errors.py:218 +msgid "" +"Meowth! EX Raid Invite is not enabled on this server. **{prefix}{cmd_name}** " +"is unable to be used." +msgstr "" + +#: meowth/errors.py:224 meowth/errors.py:419 meowth/errors.py:436 +#: meowth/errors.py:453 +msgid "Meowth! Please use **{prefix}{cmd_name}** in " +msgstr "" + +#: meowth/errors.py:227 meowth/errors.py:354 meowth/errors.py:371 +#: meowth/errors.py:388 meowth/errors.py:405 meowth/errors.py:422 +#: meowth/errors.py:439 meowth/errors.py:456 +msgid "a Region report channel." +msgstr "" + +#: meowth/errors.py:229 meowth/errors.py:356 meowth/errors.py:373 +#: meowth/errors.py:390 meowth/errors.py:407 meowth/errors.py:424 +#: meowth/errors.py:441 meowth/errors.py:458 +msgid "one of the following region channels:" +msgstr "" + +#: meowth/errors.py:241 +msgid "Meowth! Please use **{prefix}{cmd_name}** in the following channel" +msgstr "" + +#: meowth/errors.py:244 +msgid "s:\n" +msgstr "" + +#: meowth/errors.py:246 +msgid ": " +msgstr "" + +#: meowth/errors.py:262 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in a Raid channel. Use **{prefix}" +"list** in any " +msgstr "" + +#: meowth/errors.py:265 meowth/errors.py:282 meowth/errors.py:335 +msgid "Region report channel to see active raids." +msgstr "" + +#: meowth/errors.py:267 meowth/errors.py:284 meowth/errors.py:337 +msgid "of the following Region channels to see active raids:" +msgstr "" + +#: meowth/errors.py:279 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in an Egg channel. Use **{prefix}" +"list** in any " +msgstr "" + +#: meowth/errors.py:295 +msgid "Meowth! **{prefix}{cmd_name}** can't be used in a Raid channel." +msgstr "" + +#: meowth/errors.py:301 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in an Active Raid channel. Use " +"**{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:310 +msgid "Region report channel to see active channels." +msgstr "" + +#: meowth/errors.py:312 +msgid "of the following Region channels to see active channels:" +msgstr "" + +#: meowth/errors.py:320 meowth/errors.py:345 +msgid "" +"\n" +"This is an egg channel. The channel needs to be activated with **{prefix}" +"raid ** before I accept commands!" +msgstr "" + +#: meowth/errors.py:326 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in an Active channel. Use " +"**{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:351 +msgid "Meowth! Please use **{prefix}{cmd_name}** in either a Raid channel or " msgstr "" -"Quelqu'un a suggéré un lieu différent pour le raid! Joueurs {trainer_list}: " -"assurez-vous d'aller au bon endroit!" + +#: meowth/errors.py:368 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in either a Raid Egg channel or " +msgstr "" + +#: meowth/errors.py:385 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in either a EX Raid channel or one " +"of the following region channels:" +msgstr "" + +#: meowth/errors.py:402 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in a EX Raid channel. Use " +"**{prefix}list** in any of the following region channels to see active raids:" +msgstr "" + +#~ msgid "" +#~ "Meowth! \"{entered_word}\" is not a Pokemon! Did you mean " +#~ "\"{corrected_word}\"?" +#~ msgstr "" +#~ "Meowth! \"{entered_word}\" n'est pas un Pokémon! Voulez-vous dire " +#~ "\"{corrected_word}\"?" + +#~ msgid "Meowth! That's right!" +#~ msgstr "Meowth! Aucun soucis!" + +#~ msgid "" +#~ "Meowth! That's right! I've been rebooted! You don't need to do anything " +#~ "this time, but you may find some commands don't respond in currently " +#~ "active channels, or the channels may not delete as expected. Sorry for " +#~ "any inconvenience!" +#~ msgstr "" +#~ "Meowth! J'ai été redémarré! Vous n'avez pas besoin de faire de quoi cette " +#~ "fois, mais c'est possible que certaines commandes ne fonctionnent pas " +#~ "dans les salons actuellement actifs, ou les salons peuvent ne pas " +#~ "supprimer comme prévu. Désolé pour tout inconvénient!" + +#~ msgid "" +#~ "Meowth! Team assignments enabled! Please make sure that my role is moved " +#~ "to the top of your server role hierarchy, or at least above your team " +#~ "roles. Your team roles must be 'mystic', 'valor', and 'instinct' and " +#~ "*must* be lowercase. I should have made some for you if you didn't have " +#~ "them, you can set their colors and other settings later." +#~ msgstr "" +#~ "Meowth! Les affectations d'équipe sont activées! Assurez-vous que mon " +#~ "rôle est déplacé vers le haut de votre hiérarchie de rôle de serveur, ou " +#~ "au moins au-dessus de vos rôles d'équipe. Les rôles de vos équipes " +#~ "doivent être «mystic», «valor» et «instinct» en anglais et *doivent* être " +#~ "en minuscules. J'aurais dû en faire quelques-unes si vous ne les avez " +#~ "pas, vous pouvez régler leurs couleurs et autres paramètres plus tard." + +#~ msgid "" +#~ "**Welcome Message Configuration**\n" +#~ "\n" +#~ "Next, I have a feature where I welcome new members to the server with a " +#~ "short welcome message in a channel or with a direct message. If you have " +#~ "a bot that handles this already, or if you don't want this feature, type " +#~ "N, otherwise type Y to enable this feature!" +#~ msgstr "" +#~ "**Configuration des messages de bienvenue**\n" +#~ "\n" +#~ "Ensuite, j'ai une fonctionnalité où j'accueille de nouveaux membres au " +#~ "serveur avec un petit message de bienvenue dans un salon ou avec un " +#~ "message direct. Si vous avez déjà un robot qui le gère, ou si vous ne " +#~ "voulez pas cette fonctionnalité, tapez N, sinon tapez Y pour activer " +#~ "cette fonctionnalité!" + +#~ msgid "" +#~ "Sample message:```Meowth! Welcome to [SERVER], @[MEMBER]! If you have any " +#~ "questions just ask an admin.```" +#~ msgstr "" +#~ "Exemple de message:```Meowth! Bienvenue sur [SERVER], @[MEMBER]! Si vous " +#~ "avez des questions, demandez à un administrateur.```" + +#~ msgid "" +#~ "Meowth! Welcome message enabled!\n" +#~ "\n" +#~ "**Welcome Message Channel Configuration**\n" +#~ "\n" +#~ "Now I need to know what channel you want me to post these welcome " +#~ "messages in. Reply with a channel name or 'DM' if you would rather I " +#~ "direct message the user." +#~ msgstr "" +#~ "Meowth! Message de bienvenue activé!\n" +#~ "\n" +#~ "**Configuration du salon de message de bienvenue**\n" +#~ "\n" +#~ "Maintenant, j'ai besoin de savoir dans quel salon vous voulez publier ces " +#~ "messages de bienvenue. Répondez avec le nom du salon, ou avec «DM» si " +#~ "vous préférez que je communique directement avec l'utilisateur." + +#~ msgid "" +#~ "**Main Function Configuration**\n" +#~ "\n" +#~ "Meowth! Alright. Next I just want to check that you want to enable *any* " +#~ "of my main functions. These include assigning roles for each Pokemon a " +#~ "user wants, wild spawn reports, creating channels for raids, and keeping " +#~ "track of users coming to each raid. If you don't want me to do *any* of " +#~ "that, type N, otherwise type Y to start enabling my main functions!" +#~ msgstr "" +#~ "**Configuration de la fonction principale**\n" +#~ "\n" +#~ "Meowth! Bien. Ensuite, je veux simplement vérifier que vous voulez " +#~ "activer *toutes* mes principales fonctions. Ceux-ci incluent " +#~ "l'attribution de rôles pour chaque Pokémon qu'un utilisateur voudrait, " +#~ "les rapports de Pokémon sauvages, la création de salons pour les raids et " +#~ "le suivi des utilisateurs qui arrivent à chaque raid. Si vous ne voulez " +#~ "pas que je fasse au moins *un* de cela, tapez N, sinon tapez Y pour " +#~ "commencer à activer mes principales fonctions!" + +#~ msgid "" +#~ "Meowth! Okay. Now make sure that I have either an admin role on your " +#~ "server, or at least a role with these permissions: 'read messages', 'send " +#~ "messages', 'embed links', 'manage roles', and 'manage channels'. Also, " +#~ "check if my role is at the top of your server role hierarchy." +#~ msgstr "" +#~ "Meowth! D'accord. Maintenant, assurez-vous que j'ai un rôle " +#~ "d'administration sur votre serveur, ou au moins un rôle avec ces " +#~ "autorisations: «lire les messages», «envoyer des messages», «intégrer des " +#~ "liens», «gérer les rôles» et «gérer les salons». Vérifiez également si " +#~ "mon rôle est au sommet de votre hiérarchie de rôle de serveur." + +#~ msgid "" +#~ "**City Channel Configuration**\n" +#~ "\n" +#~ "Meowth! Next, I need to know which channels will be used for raid and/or " +#~ "wild reports. If your server covers only one community, that's probably " +#~ "your server's default channel. If you cover multiple communities, you " +#~ "should probably have a channel for each community that only those with " +#~ "roles for that community can see. Otherwise your users could be spammed " +#~ "with notifications for raids that are not relevant to them!" +#~ msgstr "" +#~ "**Configuration des salons de villes**\n" +#~ "\n" +#~ "Meowth! Ensuite, je dois savoir quels salons seront utilisés pour les " +#~ "rapports de raid et/ou Pokémon sauvages. Si votre serveur ne couvre " +#~ "qu'une seule communauté, c'est probablement le salon par défaut de votre " +#~ "serveur. Si vous couvrez plusieurs communautés, vous devriez probablement " +#~ "avoir un salon pour chaque communauté que seuls ceux qui ont des rôles " +#~ "pour cette communauté peuvent voir. Sinon, vos utilisateurs pourraient " +#~ "être «spammés» avec des notifications de raids qui ne leur sont pas " +#~ "pertinentes!" + +#~ msgid "" +#~ "Here's what I need: a list of channels in your server that will be used " +#~ "for raid and/or wild reports. Give them in this format: channelname, " +#~ "channelname, channelname" +#~ msgstr "" +#~ "Voici ce que j'ai besoin: une liste des salons dans votre serveur qui " +#~ "sera utilisé pour les rapports de raids et/ou Pokémon sauvages. Donnez-" +#~ "les dans ce format: nom-de-salon, nom-de-salon, nom-de-salon" + +#~ msgid "" +#~ "In other words, the name of each channel, each separated by a comma and a " +#~ "single space. If you do not require raid and wild reporting and are only " +#~ "requiring want/unwant, reply with 'N'; however, want/unwant is quite " +#~ "limited without raid or wild reporting." +#~ msgstr "" +#~ "En d'autres termes, le nom de chaque salon, chacun séparé par une virgule " +#~ "et un espace unique. Si vous n'avez pas besoin de raid et de rapports " +#~ "sauvages et ne requiert que «want/unwant», répondez avec N; Cependant, le " +#~ "«want/unwant» est assez limité sans raid ou rapports sauvages." + +#~ msgid "" +#~ "Meowth! Great! Looks like all of these are names of channels in your " +#~ "server." +#~ msgstr "" +#~ "Meowth! Génial! On dirait que tous ces noms sont des noms des salons dans " +#~ "votre serveur." + +#~ msgid "" +#~ "Meowth! Something went wrong! Please type !configure to start over! Make " +#~ "sure the channels above are created already!" +#~ msgstr "" +#~ "Meowth! Il y a eu un problème! Tapez **!configure** pour recommencer! " +#~ "Assurez-vous que les salons ci-dessus sont déjà créés!" + +#~ msgid "" +#~ "**City Location Configuration**\n" +#~ "\n" +#~ "Meowth! Alright, we need to set starting locations for each of the " +#~ "channels you just mentioned in the SAME ORDER you typed before. This is " +#~ "what I use to generate Google Maps links to give people directions to " +#~ "raids and spawns! Knowing what town everything is in is often good enough " +#~ "to narrow it down. One way to put it is, for each channel you just " +#~ "listed, I need a location specific enough that I'll know hich First " +#~ "Baptist Church people mean. This is important, so please enter it in just " +#~ "this way. For each channel, give me a location using only letters, no " +#~ "punctuation. So something like 'kansas city mo' or 'hull uk' without the " +#~ "quotes and separate your locations with a comma and single space." +#~ msgstr "" +#~ "**Configuration des emplacements des villes**\n" +#~ "\n" +#~ "Meowth! D'accord, nous devons définir les emplacements de départ pour " +#~ "chacun des salons que vous venez de mentionner dans le MÊME ORDRE que " +#~ "vous avez tapé auparavant. C'est ce que j'utilise pour générer des liens " +#~ "Google Maps pour donner aux gens des instructions pour se rendre aux " +#~ "raids et aux Pokémon sauvages! Savoir dans quelle ville tout se trouve " +#~ "est souvent assez. Une façon de le dire est que, pour chaque salon que " +#~ "vous venez d'énumérer, j'ai besoin d'un emplacement précis pour savoir " +#~ "quelle Église Baptiste les gens font référence. Ceci est important, " +#~ "alors, inscrivez-le de cette façon. Pour chaque chaîne, donnez-moi un " +#~ "emplacement en utilisant uniquement des lettres, pas de ponctuation. " +#~ "Donc, quelque chose comme «laval qc» ou «Hull Royaume-Uni» sans " +#~ "guillemets et séparez vos emplacements avec une virgule et un espace " +#~ "unique." + +#~ msgid "" +#~ "Meowth! There weren't the same number of cities and channels! Please " +#~ "type !configure to start over!" +#~ msgstr "" +#~ "Meowth! Il n'y avait pas le même nombre de villes et de salons! Tapez **!" +#~ "configure** pour recommencer!" + +#~ msgid "" +#~ "**Raid Command**\n" +#~ "\n" +#~ "Meowth! Alright. Do you want raid reports in these channels? Reply with " +#~ "'Y' to enable !raid reports, or 'N' to disable !raid" +#~ msgstr "" +#~ "**Commande de raid**\n" +#~ "\n" +#~ "Meowth! Bien. Voulez-vous des rapports de raid dans ces salons? Réponde " +#~ "avec 'Y' pour activer les rapports de **!raid**, ou 'N' pour désactiver " +#~ "**!raid**." + +#~ msgid "" +#~ "**Timezone Configuration**\n" +#~ "\n" +#~ "Meowth! Ok, to finish the raid configuration I need to know what timezone " +#~ "you're in! This will help me coordinate raids for you. The current 24-hr " +#~ "time UTC is {utctime}. How many hours off from that are you? Please enter " +#~ "your answer as a number between -12 and 12." +#~ msgstr "" +#~ "**Configuration de la fuseau horaire**\n" +#~ "\n" +#~ "Meowth! Ok, pour terminer la configuration du raid, j'ai besoin de savoir " +#~ "dans quel fuseau horaire vous êtes! Cela m'aidera à coordonner des raids " +#~ "pour vous. Le UTC actuel de 24 heures est {utctime}. À combien d'heures " +#~ "de différence êtes-vous? Entrez votre réponse avec un nombre entre -12 et " +#~ "12." + +#~ msgid "" +#~ "Meowth! I couldn't convert your answer to a number! Type !configure in " +#~ "your server to start again." +#~ msgstr "" +#~ "Meowth! Je n'ai pas pu convertir votre réponse à un nombre! Tapez **!" +#~ "configure** dans votre serveur pour recommencer." + +#~ msgid "" +#~ "**Wild Command**\n" +#~ "\n" +#~ "Meowth! Alright. Do you want wild reports in these channels? Reply with " +#~ "'Y' to enable !wild reports, or 'N' to disable !wild" +#~ msgstr "" +#~ "**Commande pour Pokémon sauvages**\n" +#~ "\n" +#~ "Meowth! Bien. Voulez-vous des rapports sauvages dans ces salons? Répondre " +#~ "avec 'Y' pour activer les rapports **!wild**, ou 'N' pour les désactiver." + +#~ msgid "" +#~ "Meowth! Ok. Time to do one last check that I have either an admin role on " +#~ "your server, or at least a role with these permissions: 'read messages', " +#~ "'send messages', 'embed links', 'manage roles', and 'manage channels'. " +#~ "Also, check if my role is at the top of your server role hierarchy. You " +#~ "can restrict me to specific channels by editing channel-specific " +#~ "permissions if you like.\n" +#~ "\n" +#~ "**Want/Unwant Configuration**\n" +#~ "\n" +#~ "The last thing you should know is that the !want and !unwant commands can " +#~ "produce a lot of clutter if they are allowed on your main channels. I " +#~ "suggest having a dedicated channel for want and unwant. Just type the " +#~ "name or names of the channel(s) you want me to allow. If you type " +#~ "something that isn't a name of an existing channel, I'll create one by " +#~ "that name. If you do not want to enable want/unwant, reply with 'N'. " +#~ msgstr "" +#~ "Meowth! D'accord. C'est le temps de faire une dernière vérification que " +#~ "j'ai un rôle d'administrateur sur votre serveur, ou au moins un rôle avec " +#~ "ces permissions:«lire les messages», «envoyer des messages», «intégrer " +#~ "des liens», «gérer les rôles» et «gérer les salons». Vérifiez également " +#~ "si mon rôle est au sommet de votre hiérarchie de rôle de serveur. Vous " +#~ "pouvez me limiter à des salons spécifiques en modifiant les permissions " +#~ "spécifiques du salon si vous le souhaitez.\n" +#~ "\n" +#~ "**Configuration want/unwant**\n" +#~ "\n" +#~ "La dernière chose que vous devriez savoir, c'est que les commandes **!" +#~ "want** et **!unwant** peuvent produire beaucoup d'encombrement s'ils sont " +#~ "autorisés dans les salons principaux. Je suggère d'avoir un salon dédié " +#~ "pour want/unwant. Tapez simplement le nom ou les noms des salons que vous " +#~ "souhaitez que je permette. Si vous tapez quelque chose qui n'est pas un " +#~ "nom d'un salon existant, je vais en créer un avec ce nom. Si vous ne " +#~ "voulez pas activer la commande want/unwant, répondez avec N." + +#~ msgid "" +#~ "Meowth! You didn't give me enough permissions! Type !configure to start " +#~ "over!" +#~ msgstr "" +#~ "Meowth! Vous ne m'avez pas donné suffisamment de permissions! Tapez **!" +#~ "configure** pour recommencer!" + +#~ msgid "Meowth! Okay. All of my main functions have been disabled." +#~ msgstr "" +#~ "Meowth! D'accord. Toutes mes principales fonctions ont été désactivées." + +#~ msgid "" +#~ "**Emojis**\n" +#~ "\n" +#~ "Meowth! Alright! I'm ready to go! One more thing. I like to use custom " +#~ "emoji for certain things, especially for displaying type weaknesses for " +#~ "raid bosses! I'm going to send you a .rar file that contains all the " +#~ "emoji I need. There are 23 in all. All you have to do is download, " +#~ "extract, and upload the images to Discord as custom emoji. You can do " +#~ "this all at once, and you can just leave the emoji titles alone!\n" +#~ "\n" +#~ "By the way: if you need to change any of these settings, just type !" +#~ "configure in your server and we can do this again." +#~ msgstr "" +#~ "**Émojis**\n" +#~ "\n" +#~ "Meowth! Bien! Je suis prêt à partir! Encore une chose. J'aime utiliser " +#~ "des émojis personnalisés pour certaines choses, en particulier pour " +#~ "afficher les faiblesses pour les Pokémon de raid! Je vais vous envoyer un " +#~ "fichier .rar qui contient tous les émojis dont j'ai besoin. Il y en a 23 " +#~ "au total. Tout ce que vous avez à faire est de télécharger les émojis sur " +#~ "votre ordinateur, de les extraire et de télécharger les images sur " +#~ "Discord comme émoji personnalisé (dans les paramètres du serveur). Vous " +#~ "pouvez le faire tout à la fois, et vous pouvez simplement ne pas changer " +#~ "les titres de ces émojis!\n" +#~ "\n" +#~ "Si vous devez changer l'un de ces paramètres, tapez !configure dans votre " +#~ "serveur et nous pouvons le faire à nouveau." + +#~ msgid "" +#~ "WARNING: no default channel configured. Unable to send welcome message." +#~ msgstr "" +#~ "ATTENTION: aucun salon par défaut n'est configuré. Impossible d'envoyer " +#~ "le message de bienvenue." + +#~ msgid "" +#~ "WARNING: Role {team_role} in team_dict not configured as a role on the " +#~ "server!" +#~ msgstr "" +#~ "ATTENTION: Le rôle {team_role} dans team_dict n'est pas configuré comme " +#~ "un rôle sur le serveur!" + +#~ msgid "" +#~ "Meowth! Please use one of the following channels for **!want** commands: " +#~ "{want_channel_list}" +#~ msgstr "" +#~ "Meowth! Utilisez l'un des salons suivants pour les commandes **!want **: " +#~ "{want_channel_list}" + +#~ msgid "" +#~ "Meowth! Please restrict wild reports to city channels or the default " +#~ "channel!" +#~ msgstr "" +#~ "Meowth! Limitez les rapports sauvages aux salons de la ville ou dans le " +#~ "salon par défaut!" + +#~ msgid "This is just my best guess!" +#~ msgstr "Voici ma meilleure suggestion!" + +#~ msgid "" +#~ "Meowth! Please restrict raid reports to a city channel or the default " +#~ "channel!" +#~ msgstr "" +#~ "Meowth! Veuillez limiter les rapports de raid à un salon de ville ou dans " +#~ "le salon par défaut!" + +#~ msgid "" +#~ "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " +#~ "Coordinate here!\n" +#~ "\n" +#~ "Reply to this message with **!coming** (`!coming [number]` for trainers " +#~ "with you) to say you are on your way, and reply with **!here** once you " +#~ "arrive.\n" +#~ "If you are at the raid already, reply with **!here** (`!here [number]` " +#~ "for trainers with you).\n" +#~ "If you are interested in the raid and want to wait for a group, use **!" +#~ "maybe**.\n" +#~ "If your plans change, reply with **!cancel** if you are no longer on the " +#~ "way or if you have left the raid.\n" +#~ "You can set the time remaining with **!timerset H:MM** and access this " +#~ "with **!timer**.\n" +#~ "\n" +#~ "You can see the list of trainers interested with **!interest**, trainers " +#~ "on their way with **!otw**, trainers at the raid with **!waiting**, or " +#~ "all lists with **!lists**.\n" +#~ "Once you start a raid, use **!starting** to clear the waiting list to " +#~ "allow the next group to coordinate.\n" +#~ "\n" +#~ "Sometimes I'm not great at directions, but I'll correct my directions if " +#~ "anybody sends me a maps link.\n" +#~ "\n" +#~ "This channel will be deleted in 2 hours or five minutes after the timer " +#~ "expires." +#~ msgstr "" +#~ "Meowth! Raid de {pokemon} rapporté par {member}! Détails: " +#~ "{location_details}. Coordonnez ici!\n" +#~ "\n" +#~ "Répondez à ce message avec **!coming** (`!coming [chiffre]` pour les " +#~ "joueurs avec vous) pour dire que vous êtes sur votre chemin.\n" +#~ "Une fois que vous arrivez, ou si vous êtes déjà au raid, répondez avec **!" +#~ "here** (`!here [chiffre]` pour les joueurs avec vous).\n" +#~ "Si vous êtes intéressé(e) par le raid et souhaitez attendre un groupe, " +#~ "utilisez **!maybe**.\n" +#~ "Si vos plans changent, répondez avec **!cancel** si vous n'êtes plus sur " +#~ "le chemin ou si vous avez quitté le raid.\n" +#~ "Vous pouvez régler le temps restant avec **!timerset H:MM** et voir le " +#~ "temps restant avec **!timer**.\n" +#~ "\n" +#~ "Vous pouvez voir la liste des joeurs intéressés avec **!interest**, les " +#~ "joueurs en route avec **!otw**, le joueurs au raid avec **!waiting**, ou " +#~ "toutes ces listes ensemble avec **!lists**.\n" +#~ "Une fois que vous démarrez un raid, utilisez **!starting** pour effacer " +#~ "la liste d'attente pour permettre au prochain groupe de se coordonner.\n" +#~ "\n" +#~ "Parfois, je ne suis pas bon avec les directions, mais je vais corriger " +#~ "mes directions si quelqu'un m'envoie un lien de Google Maps.\n" +#~ "\n" +#~ "Ce salon sera supprimé dans 2 heures si aucun temps d'expiration a été " +#~ "spécifié pour le raid." + +#~ msgid "Meowth! {member}, I already know you don't want {pokemon}!" +#~ msgstr "Meowth! {member}, je sais déjà que vous ne voulez pas {pokemon}!" + +#~ msgid "Meowth! Got it! {member} no longer wants {pokemon}" +#~ msgstr "Meowth! Compris! {member} ne cherche plus {pokemon}!" + +#~ msgid "Meowth...I can't do that! No negative numbers, please!" +#~ msgstr "" +#~ "Meowth... Je ne peux pas faire ça! Pas de chiffres négatifs, s'il vous " +#~ "plaît!" + +#~ msgid "" +#~ "Meowth! Someone has suggested a different location for the raid than what " +#~ "I guessed! Trainers {trainer_list}: make sure you are headed to the right " +#~ "place!" +#~ msgstr "" +#~ "Meowth! Quelqu'un a suggéré un lieu différent pour le raid que ce que " +#~ "j'ai supposé! Joueurs {trainer_list}: assurez-vous d'aller au bon endroit!" + +#~ msgid "" +#~ "Meowth! Exactly *how many* are interested? There wasn't a number anywhere " +#~ "in your message. Or, just say `!maybe` if you're by yourself." +#~ msgstr "" +#~ "Meowth! Exactement *combien* sont intéressés? Il n'y avait aucun numéro " +#~ "dans votre message. Ou dites simplement **!maybe** si vous êtes seul." + +#~ msgid "" +#~ "Meowth...I got confused because there were several numbers in your " +#~ "message. I don't know which one is the right one." +#~ msgstr "" +#~ "Meowth... Je me suis confondu parce qu'il y avait plusieurs chiffres dans " +#~ "votre message. Je ne sais pas lequel est le bon." + +#~ msgid "" +#~ "Meowth! Exactly *how many* are coming? There wasn't a number anywhere in " +#~ "your message. Or, just say **!coming** if you're by yourself." +#~ msgstr "" +#~ "Meowth! Exactement *combien* arrivent-ils? Il n'y avait aucun numéro dans " +#~ "votre message. Ou dites simplement **!coming ** si vous êtes seul." + +#~ msgid "" +#~ "Meowth! Exactly *how many* are here? There wasn't a number anywhere in " +#~ "your message. Or, just say **!here** if you're by yourself." +#~ msgstr "" +#~ "Meowth! Exactement *combien* sont-ils ici? Il n'y avait aucun numéro dans " +#~ "votre message. Ou dites simplement **!here ** si vous êtes seul." + +#~ msgid "Current Raids in {0}:" +#~ msgstr "Raids actuels dans {0}:" + +#~ msgid "{0.mention} - interested = {1}, {2} = {3}, {4} = {5}, Ends at {6}" +#~ msgstr "{0.mention} - intéressé(s) = {1}, {2} = {3}, {4} = {5}, Fini à {6}" + +#~ msgid "" +#~ "Meowth! Hey {member}, I don't know if you meant **!coming** to say that " +#~ "you are coming or **!otw** to see the other trainers on their way" +#~ msgstr "" +#~ "Meowth! {member}, je ne sais pas si vous vouliez dire **!coming** pour " +#~ "dire que vous venez ou **!otw** pour voir les autres joueurs en route." + +#~ msgid "" +#~ "Meowth! Hey {member}, I don't know if you meant **!maybe** to say that " +#~ "you are interested or **!interest** to see the other trainers interest" +#~ msgstr "" +#~ "{membre}, je ne sais pas si vous vouliez dire **!maybe** pour dire que " +#~ "vous êtes intéressé(e) ou **!interest** pour voir l'intérêt des autres " +#~ "joueurs." #~ msgid "a member of {0}" #~ msgstr "un membre de {0}" @@ -905,9 +4841,6 @@ msgstr "" #~ msgid "an admin" #~ msgstr "un admin" -#~ msgid " or " -#~ msgstr " ou " - #~ msgid " Then head over to {3.mention} to get caught up on what's happening!" #~ msgstr "" #~ "Ensuite, aller sur {3.mention} pour être mis au courant de ce qui se " @@ -922,15 +4855,5 @@ msgstr "" #~ msgid "Error occured while trying to write file!" #~ msgstr "Une erreur est survenue lors de l'écriture du fichier !" -#~ msgid "" -#~ "Meowth! {0} raid reported by {1}! Details: {2}. Coordinate here! Reply " -#~ "(not react) to this message with {3} to say you are on your way, or {4} " -#~ "if you are at the raid already!" -#~ msgstr "" -#~ "Meowth! Un raid {0} a été reporté par {1} ! Détails : {2}. Instructions " -#~ "ici ! Merci de répondre (ne pas réagir) à ce message avec {3} pour " -#~ "informer que vous êtes en chemin, ou avec {4} si vous êtes déjà sur " -#~ "place !" - #~ msgid "No expiration time set!" #~ msgstr "Pas d'heure d'expiration prévue !" diff --git a/locale/it/LC_MESSAGES/meowth.mo b/locale/it/LC_MESSAGES/meowth.mo index 1bc9d80a97f033ab3ba43a890708cead902a8346..5239f90c72b0e7ae89e963067394c278d1fd1800 100644 GIT binary patch delta 799 zcmX}qPe_w-7{Kvowsg+Qr7f2$d`+F2ZkDSiSz(|AP2?9BA4I-HB#h@Uk9RSJzGWiA);zlLJvQJ6+=nK1VK<8r9LFTiIGWfZ zQj{ahMS57cfVKDnui!_V#8j#M!$piy?<})7IF84uZ{Z*=VJ{x?h_s?&8_uCM{{y#T zXSv889L2P&C~}`cI}_dtkr9mH5Z-Y#k!MR{g?*wS+)u3-#ZTCb6)QzD7{x5!#ya$@ zvcKPg8>z=|2B+~7&zESW$T56|-B{@p31J@|#sVhrC3a%J~Rm(y#{TzzxQtOmH35PV>QLY1#$NH^fQ5QD*b^8{ddb{?jxvPIRw|lsx zG?&j$6h^eMe}`U<_vp2wC-rCIyP8R#Mox_C!r(m(rziE@sq6YG)2xXz5A@C1M>>~n I(6;mOzrCw_X#fBK literal 31166 zcmd^|Ym6kAzJY|G==)*~b(zf`SZKJ41MamljP&N4*l|{d_r4=Z+R#ntqtL$+KL2+3{C}W7&GjSiOp-qj{dMSHfIj{MNwNX`=YhWS2f2sO zL+Jg`Ux1#0{x(#6xDTfMWnG8941Ms2ljH>SSD-YJ{150R^esPx6FhU&R9?@E%B z(62&&4EjSUJcGAW=qjJT#AM$NAN~k>me1euz9d5I^Z z-jF1}15Mw^7sufrpIfJx8_$mz?BC$>#z&ImZG8SF^d$6+XOiS!aD5G7+ynjov#$5= zgZ^ti{{-|I?tA2%HJN3%v^%>{;CiEdbe+G&QCBGT2e;xYse7^Srwg&wY zRG&X`F-f+eUx!|SUfggy`KQo#@%ay+vWGV#gueq_hkh3N-=Mz){nT?lp7!%e@@_tl zpyJDCp={|^0O=&4V*zILH{{%6AHe*%3UpZ^G&Lhpn5AAmjzy$?EswxK@_U4s4^^f%v> zB>x_Ina{ttgRg?V=|%V74?{K2O(-go{2cTU^bet@q3;^Gz4V}{Qu2FH-S_^nU*CuR zCq91@D!cpY1l~dKnI_3Ufc{6Q`1MzJUC)05ipY|C_S|obq5m1aeFm!jcCRK0AI&x- z2gGXQ{nOARyri?uAHEL`}WKp%o44&%e)&=b5q!b?Bz;B~LP^IwlZG(P>nCgc4( z?UVodLC9MhpZ^T+C6Bl9`fgtL@RI)i2rpcr{d|buPw{$-eR95Jyhqi{XFeaUi+l&K zkMe5qdM~dvUJvjRkM;8&Uec5Jvl`z(@8k7$UT@|l8R`e~NEUeEzU)UffXZ6Tc|Y`& zU3D3!;l1=E{v76w< z1H9r-H@x`)C?V5gS^Vx{-Yka?_d}2Il8$4-$@lTP!0Sm~Pw@I)Uec2!UE4~pmeX`Q z+s)H#cr|@-nvW+%IUJ{-n2slDHon5;H0utEVLM5SVW&Us7Qe5j!; z_WS8(uJ1?r>($|2R!q{Za^$_z;Z8Xo7n}W8*TI?j;oDf#Vw`4aZ&Xfq)D`^dB}+@k zi^*cg48}dC!;Kbd>Luqsh1(WI9U6`DiyE!G3;^({k9q$}fpyFqjS* z*fRXcCX3^AXH;%xn|uxb<6~Uz=3CjcKZ#?A4SR#>fUgP(JGNKk<7HE(@pd_7JXNc% zT(KD&e4c4;aUeDhAK+xW90&awmHm7i#FjCN>h2C2InMKTdQP0*D|o;L4r`ca$2v!a z#yiiF_Fw@6753`A{mt*o&dva`EW;$@JWX6DKd& zO_QrTe7BjS25@0x8`b0A9>PS4;DW~A%dt*b-08CHA*Jg z@{Zd)-#A-jrtoiXIBumM#Y!~;YkyMi4bvQjx;oj`MRh&Y?{aH`0r$$Xo94rE+Qa_K zbeN4sGVw{;q=$-9+lWEB?~T;7pDtIlll zavtVX%yv!{BV5?AY-d6BW)`2f6dIUtG!4#Vgrx zoT0|@9D{N(rK`p5DHEGsSu|ZP;hgm5#c4UgKulEmPG-V3JE&F7R6jG*$^1r!gfbx7 zPToelPY%jY6yv5Z3X0rH*A@pDMAkKF^~#nBZ-BnNa~E;WLJjycpOaLyxS&jI!6OFlwN7K!mk|N zl!jz!dz6jRt%3>3kulAodW0o#OC0jSxL=j92`Q;;{m4U-DR;Hgqui>-%ttYmZYgD! zw)V>m&BHT~vJQG7HcxkS(V8v>S&yOe#ED|uDMz?sWY*w8JAHv><*I1XG)JRil;yCK zdvoenH@K?j3c>ZLC&fhWFYDt6S_=!u5Cbzp`&Jb(^=Nc63K2bz-tJM52Che52ew<| z#^DzHvG|i~_OuXPz0D23H8a>AoRo&FONOVUvv{Q2`oFftGE~F5-3z|7vz>RYFn(sQ zfyc}Fkf4*NOW=+r{6{)K;nmw#=#5Z@%$SYC4yH)d?hT~}b!;%lalX8QtP!bHk#I=A zOx>cQd9fH9m(va^ZT`3ltWrjEdM=bJdA?(shS;xYR57Y3qD$V^p&qE>VYeJEPJC8) z09T@FQkpe^Rw{mWIV};QM=ZPYg6_5ufwzGf>f#12C<WLtXXTe z6VQM}O`kH*fFzzwFXTHIq4|cz7ZzjixMOtHrS8ZrT9QcHZAfVREO$kX`_l=EJjk!N)29hcu=8pPS`j?j+Df-Zcra5_ zc?p_(GCkjn1zZ_nEaN?N40F%Y;dHRc`^|i^mlOR~4j(aFI($Ty^L*Y1vk-alYB-A< zc@<$_z(-qX=9GRx!u(#tBl`2hoPp-*$o!4mKtOiEy@R(#=wG;f5V}L~c>WMk5oNg9 zqdg7Upeh{>W7q@*83TB(EB_NbmjwdTh~Ru0I&Zgx!QWcbgTXf+ka9mS^m?bt-GsV# zr`*ja4^(d5kQ@)XBa1U^vw!INYH|`BGfK-2nk7WJZ82x$(F+U4b+?kI5gVvEz%Y5| zRU{w?BR3MwPh&Pc3Nkcq)3aqg_?p{+`_n>h=)k}yk51#j2H9ja_Atx_#Fxxvyivh&Zz7UeR zGE@61HKK=h5_7J1?;F0$yO$<;Hn{$7T9Oyf(%r0&uhm5y&**BppY3KvU+&ND9A7`6 z3GvdJu*qj>h(|3zry`%rdnfP9!ME<_`4bF!n^kY8p7%f+IxJmYHMk!B^EC& zxrm17u9@_v{8Dh=-Fo&%yIpv-?{4L~JoN?>CadT7C8@*pR`_5Ts-E-le!+yyLph3T z<_^*&@x7knZErWd*x&K^eZ7A0r-sFhbeghJT~wVJ&98V7Q@ zHOQ`R=9h2B3UfS$|GPObyDv|NZaL17UZ>A0%&m&OW_*tashWHFaQb*mOFq1`RH^OV zG-|4HM~xE1iU|rF)tjsf7~PA=Fs<~h9>@G61|bi+QTVZyo+(QbY0G~E>+zlFJ|Igz zP39v!5q+>lk%r5!wd?5|_YwxFB-ev#tcpdupUfz%0HZSK2&UDeYqRhgye}tvD3xx@ zJ)bblnTC3u>OdN6A(VWzn*Uvl#Iz;!Fh7u5DZ^mmgwVp{ zb!(Ob%BD)jJk`uL^^wL0^+?VlCb9{xOY+nyNUVg!O*d2luRNh#!mJ0Zb&Xc^z@!AH zz~8874q&KtfYDH2iIenqYFVhME^bGa5R`8}e`%)}UA<(9O+CDGSICBx`!E?`nL6ob zfYC-azUCkyXRz?En!TpX{Y^m|V5TpnLqbV*i`fs4;`q?2K|y*>sed&koKhwU!FRm4 zoGx0?rg=g6402OFQs0w^DMd0~^I7^AuSMXzsAA0+B?{(i^#U6P7|={mGu@HnZ78S@ zbi1GyO7)M@-3yqs)KRf>RCFfdxfD0n6JvM619{gCJX~9;ZfeXnR$~+k+6xP0GeW1& z8iu_w<=a3zO$cTh?q9rG?p|LBSC~snA;>tA+u!q z3i-pRj(oZpp1*(mfKAhya9-P}s?5_`sf(aC|A@t7VuHN#mq?^E#?UVDQq^9o=SW!% zz}drksA@grBi1`&4jHIE-XzaxrH0*j2KmsA+;NGXHJdFdd=y)}$7wSlpoWUvu$Q4(;1940nlp zV#nSHxZaAzw|T@McWsbI3!5!gw&J`SZikRy5nF6<9|6PrR>rC)Z#l0Qm9^wH4(;8+PWRr;W^lRE>sh+n02|fuRm7Smxk8x>zk>fHoMcGcA*n#A04yP}FXMhXY^6Rg?^P zn{1&|(luNqGJ8T1ml%j=gq<4CY!JXGgV}OugVoKexNbm`l_o~{X2~)ZELULm1Sl?S z;JZPFt`_{pszEc$=_b`34W2|q^<_t@l_iEY@G?6k-%$w&)nJMV0j)(_HmS_$jG9#W zs>?#KHY=bJF98e~pO)%IRD*SxOHTxo1LGc(hT@`0p662&+JBZP8} zQfNy^OzWc5D&xGhTWD~B$(lPQLfj5BZ%EB_Ga773q@_Q>aYz{`YT`&Ny}t?Uem++< z$-uA@5ay%;e&ygp@uXQTslGd~L=u+~0(!1|lwr;JC5BM$N0(-Inh1&9u)hSL8JIec z(AXbi;vgE%Eh{J&Y^NkTu{2w+F*sOb&FIAXV$_2@+l;}|wDJoI9JbXUW(LL_Ew9zi zBTg0*cQ9rMRgxW$JTOco>d@QrH(i2|2THTLq zzZ67L7dhpMqRh=HX0>0gmDe1WdrsRd z>sWHWa1w7kDJPkgohlGOL1D;7tg6f-3#{v2-==1pwWQZLUgNV>bYwCz!2=ppE#h|f zz{HS21*0bsM}D_s*a5xGwsi0fHDluf+pFy94rRrd>N{`4e(nv`G3~ht>wm9ucy&WJ z@4)gQgE}U6%c7HMlxz}TSg;Isn`g_R}(7ai) znM{>HSsFfh5Vs`Kj{&cUMhvKt$v6x*5Pu|Y)6j-56=sX!)ONqI?a-&^aLpmwxJDF} zA9)>|1_rXPpc2#k8Zpd=;iwpScfZ;*eMtq!VXv{sIsa5`1b6dPlxst!ZvJ??t*o$G zeV7i}myN<;9pa>YFzCgX;Ze*N~voP^Bx<0 zkd`}5D%m@>ohHTse=M$q+-fZCC{TN(hZ<@@#I{Rp=ABGs8*CPDsaygbqc8wI3f(F- zve^ayE)F!7+I*w6sy_GybAVPT;X;!m@$p{I*1p|~2UiUH~-MUzur zY*|?&)G_4T!WFM)G%nON4LL>a@1;v@oVCLp^GiUNF4f0ALZ$42+)XQOn6ac8r((KqU^6tRFJm=` zb=#+XMfX@q6YLobV(Lu`JEkKonQU_?h5h(iV-fc`pu)BhP6IGCEqYd0VU$^KNW4{G z*pML~wQaY`x94ZGuwZ-al>oR=rg0OaRh$fAjKdCEdh=4N^aFI%n1gu-U%Z#Z<}KZp ztF1wR<-xlWHP1%IVdipoTM`L-;2Kn?mFyp?iVNvVBO_0rNcRt`6mjIb-ae$a58K-h z@b;u|4KaBCk?YC%QTYkVhAV5`mFI}Bc(2ve#doBAs5$evc^vU67s0u#tdDy|cjef$ zH(uE&SJQ>_=QdW33vs1U!lBbp zapiy;AfA|B%&o1YKm$&A=mZb3S*A%nZ^V&^4a&bopEDg)Mpg9X#w{d76_XN>jExH~ zPU#i5N4~>1{a1eZ?t6g^lYF+DjJ4}$-@LA_T*)Y$PgSh?C8TnJzAu|G=$GB(@D`Uu3baP zwUdAv54`JfOQxO*{B+^)J%3P6yO0UJ@g4=_0 z04u~+oqMxWjwTa^?B~>qz8qZDgbfg#QQvk7&fBNtPo{oQH#@~EzpmTodYZ^D?GoVU zxYlq-x9^xQXYg(;x0I9WY1nrcdVf_aGd^)ox=WWB}1PPcaUWIKIECtkH`)U3 z6d3&VLv+STZB@ZnG*8p%j;@Ah4C2#RR>9*eN`VVqb#)W&wO35F0Wr!1ztDr7b~vS# zUUYYXS`8JW!B`Ti8G2?z zj5{NmMAGFBUT)StXBk|#R_%*%PBR(G0c6|*?1Dj!%3aN$flE>XuIx{ykHA$MT6MM# zA+uE**1#WBg=16NMQ<*_W;H0gJUBo4t`2d|DL{~=S+*aoqirq4AxDnaO>)?+Se~^P zPLA`zPC*>~+RJ})z&7q-`L&n-R$A`tXh#OuIPsz4zRv3we6wJtEiUb9dA?WRV&zYy zYMJIZDz^%R=iB1vhSfz6zV`CxGOUd@N0~OH+bz4rs8=FVeR6+<;8Bm+6L_)%bfLr@ z;*y5+E8SsS*9w@-g3*x1b?BB6cgiu6UdIp$mh;VqrQys;$`en%@jNPtTFbNA9xYV0 zGevWF9+s(n0+$$M?+2Qo8li5z@X};iXNU~=RL$0pcVb4)Iet)DIy0|?Z8)H`N)0Bc^Ge<~G5PldWaed=H zip_Dir-DEuq%j~|HXIxk#**L==wvu8cTJ(@f;30>+!39p_|z$O(1z%AIgg8??s7aB z`Acem@4m*VF%r1!8}xpY*lcci$t1cY^%xXDo!B%UHZ)xszE{1Fz6^rMKrmMTGBBX{ zh2};#RmF03i!xbk%F|u$LcH`f3k8DL6l1F=D-_@d{4@mz7-m7HyC@2FPO%=s(LO|p zX2}PKP>9^Obn2I8%TX`G>aLjwZ|c8c0LFz#CB-sbQsCRN)|Onl*rl2o1!w&@X3IVZ;ff*t?q^>> z9@cR!)p-s_&xM6yFlOSmp`WUBbeo?$8=JACC9WU+BH<4n%*Oi-V22J08Z5lx9!F;a z8M5J)89a&Wa=e;n_fJ@$v&XdL@{1~`sa(mCdi zEZgyE+=+#o$BUcAm3Tt43vZR9fGF%%wyP(r049B<$|wK@uapMhM=&a#1k6)E2RO%) zbz-*gfKCqc*DtaU)T#=v2w{woa29T-)^+yf z>g3l@W*gK$iw+{-ssoKd;H*g97HX9=^QoREC6{8kDr$|tc3?M{!Hq7VfiPZYqoCNr z3GrJS1tP4>D7j#DK4Bz*Z=_&n3y)(<3T*~8V6xTsBs&~3{$3bs7tBWvMXDp^^T^jq z(0c`9o`qiumojrj*a}6jA~fHQZ;}d5ab9B(=*<$b;Cj`oo2C-5gB&le5qP2dES1%XB=T&l{rCa~4k@JX;R^9qXX8 zKG>Y+W6g*#|A>kO7+eE}+v!G9DtZ$X#dkJ>qJ^ki47r^EbZ0lE2?UD)=nfiZ^*1~B zShif@4mkDLY{O0;&b9%kz(Ygd$7Vo6qvQ`=;A$sjZqSji+M z8=RdUoICwU|4$}sm38T~g)EXfMP*HObi$h@M=cA(V&Y~XWRO~g^XBIsb%3#xp~VhZ z(3NI#7b8|Hxz&9ppK2Ylm7F9wo){eBj~}Q!G$}Zu#3CHAh(DNu@5OMQWC4wc*Ypkg z^B71g#G5WhgzN&TnX+N47bp-^ejI#f0ed;(5I97X!Ytqs+@(tlB6f&@7|?CsWPFO0 zRIk2G;|d!gG%CtFJ}9BZ+mER(I25nT*xa8tc@|H+g~8PwDwnpzp`Dp zo0Gedba8?X)Koq(*Fr8A>Rs+0nIw&>IxZzPOMcuO-i{lUjt))BUa6Clcid5U_SSvL zVA7lSg`VOODsu@g6CWRijp zURDTUYBu$0C$nc1H5LM0C)*(zlQxsF$x&$6fw)*Hx>5kUXuxH{L6?Tk1L5O|N!=If zW>uhQ7JUVKWCMnU#{5AZqz2SOLoLa0=z5ofjG8q&Mhu{-V>ZTcL1zwbGtl}`MLW~C zxlzF^rM1LWFR&@TPN)J%PXSq8Mu8h#HeC$m7C40zDJigK6wXyrMtJ3yO`H~28|<<) zRSpe23bRNbWhkL0Lc@s1EF(6m)0aRz9~sm4qKD)vK?gVJ{*E@0MJRwrd|?A^J(o+?1Tt24wd@)7JnrUsxnx3NLeABS1ntBs z8@}elBB(=Wki~eqqnyp_EphcHBtu^K2u0lt#UAhomdD(U^|bg%G9il zw4$SL*?CM;lwz!cJIO3&fy!$0k7Gd-fb2yHVxb&g9R-lym?@l4@0cj=$&uSk=GsyW z9*{M7S(?~Ool}SHsM83;Dq^y_Qz&mD-hf-C27kQ@pkltk4?mp=pq)RR31>sr6(EmN zWf zWC#q=t5@V6$Bk_tIAEV@=8)X`)Or9 z`%{7n>_}&pB~`&37o}!{!6-iAa_xZV@!1l|Jor~~dj{CosPvk{(=w8n6W7w1nEaqB zJ94E(>IX)t9){zh<_3`?8Dv*~)J7UIrdH*7B7o-d)FLJ)E^sSaaZsHr zl+hXmzKc3Cs_MP9Grx`%&X2n4$pOtzugxFia~Gu2m?RyNJLQ#*0O&mQs|j{<`{SXA zBGw@-eRD^JcQMzfvYT#Juz)elG$xF^4Kkn|7J6_ z!$$MnVC40~(pkN&07Vx%#FQZTU|Yv;EY5{&o-oxd+R5plr-Ay~r89d}Xi47eK?w*# z7_v_U%%c^A3ZV@xX*47i78sY=1FyRkss+J)=`9R9#&u0Hln^aTuEQe{1DkP>ZPA1J zXaofwxb>`S8g*HCXMx1hEY=4wQ)>LjJqOS_vRS|4se^rTnRv!^LJfW`!lh;rPolmq zl%}4T2~UKRhuFYE2R;|uW-nfR%5Dz7^1UNBqtfHDhTP>b7ytXRe(X@ z#8A3M)Eg<~<-5?|S(mjO*^FH=o7n@dc8R=- z0SGWz>CE?Fsd3E*BuaI_#$(Kib-D`8h()SldN~;62;lIwBf^Yt_n`cGS579b0W{MJ z+PyJpfK`^fo3Y#72+Kk1*p|K?X*_+q;CVpQ$pwBhu4)E|#bA$G?6!60Y#s4Xf2k}&uKwwgJbv-yTr6mq29 zsuh8Ug{8IFr9DO}y#-x8xGy&RH>>!_`$m8%N1{d6&z)G86APF>0yhWgJXm)S*4aW# z4B0Z$<7r<6Z)>&J7YLQb+{KaD+HxWokrmpOI=S+!D(cyRSSwZ@bRzcY#^Rqvq~INC z1NX!^P32EsQnAVezC^*Nv2uYvYr;icn}{yL-OWtQWb5s9Gux&Wm&&4}^(Iv@(()NQ z%_#I-n{qe^%Q|M*t|`}H2~LP+q}OuI6C&>2Hzo=9SqzwMR7UH?z}M2I4sVlE+CGy5 zrwoL<#kUxAsP~y3R=#bXA&nu*L*4X5dU=t%(pYJ^u{yiGlx=HWzw0{=x7Xf zD}2@-L+Xcz#rAv^=l*o&WGed*IGKv$iCY_tv$ZMc@k#!G@wBdq=f#8LLYtEttd1cr zt`4a-7y_3^M@A9WZ0hY&R+rTi)L5u>T%^hmM${&as%mcTR*}S`@m$EQ8*QFty~A0x z7ZjKQ2XzJ90I)?nufIfPCx~mT;*uxR9=3H_B@=(+!PZoBu;S8E5>_zk zO0Vs45+VqYr)Ewi$9ipn|Hr`A$g8`>C7i^}%4F<09BDo1iE5ps>5$-S^Mq?%jYgX} z+Gb^G)r5qnxVJj(N?xc-3?ry$wK_mB6@x3Waf|(D8)1>eg=0I~YJQL{P?15*uI{M3 z?`Q>%u>(uHv>e09FECR-3d<1=q5n=VcTUQpaX=leHv-R@?Km%Vw;)5Hk5EE zi_w<>785ydM1C+}szN|JsT|+yqv zLC>DW8;)3Rp^~XGul}}6+FuO&zAB)DcFio-Hukd2u7@=imTW_5i~kFuxnLho!?II~ z-4NFbGO7ay0QkG(A=o-xJf-@zm;bIUI^h^7?OFx4v;E2!ZSf3;47BLVGZXPF>+llH z+=c;-h({eIV*rMU3&m*O*^XT4Fo3KbGY`JP!z%~tv%{TyvaqAEva%{S6%eqc#hx64 z1Zr`K_PbNtiq~d!SF4Ymd{?OmcJ0Zp-|Pj>`lzg%O4uf%w@p&5mxu zCTE?RodMJbo|iq(`06CsPYtQM%y}US0@^no7NBO9QQA5>`|3MgYb?dGhr=r7;EudbAUBk4V!h7w#u6+{4R5wd8|C&Q~=~uVMS0 zd2A8|HmlX4oYo9~#W2l&jNqSZ7u%SZXV#p{tg6gaM~zt!iR9MV@KyVD+-UUV?FEU7 z3X?4l_*lG;hG%MR#Fcr%Pf#W0>~RG)#DHM6R&xrQ+F3Fs!>2UH@(AyV=9I#yMQ&`I zJp1Eo=gywwpkF_|VC!VJID30T@h1w=mnoEbhaymN^ttEOE}mm2pnJ!_FZRw-X(zOs z0#rpLs*9RVsE$=Dij+K?_Fa_(+R2G{ZsFilxhPEY2pbmdYxGM?I++_wd(lalk0e^l zrP}}8=3D8jr)+CtEMLtX#@zr&a0=HJnUEbQL8md;tEJ5e{@YW1nJVwXZgVROg;TmS z3$q8U9o|qeR!KzaqHVSKEb7>H5)ZWwoAn*|Vi<;c*dzho3p?PM6=PG4KrsU3#=;@( yg#Q|VZ>x!(i>Ikn2O=-X** or reset the hatch timer " +"with **!timerset**. This channel will be deactivated until I get an update " +"and I'll delete it in 45 minutes if I don't hear anything." msgstr "" -"Questo è quello di cui ho bisogno: una lista di canali del tuo server che " -"verranno utilizzati per segnalare i raid e/o i Pokémon selvatici. Scrivimeli " -"utilizzando questo formato: nomecanale, nomecanale, nomecanale" -#: meowth.py:341 -msgid "" -"In other words, the name of each channel, each separated by a comma and a " -"single space. If you do not require raid and wild reporting and are only " -"requiring want/unwant, reply with 'N'; however, want/unwant is quite limited " -"without raid or wild reporting." +#: meowth/__main__.py:727 +msgid "**This level {level} raid egg has expired!**" msgstr "" -"In altre parole, il nome di ogni canale, separato con una virgola e un " -"singolo spazio dagli altri. Se non vuoi le segnalazioni di raid e/o Pokémon " -"selvatici ma vuoi solo le segnalazioni di Voglio/NonVoglio, rispondi con " -"’N’; altrimenti Voglio/NonVoglio sarà abbastanza limitata senza la " -"segnalazione di raid e/o Pokémon selvatici." -#: meowth.py:353 -msgid "" -"Meowth! Great! Looks like all of these are names of channels in your server." -msgstr "Ottimo! Sembra che tutti questi siano nomi di canali nel tuo server." +#: meowth/__main__.py:731 meowth/__main__.py:5429 +msgid "expired-" +msgstr "" -#: meowth.py:355 +#: meowth/__main__.py:735 +#, fuzzy msgid "" -"Meowth! Something went wrong! Please type !configure to start over! Make " -"sure the channels above are created already!" +"This channel timer has expired! The channel has been deactivated and will be " +"deleted in 5 minutes.\n" +"To reactivate the channel, use **!timerset** to set the timer again." msgstr "" -"Qualcosa è andato storto! Per favore digita !configure per ricominciare! " -"Assicurati che i canali sopra siano già creati!" +"Questo timer del canale è scaduto! Il canale è stato disattivato e verrà " +"eliminato in 5 minuti.\n" +"Per riattivare il canale, utilizza !Timerset e imposta nuovamente il timer." -#: meowth.py:357 -msgid "" -"**City Location Configuration**\n" -"\n" -"Meowth! Alright, we need to set starting locations for each of the channels " -"you just mentioned in the SAME ORDER you typed before. This is what I use to " -"generate Google Maps links to give people directions to raids and spawns! " -"Knowing what town everything is in is often good enough to narrow it down. " -"One way to put it is, for each channel you just listed, I need a location " -"specific enough that I'll know hich First Baptist Church people mean. This " -"is important, so please enter it in just this way. For each channel, give me " -"a location using only letters, no punctuation. So something like 'kansas " -"city mo' or 'hull uk' without the quotes and separate your locations with a " -"comma and single space." +#: meowth/__main__.py:737 +msgid " raid" msgstr "" -"**Configurazione Posizione Città**\n" -"\n" -"Bene, Abbiamo bisogno di impostare una località di partenza per ogni canale " -"che hai menzionato prima usando lo STESSO ORDINE. Queste località le uso per " -"generare i link a Google Maps per dare alle persone le indicazioni per " -"raggiungere i raid e gli spawn! Sapere il nome della città in cui tutto " -"questo avviene spesso è abbastanza. Per ogni canale che hai scritto sopra ho " -"bisogno di una località abbastanza specifica per permettermi di trovare il " -"posto corretto. Questo è importante, quindi inseriscile in questo modo. Per " -"ogni canale damme una località usando solo lettere, niente punteggiatura.\n" -"Esempio: “milano” oppure “roma termini”\n" -"il tutto va digitato senza apostrofi e separa una località dall’altra " -"tramite una virgola e un solo spazio." -#: meowth.py:364 -msgid "" -"Meowth! There weren't the same number of cities and channels! Please type !" -"configure to start over!" +#: meowth/__main__.py:737 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "event" msgstr "" -"Il numero di canali non corrisponde al numero di città! per favore digita !" -"configure per ricominciare!" -#: meowth.py:367 -msgid "" -"**Raid Command**\n" -"\n" -"Meowth! Alright. Do you want raid reports in these channels? Reply with 'Y' " -"to enable !raid reports, or 'N' to disable !raid" +#: meowth/__main__.py:738 +msgid "**This {pokemon}{raidtype} has expired!**" msgstr "" -"Bene. Vuoi riportare i raid in questo canale? Rispondi con ‘Y’ per abilitare " -"le segnalazioni tramite il comando !raid, oppure ’N’ per disabilitarli" -#: meowth.py:371 -msgid "" -"**Timezone Configuration**\n" -"\n" -"Meowth! Ok, to finish the raid configuration I need to know what timezone " -"you're in! This will help me coordinate raids for you. The current 24-hr " -"time UTC is {utctime}. How many hours off from that are you? Please enter " -"your answer as a number between -12 and 12." +#: meowth/__main__.py:796 +msgid "archived-" msgstr "" -"**Configurazione Timezone**\n" -"\n" -"Ok, per finire la configurazione del raid ho bisogno di sapere in che " -"Timezone ti trovi. Quella corrente 24-hr time UTC è {utctime}. Quante ore ci " -"sono di differenza dal tuo orario corrente? Per favore inserisci un numero " -"compreso tra -12 e 12." -#: meowth.py:375 +#: meowth/__main__.py:805 msgid "" -"Meowth! I couldn't convert your answer to a number! Type !configure in your " -"server to start again." +"-----------------------------------------------\n" +"**The channel has been archived and removed from view for everybody but " +"Meowth and those with Manage Channel permissions. Any messages that were " +"deleted after the channel was marked for archival will be posted below. You " +"will need to delete this channel manually.**\n" +"-----------------------------------------------" msgstr "" -"Non posso convertire la tua risposta in un numero! Digita !configure nel tuo " -"server per ricominciare." -#: meowth.py:380 -msgid "" -"**Wild Command**\n" -"\n" -"Meowth! Alright. Do you want wild reports in these channels? Reply with 'Y' " -"to enable !wild reports, or 'N' to disable !wild" +#: meowth/__main__.py:1037 +msgid "Starting up..." msgstr "" -"**Comando Wild**\n" -"\n" -"Bene. Vuoi riportare i Pokémon selvatici in questo canale? Rispondi con ‘Y’ " -"per abilitare le segnalazioni tramite il comando !wild, oppure ’N’ per " -"disabilitare il comando" -#: meowth.py:386 +#: meowth/__main__.py:1090 msgid "" -"Meowth! Ok. Time to do one last check that I have either an admin role on " -"your server, or at least a role with these permissions: 'read messages', " -"'send messages', 'embed links', 'manage roles', and 'manage channels'. Also, " -"check if my role is at the top of your server role hierarchy. You can " -"restrict me to specific channels by editing channel-specific permissions if " -"you like.\n" +"Meowth! That's right!\n" "\n" -"**Want/Unwant Configuration**\n" -"\n" -"The last thing you should know is that the !want and !unwant commands can " -"produce a lot of clutter if they are allowed on your main channels. I " -"suggest having a dedicated channel for want and unwant. Just type the name " -"or names of the channel(s) you want me to allow. If you type something that " -"isn't a name of an existing channel, I'll create one by that name. If you do " -"not want to enable want/unwant, reply with 'N'. " +"{server_count} servers connected.\n" +"{member_count} members found." msgstr "" -"Ok. È ora di eseguire un ultimo controllo per avere il ruolo di " -"amministratore sul tuo server o almeno un ruolo con queste autorizzazioni: " -"“leggere i messaggi”, “inviare i messaggi”, “incorporare i link”, “gestire i " -"ruoli” e “gestire i canali ‘. Inoltre, controlla se il mio ruolo è in cima " -"alla gerarchia del ruolo del server. Puoi limitarmi a canali specifici " -"modificando le autorizzazioni specifiche del canale se vuoi.\n" -"\n" -"**Configurazione Voglio/NonVoglio**\n" -"\n" -"L’ultima cosa che dovresti sapere è che i comandi !want e !unwant possono " -"produrre un sacco di confusione se sono consentiti nei tuoi canali " -"principali. Suggerisco di avere un canale dedicato per per Voglio/NonVoglio. " -"Basta digitare il nome o i nomi dei canali che desideri abilitare. Se " -"digitate qualcosa che non è un nome di un canale esistente, ne creerò uno " -"con quel nome. Se non si desidera abilitare Voglio/NonVoglio, digita ’N’. " -#: meowth.py:404 +#: meowth/__main__.py:1116 +#, fuzzy msgid "" -"Meowth! You didn't give me enough permissions! Type !configure to start over!" +"Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and " +"someone has invited me to your server! Type **!help** to see a list of " +"things I can do, and type **!configure** in any channel of your server to " +"begin!" msgstr "" -"Non mi hai dato abbastanza permessi! digita !configure per ricominciare!" - -#: meowth.py:412 -msgid "Meowth! Okay. All of my main functions have been disabled." -msgstr "Okay. Okay. Tutte le funzioni principali sono state disattivate." +"Sono Meowth, un bot di supporto per Discord e la communities di Pokemon GO, " +"e qualcuno mi ha invitato nel tuo server! digita !help per visualizzare la " +"lista di comandi disponibili, e digita !configure in qualsiasi canale per " +"iniziare!" -#: meowth.py:413 -msgid "" -"**Emojis**\n" -"\n" -"Meowth! Alright! I'm ready to go! One more thing. I like to use custom emoji " -"for certain things, especially for displaying type weaknesses for raid " -"bosses! I'm going to send you a .rar file that contains all the emoji I " -"need. There are 23 in all. All you have to do is download, extract, and " -"upload the images to Discord as custom emoji. You can do this all at once, " -"and you can just leave the emoji titles alone!\n" -"\n" -"By the way: if you need to change any of these settings, just type !" -"configure in your server and we can do this again." -msgstr "" -"**Emojis**\n" -"\n" -"Bene! Sono pronto per iniziare! Un’ultima cosa. Mi piacerebbe usare delle " -"emoji personalizzate per alcune cose, per esempio per mostrare le debolezze " -"di un raidboss! Ti sto inviando un file .rar checontiene tutte le emoji di " -"cui hai bisogno. Sono 23 in tutto. Tutto quello che devi fare è scaricare il " -"file, estrarlo e caricare le immagini su Discord come Custom emoji. Puoi " -"farlo tutto in una volta e puoi solo lasciare i titoli emoji!\n" -"\n" -"Ad ogni modo: se hai bisogno di cambiare qualche impostazione, ti basta " -"digitare !configure nel tuo server e potrai rifare questo di nuovo." +#: meowth/__main__.py:1134 meowth/__main__.py:3624 +msgid " or " +msgstr "oppure" -#: meowth.py:427 +#: meowth/__main__.py:1140 msgid " If you have any questions just ask an admin." msgstr " Se avete domande basta chiedere a un admin." -#: meowth.py:429 -msgid "Meowth! Welcome to {server.name}, {new_member_name.mention}! " +#: meowth/__main__.py:1141 +#, fuzzy +msgid "Meowth! Welcome to {server}, {user}! " msgstr "Benvenuto in {server.name}, {new_member_name.mention}! " -#: meowth.py:431 -msgid "Set your team by typing {team_command} without quotations." +#: meowth/__main__.py:1143 +#, fuzzy +msgid "Set your team by typing {team_command}." msgstr "Imposta il tuo team digitando {team_command} senza virgolette." -#: meowth.py:439 -msgid "WARNING: no default channel configured. Unable to send welcome message." +#: meowth/__main__.py:1183 meowth/__main__.py:1195 meowth/__main__.py:6448 +msgid "" +"Meowth! Please wait until the raid egg has hatched before announcing you're " +"coming or present." msgstr "" -"AVVISO: nessun canale predefinito configurato. Impossibile inviare il " -"messaggio di benvenuto." - -#: meowth.py:472 -msgid "Error occured while trying to save!" -msgstr "C’è stato un errore mentre provavo a salvare il file!" -#: meowth.py:506 +#: meowth/__main__.py:1230 meowth/__main__.py:5398 msgid "" -"Meowth! My roles are ranked lower than the following team roles: " -"**{higher_roles_list}**\n" -"Please get an admin to move my roles above them!" +"Meowth! Someone has suggested a different location for the raid! Trainers " +"{trainer_list}: make sure you are headed to the right place!" msgstr "" -"Il mio ruolo è gerarchicamente inferiore ai seguenti ruoli dei team " -"**{higest_roles_list}**\n" -"Per favore segnala ad un admin di spostare il mio ruolo sopra il loro!" +"Qualcuno ha suggerito una posizione differente per il raid! Giocatori " +"{trainer_list}: assicuratevi di esser diretti nel posto giusto!" -#: meowth.py:523 -msgid "Meowth! You already have a team role!" -msgstr "Hai già un Team impostato come ruolo!" +#: meowth/__main__.py:1294 +msgid "has despawned" +msgstr "" -#: meowth.py:527 +#: meowth/__main__.py:1352 msgid "" -"WARNING: Role {team_role} in team_dict not configured as a role on the " -"server!" +"Save persistent state to file.\n" +"\n" +"File path is relative to current directory." msgstr "" -"ATTENZIONE: il Ruolo {team_role} in team_dict non è configurato come un " -"ruolo nel server!" -#: meowth.py:531 -msgid "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" -msgstr "“{entered_team}” non è un team valido! prova {available_teams}" +#: meowth/__main__.py:1352 +msgid "save" +msgstr "" + +#: meowth/__main__.py:1359 meowth/__main__.py:1384 meowth/__main__.py:1397 +msgid "Error occured while trying to save!" +msgstr "C’è stato un errore mentre provavo a salvare il file!" -#: meowth.py:535 +#: meowth/__main__.py:1377 msgid "" -"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " -"an admin!" +"Restart after saving.\n" +"\n" +"Calls the save function and restarts Meowth." msgstr "" -"Il ruolo “{entered_team}” non è configurato su questo server! Contatta un " -"admin!" -#: meowth.py:539 -msgid "Meowth! Added {member} to Team {team_name}! {team_emoji}" -msgstr "Aggiunto {member} al Team {team_name}! {team_emoji}" +#: meowth/__main__.py:1377 +msgid "restart" +msgstr "" -#: meowth.py:541 -msgid "Meowth! I can't add roles!" -msgstr "Non posso aggiungere questo ruolo!" +#: meowth/__main__.py:1386 +msgid "Restarting..." +msgstr "" -#: meowth.py:558 +#: meowth/__main__.py:1390 msgid "" -"Meowth! Please use one of the following channels for **!want** commands: " -"{want_channel_list}" +"Exit after saving.\n" +"\n" +"Calls the save function and quits the script." msgstr "" -"Per favore usa uno dei seguenti canali per il comando **!want**: " -"{want_channel_list}" - -#: meowth.py:574 -msgid "Meowth! {member}, I already know you want {pokemon}!" -msgstr "{member}, Immagino volessi dire {pokemon}!" -#: meowth.py:581 -msgid "Meowth! Got it! {member} wants {pokemon}" -msgstr "Fatto! {member} vuole {pokemon}" +#: meowth/__main__.py:1390 +msgid "exit" +msgstr "" -#: meowth.py:595 -msgid "" -"Meowth! Please restrict wild reports to city channels or the default channel!" +#: meowth/__main__.py:1399 +msgid "Shutting down..." msgstr "" -"Per favore limitati a riportare i pokemon selvatici nel canale apposito o " -"nel canale di default!" -#: meowth.py:600 meowth.py:613 -msgid "" -"Meowth! Give more details when reporting! Usage: **!wild " -"**" +#: meowth/__main__.py:1403 +msgid "Changes a setting." msgstr "" -"Fornisci più dettagli quando riporti un pokemon! Utilizza questa sintassi **!" -"wild **" -#: meowth.py:628 -msgid "Meowth! Click here for directions to the wild {pokemon}!" -msgstr "Clicca qui per le indicazione di {pokemon}!" +#: meowth/__main__.py:1403 +msgid "set" +msgstr "" -#: meowth.py:628 -msgid "This is just my best guess!" -msgstr "Questa è solo la mia ipotesi migliore!" +#: meowth/__main__.py:1409 +msgid "Changes server regional pokemon." +msgstr "" -#: meowth.py:630 -msgid "Meowth! Wild {pokemon} reported by {member}! Details:{location_details}" -msgstr "{pokemon} selvatico segnalato da {member}! Dettagli:{location_details}" +#: meowth/__main__.py:1409 +msgid "regional" +msgstr "" -#: meowth.py:632 -msgid "Meowth! **!wild** commands have been disabled." -msgstr "Il comando **!wild** è stato disabilitato." +#: meowth/__main__.py:1417 +msgid "Are you sure you want to clear all regionals?" +msgstr "" -#: meowth.py:650 -msgid "" -"Meowth! Please restrict raid reports to a city channel or the default " -"channel!" +#: meowth/__main__.py:1438 +msgid "Meowth! Regional raid boss cleared!" msgstr "" -"Per favore limitati a riportare i raid nel canale apposito o nel canale di " -"default!" -#: meowth.py:655 -msgid "" -"Meowth! Give more details when reporting! Usage: **!raid " -"**" +#: meowth/__main__.py:1444 +msgid "Meowth! Regional raid boss set to **{boss}**!" msgstr "" -"Fornisci più dettagli quando riporti un raid! Utilizza questa sintassi **!" -"raid **" -#: meowth.py:671 -msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" +#: meowth/__main__.py:1447 +#, fuzzy +msgid "Meowth! That Pokemon doesn't appear in raids!" msgstr "Il Pokemon col seguente nome {pokemon} NON appare nei raid!" -#: meowth.py:682 -msgid "Meowth! Click here for directions to the raid!" -msgstr "Clicca qui per le indicazioni del raid!" +#: meowth/__main__.py:1453 +msgid "Changes server timezone." +msgstr "" -#: meowth.py:682 -msgid "Weaknesses: {weakness_list}" -msgstr "Debolezze: {weakness_list}" +#: meowth/__main__.py:1453 meowth/__main__.py:3152 +msgid "timezone" +msgstr "" -#: meowth.py:684 +#: meowth/__main__.py:1459 meowth/__main__.py:1462 msgid "" -"Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -"Coordinate in {raid_channel}" +"I couldn't convert your answer to an appropriate timezone! Please double " +"check what you sent me and resend a number from **-12** to **12**." msgstr "" -"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " -"Coordinate in {raid_channel}" -#: meowth.py:687 +#: meowth/__main__.py:1466 msgid "" -"Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " -"Coordinate here!\n" -"\n" -"Reply to this message with **!coming** (`!coming [number]` for trainers with " -"you) to say you are on your way, and reply with **!here** once you arrive.\n" -"If you are at the raid already, reply with **!here** (`!here [number]` for " -"trainers with you).\n" -"If you are interested in the raid and want to wait for a group, use **!" -"maybe**.\n" -"If your plans change, reply with **!cancel** if you are no longer on the way " -"or if you have left the raid.\n" -"You can set the time remaining with **!timerset H:MM** and access this with " -"**!timer**.\n" -"\n" -"You can see the list of trainers interested with **!interest**, trainers on " -"their way with **!otw**, trainers at the raid with **!waiting**, or all " -"lists with **!lists**.\n" -"Once you start a raid, use **!starting** to clear the waiting list to allow " -"the next group to coordinate.\n" -"\n" -"Sometimes I'm not great at directions, but I'll correct my directions if " -"anybody sends me a maps link.\n" -"\n" -"This channel will be deleted in 2 hours or five minutes after the timer " -"expires." +"Timezone has been set to: `UTC{offset}`\n" +"The current time is **{now}**" msgstr "" -"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " -"Coordinate qui!\n" -"\n" -"Rispondi a questo messaggio con **!coming** ( `!coming [numero]` se ci sono " -"più giocatori con te) per dire che sei/siete per strada e stai arrivando, e " -"rispondi con **!here** una volta che arriverai.\n" -"Se ti trovi già sul posto del raid, rispondi con **!here** (`!here [numero]` " -"se ci sono più giocatori con te).\n" -"se sei interessato al raid e vuoi aspettare che ci sia un gruppo, usa **!" -"maybe**. \n" -"Se cambi idea, rispondi con **!cancel** se vuoi abbandonare il raid.\n" -"\n" -"Puoi impostare il tempo rimanente con **!timerset H:MM** e visualizzarlo in " -"seguito con **!timer**.\n" -"\n" -"Puoi vedere la lista degli allenatori interessati con **!interest**, gli " -"allenatori che stanno arrivando con **!otw**, gli allenatori che sono già al " -"raid con **!waiting**, o la lista completa digitando **!lists**.\n" -"Quando state per iniziare un raid, usa **!starting** per cancellare la lista " -"di attesa e per permettere ad altri gruppi di coordinarsi.\n" -"\n" -"Alcune volte non sono bravissimo con le indicazioni, ma tu puoi correggerle " -"se nessuno mi manda un link alla mappa.\n" -"\n" -"Questo canale verra eliminato tra 2 ore oppure 5 minuti dopo che il timer " -"del raid è esaurito." -#: meowth.py:714 -msgid "" -"Meowth! Hey {member}, if you can, set the time left on the raid using **!" -"timerset H:MM** so others can check it with **!timer**." +#: meowth/__main__.py:1471 +msgid "Changes server prefix." msgstr "" -"Hey {member}, se puoi, imposta il tempo rimanente per il raid usando **!" -"timerset H:MM** così che altri giocatori potranno consultarlo tramite il " -"comando **!timer**." -#: meowth.py:761 -msgid "Meowth! {member}, I already know you don't want {pokemon}!" -msgstr "{member}, Immagino non volessi dire {pokemon}!" +#: meowth/__main__.py:1471 meowth/__main__.py:1553 +msgid "prefix" +msgstr "" -#: meowth.py:768 -msgid "Meowth! Got it! {member} no longer wants {pokemon}" -msgstr "Fatto! {member} non vuole più {pokemon}" +#: meowth/__main__.py:1479 +msgid "Prefix has been set to: `{}`" +msgstr "" -#: meowth.py:775 -msgid "Meowth! This raid's timer has already expired as of {expiry_time}!" -msgstr "Il timer del raid è già scaduto alle {expiry_time}!" +#: meowth/__main__.py:1482 +msgid "Prefix has been reset to default: `{}`" +msgstr "" -#: meowth.py:778 -msgid "Meowth! This raid will end at {expiry_time}!" -msgstr "Questo raid finirà alle {expiry_time}!" +#: meowth/__main__.py:1487 +msgid "Links a server member to a Silph Road Travelers Card." +msgstr "" -#: meowth.py:780 -msgid "" -"Meowth! No one told me when the raid ends, so I'm assuming it will end at " -"{expiry_time}!" +#: meowth/__main__.py:1487 +msgid "silph" msgstr "" -"Nessuno mi ha detto tra quanto il raid finirà, quindi ho assunto che " -"terminerà alle {expiry_time}!" -#: meowth.py:793 -msgid "" -"Meowth...that's too long. Raids currently last no more than two hours..." +#: meowth/__main__.py:1490 +msgid "Silph Road Travelers Card cleared!" msgstr "" -"Questo è troppo lungo. i Raid attualmente non rimangono per più di due ore.." -#: meowth.py:796 -msgid "Meowth...I can't do that! No negative numbers, please!" -msgstr "Non posso farlo! Nessun numero negativo, grazie!" +#: meowth/__main__.py:1500 +msgid "The Silph Extension isn't accessible at the moment, sorry!" +msgstr "" -#: meowth.py:799 -msgid "Meowth...I couldn't understand your time format..." -msgstr "Non riesco a capire l’orario impostato, utilizza questo formato H:MM." +#: meowth/__main__.py:1505 +msgid "Silph Card for {silph_user} not found." +msgstr "" -#: meowth.py:828 -msgid "" -"Meowth... I couldn't understand your time format. Try again like this: !" -"timerset H:MM" +#: meowth/__main__.py:1509 +msgid "No Discord account found linked to this Travelers Card!" msgstr "" -"Non riesco a capire l'orario impostato, utilizza questo formato: !timerset H:" -"MM" -#: meowth.py:851 -msgid "Meowth! {0} is interested!" -msgstr "{0} sta aspettando sotto il raid!" +#: meowth/__main__.py:1513 +msgid "This Travelers Card is linked to another Discord account!" +msgstr "" -#: meowth.py:853 -msgid "" -"Meowth! {member} is interested with a total of {trainer_count} trainers!" -msgstr "{member} è al raid con {trainer_count} giocatori!" +#: meowth/__main__.py:1527 +msgid "This Travelers Card has been successfully linked to you!" +msgstr "" -#: meowth.py:868 -msgid "Meowth! {member} is on the way!" -msgstr "{member} è per strada!" +#: meowth/__main__.py:1530 +msgid "Links a server member to a PokeBattler ID." +msgstr "" -#: meowth.py:870 -msgid "" -"Meowth! {member} is on the way with a total of {trainer_count} trainers!" -msgstr "{member} è per strada con {trainer_count} giocatori!" +#: meowth/__main__.py:1530 +msgid "pokebattler" +msgstr "" -#: meowth.py:883 -msgid "Meowth! {member} is at the raid!" -msgstr "{member} sta aspettando sotto il raid!" +#: meowth/__main__.py:1533 +msgid "Pokebattler ID cleared!" +msgstr "" -#: meowth.py:885 -msgid "" -"Meowth! {member} is at the raid with a total of {trainer_count} trainers!" -msgstr "{member} è al raid con {trainer_count} giocatori!" +#: meowth/__main__.py:1544 +msgid "Pokebattler ID set to {pbid}!" +msgstr "" -#: meowth.py:898 -msgid "Meowth! {member} is no longer interested!" -msgstr "{member} non non è più interessato!" +#: meowth/__main__.py:1546 +msgid "Get a setting value" +msgstr "" -#: meowth.py:900 -msgid "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"interested!" +#: meowth/__main__.py:1546 +msgid "get" msgstr "" -"{member} e un totale di {trainer_count} giocatori NON sono più interessati!" -#: meowth.py:903 -msgid "Meowth! {member} has left the raid!" -msgstr "{member} ha lasciato il raid!" +#: meowth/__main__.py:1553 +msgid "Get server prefix." +msgstr "" -#: meowth.py:905 -msgid "" -"Meowth! {member} and their total of {trainer_count} trainers have left the " -"raid!" +#: meowth/__main__.py:1557 +msgid "Prefix for this server is: `{}`" msgstr "" -"{member} e un totale di {trainer_count} giocatori con lui hanno lasciato il " -"raid!" -#: meowth.py:908 -msgid "Meowth! {member} is no longer on their way!" -msgstr "{member} NON è più per strada!" +#: meowth/__main__.py:1559 +msgid "Show Meowth's permissions for the guild and channel." +msgstr "" -#: meowth.py:910 -msgid "" -"Meowth! {member} and their total of {trainer_count} trainers are no longer " -"on their way!" +#: meowth/__main__.py:1559 +msgid "perms" msgstr "" -"{member} e un totale di {trainer_count} giocatori con lui NON sono più per " -"strada!" -#: meowth.py:954 -msgid "" -"Meowth! Someone has suggested a different location for the raid than what I " -"guessed! Trainers {trainer_list}: make sure you are headed to the right " -"place!" +#: meowth/__main__.py:1570 +msgid "Bot Permissions" msgstr "" -"Qualcuno ha suggerito una posizione differente per il raid rispetto a quella " -"che ho indovinato! Giocatori {trainer_list}: assicuratevi di esser diretti " -"nel posto giusto!" -#: meowth.py:986 -msgid "" -"Meowth! Exactly *how many* are interested? There wasn't a number anywhere in " -"your message. Or, just say `!maybe` if you're by yourself." +#: meowth/__main__.py:1585 +msgid "**FAIL**" msgstr "" -"Esattamente *quanti* sono interessati? Non c’è stato nessun numero da " -"nessuna parte nel tuo messaggio. oppure, digita **!maybe** se sei " -"interessato solo tu." -#: meowth.py:990 meowth.py:1035 meowth.py:1082 -msgid "" -"Meowth...I got confused because there were several numbers in your message. " -"I don't know which one is the right one." +#: meowth/__main__.py:1585 +msgid "**PASS**" msgstr "" -"Meowth…Sono confuso perché c’erano diversi numeri nel tuo messaggio. Non so " -"quale di questi è quello corretto." -#: meowth.py:1031 -msgid "" -"Meowth! Exactly *how many* are coming? There wasn't a number anywhere in " -"your message. Or, just say **!coming** if you're by yourself." +#: meowth/__main__.py:1593 +msgid "**MISSING**" msgstr "" -"Esattamente *quanti* stanno arrivando? Non c’è stato nessun numero da " -"nessuna parte nel tuo messaggio. Oppure, digita **!coming** se stai " -"arrivando da solo." -#: meowth.py:1078 -msgid "" -"Meowth! Exactly *how many* are here? There wasn't a number anywhere in your " -"message. Or, just say **!here** if you're by yourself." +#: meowth/__main__.py:1596 +msgid "**ENABLED**" msgstr "" -"Esattamente *quanti* sono lì? Non c’è stato nessun numero da nessuna parte " -"nel tuo messaggio. Oppure, digita **!here** se sei arrivato da solo." -#: meowth.py:1139 -msgid "" -" including {trainer_list} and the people with them! Let them know if there " -"is a group forming" +#: meowth/__main__.py:1601 +msgid "GUILD" msgstr "" -" tra cui {trainer_list} e i giocatori con loro! Tenetelo presente e " -"aspettate se possibile" -#: meowth.py:1140 -msgid "Meowth! {trainer_count} interested{including_string}!" -msgstr "{trainer_count} interessati {including_string}!" +#: meowth/__main__.py:1606 +msgid "CATEGORY" +msgstr "" -#: meowth.py:1171 -msgid "" -" including {trainer_list} and the people with them! Be considerate and wait " -"for them if possible" +#: meowth/__main__.py:1607 +msgid "CHANNEL" msgstr "" -" tra cui {trainer_list} e i giocatori con loro! Tenetelo presente e " -"aspettate se possibile" -#: meowth.py:1172 -msgid "Meowth! {trainer_count} on the way{including_string}!" +#: meowth/__main__.py:1614 +msgid "I couldn't send an embed here, so I've sent you a DM" +msgstr "" + +#: meowth/__main__.py:1621 meowth/__main__.py:1956 +msgid "welcome" +msgstr "" + +#: meowth/__main__.py:1622 +msgid "" +"Test welcome on yourself or mentioned member.\n" +"\n" +"Usage: !welcome [@member]" +msgstr "" + +#: meowth/__main__.py:1630 +msgid "" +"Get current Meowth log.\n" +"\n" +"Usage: !outputlog\n" +"Output is a link to hastebin." +msgstr "" + +#: meowth/__main__.py:1641 +msgid "" +"Repeats your message in an embed from Meowth.\n" +"\n" +"If the announcement isn't added at the same time as the command, Meowth will " +"wait 3 minutes for a followup message containing the announcement." +msgstr "" + +#: meowth/__main__.py:1641 +msgid "announce" +msgstr "" + +#: meowth/__main__.py:1644 +msgid "say" +msgstr "" + +#: meowth/__main__.py:1652 +msgid "I'll wait for your announcement!" +msgstr "" + +#: meowth/__main__.py:1659 meowth/__main__.py:1715 +msgid "" +"Meowth! You took too long to send me your announcement! Retry when you're " +"ready." +msgstr "" + +#: meowth/__main__.py:1662 +msgid "Announcement" +msgstr "" + +#: meowth/__main__.py:1672 +msgid "to send it to all servers, " +msgstr "" + +#: meowth/__main__.py:1680 +msgid "That's what you sent, does it look good? React with " +msgstr "" + +#: meowth/__main__.py:1682 +msgid "to send to another channel, " +msgstr "" + +#: meowth/__main__.py:1684 +msgid "to send it to this channel, or " +msgstr "" + +#: meowth/__main__.py:1686 +msgid "to cancel" +msgstr "" + +#: meowth/__main__.py:1696 +msgid "Announcement Cancelled." +msgstr "" + +#: meowth/__main__.py:1699 meowth/__main__.py:1711 +msgid "Announcement Sent." +msgstr "" + +#: meowth/__main__.py:1701 +msgid "What channel would you like me to send it to?" +msgstr "" + +#: meowth/__main__.py:1713 +msgid "Meowth! That channel doesn't exist! Retry when you're ready." +msgstr "" + +#: meowth/__main__.py:1726 meowth/__main__.py:3608 +msgid "For support, contact us on our Discord server. Invite Code: hhVjAN8" +msgstr "" + +#: meowth/__main__.py:1740 +msgid "Announcement sent to {} server owners: {} successful, {} failed." +msgstr "" + +#: meowth/__main__.py:1745 +msgid "Announcement Timed Out." +msgstr "" + +#: meowth/__main__.py:1751 +msgid "" +"Meowth Configuration\n" +"\n" +"Meowth will DM you instructions on how to configure Meowth for your server." +"If it is not your first time configuring, you can choose a section to jump " +"to.You can also include a comma separated [list] of sections from the " +"following:all, team, welcome, raid, exraid, invite, counters, wild, " +"research, want, archive, timezone" +msgstr "" + +#: meowth/__main__.py:1751 +msgid "configure" +msgstr "" + +#: meowth/__main__.py:1790 +msgid "" +"I'm sorry, I couldn't understand some of what you entered. Let's just start " +"here." +msgstr "" + +#: meowth/__main__.py:1792 meowth/__main__.py:1909 meowth/__main__.py:1970 +#: meowth/__main__.py:2128 meowth/__main__.py:2351 meowth/__main__.py:2541 +#: meowth/__main__.py:2640 meowth/__main__.py:2739 meowth/__main__.py:2838 +#: meowth/__main__.py:3012 meowth/__main__.py:3092 meowth/__main__.py:3166 +#: meowth/__main__.py:3213 +msgid "" +"**MULTIPLE SESSIONS!**\n" +"\n" +"It looks like you have **{yoursessions}** active configure sessions. I " +"recommend you send **cancel** first and then send your request again to " +"avoid confusing me.\n" +"\n" +"Your Sessions: **{yoursessions}** | Total Sessions: **{allsessions}**" +msgstr "" + +#: meowth/__main__.py:1793 +#, fuzzy +msgid "" +"Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go " +"Helper Bot! I will be guiding you through some steps to get me setup on your " +"server.\n" +"\n" +"**Role Setup**\n" +"Before you begin the configuration, please make sure my role is moved to the " +"top end of the server role hierarchy. It can be under admins and mods, but " +"must be above team and general roles. [Here is an example](http://i.imgur." +"com/c5eaX1u.png)" +msgstr "" +"__**Configurazione di Meowth**__\n" +"\n" +"Giusto! Benvenuti nelle configurazioni di Meowth, il Pokemon Go Helper Bot! " +"Ti guiderò attraverso passo passo all’installazione e al setup sul tuo " +"server.\n" +"\n" +"**Configurazione Assegnamento Team**\n" +"\n" +"Per prima cosa, ho un funzione che permette agli utenti di assegnarsi al " +"proprio Team di Pokemon GO usando delle regole. Se hai già un bot che si " +"occupa di questo, o non vuoi questa funzionalità digita N, altrimenti primi " +"Y per abilitare questa funzione!" + +#: meowth/__main__.py:1795 +msgid "" +"\n" +"\n" +"**Welcome Back**\n" +"This isn't your first time configuring. You can either reconfigure " +"everything by replying with **all** or reply with a comma separated list to " +"configure those commands. Example: `want, raid, wild`" +msgstr "" + +#: meowth/__main__.py:1799 +msgid "" +"\n" +"\n" +"**Enabled Commands:**\n" +"{enabled_commands}" +msgstr "" + +#: meowth/__main__.py:1800 +msgid "" +"\n" +"\n" +"**All Commands:**\n" +"**all** - To redo configuration\n" +"**team** - For Team Assignment configuration\n" +"**welcome** - For Welcome Message configuration\n" +"**raid** - for raid command configuration\n" +"**exraid** - for EX raid command configuration\n" +"**invite** - for invite command configuration\n" +"**counters** - for automatic counters configuration\n" +"**wild** - for wild command configuration\n" +"**research** - for !research command configuration\n" +"**meetup** - for !meetup command configuration\n" +"**want** - for want/unwant command configuration\n" +"**archive** - For !archive configuration\n" +"**trade** - For trade command configuration\n" +"**timezone** - For timezone configuration" +msgstr "" + +#: meowth/__main__.py:1801 meowth/__main__.py:1828 +msgid "" +"\n" +"\n" +"Reply with **cancel** at any time throughout the questions to cancel the " +"configure process." +msgstr "" + +#: meowth/__main__.py:1802 meowth/__main__.py:1829 +msgid "Meowth Configuration - {guild}" +msgstr "" + +#: meowth/__main__.py:1809 meowth/__main__.py:1947 meowth/__main__.py:2014 +#: meowth/__main__.py:2065 meowth/__main__.py:2106 meowth/__main__.py:2148 +#: meowth/__main__.py:2197 meowth/__main__.py:2219 meowth/__main__.py:2238 +#: meowth/__main__.py:2288 meowth/__main__.py:2371 meowth/__main__.py:2420 +#: meowth/__main__.py:2442 meowth/__main__.py:2461 meowth/__main__.py:2519 +#: meowth/__main__.py:2564 meowth/__main__.py:2604 meowth/__main__.py:2660 +#: meowth/__main__.py:2709 meowth/__main__.py:2759 meowth/__main__.py:2808 +#: meowth/__main__.py:2859 meowth/__main__.py:2908 meowth/__main__.py:2930 +#: meowth/__main__.py:2949 meowth/__main__.py:3031 meowth/__main__.py:3108 +#: meowth/__main__.py:3141 meowth/__main__.py:3181 meowth/__main__.py:3228 +msgid "" +"**CONFIG CANCELLED!**\n" +"\n" +"No changes have been made." +msgstr "" + +#: meowth/__main__.py:1823 +msgid "I'm sorry I don't understand. Please reply with the choices above." +msgstr "" + +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 +msgid "Configuration Complete" +msgstr "" + +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 +msgid "" +"Meowth! Alright! Your settings have been saved and I'm ready to go! If you " +"need to change any of these settings, just type **!configure** in your " +"server again." +msgstr "" + +#: meowth/__main__.py:1891 +msgid "All settings" +msgstr "" + +#: meowth/__main__.py:1891 meowth/__main__.py:3933 +msgid "all" +msgstr "" + +#: meowth/__main__.py:1895 +msgid "!team command settings" +msgstr "" + +#: meowth/__main__.py:1895 meowth/__main__.py:3452 meowth/__main__.py:3614 +#: meowth/__main__.py:4432 meowth/__main__.py:4592 meowth/__main__.py:5386 +#: meowth/__main__.py:5400 meowth/__main__.py:6410 +msgid "team" +msgstr "" + +#: meowth/__main__.py:1921 +msgid "Team Assignments" +msgstr "" + +#: meowth/__main__.py:1921 +msgid "" +"Team assignment allows users to assign their Pokemon Go team role using the " +"**!team** command. If you have a bot that handles this already, you may want " +"to disable this feature.\n" +"\n" +"If you are to use this feature, ensure existing team roles are as follows: " +"mystic, valor, instinct. These must be all lowercase letters. If they don't " +"exist yet, I'll make some for you instead.\n" +"\n" +"Respond here with: **N** to disable, **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:1940 +msgid "Team Assignments enabled!" +msgstr "" + +#: meowth/__main__.py:1944 +msgid "Team Assignments disabled!" +msgstr "" + +#: meowth/__main__.py:1950 meowth/__main__.py:2109 meowth/__main__.py:2522 +#: meowth/__main__.py:2567 +msgid "" +"I'm sorry I don't understand. Please reply with either **N** to disable, or " +"**Y** to enable." +msgstr "" + +#: meowth/__main__.py:1956 +msgid "Welcome message settings" +msgstr "" + +#: meowth/__main__.py:1981 +msgid "" +"I can welcome new members to the server with a short message. Here is an " +"example, but it is customizable:\n" +"\n" +msgstr "" + +#: meowth/__main__.py:1983 +#, fuzzy +msgid "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! Set your team by " +"typing '**!team mystic**' or '**!team valor**' or '**!team instinct**' " +"without quotations. If you have any questions just ask an admin." +msgstr "" +"Messaggio di esempio:```Benvenuto in [SERVER], @[MEMBER]! Imposta il tuo " +"team digitando ‘!team mystic’ o ‘!team valor’ o ‘!team instinct’ senza le " +"virgolette. Per qualsiasi domanda chiedi pure ad un amministratore.```" + +#: meowth/__main__.py:1985 +#, fuzzy +msgid "" +"Meowth! Welcome to {server_name}, {owner_name.mention}! If you have any " +"questions just ask an admin." +msgstr "Benvenuto in {server.name}, {new_member_name.mention}! " + +#: meowth/__main__.py:1986 +msgid "" +"\n" +"\n" +"This welcome message can be in a specific channel or a direct message. If " +"you have a bot that handles this already, you may want to disable this " +"feature.\n" +"\n" +"Respond with: **N** to disable, **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:1987 meowth/__main__.py:2004 +msgid "Welcome Message" +msgstr "" + +#: meowth/__main__.py:1992 +msgid "Welcome Message enabled!" +msgstr "" + +#: meowth/__main__.py:1995 +msgid "" +"Would you like a custom welcome message? You can reply with **N** to use the " +"default message above or enter your own below.\n" +"\n" +"I can read all [discord formatting](https://support.discordapp.com/hc/en-us/" +"articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-) " +"and I have the following template tags:\n" +"\n" +"**{@member}** - Replace member with user name or ID\n" +"**{#channel}** - Replace channel with channel name or ID\n" +"**{&role}** - Replace role name or ID (shows as @deleted-role DM preview)\n" +"**{user}** - Will mention the new user\n" +"**{server}** - Will print your server's name\n" +"Surround your message with [] to send it as an embed. **Warning:** Mentions " +"within embeds may be broken on mobile, this is a Discord bug." +msgstr "" + +#: meowth/__main__.py:2006 +msgid "Current Welcome Message" +msgstr "" + +#: meowth/__main__.py:2011 +msgid "Default welcome message set" +msgstr "" + +#: meowth/__main__.py:2017 +msgid "" +"Please shorten your message to less than 500 characters. You entered {count}." +msgstr "" + +#: meowth/__main__.py:2027 +msgid "" +"{msg}\n" +"\n" +"**Warning:**\n" +"The following could not be found: {errors}" +msgstr "" + +#: meowth/__main__.py:2028 +msgid "" +"Please check the data given and retry a new welcome message, or reply with " +"**N** to use the default." +msgstr "" + +#: meowth/__main__.py:2033 +msgid "Here's what you sent. Does it look ok?" +msgstr "" + +#: meowth/__main__.py:2040 +msgid "" +"Here's what you sent. Does it look ok?\n" +"\n" +"{welcome}" +msgstr "" + +#: meowth/__main__.py:2047 +msgid "" +"Please enter a new welcome message, or reply with **N** to use the default." +msgstr "" + +#: meowth/__main__.py:2051 +msgid "" +"Welcome Message set to:\n" +"\n" +"{}" +msgstr "" + +#: meowth/__main__.py:2054 +msgid "Welcome Message Channel" +msgstr "" + +#: meowth/__main__.py:2054 +msgid "" +"Which channel in your server would you like me to post the Welcome Messages? " +"You can also choose to have them sent to the new member via Direct Message " +"(DM) instead.\n" +"\n" +"Respond with: **channel-name** or ID of a channel in your server or **DM** " +"to Direct Message:" +msgstr "" + +#: meowth/__main__.py:2059 +msgid "Welcome DM set" +msgstr "" + +#: meowth/__main__.py:2062 +msgid "" +"Channel names can't contain spaces, sorry. Please double check the name and " +"send your response again." +msgstr "" + +#: meowth/__main__.py:2093 meowth/__main__.py:2186 meowth/__main__.py:2409 +#: meowth/__main__.py:2698 meowth/__main__.py:2797 meowth/__main__.py:2897 +#: meowth/__main__.py:3069 meowth/__main__.py:3270 +msgid "" +"I couldn't set my own permissions in this channel. Please ensure I have the " +"correct permissions in {channel} using **{prefix}get perms**." +msgstr "" + +#: meowth/__main__.py:2094 +msgid "Welcome Channel set to {channel}" +msgstr "" + +#: meowth/__main__.py:2097 +msgid "" +"The channel you provided isn't in your server. Please double check your " +"channel and resend your response." +msgstr "" + +#: meowth/__main__.py:2103 +msgid "Welcome Message disabled!" +msgstr "" + +#: meowth/__main__.py:2114 +msgid "!raid reporting settings" +msgstr "" + +#: meowth/__main__.py:2114 meowth/__main__.py:4042 meowth/__main__.py:5039 +#: meowth/__main__.py:5601 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "raid" +msgstr "" + +#: meowth/__main__.py:2139 +msgid "Raid Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2139 +msgid "" +"Raid Reporting allows users to report active raids with **!raid** or raid " +"eggs with **!raidegg**. Pokemon raid reports are contained within one or " +"more channels. Each channel will be able to represent different areas/" +"communities. I'll need you to provide a list of channels in your server you " +"will allow reports from in this format: `channel-name, channel-name, channel-" +"name`\n" +"\n" +"Example: `kansas-city-raids, hull-raids, sydney-raids`\n" +"\n" +"If you do not require raid or raid egg reporting, you may want to disable " +"this function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2145 +msgid "Raid Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2177 +msgid "Raid Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2189 meowth/__main__.py:2412 meowth/__main__.py:2701 +#: meowth/__main__.py:2800 meowth/__main__.py:2900 meowth/__main__.py:3073 +#: meowth/__main__.py:3274 +msgid "" +"The channel list you provided doesn't match with your servers channels.\n" +"\n" +"The following aren't in your server: **{invalid_channels}**\n" +"\n" +"Please double check your channel list and resend your reponse." +msgstr "" + +#: meowth/__main__.py:2192 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"the raid or egg! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need its corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2192 +msgid "Raid Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 +msgid "Entered Channels" +msgstr "" + +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 +msgid "{citychannel_list}" +msgstr "" + +#: meowth/__main__.py:2206 meowth/__main__.py:2429 meowth/__main__.py:2718 +#: meowth/__main__.py:2817 meowth/__main__.py:2917 +msgid "" +"The number of cities doesn't match the number of channels you gave me " +"earlier!\n" +"\n" +"I'll show you the two lists to compare:\n" +"\n" +"{channellist}\n" +"{citylist}\n" +"\n" +"Please double check that your locations match up with your provided channels " +"and resend your response." +msgstr "" + +#: meowth/__main__.py:2209 +msgid "Raid Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2210 +msgid "" +"How would you like me to categorize the raid channels I create? Your options " +"are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**region** - If you want them categorized by region\n" +"**level** - If you want them categorized by level." +msgstr "" + +#: meowth/__main__.py:2210 meowth/__main__.py:2234 meowth/__main__.py:2285 +msgid "Raid Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2234 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as raid reporting channels." +msgstr "" + +#: meowth/__main__.py:2265 meowth/__main__.py:2316 meowth/__main__.py:2488 +#: meowth/__main__.py:2976 +msgid "" +"The category list you provided doesn't match with your server's categories." +msgstr "" + +#: meowth/__main__.py:2267 meowth/__main__.py:2274 meowth/__main__.py:2318 +#: meowth/__main__.py:2325 meowth/__main__.py:2490 meowth/__main__.py:2497 +#: meowth/__main__.py:2978 meowth/__main__.py:2985 +msgid "" +"\n" +"\n" +"The following aren't in your server: **{invalid_categories}**" +msgstr "" + +#: meowth/__main__.py:2268 meowth/__main__.py:2319 meowth/__main__.py:2491 +#: meowth/__main__.py:2979 +msgid "" +"\n" +"\n" +"Please double check your category list and resend your response. If you just " +"made these categories, try again." +msgstr "" + +#: meowth/__main__.py:2272 meowth/__main__.py:2495 meowth/__main__.py:2983 +msgid "" +"The number of categories I found in your server doesn't match the number of " +"channels you gave me earlier!\n" +"\n" +"I'll show you the two lists to compare:\n" +"\n" +"**Matched Channels:** {channellist}\n" +"**Matched Categories:** {catlist}\n" +"\n" +"Please double check that your categories match up with your provided " +"channels and resend your response." +msgstr "" + +#: meowth/__main__.py:2285 +msgid "" +"Pokemon Go currently has five levels of raids. Please provide the names of " +"the categories you would like each level of raid to appear in. Use the " +"following order: 1, 2, 3, 4, 5 \n" +"\n" +"You do not need to use different categories for each level, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `level 1-3, level 1-3, level 1-3, level 4, 1231231241561337813`" +msgstr "" + +#: meowth/__main__.py:2323 +msgid "" +"The number of categories I found in your server doesn't match the number of " +"raid levels! Make sure you give me exactly six categories, one for each " +"level of raid. You can use the same category for multiple levels if you " +"want, but I need to see six category names.\n" +"\n" +"**Matched Categories:** {catlist}\n" +"\n" +"Please double check your categories." +msgstr "" + +#: meowth/__main__.py:2329 meowth/__main__.py:2502 meowth/__main__.py:2990 +msgid "Sorry, I didn't understand your answer! Try again." +msgstr "" + +#: meowth/__main__.py:2332 +msgid "Raid Categories are set" +msgstr "" + +#: meowth/__main__.py:2337 +msgid "!exraid reporting settings" +msgstr "" + +#: meowth/__main__.py:2337 meowth/__main__.py:4643 +msgid "exraid" +msgstr "" + +#: meowth/__main__.py:2362 +msgid "EX Raid Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2362 +msgid "" +"EX Raid Reporting allows users to report EX raids with **!exraid**. Pokemon " +"EX raid reports are contained within one or more channels. Each channel will " +"be able to represent different areas/communities. I'll need you to provide a " +"list of channels in your server you will allow reports from in this format: " +"`channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-raids, hull-raids, sydney-raids`\n" +"\n" +"If you do not require EX raid reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2368 +msgid "EX Raid Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2400 +msgid "EX Raid Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2415 +msgid "EX Raid Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2415 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"EX raids! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2432 +msgid "EX Raid Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2433 +msgid "" +"How would you like me to categorize the EX raid channels I create? Your " +"options are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**other** - If you want them categorized in a provided category name or ID" +msgstr "" + +#: meowth/__main__.py:2433 meowth/__main__.py:2457 +msgid "EX Raid Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2457 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as EX raid reporting channels." +msgstr "" + +#: meowth/__main__.py:2505 +msgid "EX Raid Categories are set" +msgstr "" + +#: meowth/__main__.py:2507 +msgid "EX Raid Channel Read Permissions" +msgstr "" + +#: meowth/__main__.py:2507 +msgid "" +"Who do you want to be able to **see** the EX Raid channels? Your options " +"are:\n" +"\n" +"**everyone** - To have everyone be able to see all reported EX Raids\n" +"**same** - To only allow those with access to the reporting channel." +msgstr "" + +#: meowth/__main__.py:2512 +msgid "Everyone permission enabled" +msgstr "" + +#: meowth/__main__.py:2516 +msgid "Same permission enabled" +msgstr "" + +#: meowth/__main__.py:2527 +msgid "!invite command settings" +msgstr "" + +#: meowth/__main__.py:2527 meowth/__main__.py:4762 +msgid "invite" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "" +"Do you want access to EX raids controlled through members using the **!" +"invite** command?\n" +"If enabled, members will have read-only permissions for all EX Raids until " +"they use **!invite** to gain access. If disabled, EX Raids will inherit the " +"permissions from their reporting channels.\n" +"\n" +"Respond with: **N** to disable, or **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "Invite Configuration" +msgstr "" + +#: meowth/__main__.py:2557 +msgid "Invite Command enabled" +msgstr "" + +#: meowth/__main__.py:2561 +msgid "Invite Command disabled" +msgstr "" + +#: meowth/__main__.py:2572 +msgid "Automatic counters settings" +msgstr "" + +#: meowth/__main__.py:2572 meowth/__main__.py:5698 +msgid "counters" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "Automatic Counters Configuration" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "" +"Do you want to generate an automatic counters list in newly created raid " +"channels using PokeBattler?\n" +"If enabled, I will post a message containing the best counters for the raid " +"boss in new raid channels. Users will still be able to use **!counters** to " +"generate this list.\n" +"\n" +"Respond with: **N** to disable, or enable with a comma separated list of " +"boss levels that you would like me to generate counters for. Example:`3,4,5," +"EX`" +msgstr "" + +#: meowth/__main__.py:2601 +msgid "Automatic Counters disabled" +msgstr "" + +#: meowth/__main__.py:2618 +msgid "Automatic Counter Levels set to: {levels}" +msgstr "" + +#: meowth/__main__.py:2621 +msgid "" +"Please enter at least one level from 1 to EX separated by comma. Ex: `4,5," +"EX` or **N** to turn off automatic counters." +msgstr "" + +#: meowth/__main__.py:2626 +msgid "!wild reporting settings" +msgstr "" + +#: meowth/__main__.py:2626 meowth/__main__.py:3967 +msgid "wild" +msgstr "" + +#: meowth/__main__.py:2651 +msgid "Wild Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2651 +msgid "" +"Wild Reporting allows users to report wild spawns with **!wild**. Pokemon " +"**wild** reports are contained within one or more channels. Each channel " +"will be able to represent different areas/communities. I'll need you to " +"provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-wilds, hull-wilds, sydney-wilds`\n" +"\n" +"If you do not require **wild** reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2657 +msgid "Wild Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2689 +msgid "Wild Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2704 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"wild spawns! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2704 +msgid "Wild Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2721 +msgid "Wild Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2725 +msgid "!research reporting settings" +msgstr "" + +#: meowth/__main__.py:2725 meowth/__main__.py:4820 meowth/__main__.py:7164 +msgid "research" +msgstr "" + +#: meowth/__main__.py:2750 +msgid "Research Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2750 +msgid "" +"Research Reporting allows users to report field research with **!research**. " +"Pokemon **research** reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-research, hull-research, sydney-research`\n" +"\n" +"If you do not require **research** reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2756 +msgid "Research Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2788 +msgid "Research Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2803 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"field research! To do this, I need to know which suburb/town/region each " +"report channel represents, to ensure we get the right location in the map. " +"For each report channel you provided, I will need its corresponding general " +"location using only letters and spaces, with each location seperated by a " +"comma and space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2803 +msgid "Research Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2820 +msgid "Research Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2824 +msgid "!meetup reporting settings" +msgstr "" + +#: meowth/__main__.py:2824 meowth/__main__.py:4947 meowth/__main__.py:5434 +msgid "meetup" +msgstr "" + +#: meowth/__main__.py:2850 +msgid "Meetup Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2850 +msgid "" +"Meetup Reporting allows users to report meetups with **!meetup** or **!" +"event**. Meetup reports are contained within one or more channels. Each " +"channel will be able to represent different areas/communities. I'll need you " +"to provide a list of channels in your server you will allow reports from in " +"this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-meetups, hull-meetups, sydney-meetups`\n" +"\n" +"If you do not require meetup reporting, you may want to disable this " +"function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2856 +msgid "Meetup Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2888 +msgid "Meetup Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2903 +msgid "" +"For each report, I generate Google Maps links to give people directions to " +"meetups! To do this, I need to know which suburb/town/region each report " +"channel represents, to ensure we get the right location in the map. For each " +"report channel you provided, I will need its corresponding general location " +"using only letters and spaces, with each location seperated by a comma and " +"space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels " +"in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching " +"the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2903 +msgid "Meetup Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2920 +msgid "Meetup Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2921 +msgid "" +"How would you like me to categorize the meetup channels I create? Your " +"options are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**other** - If you want them categorized in a provided category name or ID" +msgstr "" + +#: meowth/__main__.py:2921 meowth/__main__.py:2945 +msgid "Meetup Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2945 +msgid "" +"In the same order as they appear below, please give the names of the " +"categories you would like raids reported in each channel to appear in. You " +"do not need to use different categories for each channel, but they do need " +"to be pre-existing categories. Separate each category name with a comma. " +"Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as meetup reporting channels." +msgstr "" + +#: meowth/__main__.py:2993 +msgid "Meetup Categories are set" +msgstr "" + +#: meowth/__main__.py:2998 +msgid "!want/!unwant settings" +msgstr "" + +#: meowth/__main__.py:2998 meowth/__main__.py:3782 +msgid "want" +msgstr "" + +#: meowth/__main__.py:3023 +msgid "Pokemon Notifications" +msgstr "" + +#: meowth/__main__.py:3023 +msgid "" +"The **!want** and **!unwant** commands let you add or remove roles for " +"Pokemon that will be mentioned in reports. This let you get notifications on " +"the Pokemon you want to track. I just need to know what channels you want to " +"allow people to manage their pokemon with the **!want** and **!unwant** " +"command.\n" +"\n" +"If you don't want to allow the management of tracked Pokemon roles, then you " +"may want to disable this feature.\n" +"\n" +"Repond with: **N** to disable, or the **channel-name** list to enable, each " +"seperated by a comma and space." +msgstr "" + +#: meowth/__main__.py:3028 +msgid "Pokemon Notifications disabled" +msgstr "" + +#: meowth/__main__.py:3070 +msgid "Pokemon Notifications enabled" +msgstr "" + +#: meowth/__main__.py:3078 +msgid "Configure !archive command settings" +msgstr "" + +#: meowth/__main__.py:3078 meowth/__main__.py:3533 +msgid "archive" +msgstr "" + +#: meowth/__main__.py:3103 +msgid "" +"The **!archive** command marks temporary raid channels for archival rather " +"than deletion. This can be useful for investigating potential violations of " +"your server's rules in these channels.\n" +"\n" +"If you would like to disable this feature, reply with **N**. Otherwise send " +"the category you would like me to place archived channels in. You can say " +"**same** to keep them in the same category, or type the name or ID of a " +"category in your server." +msgstr "" + +#: meowth/__main__.py:3103 meowth/__main__.py:3135 +msgid "Archive Configuration" +msgstr "" + +#: meowth/__main__.py:3113 +msgid "Archived channels will remain in the same category." +msgstr "" + +#: meowth/__main__.py:3117 +msgid "Archived Channels disabled." +msgstr "" + +#: meowth/__main__.py:3128 +msgid "" +"I couldn't find the category you replied with! Please reply with **same** to " +"leave archived channels in the same category, or give the name or ID of an " +"existing category." +msgstr "" + +#: meowth/__main__.py:3132 +msgid "Archive category set." +msgstr "" + +#: meowth/__main__.py:3135 +msgid "" +"I can also listen in your raid channels for words or phrases that you want " +"to trigger an automatic archival. For example, if discussion of spoofing is " +"against your server rules, you might tell me to listen for the word " +"'spoofing'.\n" +"\n" +"Reply with **none** to disable this feature, or reply with a comma separated " +"list of phrases you want me to listen in raid channels for." +msgstr "" + +#: meowth/__main__.py:3139 +msgid "Phrase list disabled." +msgstr "" + +#: meowth/__main__.py:3148 +msgid "Archive Phrase list set." +msgstr "" + +#: meowth/__main__.py:3152 +msgid "Configure timezone and other settings" +msgstr "" + +#: meowth/__main__.py:3177 +msgid "" +"There are a few settings available that are not within **!configure**. To " +"set these, use **!set ** in any channel to set that setting.\n" +"\n" +"These include:\n" +"**!set regional ** - To set a server's regional raid boss\n" +"**!set prefix ** - To set my command prefix\n" +"**!set timezone ** - To set offset outside of **!configure**\n" +"**!set silph ** - To set a trainer's SilphRoad card (usable by " +"members)\n" +"**!set pokebattler ** - To set a trainer's pokebattler ID (usable by " +"members)\n" +"\n" +"However, we can do your timezone now to help coordinate reports for you. For " +"others, use the **!set** command.\n" +"\n" +"The current 24-hr time UTC is {utctime}. How many hours off from that are " +"you?\n" +"\n" +"Respond with: A number from **-12** to **12**:" +msgstr "" + +#: meowth/__main__.py:3177 +msgid "Timezone Configuration and Other Settings" +msgstr "" + +#: meowth/__main__.py:3187 meowth/__main__.py:3190 +msgid "" +"I couldn't convert your answer to an appropriate timezone!\n" +"\n" +"Please double check what you sent me and resend a number strarting from " +"**-12** to **12**." +msgstr "" + +#: meowth/__main__.py:3195 +msgid "Timezone set" +msgstr "" + +#: meowth/__main__.py:3199 +msgid "!trade reporting settings" +msgstr "" + +#: meowth/__main__.py:3199 +msgid "trade" +msgstr "" + +#: meowth/__main__.py:3224 +msgid "" +"The **!trade** command allows your users to organize and coordinate trades. " +"This command requires at least one channel specifically for trades.\n" +"\n" +"If you would like to disable this feature, reply with **N**. Otherwise, just " +"send the names or IDs of the channels you want to allow the **!trade** " +"command in, separated by commas." +msgstr "" + +#: meowth/__main__.py:3224 +msgid "Trade Configuration" +msgstr "" + +#: meowth/__main__.py:3232 +msgid "Trade disabled." +msgstr "" + +#: meowth/__main__.py:3271 +msgid "Pokemon Trades enabled" +msgstr "" + +#: meowth/__main__.py:3279 +msgid "" +"Reloads the JSON files for the server\n" +"\n" +"Useful to avoid a full restart if boss list changed" +msgstr "" + +#: meowth/__main__.py:3279 +msgid "reload_json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "Edits or displays raid_info.json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "raid_json" +msgstr "" + +#: meowth/__main__.py:3292 +msgid "" +"\n" +"**Level {level} raid list:** `{raidlist}` \n" +msgstr "" + +#: meowth/__main__.py:3299 meowth/__main__.py:3312 meowth/__main__.py:3317 +msgid "**Level {level} raid list:** `{raidlist}` \n" +msgstr "" + +#: meowth/__main__.py:3310 +msgid "" +"I couldn't understand the list you supplied! Please use a comma-separated " +"list of Pokemon species numbers." +msgstr "" + +#: meowth/__main__.py:3311 +msgid "I will replace this:\n" +msgstr "" + +#: meowth/__main__.py:3316 +msgid "" +"\n" +"\n" +"With this:\n" +msgstr "" + +#: meowth/__main__.py:3321 +msgid "" +"\n" +"\n" +"Continue?" +msgstr "" + +#: meowth/__main__.py:3329 +msgid "Meowth! Configuration cancelled!" +msgstr "" + +#: meowth/__main__.py:3340 +msgid "Meowth! Configuration successful!" +msgstr "" + +#: meowth/__main__.py:3342 +msgid "Meowth! I'm not sure what went wrong, but configuration is cancelled!" +msgstr "" + +#: meowth/__main__.py:3345 +msgid "reset_board" +msgstr "" + +#: meowth/__main__.py:3360 +msgid "every user" +msgstr "" + +#: meowth/__main__.py:3382 +msgid "" +"Are you sure you want to reset the **{type}** report stats for **{target}**?" +msgstr "" + +#: meowth/__main__.py:3408 +msgid "{trainer}'s report stats have been cleared!" +msgstr "" + +#: meowth/__main__.py:3412 +msgid "" +"Changes raid boss.\n" +"\n" +"Usage: !changeraid \n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3412 +msgid "changeraid" +msgstr "" + +#: meowth/__main__.py:3420 +msgid "The channel you entered is not a raid channel." +msgstr "" + +#: meowth/__main__.py:3423 meowth/__main__.py:4330 +msgid "level-{egg_level}-egg-" +msgstr "" + +#: meowth/__main__.py:3442 meowth/__main__.py:3445 meowth/__main__.py:4346 +#: meowth/__main__.py:4349 meowth/__main__.py:4718 meowth/__main__.py:4721 +#: meowth/__main__.py:6416 meowth/__main__.py:6419 +msgid "**Possible Bosses:**" +msgstr "" + +#: meowth/__main__.py:3442 meowth/__main__.py:4346 meowth/__main__.py:4718 +#: meowth/__main__.py:6416 +msgid "{bosslist1}" +msgstr "" + +#: meowth/__main__.py:3443 meowth/__main__.py:4347 meowth/__main__.py:4719 +#: meowth/__main__.py:6417 +msgid "{bosslist2}" +msgstr "" + +#: meowth/__main__.py:3445 meowth/__main__.py:4349 meowth/__main__.py:4721 +#: meowth/__main__.py:6419 +msgid "{bosslist}" +msgstr "" + +#: meowth/__main__.py:3453 meowth/__main__.py:4433 meowth/__main__.py:4593 +#: meowth/__main__.py:5387 meowth/__main__.py:5401 meowth/__main__.py:6411 +msgid "status" +msgstr "" + +#: meowth/__main__.py:3457 meowth/__main__.py:3458 +msgid "Level {}" +msgstr "" + +#: meowth/__main__.py:3457 meowth/__main__.py:3458 +msgid "level\\s\\d" +msgstr "" + +#: meowth/__main__.py:3460 +#, fuzzy +msgid "Meowth! Level {} reported" +msgstr "{0} sta aspettando sotto il raid!" + +#: meowth/__main__.py:3460 meowth/__main__.py:3461 +msgid "Meowth!\\s.*\\sraid\\sreported" +msgstr "" + +#: meowth/__main__.py:3461 +msgid "Meowth! Level {}" +msgstr "" + +#: meowth/__main__.py:3477 +msgid "" +"Clears raid channel status lists.\n" +"\n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3477 +msgid "clearstatus" +msgstr "" + +#: meowth/__main__.py:3481 +msgid "" +"Are you sure you want to clear all status for this raid? Everybody will have " +"to RSVP again. If you are wanting to clear one user's status, use `!" +"setstatus cancel`" +msgstr "" + +#: meowth/__main__.py:3497 +#, fuzzy +msgid "Meowth! Raid status lists have been cleared!" +msgstr "Il comando **!wild** è stato disabilitato." + +#: meowth/__main__.py:3502 +msgid "" +"Changes raid channel status lists.\n" +"\n" +" Usage: !setstatus [count]\n" +" User can be a mention or ID number. Status can be maybeinterested/i, " +"coming/c, here/h, or cancel/x\n" +" Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3502 +msgid "setstatus" +msgstr "" + +#: meowth/__main__.py:3513 +msgid "Meowth! {status} is not a valid status!" +msgstr "" + +#: meowth/__main__.py:3519 +msgid "" +"Removes all 0 member pokemon roles.\n" +"\n" +" Usage: !cleanroles" +msgstr "" + +#: meowth/__main__.py:3519 +msgid "cleanroles" +msgstr "" + +#: meowth/__main__.py:3531 +msgid "Removed {cleancount} empty roles" +msgstr "" + +#: meowth/__main__.py:3533 +msgid "Marks a raid channel for archival." +msgstr "" + +#: meowth/__main__.py:3550 +msgid "Shows Meowth's uptime" +msgstr "" + +#: meowth/__main__.py:3550 +msgid "uptime" +msgstr "" + +#: meowth/__main__.py:3557 meowth/__main__.py:3607 +msgid "Uptime" +msgstr "" + +#: meowth/__main__.py:3561 meowth/__main__.py:3612 +msgid "I need the `Embed links` permission to send this" +msgstr "" + +#: meowth/__main__.py:3570 +msgid "{yr}y {mth}m {day}d {hr}:{min}" +msgstr "" + +#: meowth/__main__.py:3572 +msgid "{mth}m {day}d {hr}:{min}" +msgstr "" + +#: meowth/__main__.py:3574 +msgid "{day} days {hr} hrs {min} mins" +msgstr "" + +#: meowth/__main__.py:3576 +msgid "{hr} hrs {min} mins {sec} secs" +msgstr "" + +#: meowth/__main__.py:3578 +msgid "{min} mins {sec} secs" +msgstr "" + +#: meowth/__main__.py:3581 +msgid "Shows info about Meowth" +msgstr "" + +#: meowth/__main__.py:3581 +msgid "about" +msgstr "" + +#: meowth/__main__.py:3593 +msgid "" +"I'm Meowth! A Pokemon Go helper bot for Discord!\n" +"\n" +"I'm made by [{author_name}]({author_repo}) and improvements have been " +"contributed by many other people also.\n" +"\n" +"[Join our server]({server_invite}) if you have any questions or feedback.\n" +"\n" +msgstr "" + +#: meowth/__main__.py:3600 +msgid "About Meowth" +msgstr "" + +#: meowth/__main__.py:3601 +msgid "Owner" +msgstr "" + +#: meowth/__main__.py:3603 +msgid "Servers" +msgstr "" + +#: meowth/__main__.py:3604 +msgid "Members" +msgstr "" + +#: meowth/__main__.py:3605 +msgid "Your Server" +msgstr "" + +#: meowth/__main__.py:3606 +msgid "Your Members" +msgstr "" + +#: meowth/__main__.py:3614 +msgid "" +"Set your team role.\n" +"\n" +" Usage: !team \n" +" The team roles have to be created manually beforehand by the server " +"administrator." +msgstr "" + +#: meowth/__main__.py:3639 +msgid "Maximum guild roles reached." +msgstr "" + +#: meowth/__main__.py:3644 +msgid "" +"Meowth! My roles are ranked lower than the following team roles: " +"**{higher_roles_list}**\n" +"Please get an admin to move my roles above them!" +msgstr "" +"Il mio ruolo è gerarchicamente inferiore ai seguenti ruoli dei team " +"**{higest_roles_list}**\n" +"Per favore segnala ad un admin di spostare il mio ruolo sopra il loro!" + +#: meowth/__main__.py:3665 +msgid "Meowth! You already have a team role!" +msgstr "Hai già un Team impostato come ruolo!" + +#: meowth/__main__.py:3669 +#, fuzzy +msgid "Meowth! You are already in Team Harmony!" +msgstr "Hai già un Team impostato come ruolo!" + +#: meowth/__main__.py:3673 +#, fuzzy +msgid "" +"Meowth! {team_role} is not configured as a role on this server. Please " +"contact an admin for assistance." +msgstr "" +"Il ruolo “{entered_team}” non è configurato su questo server! Contatta un " +"admin!" + +#: meowth/__main__.py:3677 +msgid "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" +msgstr "“{entered_team}” non è un team valido! prova {available_teams}" + +#: meowth/__main__.py:3681 +msgid "" +"Meowth! The \"{entered_team}\" role isn't configured on this server! Contact " +"an admin!" +msgstr "" +"Il ruolo “{entered_team}” non è configurato su questo server! Contatta un " +"admin!" + +#: meowth/__main__.py:3687 +msgid "Meowth! Added {member} to Team {team_name}! {team_emoji}" +msgstr "Aggiunto {member} al Team {team_name}! {team_emoji}" + +#: meowth/__main__.py:3689 +msgid "Meowth! I can't add roles!" +msgstr "Non posso aggiungere questo ruolo!" + +#: meowth/__main__.py:3700 +msgid "Traveler Card" +msgstr "" + +#: meowth/__main__.py:3702 +msgid "{user}'s Trainer Profile" +msgstr "" + +#: meowth/__main__.py:3704 +msgid "Silph Road" +msgstr "" + +#: meowth/__main__.py:3705 +msgid "Pokebattler" +msgstr "" + +#: meowth/__main__.py:3706 +msgid "Raid Reports" +msgstr "" + +#: meowth/__main__.py:3707 +msgid "Egg Reports" +msgstr "" + +#: meowth/__main__.py:3708 +msgid "EX Raid Reports" +msgstr "" + +#: meowth/__main__.py:3709 +msgid "Wild Reports" +msgstr "" + +#: meowth/__main__.py:3710 +msgid "Research Reports" +msgstr "" + +#: meowth/__main__.py:3713 +msgid "" +"Displays the top ten reporters of a server.\n" +"\n" +" Usage: !leaderboard [type]\n" +" Accepted types: raids, eggs, exraids, wilds, research" +msgstr "" + +#: meowth/__main__.py:3713 +msgid "leaderboard" +msgstr "" + +#: meowth/__main__.py:3725 +msgid "" +"Leaderboard type not supported. Please select from: **total, raids, eggs, " +"exraids, wilds, research**" +msgstr "" + +#: meowth/__main__.py:3740 +msgid "Reporting Leaderboard ({type})" +msgstr "" + +#: meowth/__main__.py:3745 +msgid "Raids: **{raids}** | Eggs: **{eggs}** | " +msgstr "" + +#: meowth/__main__.py:3747 +msgid "EX Raids: **{exraids}** | " +msgstr "" + +#: meowth/__main__.py:3749 +msgid "Wilds: **{wilds}** | " +msgstr "" + +#: meowth/__main__.py:3751 +msgid "Research: **{research}** | " +msgstr "" + +#: meowth/__main__.py:3756 +msgid "No Reports" +msgstr "" + +#: meowth/__main__.py:3756 +msgid "Nobody has made a report or this report type is disabled." +msgstr "" + +#: meowth/__main__.py:3782 +msgid "" +"Add a Pokemon to your wanted list.\n" +"\n" +" Usage: !want \n" +" Meowth will mention you if anyone reports seeing\n" +" this species in their !wild or !raid command.\n" +"\n" +" Behind the scenes, Meowth tracks user !wants by\n" +" creating a server role for the Pokemon species, and\n" +" assigning it to the user." +msgstr "" + +#: meowth/__main__.py:3825 +msgid "Meowth! Did you mean **!list wants**?" +msgstr "" + +#: meowth/__main__.py:3846 +msgid "Maximum guild roles reached. Pokemon not added." +msgstr "" + +#: meowth/__main__.py:3867 +msgid "Meowth! Got it! {member} wants {pokemon}" +msgstr "Fatto! {member} vuole {pokemon}" + +#: meowth/__main__.py:3872 +msgid "Meowth! {member}, I already know you want {pokemon}!" +msgstr "{member}, Immagino volessi dire {pokemon}!" + +#: meowth/__main__.py:3875 +#, fuzzy +msgid "Meowth! {member}, out of your total {count} items:" +msgstr "{member} è per strada con {trainer_count} giocatori!" + +#: meowth/__main__.py:3877 +msgid "" +"\n" +"**{added_count} Added:** \n" +"\t{added_list}" +msgstr "" + +#: meowth/__main__.py:3879 +msgid "" +"\n" +"**{already_want_count} Already Following:** \n" +"\t{already_want_list}" +msgstr "" + +#: meowth/__main__.py:3883 +msgid "" +"\n" +"\t{word}" +msgstr "" + +#: meowth/__main__.py:3885 +msgid ": *({correction}?)*" +msgstr "" + +#: meowth/__main__.py:3886 +msgid "" +"\n" +"**{count} Not Valid:**" +msgstr "" + +#: meowth/__main__.py:3889 +msgid "" +"Remove a Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant \n" +" You will no longer be notified of reports about this Pokemon.\n" +"\n" +" Behind the scenes, Meowth removes the user from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3889 +msgid "unwant" +msgstr "" + +#: meowth/__main__.py:3933 +msgid "" +"Remove all Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant all\n" +" All Pokemon roles are removed.Behind the scenes, Meowth removes the user " +"from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3958 +msgid "{0}, you have no pokemon in your want list." +msgstr "" + +#: meowth/__main__.py:3960 +msgid "{0}, I've removed {1} pokemon from your want list." +msgstr "" + +#: meowth/__main__.py:3967 +msgid "" +"Report a wild Pokemon spawn location.\n" +"\n" +" Usage: !wild \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in." +msgstr "" + +#: meowth/__main__.py:3978 meowth/__main__.py:4064 meowth/__main__.py:4236 +#: meowth/__main__.py:4658 meowth/__main__.py:4839 meowth/__main__.py:4961 +#: meowth/__main__.py:5042 meowth/__main__.py:5049 meowth/__main__.py:5051 +#: meowth/__main__.py:5285 meowth/__main__.py:5305 meowth/__main__.py:5329 +#: meowth/__main__.py:6600 meowth/__main__.py:6761 meowth/__main__.py:6765 +#: meowth/__main__.py:6779 meowth/__main__.py:6861 +msgid "%I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:3981 meowth/__main__.py:3997 +msgid "" +"Meowth! Give more details when reporting! Usage: **!wild " +"**" +msgstr "" +"Fornisci più dettagli quando riporti un pokemon! Utilizza questa sintassi **!" +"wild **" + +#: meowth/__main__.py:4012 +msgid "**This {pokemon} has despawned!**" +msgstr "" + +#: meowth/__main__.py:4014 +#, fuzzy +msgid "Meowth! Click here for my directions to the wild {pokemon}!" +msgstr "Clicca qui per le indicazione di {pokemon}!" + +#: meowth/__main__.py:4014 meowth/__main__.py:4921 +msgid "Ask {author} if my directions aren't perfect!" +msgstr "" + +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 +msgid "**Details:**" +msgstr "" + +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 +msgid "{pokemon} ({pokemonnumber}) {type}" +msgstr "" + +#: meowth/__main__.py:4017 +msgid "**Reactions:**" +msgstr "" + +#: meowth/__main__.py:4017 +msgid "{emoji}: I'm on my way!" +msgstr "" + +#: meowth/__main__.py:4018 +msgid "{emoji}: The Pokemon despawned!" +msgstr "" + +#: meowth/__main__.py:4019 meowth/__main__.py:4183 meowth/__main__.py:4353 +#: meowth/__main__.py:4725 meowth/__main__.py:4839 meowth/__main__.py:4986 +msgid "Reported by @{author} - {timestamp}" +msgstr "" + +#: meowth/__main__.py:4020 +#, fuzzy +msgid "" +"{roletest}Meowth! Wild {pokemon} reported by {member}! Details: " +"{location_details}" +msgstr "{pokemon} selvatico segnalato da {member}! Dettagli:{location_details}" + +#: meowth/__main__.py:4042 +msgid "" +"Report an ongoing raid or a raid egg.\n" +"\n" +" Usage: !raid [weather] [minutes]\n" +" Meowth will insert into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for " +"the purposes of organizing the raid." +msgstr "" + +#: meowth/__main__.py:4067 meowth/__main__.py:4095 meowth/__main__.py:4136 +#: meowth/__main__.py:4145 meowth/__main__.py:4304 +msgid "" +"Meowth! Give more details when reporting! Usage: **!raid " +"**" +msgstr "" +"Fornisci più dettagli quando riporti un raid! Utilizza questa sintassi **!" +"raid **" + +#: meowth/__main__.py:4077 +msgid "Meowth! **!raid assume** is not allowed in this level egg." +msgstr "" + +#: meowth/__main__.py:4089 +msgid "" +"Meowth! Please wait until the egg has hatched before changing it to an open " +"raid!" +msgstr "" + +#: meowth/__main__.py:4124 meowth/__main__.py:4411 meowth/__main__.py:4516 +msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" +msgstr "Il Pokemon col seguente nome {pokemon} NON appare nei raid!" + +#: meowth/__main__.py:4127 +#, fuzzy +msgid "" +"Meowth! The Pokemon {pokemon} only appears in EX Raids! Use **!exraid** to " +"report one!" +msgstr "Il Pokemon col seguente nome {pokemon} NON appare nei raid!" + +#: meowth/__main__.py:4131 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} raids currently last no more " +"than {raidtime} minutes..." +msgstr "" +"Questo è troppo lungo. i Raid attualmente non rimangono per più di due ore.." + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "clear" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "extreme" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "none" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "rainy" +msgstr "" + +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 +msgid "sunny" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "cloudy" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "fog" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "partlycloudy" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "snow" +msgstr "" + +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 +msgid "windy" +msgstr "" + +#: meowth/__main__.py:4151 meowth/__main__.py:4310 +msgid "Meowth! I couldn't find a gym named '{0}'." +msgstr "" + +#: meowth/__main__.py:4155 meowth/__main__.py:4314 +msgid "No notes for this gym." +msgstr "" + +#: meowth/__main__.py:4175 meowth/__main__.py:4557 +msgid "Meowth! Click here for directions to the raid!" +msgstr "Clicca qui per le indicazioni del raid!" + +#: meowth/__main__.py:4177 meowth/__main__.py:4343 +msgid "" +"**Name:** {0}\n" +"**Notes:** {1}" +msgstr "" + +#: meowth/__main__.py:4178 meowth/__main__.py:4344 +msgid "**Gym:**" +msgstr "" + +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 +msgid "**Weaknesses:**" +msgstr "" + +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 +#, fuzzy +msgid "{weakness_list}" +msgstr "Debolezze: {weakness_list}" + +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4429 +#: meowth/__main__.py:4723 +msgid "**Next Group:**" +msgstr "" + +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4723 +#: meowth/__main__.py:4984 meowth/__main__.py:6612 +msgid "Set with **!starttime**" +msgstr "" + +#: meowth/__main__.py:4182 meowth/__main__.py:4352 meowth/__main__.py:4724 +#: meowth/__main__.py:4985 +msgid "Set with **!timerset**" +msgstr "" + +#: meowth/__main__.py:4182 meowth/__main__.py:4564 meowth/__main__.py:4724 +msgid "**Expires:**" +msgstr "" + +#: meowth/__main__.py:4186 +#, fuzzy +msgid "" +"Meowth! {pokemon} raid reported by {member}! Details: {location_details}. " +"Coordinate in {raid_channel}" +msgstr "" +"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4188 +msgid "" +"{roletest}Meowth! {pokemon} raid reported by {member} in {citychannel}! " +"Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4229 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time left on the raid using **!" +"timerset ** so others can check it with **!timer**." +msgstr "" +"Hey {member}, se puoi, imposta il tempo rimanente per il raid usando **!" +"timerset H:MM** così che altri giocatori potranno consultarlo tramite il " +"comando **!timer**." + +#: meowth/__main__.py:4243 +#, fuzzy +msgid "" +"Meowth! Give more details when reporting! Usage: **!raidegg " +"**" +msgstr "" +"Fornisci più dettagli quando riporti un raid! Utilizza questa sintassi **!" +"raid **" + +#: meowth/__main__.py:4249 meowth/__main__.py:4294 +#, fuzzy +msgid "" +"Meowth! Give more details when reporting! Use at least: **!raidegg " +"**. Type **!help** raidegg for more info." +msgstr "" +"Fornisci più dettagli quando riporti un raid! Utilizza questa sintassi **!" +"raid **" + +#: meowth/__main__.py:4255 meowth/__main__.py:5078 +msgid "Did you mean egg hatch time {0} or time remaining before hatch {1}?" +msgstr "" + +#: meowth/__main__.py:4275 meowth/__main__.py:5097 meowth/__main__.py:5155 +#: meowth/__main__.py:5238 meowth/__main__.py:5279 +msgid "Meowth! Please enter a time in the future." +msgstr "" + +#: meowth/__main__.py:4289 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} Raid Eggs currently last no more " +"than {hatchtime} minutes..." +msgstr "" +"Questo è troppo lungo. i Raid attualmente non rimangono per più di due ore.." + +#: meowth/__main__.py:4319 +msgid "Meowth! Raid egg levels are only from 1-5!" +msgstr "" + +#: meowth/__main__.py:4341 meowth/__main__.py:4426 meowth/__main__.py:4716 +#, fuzzy +msgid "Meowth! Click here for directions to the coming raid!" +msgstr "Clicca qui per le indicazioni del raid!" + +#: meowth/__main__.py:4352 meowth/__main__.py:4430 +msgid "**Hatches:**" +msgstr "" + +#: meowth/__main__.py:4355 +#, fuzzy +msgid "" +"Meowth! Level {level} raid egg reported by {member}! Details: " +"{location_details}. Coordinate in {raid_channel}" +msgstr "" +"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4357 +msgid "" +"Meowth! Level {level} raid egg reported by {member} in {citychannel}! " +"Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4381 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**." +msgstr "" +"Hey {member}, se puoi, imposta il tempo rimanente per il raid usando **!" +"timerset H:MM** così che altri giocatori potranno consultarlo tramite il " +"comando **!timer**." + +#: meowth/__main__.py:4414 meowth/__main__.py:4519 +#, fuzzy +msgid "" +"Meowth! The Pokemon {pokemon} does not hatch from level {level} raid eggs!" +msgstr "Il Pokemon col seguente nome {pokemon} NON appare nei raid!" + +#: meowth/__main__.py:4448 +msgid "" +"{roletest}Meowth! This egg will be assumed to be {pokemon} when it hatches!" +msgstr "" + +#: meowth/__main__.py:4493 meowth/__main__.py:5374 meowth/__main__.py:5443 +#: meowth/__main__.py:6402 +msgid "Coordinate here" +msgstr "" + +#: meowth/__main__.py:4531 +msgid "The event has started!" +msgstr "" + +#: meowth/__main__.py:4537 +#, fuzzy +msgid "" +"Meowth! The egg has hatched into a {pokemon} raid! Details: " +"{location_details}. Coordinate in {raid_channel}" +msgstr "" +"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4538 +msgid "" +"Meowth! The egg reported by {member} in {citychannel} hatched into a " +"{pokemon} raid! Details: {location_details}. Coordinate here!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4542 meowth/__main__.py:4728 +msgid "Use the **!invite** command to gain access and coordinate" +msgstr "" + +#: meowth/__main__.py:4543 meowth/__main__.py:4729 +msgid " after using **!invite** to gain access" +msgstr "" + +#: meowth/__main__.py:4545 meowth/__main__.py:4731 +msgid "Coordinate" +msgstr "" + +#: meowth/__main__.py:4547 +#, fuzzy +msgid "" +"Meowth! The EX egg has hatched into a {pokemon} raid! Details: " +"{location_details}. {invitemsgstr} coordinate in {raid_channel}" +msgstr "" +"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4548 +msgid "" +"Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here{invitemsgstr2}!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4562 meowth/__main__.py:4564 meowth/__main__.py:5024 +#: meowth/__main__.py:5028 meowth/__main__.py:5031 meowth/__main__.py:5045 +#: meowth/__main__.py:5047 meowth/__main__.py:5174 meowth/__main__.py:5175 +#: meowth/__main__.py:5181 meowth/__main__.py:5182 meowth/__main__.py:5184 +#: meowth/__main__.py:5185 meowth/__main__.py:5307 meowth/__main__.py:6767 +#: meowth/__main__.py:6773 meowth/__main__.py:6775 meowth/__main__.py:6777 +msgid "%B %d at %I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:4567 +msgid "Ends on %B %d at %I:%M %p (%H:%M)" +msgstr "" + +#: meowth/__main__.py:4590 +msgid "" +"{roletest}Meowth! Trainers {trainer_list}: The raid egg has just hatched " +"into a {pokemon} raid!\n" +"If you couldn't before, you're now able to update your status with **!" +"coming** or **!here**. If you've changed your plans, use **!cancel**." +msgstr "" + +#: meowth/__main__.py:4643 +msgid "" +"Report an upcoming EX raid.\n" +"\n" +" Usage: !exraid \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for " +"the purposes of organizing the raid." +msgstr "" + +#: meowth/__main__.py:4662 meowth/__main__.py:4669 +#, fuzzy +msgid "Meowth! Give more details when reporting! Usage: **!exraid **" +msgstr "" +"Fornisci più dettagli quando riporti un raid! Utilizza questa sintassi **!" +"raid **" + +#: meowth/__main__.py:4681 +msgid "ex-raid-egg-" +msgstr "" + +#: meowth/__main__.py:4733 +#, fuzzy +msgid "" +"Meowth! EX raid egg reported by {member}! Details: {location_details}. " +"{invitemsgstr} in {raid_channel}" +msgstr "" +"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4735 +msgid "" +"Meowth! EX raid reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here{invitemsgstr2}!\n" +"\n" +"Click the question mark reaction to get help on the commands that work in " +"here.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:4757 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time left until the egg hatches " +"using **!timerset ** so others can check it with **!timer**. " +"**** can just be written exactly how it appears on your EX " +"Raid Pass." +msgstr "" +"Hey {member}, se puoi, imposta il tempo rimanente per il raid usando **!" +"timerset H:MM** così che altri giocatori potranno consultarlo tramite il " +"comando **!timer**." + +#: meowth/__main__.py:4762 +msgid "Join an EX Raid." +msgstr "" + +#: meowth/__main__.py:4790 +msgid "" +"Meowth! No EX Raids have been reported in this server! Use **!exraid** to " +"report one!" +msgstr "" + +#: meowth/__main__.py:4792 +msgid "" +"Meowth! {0}, you've told me you have an invite to an EX Raid, and I'm just " +"going to take your word for it! The following {1} EX Raids have been " +"reported:\n" +"{2}\n" +"Reply with **the number** (1, 2, etc) of the EX Raid you have been invited " +"to. If none of them match your invite, type 'N' and report it with **!" +"exraid**" +msgstr "" + +#: meowth/__main__.py:4796 +msgid "Meowth! Be sure to report your EX Raid with **!exraid**!" +msgstr "" + +#: meowth/__main__.py:4799 +msgid "" +"Meowth! I couldn't tell which EX Raid you meant! Try the **!invite** command " +"again, and make sure you respond with the number of the channel that matches!" +msgstr "" + +#: meowth/__main__.py:4810 +msgid "" +"Meowth! Alright {0}, you can now send messages in {1}! Make sure you let the " +"trainers in there know if you can make it to the EX Raid!" +msgstr "" + +#: meowth/__main__.py:4814 +#, fuzzy +msgid "" +"Meowth! I couldn't understand your reply! Try the **!invite** command again!" +msgstr "Non riesco a capire l’orario impostato, utilizza questo formato H:MM." + +#: meowth/__main__.py:4820 +msgid "" +"Report Field research\n" +"\n" +" Guided report method with just !research. If you supply arguments in " +"one\n" +" line, avoid commas in anything but your separations between pokestop,\n" +" quest, reward. Order matters if you supply arguments. If a pokemon name\n" +" is included in reward, a @mention will be used if role exists.\n" +"\n" +" Usage: !research [pokestop name [optional URL], quest, reward]" +msgstr "" + +#: meowth/__main__.py:4844 +msgid "" +"entered an incorrect amount of arguments.\n" +"\n" +"Usage: **!research** or **!research , , **" +msgstr "" + +#: meowth/__main__.py:4849 meowth/__main__.py:4873 +msgid "**Pokestop:**" +msgstr "" + +#: meowth/__main__.py:4850 meowth/__main__.py:4891 +msgid "**Quest:**" +msgstr "" + +#: meowth/__main__.py:4851 meowth/__main__.py:4909 +msgid "**Reward:**" +msgstr "" + +#: meowth/__main__.py:4854 +msgid "**New Research Report**" +msgstr "" + +#: meowth/__main__.py:4854 +msgid "" +"Meowth! I'll help you report a research quest!\n" +"\n" +"First, I'll need to know what **pokestop** you received the quest from. " +"Reply with the name of the **pokestop**. You can reply with **cancel** to " +"stop anytime." +msgstr "" + +#: meowth/__main__.py:4862 meowth/__main__.py:4882 meowth/__main__.py:4900 +msgid "took too long to respond" +msgstr "" + +#: meowth/__main__.py:4865 meowth/__main__.py:4885 meowth/__main__.py:4903 +msgid "cancelled the report" +msgstr "" + +#: meowth/__main__.py:4874 +msgid "" +"Great! Now, reply with the **quest** that you received from **{location}**. " +"You can reply with **cancel** to stop anytime.\n" +"\n" +"Here's what I have so far:" +msgstr "" + +#: meowth/__main__.py:4892 +msgid "" +"Fantastic! Now, reply with the **reward** for the **{quest}** quest that you " +"received from **{location}**. You can reply with **cancel** to stop " +"anytime.\n" +"\n" +"Here's what I have so far:" +msgstr "" + +#: meowth/__main__.py:4919 +msgid "{roletest}Field Research reported by {author}" +msgstr "" + +#: meowth/__main__.py:4920 +#, fuzzy +msgid "Meowth! Click here for my directions to the research!" +msgstr "Clicca qui per le indicazioni del raid!" + +#: meowth/__main__.py:4941 +msgid "**Research Report Cancelled**" +msgstr "" + +#: meowth/__main__.py:4941 +msgid "" +"Meowth! Your report has been cancelled because you {error}! Retry when " +"you're ready." +msgstr "" + +#: meowth/__main__.py:4947 +msgid "" +"Report an upcoming event.\n" +"\n" +" Usage: !meetup \n" +" Meowth will insert the details (really just everything after the species " +"name) into a\n" +" Google maps link and post the link to the same channel the report was " +"made in.\n" +"\n" +" Finally, Meowth will create a separate channel for the report, for the " +"purposes of organizing the event." +msgstr "" + +#: meowth/__main__.py:4964 +#, fuzzy +msgid "Meowth! Give more details when reporting! Usage: **!meetup **" +msgstr "" +"Fornisci più dettagli quando riporti un pokemon! Utilizza questa sintassi **!" +"wild **" + +#: meowth/__main__.py:4970 +msgid "meetup-" +msgstr "" + +#: meowth/__main__.py:4981 +#, fuzzy +msgid "Meowth! Click here for directions to the event!" +msgstr "Clicca qui per le indicazioni del raid!" + +#: meowth/__main__.py:4982 +msgid "**Event Location:**" +msgstr "" + +#: meowth/__main__.py:4984 +msgid "**Event Starts:**" +msgstr "" + +#: meowth/__main__.py:4985 +msgid "**Event Ends:**" +msgstr "" + +#: meowth/__main__.py:4988 +#, fuzzy +msgid "" +"Meowth! Meetup reported by {member}! Details: {location_details}. Coordinate " +"in {raid_channel}" +msgstr "" +"{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " +"Coordinate in {raid_channel}" + +#: meowth/__main__.py:4990 +msgid "" +"Meowth! Meetup reported by {member} in {citychannel}! Details: " +"{location_details}. Coordinate here!\n" +"\n" +"To update your status, choose from the following commands: **!maybe**, **!" +"coming**, **!here**, **!cancel**. If you are bringing more than one trainer/" +"account, add in the number of accounts total, teams optional, on your first " +"status update.\n" +"Example: `!coming 5 2m 2v 1i`\n" +"\n" +"To see the list of trainers who have given their status:\n" +"**!list interested**, **!list coming**, **!list here** or use just **!list** " +"to see all lists. Use **!list teams** to see team distribution.\n" +"\n" +"Sometimes I'm not great at directions, but I'll correct my directions if " +"anybody sends me a maps link or uses **!location new
**. You can " +"see the location of the event by using **!location**\n" +"\n" +"You can set the start time with **!starttime ** (you can " +"also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" +"You can set the end time with **!timerset ** and access " +"this with **!timer**.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:5008 +#, fuzzy +msgid "" +"Meowth! Hey {member}, if you can, set the time that the event starts with **!" +"starttime ** and also set the time that the event ends using " +"**!timerset **." +msgstr "" +"Hey {member}, se puoi, imposta il tempo rimanente per il raid usando **!" +"timerset H:MM** così che altri giocatori potranno consultarlo tramite il " +"comando **!timer**." + +#: meowth/__main__.py:5024 +#, fuzzy +msgid "This event will start at {expiry_time}" +msgstr "Questo raid finirà alle {expiry_time}!" + +#: meowth/__main__.py:5026 +msgid "Nobody has told me a start time! Set it with **!starttime**" +msgstr "" + +#: meowth/__main__.py:5028 +#, fuzzy +msgid " | This event will end at {expiry_time}" +msgstr "Questo raid finirà alle {expiry_time}!" + +#: meowth/__main__.py:5031 +#, fuzzy +msgid "This event will end at {expiry_time}" +msgstr "Questo raid finirà alle {expiry_time}!" + +#: meowth/__main__.py:5033 +msgid "Nobody has told me a end time! Set it with **!timerset**" +msgstr "" + +#: meowth/__main__.py:5036 meowth/__main__.py:5598 +msgid "egg" +msgstr "" + +#: meowth/__main__.py:5037 meowth/__main__.py:5597 +msgid "hatch" +msgstr "" + +#: meowth/__main__.py:5040 meowth/__main__.py:5600 +msgid "end" +msgstr "" + +#: meowth/__main__.py:5042 +#, fuzzy +msgid "This {raidtype}'s timer has already expired as of {expiry_time}!" +msgstr "Il timer del raid è già scaduto alle {expiry_time}!" + +#: meowth/__main__.py:5045 +#, fuzzy +msgid "This {raidtype} will {raidaction} on {expiry}!" +msgstr "Questo raid finirà alle {expiry_time}!" + +#: meowth/__main__.py:5047 +#, fuzzy +msgid "" +"No one told me when the {raidtype} will {raidaction}, so I'm assuming it " +"will {raidaction} on {expiry}!" +msgstr "" +"Nessuno mi ha detto tra quanto il raid finirà, quindi ho assunto che " +"terminerà alle {expiry_time}!" + +#: meowth/__main__.py:5049 +#, fuzzy +msgid "This {raidtype} will {raidaction} at {expiry_time}!" +msgstr "Questo raid finirà alle {expiry_time}!" + +#: meowth/__main__.py:5051 +#, fuzzy +msgid "" +"No one told me when the {raidtype} will {raidaction}, so I'm assuming it " +"will {raidaction} at {expiry_time}!" +msgstr "" +"Nessuno mi ha detto tra quanto il raid finirà, quindi ho assunto che " +"terminerà alle {expiry_time}!" + +#: meowth/__main__.py:5054 +msgid "" +"Set the remaining duration on a raid.\n" +"\n" +" Usage: !timerset \n" +" Works only in raid channels, can be set or overridden by anyone.\n" +" Meowth displays the end time in HH:MM local time." +msgstr "" + +#: meowth/__main__.py:5054 +msgid "timerset" +msgstr "" + +#: meowth/__main__.py:5069 +msgid "Raid Egg" +msgstr "" + +#: meowth/__main__.py:5073 +msgid "Raid" +msgstr "" + +#: meowth/__main__.py:5100 meowth/__main__.py:5105 meowth/__main__.py:5116 +#, fuzzy +msgid "" +"Meowth! I couldn't understand your time format. Try again like this: **!" +"timerset **" +msgstr "" +"Non riesco a capire l'orario impostato, utilizza questo formato: !timerset H:" +"MM" + +#: meowth/__main__.py:5119 +#, fuzzy +msgid "" +"Meowth...that's too long. Level {raidlevel} {raidtype}s currently last no " +"more than {maxtime} minutes..." +msgstr "" +"Questo è troppo lungo. i Raid attualmente non rimangono per più di due ore.." + +#: meowth/__main__.py:5135 meowth/__main__.py:5143 +msgid "" +"Meowth! Your timer wasn't formatted correctly. Change your **!timerset** to " +"match this format: **MM/DD HH:MM AM/PM** (You can also omit AM/PM and use 24-" +"hour time!)" +msgstr "" + +#: meowth/__main__.py:5148 +msgid "Meowth! Please enter a time after your start time." +msgstr "" + +#: meowth/__main__.py:5157 +msgid "Meowth! Timerset isn't supported for EX Raids after they have hatched." +msgstr "" + +#: meowth/__main__.py:5168 +msgid "The channel has been reactivated." +msgstr "" + +#: meowth/__main__.py:5174 meowth/__main__.py:5181 meowth/__main__.py:5184 +msgid "Ends on {end}" +msgstr "" + +#: meowth/__main__.py:5180 +msgid "%B %d at %I:%M %p (%H:%M) | " +msgstr "" + +#: meowth/__main__.py:5180 +msgid "Hatches on {expiry}" +msgstr "" + +#: meowth/__main__.py:5205 +msgid "" +"Have Meowth resend the expire time message for a raid.\n" +"\n" +" Usage: !timer\n" +" The expiry time should have been previously set with !timerset." +msgstr "" + +#: meowth/__main__.py:5205 +msgid "timer" +msgstr "" + +#: meowth/__main__.py:5211 +msgid "Meowth!" +msgstr "" + +#: meowth/__main__.py:5215 +msgid "" +"Set a time for a group to start a raid\n" +"\n" +" Usage: !starttime [HH:MM AM/PM]\n" +" (You can also omit AM/PM and use 24-hour time!)\n" +" Works only in raid channels. Sends a message and sets a group start time " +"that\n" +" can be seen using !starttime (without a time). One start time is allowed " +"at\n" +" a time and is visibile in !list output. Cleared with !starting." +msgstr "" + +#: meowth/__main__.py:5215 +msgid "starttime" +msgstr "" + +#: meowth/__main__.py:5241 +msgid "Meowth! Please enter a time before your end time." +msgstr "" + +#: meowth/__main__.py:5262 meowth/__main__.py:5268 +msgid "" +"Meowth! Your start time wasn't formatted correctly. Change your **!" +"starttime** to match this format: **HH:MM AM/PM** (You can also omit AM/PM " +"and use 24-hour time!)" +msgstr "" + +#: meowth/__main__.py:5276 +#, fuzzy +msgid "Meowth! The raid will be over before that...." +msgstr "Questo raid finirà alle {expiry_time}!" + +#: meowth/__main__.py:5282 +#, fuzzy +msgid "Meowth! The egg will not hatch by then!" +msgstr "Questo raid finirà alle {expiry_time}!" + +#: meowth/__main__.py:5285 +msgid "" +"Meowth! There is already a start time of **{start}** set! Do you want to " +"change it?" +msgstr "" + +#: meowth/__main__.py:5293 +msgid "Start time change cancelled." +msgstr "" + +#: meowth/__main__.py:5308 +msgid "Meowth! The current start time has been set to: **{starttime}**" +msgstr "" + +#: meowth/__main__.py:5329 +msgid "Meowth! The current start time is: **{starttime}**" +msgstr "" + +#: meowth/__main__.py:5331 +msgid "" +"Meowth! No start time has been set, set one with **!starttime HH:MM AM/PM**! " +"(You can also omit AM/PM and use 24-hour time!)" +msgstr "" + +#: meowth/__main__.py:5333 +msgid "" +"Get raid location.\n" +"\n" +" Usage: !location\n" +" Works only in raid channels. Gives the raid location link." +msgstr "" + +#: meowth/__main__.py:5333 +msgid "location" +msgstr "" + +#: meowth/__main__.py:5354 +#, fuzzy +msgid "" +"Meowth! Here's the current location for the raid!\n" +"Details: {location}" +msgstr "" +"Manca il nuovo dettagli della posizione! Utilizzo: **!location **" + +#: meowth/__main__.py:5358 +msgid "" +"Change raid location.\n" +"\n" +" Usage: !location new \n" +" Works only in raid channels. Changes the google map links." +msgstr "" + +#: meowth/__main__.py:5358 +msgid "new" +msgstr "" + +#: meowth/__main__.py:5367 +#, fuzzy +msgid "" +"Meowth! We're missing the new location details! Usage: **!location new **" +msgstr "" +"Manca il nuovo dettagli della posizione! Utilizzo: **!location **" + +#: meowth/__main__.py:5416 +msgid "" +"Recover a raid channel if it is no longer responding to commands\n" +"\n" +" Usage: !recover\n" +" Only necessary after a crash." +msgstr "" + +#: meowth/__main__.py:5416 +msgid "recover" +msgstr "" + +#: meowth/__main__.py:5422 +msgid "Meowth! I can't recover this channel because I know about it already!" +msgstr "" + +#: meowth/__main__.py:5433 +msgid "level-[1-5]-egg" +msgstr "" + +#: meowth/__main__.py:5481 +msgid "Ends on %B %d at %I:%M %p" +msgstr "" + +#: meowth/__main__.py:5524 +msgid "Meowth! I couldn't recognize this as a raid channel!" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5534 +#, fuzzy +msgid "is interested" +msgstr "{0} sta aspettando sotto il raid!" + +#: meowth/__main__.py:5528 meowth/__main__.py:5536 +msgid "on the way" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5538 +msgid "at the raid" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5540 +msgid "left the raid" +msgstr "" + +#: meowth/__main__.py:5528 meowth/__main__.py:5540 +msgid "no longer" +msgstr "" + +#: meowth/__main__.py:5542 +msgid "trainers" +msgstr "" + +#: meowth/__main__.py:5590 +msgid "" +"Meowth! This channel has been recovered! However, there may be some " +"inaccuracies in what I remembered! Here's what I have:" +msgstr "" + +#: meowth/__main__.py:5602 +msgid "" +"\n" +"I'm not sure when this {raidtype} will {action}, so please use **!timerset** " +"if you can!" +msgstr "" + +#: meowth/__main__.py:5609 +msgid "" +"A command to report a raid channel as a duplicate.\n" +"\n" +" Usage: !duplicate\n" +" Works only in raid channels. When three users report a channel as a " +"duplicate,\n" +" Meowth deactivates the channel and marks it for deletion." +msgstr "" + +#: meowth/__main__.py:5609 +msgid "duplicate" +msgstr "" + +#: meowth/__main__.py:5630 +#, fuzzy +msgid "Meowth! You've already made a duplicate report for this {raidtype}!" +msgstr "Hai già un Team impostato come ruolo!" + +#: meowth/__main__.py:5651 +msgid "Meowth! Are you sure you wish to remove this {raidtype}?" +msgstr "" + +#: meowth/__main__.py:5660 +msgid "Duplicate Report cancelled." +msgstr "" + +#: meowth/__main__.py:5669 +msgid "Duplicate Confirmed" +msgstr "" + +#: meowth/__main__.py:5686 +msgid "Duplicate Report Timed Out." +msgstr "" + +#: meowth/__main__.py:5694 +msgid "Duplicate report #{duplicate_report_count} received." +msgstr "" + +#: meowth/__main__.py:5698 +msgid "" +"Simulate a Raid battle with Pokebattler.\n" +"\n" +" Usage: !counters [pokemon] [weather] [user]\n" +" See !help weather for acceptable values for weather.\n" +" If [user] is a valid Pokebattler user id, Meowth will simulate the Raid " +"with that user's Pokebox.\n" +" Uses current boss and weather by default if available.\n" +" " +msgstr "" + +#: meowth/__main__.py:5739 meowth/__main__.py:5766 +msgid "" +"Meowth! You're missing some details! Be sure to enter a pokemon that appears " +"in raids! Usage: **!counters [weather] [user ID]**" +msgstr "" + +#: meowth/__main__.py:5776 +msgid "user #{user}'s" +msgstr "" + +#: meowth/__main__.py:5779 +msgid "Level 30" +msgstr "" + +#: meowth/__main__.py:5821 meowth/__main__.py:5904 +msgid "{pkmn} | {weather} | {movesetstr}" +msgstr "" + +#: meowth/__main__.py:5822 meowth/__main__.py:5882 +msgid "**CP:** {raid_cp}\n" +msgstr "" + +#: meowth/__main__.py:5823 meowth/__main__.py:5883 +msgid "**Weather:** {weather}\n" +msgstr "" + +#: meowth/__main__.py:5824 meowth/__main__.py:5884 +msgid "**Attacker Level:** {atk_levels}" +msgstr "" + +#: meowth/__main__.py:5828 meowth/__main__.py:5888 meowth/__main__.py:5908 +msgid "Results courtesy of Pokebattler" +msgstr "" + +#: meowth/__main__.py:5835 meowth/__main__.py:5893 meowth/__main__.py:5913 +msgid "{move1} | {move2}" +msgstr "" + +#: meowth/__main__.py:5836 meowth/__main__.py:5894 meowth/__main__.py:5914 +msgid "#{index} - {ctr_name}" +msgstr "" + +#: meowth/__main__.py:5837 +msgid "CP" +msgstr "" + +#: meowth/__main__.py:5840 +msgid "Results with {userstr} attackers" +msgstr "" + +#: meowth/__main__.py:5840 meowth/__main__.py:5925 +msgid "" +"[See your personalized results!](https://www.pokebattler.com/raids/{pkmn})" +msgstr "" + +#: meowth/__main__.py:5842 +msgid "Difficulty rating: {est}" +msgstr "" + +#: meowth/__main__.py:5842 +msgid "Pokebattler Estimator:" +msgstr "" + +#: meowth/__main__.py:5881 +msgid "{pkmn} | {weather} | Unknown Moveset" +msgstr "" + +#: meowth/__main__.py:5923 +msgid "**Possible Movesets:**" +msgstr "" + +#: meowth/__main__.py:5925 +msgid "Results with Level 30 attackers" +msgstr "" + +#: meowth/__main__.py:5929 +msgid "" +"Sets the weather for the raid.\n" +" Usage: !weather \n" +" Only usable in raid channels.\n" +" Acceptable options: none, extreme, clear, rainy, partlycloudy, cloudy, " +"windy, snow, fog" +msgstr "" + +#: meowth/__main__.py:5929 +msgid "weather" +msgstr "" + +#: meowth/__main__.py:5938 +msgid "Meowth! Enter one of the following weather conditions: {}" +msgstr "" + +#: meowth/__main__.py:5953 +#, fuzzy +msgid "Meowth! Weather set to {}!" +msgstr "{member} ha lasciato il raid!" + +#: meowth/__main__.py:5959 +msgid "" +"Indicate you are interested in the raid.\n" +"\n" +" Usage: !interested [count] [party]\n" +" Works only in raid channels. If count is omitted, assumes you are a " +"group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:5959 meowth/__main__.py:6867 +msgid "interested" +msgstr "" + +#: meowth/__main__.py:5996 meowth/__main__.py:6194 +msgid "{word} doesn't appear in level {egglevel} raids! Please try again." +msgstr "" + +#: meowth/__main__.py:6042 +#, fuzzy +msgid "Meowth! {member} is interested! {emoji}: 1" +msgstr "{member} non non è più interessato!" + +#: meowth/__main__.py:6044 +msgid "" +"Meowth! {member} is interested with a total of {trainer_count} trainers!" +msgstr "{member} è al raid con {trainer_count} giocatori!" + +#: meowth/__main__.py:6058 +msgid "" +"Indicate you are on the way to a raid.\n" +"\n" +" Usage: !coming [count] [party]\n" +" Works only in raid channels. If count is omitted, checks for previous !" +"maybe\n" +" command and takes the count from that. If it finds none, assumes you are " +"a group\n" +" of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:6058 meowth/__main__.py:6913 +msgid "coming" +msgstr "" + +#: meowth/__main__.py:6088 +msgid "{word} doesn't appear in level {egglevel} raids!" +msgstr "" + +#: meowth/__main__.py:6092 +msgid "" +"Invalid Pokemon detected. Please check the pinned message for the list of " +"possible bosses and try again." +msgstr "" + +#: meowth/__main__.py:6148 +#, fuzzy +msgid "Meowth! {member} is on the way! {emoji}: 1" +msgstr "{member} è per strada!" + +#: meowth/__main__.py:6150 +msgid "" +"Meowth! {member} is on the way with a total of {trainer_count} trainers!" +msgstr "{member} è per strada con {trainer_count} giocatori!" + +#: meowth/__main__.py:6164 +msgid "" +"Indicate you have arrived at the raid.\n" +"\n" +" Usage: !here [count] [party]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:6164 meowth/__main__.py:6959 +msgid "here" +msgstr "" + +#: meowth/__main__.py:6234 +msgid "" +"\n" +"There is a group already in the lobby! Use **!lobby** to join them or **!" +"backout** to request a backout! Otherwise, you may have to wait for the next " +"group!" +msgstr "" + +#: meowth/__main__.py:6257 +#, fuzzy +msgid "Meowth! {member} is at the {raidtype}! {emoji}: 1" +msgstr "{member} sta aspettando sotto il raid!" + +#: meowth/__main__.py:6260 +#, fuzzy +msgid "" +"Meowth! {member} is at the {raidtype} with a total of {trainer_count} " +"trainers!" +msgstr "{member} è al raid con {trainer_count} giocatori!" + +#: meowth/__main__.py:6322 +msgid "Only one non-team count can be accepted." +msgstr "" + +#: meowth/__main__.py:6334 +msgid "Only one count per team accepted." +msgstr "" + +#: meowth/__main__.py:6338 +msgid "Invalid format, please check and try again." +msgstr "" + +#: meowth/__main__.py:6342 +msgid "" +"Team counts are higher than the total, double check your counts and try " +"again. You entered **" +msgstr "" + +#: meowth/__main__.py:6343 +msgid "** total and **" +msgstr "" + +#: meowth/__main__.py:6344 +msgid "** in your party." +msgstr "" + +#: meowth/__main__.py:6349 +msgid "" +"Meowth! Something is not adding up! Try making sure your total matches what " +"each team adds up to!" +msgstr "" + +#: meowth/__main__.py:6416 meowth/__main__.py:6419 +msgid "**Boss Interest:**" +msgstr "" + +#: meowth/__main__.py:6422 +msgid "**Status List**" +msgstr "" + +#: meowth/__main__.py:6422 +msgid "" +"Maybe: **{channelmaybe}** | Coming: **{channelcoming}** | Here: " +"**{channelhere}**" +msgstr "" + +#: meowth/__main__.py:6423 +msgid "**Team List**" +msgstr "" + +#: meowth/__main__.py:6435 +msgid "" +"Indicate you are entering the raid lobby.\n" +"\n" +" Usage: !lobby [message]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be " +"a number,\n" +" and will assume you are a group with that many people." +msgstr "" + +#: meowth/__main__.py:6435 meowth/__main__.py:7008 +msgid "lobby" +msgstr "" + +#: meowth/__main__.py:6457 +msgid "" +"Meowth! I can't understand how many are in your group. Just say **!here** if " +"you're by yourself, or **!coming 5** for example if there are 5 in your " +"group." +msgstr "" + +#: meowth/__main__.py:6467 +msgid "" +"Meowth! There is no group in the lobby for you to join! Use **!starting** if " +"the group waiting at the raid is entering the lobby!" +msgstr "" + +#: meowth/__main__.py:6471 +#, fuzzy +msgid "Meowth! {member} is entering the lobby!" +msgstr "{member} è per strada!" + +#: meowth/__main__.py:6473 +#, fuzzy +msgid "" +"Meowth! {member} is entering the lobby with a total of {trainer_count} " +"trainers!" +msgstr "{member} è per strada con {trainer_count} giocatori!" + +#: meowth/__main__.py:6482 +msgid "" +"Indicate you are no longer interested in a raid.\n" +"\n" +" Usage: !cancel\n" +" Works only in raid channels. Removes you and your party\n" +" from the list of trainers who are \"otw\" or \"here\"." +msgstr "" + +#: meowth/__main__.py:6482 +msgid "cancel" +msgstr "" + +#: meowth/__main__.py:6497 +#, fuzzy +msgid "Meowth! {member} has no status to cancel!" +msgstr "{member} sta aspettando sotto il raid!" + +#: meowth/__main__.py:6501 +msgid "Meowth! {member} is no longer interested!" +msgstr "{member} non non è più interessato!" + +#: meowth/__main__.py:6503 +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"interested!" +msgstr "" +"{member} e un totale di {trainer_count} giocatori NON sono più interessati!" + +#: meowth/__main__.py:6506 +#, fuzzy +msgid "Meowth! {member} has left the {raidtype}!" +msgstr "{member} ha lasciato il raid!" + +#: meowth/__main__.py:6508 +#, fuzzy +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers have left the " +"{raidtype}!" +msgstr "" +"{member} e un totale di {trainer_count} giocatori con lui hanno lasciato il " +"raid!" + +#: meowth/__main__.py:6511 +msgid "Meowth! {member} is no longer on their way!" +msgstr "{member} NON è più per strada!" + +#: meowth/__main__.py:6513 +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers are no longer " +"on their way!" +msgstr "" +"{member} e un totale di {trainer_count} giocatori con lui NON sono più per " +"strada!" + +#: meowth/__main__.py:6516 +#, fuzzy +msgid "Meowth! {member} has backed out of the lobby!" +msgstr "{member} ha lasciato il raid!" + +#: meowth/__main__.py:6518 +#, fuzzy +msgid "" +"Meowth! {member} and their total of {trainer_count} trainers have backed out " +"of the lobby!" +msgstr "" +"{member} e un totale di {trainer_count} giocatori con lui hanno lasciato il " +"raid!" + +#: meowth/__main__.py:6536 +msgid "" +"Meowth! The group of {count} in the lobby has entered the raid! Wish them " +"luck!" +msgstr "" + +#: meowth/__main__.py:6551 +msgid "" +"Signal that a raid is starting.\n" +"\n" +" Usage: !starting [team]\n" +" Works only in raid channels. Sends a message and clears the waiting " +"list. Users who are waiting\n" +" for a second group must reannounce with the :here: emoji or !here." +msgstr "" + +#: meowth/__main__.py:6551 +msgid "starting" +msgstr "" + +#: meowth/__main__.py:6566 +#, fuzzy +msgid "Meowth! How can you start when the egg hasn't hatched!?" +msgstr "Come puoi iniziare se non c’è nessuno che aspetta questo raid !?" + +#: meowth/__main__.py:6570 +msgid "Meowth! Please wait for the group in the lobby to enter the raid." +msgstr "" + +#: meowth/__main__.py:6594 +msgid "Meowth! How can you start when there's no one waiting at this raid!?" +msgstr "Come puoi iniziare se non c’è nessuno che aspetta questo raid !?" + +#: meowth/__main__.py:6600 +msgid " to start at **{}** " +msgstr "" + +#: meowth/__main__.py:6604 +#, fuzzy +msgid "" +"Starting - Meowth! The group that was waiting{timestr}is starting the raid! " +"Trainers {trainer_list}, if you are not in this group and are waiting for " +"the next group, please respond with {here_emoji} or **!here**. If you need " +"to ask those that just started to back out of their lobby, use **!backout**" +msgstr "" +"Il gruppo che stava aspettando sta iniziando il raid! Allenatori " +"{trainer_list}, rispondi con {here_emoji} o con !here se stai aspettando un " +"altro gruppo!" + +#: meowth/__main__.py:6612 +msgid "**Next Group**" +msgstr "" + +#: meowth/__main__.py:6624 +msgid "" +"Request players in lobby to backout\n" +"\n" +" Usage: !backout\n" +" Will alert all trainers in the lobby that a backout is requested." +msgstr "" + +#: meowth/__main__.py:6624 +msgid "backout" +msgstr "" + +#: meowth/__main__.py:6646 +#, fuzzy +msgid "Meowth! There's no one else in the lobby for this raid!" +msgstr "Come puoi iniziare se non c’è nessuno che aspetta questo raid !?" + +#: meowth/__main__.py:6652 +msgid "" +"Backout - Meowth! {author} has indicated that the group consisting of " +"{lobby_list} and the people with them has backed out of the lobby! If this " +"is inaccurate, please use **!lobby** or **!cancel** to help me keep my lists " +"accurate!" +msgstr "" + +#: meowth/__main__.py:6666 +#, fuzzy +msgid "Meowth! There's no one in the lobby for this raid!" +msgstr "Come puoi iniziare se non c’è nessuno che aspetta questo raid !?" + +#: meowth/__main__.py:6669 +msgid "" +"Backout - Meowth! {author} has requested a backout! If one of the following " +"trainers reacts with the check mark, I will assume the group is backing out " +"of the raid lobby as requested! {lobby_list}" +msgstr "" + +#: meowth/__main__.py:6680 +msgid "Meowth! {user} confirmed the group is backing out!" +msgstr "" + +#: meowth/__main__.py:6692 +msgid "" +"Lists all raid info for the current channel.\n" +"\n" +" Usage: !list\n" +" Works only in raid or city channels. Calls the interested, waiting, and " +"here lists. Also prints\n" +" the raid timer. In city channels, lists all active raids." +msgstr "" + +#: meowth/__main__.py:6692 +msgid "list" +msgstr "" + +#: meowth/__main__.py:6699 +msgid "**Meowth!** " +msgstr "" + +#: meowth/__main__.py:6755 +msgid " (assumed)" +msgstr "" + +#: meowth/__main__.py:6761 +msgid " Next group: **{}**" +msgstr "" + +#: meowth/__main__.py:6765 meowth/__main__.py:6767 +msgid " - Hatches: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6773 meowth/__main__.py:6777 +msgid " - Starts: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6775 +msgid " - Ends: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6779 +msgid " - Expiry: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6780 +msgid " {raidchannel}{expiry_text}\n" +msgstr "" + +#: meowth/__main__.py:6781 +msgid "" +" {interestcount} interested, {comingcount} coming, {herecount} here, " +"{lobbycount} in the lobby.{start_str}\n" +msgstr "" + +#: meowth/__main__.py:6784 +msgid "" +"**Here's the current channels for {0}**\n" +"\n" +msgstr "" + +#: meowth/__main__.py:6786 +msgid "**Active Raids:**\n" +msgstr "" + +#: meowth/__main__.py:6792 +msgid "**Active Raids:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6796 +msgid "**Raid Eggs:**\n" +msgstr "" + +#: meowth/__main__.py:6802 +msgid "**Raid Eggs:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6806 +msgid "**EX Raids:**\n" +msgstr "" + +#: meowth/__main__.py:6812 +msgid "**EX Raids:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6815 +msgid "**Meetups:**\n" +msgstr "" + +#: meowth/__main__.py:6821 +msgid "**Meetups:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6824 +#, fuzzy +msgid "" +"Meowth! No active raids! Report one with **!raid [weather] " +"[timer]**." +msgstr "" +"Fornisci più dettagli quando riporti un raid! Utilizza questa sintassi !wild " +" ." + +#: meowth/__main__.py:6858 +msgid " Nobody has updated their status yet!" +msgstr "" + +#: meowth/__main__.py:6861 +msgid "" +"\n" +"The next group will be starting at **{}**" +msgstr "" + +#: meowth/__main__.py:6867 +msgid "" +"Lists the number and users who are interested in the raid.\n" +"\n" +" Usage: !list interested\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:6873 meowth/__main__.py:6919 meowth/__main__.py:6965 +#: meowth/__main__.py:7014 meowth/__main__.py:7060 meowth/__main__.py:7106 +#: meowth/__main__.py:7149 meowth/__main__.py:7167 meowth/__main__.py:7200 +msgid "**Meowth!**" +msgstr "" + +#: meowth/__main__.py:6891 meowth/__main__.py:6898 meowth/__main__.py:6937 +#: meowth/__main__.py:6944 meowth/__main__.py:6984 meowth/__main__.py:6991 +#: meowth/__main__.py:7031 meowth/__main__.py:7038 +msgid "**{name}**" +msgstr "" + +#: meowth/__main__.py:6894 meowth/__main__.py:6901 meowth/__main__.py:6940 +#: meowth/__main__.py:6947 meowth/__main__.py:6987 meowth/__main__.py:6994 +#: meowth/__main__.py:7034 meowth/__main__.py:7041 +msgid "**{name} ({count})**" +msgstr "" + +#: meowth/__main__.py:6895 meowth/__main__.py:6902 meowth/__main__.py:6941 +#: meowth/__main__.py:6948 meowth/__main__.py:6988 meowth/__main__.py:6995 +#: meowth/__main__.py:7035 meowth/__main__.py:7042 +msgid "{name} **({count})**" +msgstr "" + +#: meowth/__main__.py:6907 meowth/__main__.py:6909 +msgid "" +" including {trainer_list} and the people with them! Let them know if there " +"is a group forming" +msgstr "" +" tra cui {trainer_list} e i giocatori con loro! Tenetelo presente e " +"aspettate se possibile" + +#: meowth/__main__.py:6910 +#, fuzzy +msgid " {trainer_count} interested{including_string}!" +msgstr "{trainer_count} interessati {including_string}!" + +#: meowth/__main__.py:6913 +msgid "" +"Lists the number and users who are coming to a raid.\n" +"\n" +" Usage: !list coming\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:6953 meowth/__main__.py:6955 +msgid "" +" including {trainer_list} and the people with them! Be considerate and wait " +"for them if possible" +msgstr "" +" tra cui {trainer_list} e i giocatori con loro! Tenetelo presente e " +"aspettate se possibile" + +#: meowth/__main__.py:6956 +#, fuzzy +msgid " {trainer_count} on the way{including_string}!" msgstr "{trainer_count} per strada{including_string}!" -#: meowth.py:1202 +#: meowth/__main__.py:6959 +msgid "" +"List the number and users who are present at a raid.\n" +"\n" +" Usage: !list here\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7002 meowth/__main__.py:7004 +msgid "" +" including {trainer_list} and the people with them! Be considerate and let " +"them know if and when you'll be there" +msgstr "" +" tra cui {trainer_list} e i giocatori con loro! Tienilo presente e fate " +"sapere se e quando sarete lì" + +#: meowth/__main__.py:7005 +#, fuzzy +msgid " {trainer_count} waiting at the {raidtype}{including_string}!" +msgstr "{trainer_count} aspettano sotto il raid {including_string}!" + +#: meowth/__main__.py:7008 +msgid "" +"List the number and users who are in the raid lobby.\n" +"\n" +" Usage: !list lobby\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7048 meowth/__main__.py:7050 +#, fuzzy +msgid "" +" including {trainer_list} and the people with them! Use **!lobby** if you " +"are joining them or **!backout** to request a backout" +msgstr "" +" tra cui {trainer_list} e i giocatori con loro! Tenetelo presente e " +"aspettate se possibile" + +#: meowth/__main__.py:7051 +#, fuzzy +msgid " {trainer_count} in the lobby{including_string}!" +msgstr "{trainer_count} per strada{including_string}!" + +#: meowth/__main__.py:7054 +msgid "" +"List each possible boss and the number of users that have RSVP'd for it.\n" +"\n" +" Usage: !list bosses\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7054 +msgid "bosses" +msgstr "" + +#: meowth/__main__.py:7093 +msgid "" +"{type}{name}: **{total} total,** {interested} interested, {coming} coming, " +"{here} waiting{type}\n" +msgstr "" + +#: meowth/__main__.py:7095 msgid "" -" including {trainer_list} and the people with them! Be considerate and let " -"them know if and when you'll be there" +" Boss numbers for the raid:\n" +"{}" msgstr "" -" tra cui {trainer_list} e i giocatori con loro! Tienilo presente e fate " -"sapere se e quando sarete lì" -#: meowth.py:1203 -msgid "Meowth! {trainer_count} waiting at the raid{including_string}!" -msgstr "{trainer_count} aspettano sotto il raid {including_string}!" +#: meowth/__main__.py:7097 +msgid " Nobody has told me what boss they want!" +msgstr "" + +#: meowth/__main__.py:7100 +msgid "" +"List the teams for the users that have RSVP'd to a raid.\n" +"\n" +" Usage: !list teams\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7100 +msgid "teams" +msgstr "" + +#: meowth/__main__.py:7131 +msgid "" +"{emoji} **{total} total,** {interested} interested, {coming} coming, {here} " +"waiting {emoji}\n" +msgstr "" + +#: meowth/__main__.py:7134 +msgid "" +"**{grey_number} total,** {greymaybe} interested, {greycoming} coming, " +"{greyhere} waiting" +msgstr "" + +#: meowth/__main__.py:7138 +msgid "" +" Team numbers for the raid:\n" +"{}" +msgstr "" + +#: meowth/__main__.py:7140 +msgid " Nobody has updated their status!" +msgstr "" + +#: meowth/__main__.py:7143 +msgid "" +"List the wants for the user\n" +"\n" +" Usage: !list wants\n" +" Works only in the want channel." +msgstr "" + +#: meowth/__main__.py:7143 +msgid "wants" +msgstr "" + +#: meowth/__main__.py:7159 +msgid " Your current **!want** list is: ```{wantlist}```" +msgstr "" -#: meowth.py:1215 -msgid "Current Raids in {0}:" -msgstr "Raid correnti in {0}:" +#: meowth/__main__.py:7161 +msgid " You don't have any wants! use **!want** to add some." +msgstr "" + +#: meowth/__main__.py:7164 +msgid "List the quests for the channel" +msgstr "" + +#: meowth/__main__.py:7182 meowth/__main__.py:7188 +msgid "" +"**Reward**: {reward}, **Pokestop**: [{location}]({url}), **Quest**: {quest}, " +"**Reported By**: {author}" +msgstr "" + +#: meowth/__main__.py:7184 +msgid "" +"Meowth! **Here's the current research reports for {channel}**\n" +"{questmsg}" +msgstr "" + +#: meowth/__main__.py:7192 +msgid "" +" **Here's the current research reports for {channel}**\n" +"{questmsg}" +msgstr "" + +#: meowth/__main__.py:7194 +msgid " There are no reported research reports. Report one with **!research**" +msgstr "" + +#: meowth/__main__.py:7197 +msgid "List the wilds for the channel" +msgstr "" -#: meowth.py:1229 -msgid "{0.mention} - interested = {1}, {2} = {3}, {4} = {5}, Ends at {6}" +#: meowth/__main__.py:7197 +msgid "wilds" msgstr "" -"{0.mention} - interessati = {1}, {2} = {3}, {4} = {5}, Finisce alle {6}" -#: meowth.py:1232 -msgid "Meowth! No active raids! Report one with **!raid **." +#: meowth/__main__.py:7215 +msgid "" +"**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: " +"{author}" +msgstr "" + +#: meowth/__main__.py:7217 +msgid "" +"Meowth! **Here's the current wild reports for {channel}**\n" +"{wildmsg}" +msgstr "" + +#: meowth/__main__.py:7221 +msgid "" +"**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: " +"{author}\n" +"**Location**: <{url}>" +msgstr "" + +#: meowth/__main__.py:7225 +msgid "" +" **Here's the current wild reports for {channel}**\n" +"{wildmsg}" +msgstr "" + +#: meowth/__main__.py:7227 +#, fuzzy +msgid "" +" There are no reported wild pokemon. Report one with **!wild " +"**" msgstr "" "Fornisci più dettagli quando riporti un raid! Utilizza questa sintassi !wild " " ." -#: meowth.py:1263 +#: meowth/errors.py:140 +msgid "Meowth! I'm missing some details! Usage: {prefix}{command}" +msgstr "" + +#: meowth/errors.py:173 msgid "" -"Meowth! The group that was waiting is starting the raid! Trainers " -"{trainer_list}, please respond with {here_emoji} or !here if you are waiting " -"for another group!" +"Meowth! Team Management is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." msgstr "" -"Il gruppo che stava aspettando sta iniziando il raid! Allenatori " -"{trainer_list}, rispondi con {here_emoji} o con !here se stai aspettando un " -"altro gruppo!" -#: meowth.py:1265 -msgid "Meowth! How can you start when there's no one waiting at this raid!?" -msgstr "Come puoi iniziare se non c’è nessuno che aspetta questo raid !?" +#: meowth/errors.py:178 +msgid "" +"Meowth! Pokemon Notifications are not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." +msgstr "" -#: meowth.py:1272 +#: meowth/errors.py:183 msgid "" -"Meowth! Hey {member}, I don't know if you meant **!coming** to say that you " -"are coming or **!otw** to see the other trainers on their way" +"Meowth! Wild Reporting is not enabled on this server. **{prefix}{cmd_name}** " +"is unable to be used." msgstr "" -"Hey {member}, non ho capito se volevi dire **!coming** per dire che stavi " -"arrivando o **!otw** per vedere gli altri giocatori che sono già sulla " -"strada per il raid" -#: meowth.py:1277 +#: meowth/errors.py:188 msgid "" -"Meowth! Hey {member}, I don't know if you meant **!maybe** to say that you " -"are interested or **!interest** to see the other trainers interest" +"Meowth! Reporting is not enabled for this channel. **{prefix}{cmd_name}** is " +"unable to be used." msgstr "" -"Hey {member}, non ho capito se volevi dire **!maybe** per dire che sei " -"interessato o **!interest** per vedere gli altri giocatori interessati al " -"raid" -#: meowth.py:1296 +#: meowth/errors.py:193 msgid "" -"This channel has been reported as a duplicate and has been deactivated. " -"Check the channel list for the other raid channel to coordinate in! If this " -"was an error you can reset the raid with **!timerset**" +"Meowth! Raid Management is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." msgstr "" -"Questo canale è stato riportato come un duplicato ed è stato disattivato. " -"Controlla la lista dei canali per coordinare gli altri raid! se questo è " -"stato un errore puoi resecare il raid con **!timerset**" -#: meowth.py:1320 +#: meowth/errors.py:198 msgid "" -"Meowth! We're missing the new location details! Usage: **!location " -"**" +"Meowth! EX Raid Management is not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." msgstr "" -"Manca il nuovo dettagli della posizione! Utilizzo: **!location **" -#: meowth.py:1338 +#: meowth/errors.py:203 msgid "" -"Meowth! Someone has suggested a different location for the raid! Trainers " -"{trainer_list}: make sure you are headed to the right place!" +"Meowth! Research Reporting is not enabled on this server. **{prefix}" +"{cmd_name}** is unable to be used." msgstr "" -"Qualcuno ha suggerito una posizione differente per il raid! Giocatori " -"{trainer_list}: assicuratevi di esser diretti nel posto giusto!" + +#: meowth/errors.py:208 +msgid "" +"Meowth! Meetup Reporting is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." +msgstr "" + +#: meowth/errors.py:213 +msgid "" +"Meowth! Channel Archiving is not enabled on this server. **{prefix}{cmd_name}" +"** is unable to be used." +msgstr "" + +#: meowth/errors.py:218 +msgid "" +"Meowth! EX Raid Invite is not enabled on this server. **{prefix}{cmd_name}** " +"is unable to be used." +msgstr "" + +#: meowth/errors.py:224 meowth/errors.py:419 meowth/errors.py:436 +#: meowth/errors.py:453 +msgid "Meowth! Please use **{prefix}{cmd_name}** in " +msgstr "" + +#: meowth/errors.py:227 meowth/errors.py:354 meowth/errors.py:371 +#: meowth/errors.py:388 meowth/errors.py:405 meowth/errors.py:422 +#: meowth/errors.py:439 meowth/errors.py:456 +msgid "a Region report channel." +msgstr "" + +#: meowth/errors.py:229 meowth/errors.py:356 meowth/errors.py:373 +#: meowth/errors.py:390 meowth/errors.py:407 meowth/errors.py:424 +#: meowth/errors.py:441 meowth/errors.py:458 +msgid "one of the following region channels:" +msgstr "" + +#: meowth/errors.py:241 +msgid "Meowth! Please use **{prefix}{cmd_name}** in the following channel" +msgstr "" + +#: meowth/errors.py:244 +msgid "s:\n" +msgstr "" + +#: meowth/errors.py:246 +msgid ": " +msgstr "" + +#: meowth/errors.py:262 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in a Raid channel. Use **{prefix}" +"list** in any " +msgstr "" + +#: meowth/errors.py:265 meowth/errors.py:282 meowth/errors.py:335 +msgid "Region report channel to see active raids." +msgstr "" + +#: meowth/errors.py:267 meowth/errors.py:284 meowth/errors.py:337 +msgid "of the following Region channels to see active raids:" +msgstr "" + +#: meowth/errors.py:279 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in an Egg channel. Use **{prefix}" +"list** in any " +msgstr "" + +#: meowth/errors.py:295 +msgid "Meowth! **{prefix}{cmd_name}** can't be used in a Raid channel." +msgstr "" + +#: meowth/errors.py:301 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in an Active Raid channel. Use " +"**{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:310 +msgid "Region report channel to see active channels." +msgstr "" + +#: meowth/errors.py:312 +msgid "of the following Region channels to see active channels:" +msgstr "" + +#: meowth/errors.py:320 meowth/errors.py:345 +msgid "" +"\n" +"This is an egg channel. The channel needs to be activated with **{prefix}" +"raid ** before I accept commands!" +msgstr "" + +#: meowth/errors.py:326 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in an Active channel. Use " +"**{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:351 +msgid "Meowth! Please use **{prefix}{cmd_name}** in either a Raid channel or " +msgstr "" + +#: meowth/errors.py:368 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in either a Raid Egg channel or " +msgstr "" + +#: meowth/errors.py:385 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in either a EX Raid channel or one " +"of the following region channels:" +msgstr "" + +#: meowth/errors.py:402 +msgid "" +"Meowth! Please use **{prefix}{cmd_name}** in a EX Raid channel. Use " +"**{prefix}list** in any of the following region channels to see active raids:" +msgstr "" + +#~ msgid "" +#~ "Meowth! \"{entered_word}\" is not a Pokemon! Did you mean " +#~ "\"{corrected_word}\"?" +#~ msgstr "" +#~ "“{entered_word}” non è un Pokémon! Forse intendevi “{corrected_word}”?" + +#~ msgid "Meowth! That's right!" +#~ msgstr "Giusto!" + +#~ msgid "" +#~ "Meowth! That's right! I've been rebooted! You don't need to do anything " +#~ "this time, but you may find some commands don't respond in currently " +#~ "active channels, or the channels may not delete as expected. Sorry for " +#~ "any inconvenience!" +#~ msgstr "" +#~ "Giusto! Sono stato riavviato! Non è necessario eseguire nulla questa " +#~ "volta, ma è possibile che alcuni comandi non rispondano nei canali " +#~ "attualmente attivi o che i canali non siano eliminati come previsto. Ci " +#~ "dispiace per qualsiasi inconveniente!" + +#~ msgid "" +#~ "Meowth! Team assignments enabled! Please make sure that my role is moved " +#~ "to the top of your server role hierarchy, or at least above your team " +#~ "roles. Your team roles must be 'mystic', 'valor', and 'instinct' and " +#~ "*must* be lowercase. I should have made some for you if you didn't have " +#~ "them, you can set their colors and other settings later." +#~ msgstr "" +#~ "Assegnamento Team abilitato! Per favore assicurati che il mio ruolo è " +#~ "stato messo al top della tua gerarchia dei ruoli del server, o quanto " +#~ "meno più in alto dei ruoli dei vari team. I tuoi ruoli dei team dovranno " +#~ "essere ‘mystic’, ‘valor’, e ‘instinct’ e *dovranno* essere tutti " +#~ "minuscoli. Se non li avevi già ne ho creati alcuni per te, potrai " +#~ "impostare il loro colore dalle impostazioni più tardi." + +#~ msgid "" +#~ "**Welcome Message Configuration**\n" +#~ "\n" +#~ "Next, I have a feature where I welcome new members to the server with a " +#~ "short welcome message in a channel or with a direct message. If you have " +#~ "a bot that handles this already, or if you don't want this feature, type " +#~ "N, otherwise type Y to enable this feature!" +#~ msgstr "" +#~ "**Configurazione Messaggio Di Benvenuto**\n" +#~ "\n" +#~ "Avanti, Ho un dove io do il benvenuto ai nuovi utenti del tuo server con " +#~ "un breve messaggio di benvenuto in un canale o con un messaggio privato. " +#~ "Se hai già un bot che si occupa di questo, o non vuoi questa funzionalità " +#~ "digita N, altrimenti primi Y per abilitare questa funzione!" + +#~ msgid "" +#~ "Sample message:```Meowth! Welcome to [SERVER], @[MEMBER]! If you have any " +#~ "questions just ask an admin.```" +#~ msgstr "" +#~ "Messaggio di esempio:```Benvenuto in [SERVER], @[MEMBER]! Per qualsiasi " +#~ "domanda chiedi pure ad un amministratore.```" + +#~ msgid "" +#~ "Meowth! Welcome message enabled!\n" +#~ "\n" +#~ "**Welcome Message Channel Configuration**\n" +#~ "\n" +#~ "Now I need to know what channel you want me to post these welcome " +#~ "messages in. Reply with a channel name or 'DM' if you would rather I " +#~ "direct message the user." +#~ msgstr "" +#~ "Messaggio di benvenuto abilitato!\n" +#~ "\n" +#~ "**Configurazione canale messaggio di benvenuto**\n" +#~ "\n" +#~ "Ora ho bisogno di sapere il nome del canale nel quale vorresti io " +#~ "postassi questo messaggio di benvenuto. Rispondi con un nome di un canale " +#~ "o con ’DM’ se vuoi che io mandi un messaggio privato direttamente " +#~ "all’utente." + +#~ msgid "" +#~ "**Main Function Configuration**\n" +#~ "\n" +#~ "Meowth! Alright. Next I just want to check that you want to enable *any* " +#~ "of my main functions. These include assigning roles for each Pokemon a " +#~ "user wants, wild spawn reports, creating channels for raids, and keeping " +#~ "track of users coming to each raid. If you don't want me to do *any* of " +#~ "that, type N, otherwise type Y to start enabling my main functions!" +#~ msgstr "" +#~ "**Configurazione Funzioni Principali**\n" +#~ "\n" +#~ "Bene. Ora voglio controllare che tu voglia abilitare *tutte* le mie " +#~ "funzioni principali. Questo include l’assegnamento di ruoli per ogni " +#~ "Pokémon che un utente vuole, le segnalazioni di spawn di Pokémon " +#~ "selvatici, creare canali per i raid, e tenere traccia degli utenti in " +#~ "fase di organizzazione di un raid. Se vuoi che io *non faccia* qualcosa " +#~ "di queste digita N, altrimenti digita Y per iniziare ad abilitare le mie " +#~ "funzioni principali!" + +#~ msgid "" +#~ "Meowth! Okay. Now make sure that I have either an admin role on your " +#~ "server, or at least a role with these permissions: 'read messages', 'send " +#~ "messages', 'embed links', 'manage roles', and 'manage channels'. Also, " +#~ "check if my role is at the top of your server role hierarchy." +#~ msgstr "" +#~ "Okay. Ora assicurati che io abbia un ruolo da admin nel tuo server o " +#~ "almeno un ruolo con queste autorizzazioni: “leggere i messaggi”, “inviare " +#~ "i messaggi”, “incorporare i link”, “gestire i ruoli” e “gestire i canali " +#~ "‘. Inoltre, controlla se il mio ruolo è in cima alla gerarchia del ruolo " +#~ "del server." + +#~ msgid "" +#~ "**City Channel Configuration**\n" +#~ "\n" +#~ "Meowth! Next, I need to know which channels will be used for raid and/or " +#~ "wild reports. If your server covers only one community, that's probably " +#~ "your server's default channel. If you cover multiple communities, you " +#~ "should probably have a channel for each community that only those with " +#~ "roles for that community can see. Otherwise your users could be spammed " +#~ "with notifications for raids that are not relevant to them!" +#~ msgstr "" +#~ "** Configurazione Canale Della Città **\n" +#~ "\n" +#~ "Ora, ho bisogno di sapere in quali canali verranno utilizzati per le " +#~ "segnalazioni dei raid e/o dei Pokémon selvatici. Se il tuo server copre " +#~ "solo una community, questo sarà probabilmente il tuo canale di default. " +#~ "Se invece il tuo server copre più di una community, tu dovrai " +#~ "probabilmente avere un canale per ogni community nel quale solo chi ha un " +#~ "ruolo per quella community potrà vedere i raid. Altrimenti i tuoi utenti " +#~ "potrebbero spammare notifiche di raid alle quali una community potrebbe " +#~ "non essere interessata!" + +#~ msgid "" +#~ "Here's what I need: a list of channels in your server that will be used " +#~ "for raid and/or wild reports. Give them in this format: channelname, " +#~ "channelname, channelname" +#~ msgstr "" +#~ "Questo è quello di cui ho bisogno: una lista di canali del tuo server che " +#~ "verranno utilizzati per segnalare i raid e/o i Pokémon selvatici. " +#~ "Scrivimeli utilizzando questo formato: nomecanale, nomecanale, nomecanale" + +#~ msgid "" +#~ "In other words, the name of each channel, each separated by a comma and a " +#~ "single space. If you do not require raid and wild reporting and are only " +#~ "requiring want/unwant, reply with 'N'; however, want/unwant is quite " +#~ "limited without raid or wild reporting." +#~ msgstr "" +#~ "In altre parole, il nome di ogni canale, separato con una virgola e un " +#~ "singolo spazio dagli altri. Se non vuoi le segnalazioni di raid e/o " +#~ "Pokémon selvatici ma vuoi solo le segnalazioni di Voglio/NonVoglio, " +#~ "rispondi con ’N’; altrimenti Voglio/NonVoglio sarà abbastanza limitata " +#~ "senza la segnalazione di raid e/o Pokémon selvatici." + +#~ msgid "" +#~ "Meowth! Great! Looks like all of these are names of channels in your " +#~ "server." +#~ msgstr "" +#~ "Ottimo! Sembra che tutti questi siano nomi di canali nel tuo server." + +#~ msgid "" +#~ "Meowth! Something went wrong! Please type !configure to start over! Make " +#~ "sure the channels above are created already!" +#~ msgstr "" +#~ "Qualcosa è andato storto! Per favore digita !configure per ricominciare! " +#~ "Assicurati che i canali sopra siano già creati!" + +#~ msgid "" +#~ "**City Location Configuration**\n" +#~ "\n" +#~ "Meowth! Alright, we need to set starting locations for each of the " +#~ "channels you just mentioned in the SAME ORDER you typed before. This is " +#~ "what I use to generate Google Maps links to give people directions to " +#~ "raids and spawns! Knowing what town everything is in is often good enough " +#~ "to narrow it down. One way to put it is, for each channel you just " +#~ "listed, I need a location specific enough that I'll know hich First " +#~ "Baptist Church people mean. This is important, so please enter it in just " +#~ "this way. For each channel, give me a location using only letters, no " +#~ "punctuation. So something like 'kansas city mo' or 'hull uk' without the " +#~ "quotes and separate your locations with a comma and single space." +#~ msgstr "" +#~ "**Configurazione Posizione Città**\n" +#~ "\n" +#~ "Bene, Abbiamo bisogno di impostare una località di partenza per ogni " +#~ "canale che hai menzionato prima usando lo STESSO ORDINE. Queste località " +#~ "le uso per generare i link a Google Maps per dare alle persone le " +#~ "indicazioni per raggiungere i raid e gli spawn! Sapere il nome della " +#~ "città in cui tutto questo avviene spesso è abbastanza. Per ogni canale " +#~ "che hai scritto sopra ho bisogno di una località abbastanza specifica per " +#~ "permettermi di trovare il posto corretto. Questo è importante, quindi " +#~ "inseriscile in questo modo. Per ogni canale damme una località usando " +#~ "solo lettere, niente punteggiatura.\n" +#~ "Esempio: “milano” oppure “roma termini”\n" +#~ "il tutto va digitato senza apostrofi e separa una località dall’altra " +#~ "tramite una virgola e un solo spazio." + +#~ msgid "" +#~ "Meowth! There weren't the same number of cities and channels! Please " +#~ "type !configure to start over!" +#~ msgstr "" +#~ "Il numero di canali non corrisponde al numero di città! per favore " +#~ "digita !configure per ricominciare!" + +#~ msgid "" +#~ "**Raid Command**\n" +#~ "\n" +#~ "Meowth! Alright. Do you want raid reports in these channels? Reply with " +#~ "'Y' to enable !raid reports, or 'N' to disable !raid" +#~ msgstr "" +#~ "Bene. Vuoi riportare i raid in questo canale? Rispondi con ‘Y’ per " +#~ "abilitare le segnalazioni tramite il comando !raid, oppure ’N’ per " +#~ "disabilitarli" + +#~ msgid "" +#~ "**Timezone Configuration**\n" +#~ "\n" +#~ "Meowth! Ok, to finish the raid configuration I need to know what timezone " +#~ "you're in! This will help me coordinate raids for you. The current 24-hr " +#~ "time UTC is {utctime}. How many hours off from that are you? Please enter " +#~ "your answer as a number between -12 and 12." +#~ msgstr "" +#~ "**Configurazione Timezone**\n" +#~ "\n" +#~ "Ok, per finire la configurazione del raid ho bisogno di sapere in che " +#~ "Timezone ti trovi. Quella corrente 24-hr time UTC è {utctime}. Quante ore " +#~ "ci sono di differenza dal tuo orario corrente? Per favore inserisci un " +#~ "numero compreso tra -12 e 12." + +#~ msgid "" +#~ "Meowth! I couldn't convert your answer to a number! Type !configure in " +#~ "your server to start again." +#~ msgstr "" +#~ "Non posso convertire la tua risposta in un numero! Digita !configure nel " +#~ "tuo server per ricominciare." + +#~ msgid "" +#~ "**Wild Command**\n" +#~ "\n" +#~ "Meowth! Alright. Do you want wild reports in these channels? Reply with " +#~ "'Y' to enable !wild reports, or 'N' to disable !wild" +#~ msgstr "" +#~ "**Comando Wild**\n" +#~ "\n" +#~ "Bene. Vuoi riportare i Pokémon selvatici in questo canale? Rispondi con " +#~ "‘Y’ per abilitare le segnalazioni tramite il comando !wild, oppure ’N’ " +#~ "per disabilitare il comando" + +#~ msgid "" +#~ "Meowth! Ok. Time to do one last check that I have either an admin role on " +#~ "your server, or at least a role with these permissions: 'read messages', " +#~ "'send messages', 'embed links', 'manage roles', and 'manage channels'. " +#~ "Also, check if my role is at the top of your server role hierarchy. You " +#~ "can restrict me to specific channels by editing channel-specific " +#~ "permissions if you like.\n" +#~ "\n" +#~ "**Want/Unwant Configuration**\n" +#~ "\n" +#~ "The last thing you should know is that the !want and !unwant commands can " +#~ "produce a lot of clutter if they are allowed on your main channels. I " +#~ "suggest having a dedicated channel for want and unwant. Just type the " +#~ "name or names of the channel(s) you want me to allow. If you type " +#~ "something that isn't a name of an existing channel, I'll create one by " +#~ "that name. If you do not want to enable want/unwant, reply with 'N'. " +#~ msgstr "" +#~ "Ok. È ora di eseguire un ultimo controllo per avere il ruolo di " +#~ "amministratore sul tuo server o almeno un ruolo con queste " +#~ "autorizzazioni: “leggere i messaggi”, “inviare i messaggi”, “incorporare " +#~ "i link”, “gestire i ruoli” e “gestire i canali ‘. Inoltre, controlla se " +#~ "il mio ruolo è in cima alla gerarchia del ruolo del server. Puoi " +#~ "limitarmi a canali specifici modificando le autorizzazioni specifiche del " +#~ "canale se vuoi.\n" +#~ "\n" +#~ "**Configurazione Voglio/NonVoglio**\n" +#~ "\n" +#~ "L’ultima cosa che dovresti sapere è che i comandi !want e !unwant possono " +#~ "produrre un sacco di confusione se sono consentiti nei tuoi canali " +#~ "principali. Suggerisco di avere un canale dedicato per per Voglio/" +#~ "NonVoglio. Basta digitare il nome o i nomi dei canali che desideri " +#~ "abilitare. Se digitate qualcosa che non è un nome di un canale esistente, " +#~ "ne creerò uno con quel nome. Se non si desidera abilitare Voglio/" +#~ "NonVoglio, digita ’N’. " + +#~ msgid "" +#~ "Meowth! You didn't give me enough permissions! Type !configure to start " +#~ "over!" +#~ msgstr "" +#~ "Non mi hai dato abbastanza permessi! digita !configure per ricominciare!" + +#~ msgid "Meowth! Okay. All of my main functions have been disabled." +#~ msgstr "Okay. Okay. Tutte le funzioni principali sono state disattivate." + +#~ msgid "" +#~ "**Emojis**\n" +#~ "\n" +#~ "Meowth! Alright! I'm ready to go! One more thing. I like to use custom " +#~ "emoji for certain things, especially for displaying type weaknesses for " +#~ "raid bosses! I'm going to send you a .rar file that contains all the " +#~ "emoji I need. There are 23 in all. All you have to do is download, " +#~ "extract, and upload the images to Discord as custom emoji. You can do " +#~ "this all at once, and you can just leave the emoji titles alone!\n" +#~ "\n" +#~ "By the way: if you need to change any of these settings, just type !" +#~ "configure in your server and we can do this again." +#~ msgstr "" +#~ "**Emojis**\n" +#~ "\n" +#~ "Bene! Sono pronto per iniziare! Un’ultima cosa. Mi piacerebbe usare delle " +#~ "emoji personalizzate per alcune cose, per esempio per mostrare le " +#~ "debolezze di un raidboss! Ti sto inviando un file .rar checontiene tutte " +#~ "le emoji di cui hai bisogno. Sono 23 in tutto. Tutto quello che devi fare " +#~ "è scaricare il file, estrarlo e caricare le immagini su Discord come " +#~ "Custom emoji. Puoi farlo tutto in una volta e puoi solo lasciare i titoli " +#~ "emoji!\n" +#~ "\n" +#~ "Ad ogni modo: se hai bisogno di cambiare qualche impostazione, ti basta " +#~ "digitare !configure nel tuo server e potrai rifare questo di nuovo." + +#~ msgid "" +#~ "WARNING: no default channel configured. Unable to send welcome message." +#~ msgstr "" +#~ "AVVISO: nessun canale predefinito configurato. Impossibile inviare il " +#~ "messaggio di benvenuto." + +#~ msgid "" +#~ "WARNING: Role {team_role} in team_dict not configured as a role on the " +#~ "server!" +#~ msgstr "" +#~ "ATTENZIONE: il Ruolo {team_role} in team_dict non è configurato come un " +#~ "ruolo nel server!" + +#~ msgid "" +#~ "Meowth! Please use one of the following channels for **!want** commands: " +#~ "{want_channel_list}" +#~ msgstr "" +#~ "Per favore usa uno dei seguenti canali per il comando **!want**: " +#~ "{want_channel_list}" + +#~ msgid "" +#~ "Meowth! Please restrict wild reports to city channels or the default " +#~ "channel!" +#~ msgstr "" +#~ "Per favore limitati a riportare i pokemon selvatici nel canale apposito o " +#~ "nel canale di default!" + +#~ msgid "This is just my best guess!" +#~ msgstr "Questa è solo la mia ipotesi migliore!" + +#~ msgid "" +#~ "Meowth! Please restrict raid reports to a city channel or the default " +#~ "channel!" +#~ msgstr "" +#~ "Per favore limitati a riportare i raid nel canale apposito o nel canale " +#~ "di default!" + +#~ msgid "" +#~ "Meowth! {pokemon} raid reported by {member}! Details:{location_details}. " +#~ "Coordinate here!\n" +#~ "\n" +#~ "Reply to this message with **!coming** (`!coming [number]` for trainers " +#~ "with you) to say you are on your way, and reply with **!here** once you " +#~ "arrive.\n" +#~ "If you are at the raid already, reply with **!here** (`!here [number]` " +#~ "for trainers with you).\n" +#~ "If you are interested in the raid and want to wait for a group, use **!" +#~ "maybe**.\n" +#~ "If your plans change, reply with **!cancel** if you are no longer on the " +#~ "way or if you have left the raid.\n" +#~ "You can set the time remaining with **!timerset H:MM** and access this " +#~ "with **!timer**.\n" +#~ "\n" +#~ "You can see the list of trainers interested with **!interest**, trainers " +#~ "on their way with **!otw**, trainers at the raid with **!waiting**, or " +#~ "all lists with **!lists**.\n" +#~ "Once you start a raid, use **!starting** to clear the waiting list to " +#~ "allow the next group to coordinate.\n" +#~ "\n" +#~ "Sometimes I'm not great at directions, but I'll correct my directions if " +#~ "anybody sends me a maps link.\n" +#~ "\n" +#~ "This channel will be deleted in 2 hours or five minutes after the timer " +#~ "expires." +#~ msgstr "" +#~ "{pokemon} raid segnalato da {member}! Dettagli: {location_details}. " +#~ "Coordinate qui!\n" +#~ "\n" +#~ "Rispondi a questo messaggio con **!coming** ( `!coming [numero]` se ci " +#~ "sono più giocatori con te) per dire che sei/siete per strada e stai " +#~ "arrivando, e rispondi con **!here** una volta che arriverai.\n" +#~ "Se ti trovi già sul posto del raid, rispondi con **!here** (`!here " +#~ "[numero]` se ci sono più giocatori con te).\n" +#~ "se sei interessato al raid e vuoi aspettare che ci sia un gruppo, usa **!" +#~ "maybe**. \n" +#~ "Se cambi idea, rispondi con **!cancel** se vuoi abbandonare il raid.\n" +#~ "\n" +#~ "Puoi impostare il tempo rimanente con **!timerset H:MM** e visualizzarlo " +#~ "in seguito con **!timer**.\n" +#~ "\n" +#~ "Puoi vedere la lista degli allenatori interessati con **!interest**, gli " +#~ "allenatori che stanno arrivando con **!otw**, gli allenatori che sono già " +#~ "al raid con **!waiting**, o la lista completa digitando **!lists**.\n" +#~ "Quando state per iniziare un raid, usa **!starting** per cancellare la " +#~ "lista di attesa e per permettere ad altri gruppi di coordinarsi.\n" +#~ "\n" +#~ "Alcune volte non sono bravissimo con le indicazioni, ma tu puoi " +#~ "correggerle se nessuno mi manda un link alla mappa.\n" +#~ "\n" +#~ "Questo canale verra eliminato tra 2 ore oppure 5 minuti dopo che il timer " +#~ "del raid è esaurito." + +#~ msgid "Meowth! {member}, I already know you don't want {pokemon}!" +#~ msgstr "{member}, Immagino non volessi dire {pokemon}!" + +#~ msgid "Meowth! Got it! {member} no longer wants {pokemon}" +#~ msgstr "Fatto! {member} non vuole più {pokemon}" + +#~ msgid "Meowth...I can't do that! No negative numbers, please!" +#~ msgstr "Non posso farlo! Nessun numero negativo, grazie!" + +#~ msgid "" +#~ "Meowth! Someone has suggested a different location for the raid than what " +#~ "I guessed! Trainers {trainer_list}: make sure you are headed to the right " +#~ "place!" +#~ msgstr "" +#~ "Qualcuno ha suggerito una posizione differente per il raid rispetto a " +#~ "quella che ho indovinato! Giocatori {trainer_list}: assicuratevi di esser " +#~ "diretti nel posto giusto!" + +#~ msgid "" +#~ "Meowth! Exactly *how many* are interested? There wasn't a number anywhere " +#~ "in your message. Or, just say `!maybe` if you're by yourself." +#~ msgstr "" +#~ "Esattamente *quanti* sono interessati? Non c’è stato nessun numero da " +#~ "nessuna parte nel tuo messaggio. oppure, digita **!maybe** se sei " +#~ "interessato solo tu." + +#~ msgid "" +#~ "Meowth...I got confused because there were several numbers in your " +#~ "message. I don't know which one is the right one." +#~ msgstr "" +#~ "Meowth…Sono confuso perché c’erano diversi numeri nel tuo messaggio. Non " +#~ "so quale di questi è quello corretto." + +#~ msgid "" +#~ "Meowth! Exactly *how many* are coming? There wasn't a number anywhere in " +#~ "your message. Or, just say **!coming** if you're by yourself." +#~ msgstr "" +#~ "Esattamente *quanti* stanno arrivando? Non c’è stato nessun numero da " +#~ "nessuna parte nel tuo messaggio. Oppure, digita **!coming** se stai " +#~ "arrivando da solo." + +#~ msgid "" +#~ "Meowth! Exactly *how many* are here? There wasn't a number anywhere in " +#~ "your message. Or, just say **!here** if you're by yourself." +#~ msgstr "" +#~ "Esattamente *quanti* sono lì? Non c’è stato nessun numero da nessuna " +#~ "parte nel tuo messaggio. Oppure, digita **!here** se sei arrivato da solo." + +#~ msgid "Current Raids in {0}:" +#~ msgstr "Raid correnti in {0}:" + +#~ msgid "{0.mention} - interested = {1}, {2} = {3}, {4} = {5}, Ends at {6}" +#~ msgstr "" +#~ "{0.mention} - interessati = {1}, {2} = {3}, {4} = {5}, Finisce alle {6}" + +#~ msgid "" +#~ "Meowth! Hey {member}, I don't know if you meant **!coming** to say that " +#~ "you are coming or **!otw** to see the other trainers on their way" +#~ msgstr "" +#~ "Hey {member}, non ho capito se volevi dire **!coming** per dire che stavi " +#~ "arrivando o **!otw** per vedere gli altri giocatori che sono già sulla " +#~ "strada per il raid" + +#~ msgid "" +#~ "Meowth! Hey {member}, I don't know if you meant **!maybe** to say that " +#~ "you are interested or **!interest** to see the other trainers interest" +#~ msgstr "" +#~ "Hey {member}, non ho capito se volevi dire **!maybe** per dire che sei " +#~ "interessato o **!interest** per vedere gli altri giocatori interessati al " +#~ "raid" #~ msgid "a member of {0}" #~ msgstr "un membro di {0}" @@ -885,9 +4813,6 @@ msgstr "" #~ msgid "an admin" #~ msgstr "un admin" -#~ msgid " or " -#~ msgstr "oppure" - #~ msgid " Then head over to {3.mention} to get caught up on what's happening!" #~ msgstr "" #~ "Poi oltre al {3.mention} per aggiornamenti su ciò che sta accadendo!" @@ -901,14 +4826,5 @@ msgstr "" #~ msgid "Error occured while trying to write file!" #~ msgstr "C’è stato un errore mentre provavo a scrivere il file!" -#~ msgid "" -#~ "Meowth! {0} raid reported by {1}! Details: {2}. Coordinate here! Reply " -#~ "(not react) to this message with {3} to say you are on your way, or {4} " -#~ "if you are at the raid already!" -#~ msgstr "" -#~ "{0} raid segnalato da {1}! Dettagli: {2}. Coordinate qui! Rispondi (not " -#~ "react) a questo messaggio con {3} per dire che tu sei per strada, o {4} " -#~ "se ti trovi sul posto del raid!" - #~ msgid "No expiration time set!" #~ msgstr "Non è stato impostato un tempo di scadenza per questo raid!" diff --git a/locale/meowth.pot b/locale/meowth.pot index 7b7fb1e73..def9299f0 100644 --- a/locale/meowth.pot +++ b/locale/meowth.pot @@ -5,47 +5,99 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-04-26 18:24-0400\n" +"POT-Creation-Date: 2018-07-17 08:23+CEST\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=cp1252\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING\n" "Generated-By: pygettext.py 1.5\n" -#: __main__.py:298 -msgid "Received admin command {command} from unauthorized user, {user}!" +#: meowth/__main__.py:151 +msgid "load" +msgstr "" + +#: meowth/__main__.py:159 +msgid "**Error when loading extension" +msgstr "" + +#: meowth/__main__.py:163 +msgid "" +"**Extension {ext} Loaded.**\n" +msgstr "" + +#: meowth/__main__.py:165 +msgid "unload" msgstr "" -#: __main__.py:306 -msgid "Meowth! \"{entered_word}\" is not a Pokemon! Did you mean \"{corrected_word}\"?" +#: meowth/__main__.py:172 +msgid "" +"**Extension{plural} {est} unloaded.**\n" msgstr "" -#: __main__.py:308 -msgid "Meowth! \"{entered_word}\" is not a Pokemon! Check your spelling!" +#: meowth/__main__.py:339 +msgid "Received admin command {command} from unauthorized user, {user}!" msgstr "" -#: __main__.py:311 __main__.py:3318 +#: meowth/__main__.py:350 meowth/__main__.py:3833 msgid "Meowth! **{word}** isn't a Pokemon!" msgstr "" -#: __main__.py:313 +#: meowth/__main__.py:352 msgid " Did you mean **{correction}**?" msgstr "" -#: __main__.py:447 __main__.py:1948 +#: meowth/__main__.py:451 +msgid "Did you mean: '{0}'" +msgstr "" + +#: meowth/__main__.py:502 meowth/__main__.py:4009 meowth/__main__.py:4172 +#: meowth/__main__.py:4423 meowth/__main__.py:4554 meowth/__main__.py:4918 +msgid "{pokemon} - " +msgstr "" + +#: meowth/__main__.py:503 +msgid "" +"{roletest}Meowth! {pkmn} raid reported by {member} in {channel}! Coordinate here!\n" +"\n" +"For help, react to this message with the question mark and I will DM you a list of commands you can use!" +msgstr "" + +#: meowth/__main__.py:505 +msgid "" +"Meowth! Level {level} raid egg reported by {member} in {channel}! Coordinate here!\n" +"\n" +"For help, react to this message with the question mark and I will DM you a list of commands you can use!" +msgstr "" + +#: meowth/__main__.py:507 +msgid "" +"Meowth! EX raid reported by {member} in {channel}! Coordinate here!\n" +"\n" +"For help, react to this message with the question mark and I will DM you a list of commands you can use!" +msgstr "" + +#: meowth/__main__.py:513 +msgid "exraid-egg-" +msgstr "" + +#: meowth/__main__.py:546 +msgid "level-{level}-egg-" +msgstr "" + +#: meowth/__main__.py:562 meowth/__main__.py:2024 msgid "" "The following could not be found:\n" "{}" msgstr "" -#: __main__.py:447 __main__.py:1948 +#: meowth/__main__.py:562 meowth/__main__.py:2024 msgid "Warning" msgstr "" -#: __main__.py:451 +#: meowth/__main__.py:566 msgid "" "{}\n" "\n" @@ -53,57 +105,66 @@ msgid "" "The following could not be found: {}" msgstr "" -#: __main__.py:573 +#: meowth/__main__.py:706 msgid "" "This channel has been successfully reported as a duplicate and will be deleted in 1 minute. Check the channel list for the other raid channel to coordinate in!\n" "If this was in error, reset the raid with **!timerset**" msgstr "" -#: __main__.py:584 __main__.py:4731 +#: meowth/__main__.py:721 meowth/__main__.py:5428 msgid "hatched-" msgstr "" -#: __main__.py:588 +#: meowth/__main__.py:725 msgid "" "**This egg has hatched!**\n" "\n" "...or the time has just expired. Trainers {trainer_list}: Update the raid to the pokemon that hatched using **!raid ** or reset the hatch timer with **!timerset**. This channel will be deactivated until I get an update and I'll delete it in 45 minutes if I don't hear anything." msgstr "" -#: __main__.py:590 +#: meowth/__main__.py:727 msgid "**This level {level} raid egg has expired!**" msgstr "" -#: __main__.py:594 __main__.py:4732 +#: meowth/__main__.py:731 meowth/__main__.py:5429 msgid "expired-" msgstr "" -#: __main__.py:598 +#: meowth/__main__.py:735 msgid "" "This channel timer has expired! The channel has been deactivated and will be deleted in 5 minutes.\n" "To reactivate the channel, use **!timerset** to set the timer again." msgstr "" -#: __main__.py:600 -msgid "**This {pokemon} raid has expired!**" +#: meowth/__main__.py:737 +msgid " raid" +msgstr "" + +#: meowth/__main__.py:737 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "event" +msgstr "" + +#: meowth/__main__.py:738 +msgid "**This {pokemon}{raidtype} has expired!**" msgstr "" -#: __main__.py:655 +#: meowth/__main__.py:796 msgid "archived-" msgstr "" -#: __main__.py:664 +#: meowth/__main__.py:805 msgid "" "-----------------------------------------------\n" "**The channel has been archived and removed from view for everybody but Meowth and those with Manage Channel permissions. Any messages that were deleted after the channel was marked for archival will be posted below. You will need to delete this channel manually.**\n" "-----------------------------------------------" msgstr "" -#: __main__.py:894 +#: meowth/__main__.py:1037 msgid "Starting up..." msgstr "" -#: __main__.py:1046 +#: meowth/__main__.py:1090 msgid "" "Meowth! That's right!\n" "\n" @@ -111,177 +172,371 @@ msgid "" "{member_count} members found." msgstr "" -#: __main__.py:1071 +#: meowth/__main__.py:1116 msgid "Meowth! I'm Meowth, a Discord helper bot for Pokemon Go communities, and someone has invited me to your server! Type **!help** to see a list of things I can do, and type **!configure** in any channel of your server to begin!" msgstr "" -#: __main__.py:1088 __main__.py:3084 +#: meowth/__main__.py:1134 meowth/__main__.py:3624 msgid " or " msgstr "" -#: __main__.py:1094 +#: meowth/__main__.py:1140 msgid " If you have any questions just ask an admin." msgstr "" -#: __main__.py:1095 +#: meowth/__main__.py:1141 msgid "Meowth! Welcome to {server}, {user}! " msgstr "" -#: __main__.py:1097 +#: meowth/__main__.py:1143 msgid "Set your team by typing {team_command}." msgstr "" -#: __main__.py:1137 __main__.py:1149 __main__.py:5714 +#: meowth/__main__.py:1183 meowth/__main__.py:1195 meowth/__main__.py:6448 msgid "Meowth! Please wait until the raid egg has hatched before announcing you're coming or present." msgstr "" -#: __main__.py:1183 __main__.py:4700 +#: meowth/__main__.py:1230 meowth/__main__.py:5398 msgid "Meowth! Someone has suggested a different location for the raid! Trainers {trainer_list}: make sure you are headed to the right place!" msgstr "" -#: __main__.py:1303 __main__.py:1331 __main__.py:1347 +#: meowth/__main__.py:1294 +msgid "has despawned" +msgstr "" + +#: meowth/__main__.py:1352 +msgid "" +"Save persistent state to file.\n" +"\n" +"File path is relative to current directory." +msgstr "" + +#: meowth/__main__.py:1352 +msgid "save" +msgstr "" + +#: meowth/__main__.py:1359 meowth/__main__.py:1384 meowth/__main__.py:1397 msgid "Error occured while trying to save!" msgstr "" -#: __main__.py:1333 +#: meowth/__main__.py:1377 +msgid "" +"Restart after saving.\n" +"\n" +"Calls the save function and restarts Meowth." +msgstr "" + +#: meowth/__main__.py:1377 +msgid "restart" +msgstr "" + +#: meowth/__main__.py:1386 msgid "Restarting..." msgstr "" -#: __main__.py:1349 +#: meowth/__main__.py:1390 +msgid "" +"Exit after saving.\n" +"\n" +"Calls the save function and quits the script." +msgstr "" + +#: meowth/__main__.py:1390 +msgid "exit" +msgstr "" + +#: meowth/__main__.py:1399 msgid "Shutting down..." msgstr "" -#: __main__.py:1370 -msgid "Are you sure you want to clear all regionals?`" +#: meowth/__main__.py:1403 +msgid "Changes a setting." +msgstr "" + +#: meowth/__main__.py:1403 +msgid "set" +msgstr "" + +#: meowth/__main__.py:1409 +msgid "Changes server regional pokemon." +msgstr "" + +#: meowth/__main__.py:1409 +msgid "regional" +msgstr "" + +#: meowth/__main__.py:1417 +msgid "Are you sure you want to clear all regionals?" msgstr "" -#: __main__.py:1391 +#: meowth/__main__.py:1438 msgid "Meowth! Regional raid boss cleared!" msgstr "" -#: __main__.py:1396 +#: meowth/__main__.py:1444 msgid "Meowth! Regional raid boss set to **{boss}**!" msgstr "" -#: __main__.py:1398 +#: meowth/__main__.py:1447 msgid "Meowth! That Pokemon doesn't appear in raids!" msgstr "" -#: __main__.py:1411 __main__.py:1414 +#: meowth/__main__.py:1453 +msgid "Changes server timezone." +msgstr "" + +#: meowth/__main__.py:1453 meowth/__main__.py:3152 +msgid "timezone" +msgstr "" + +#: meowth/__main__.py:1459 meowth/__main__.py:1462 msgid "I couldn't convert your answer to an appropriate timezone! Please double check what you sent me and resend a number from **-12** to **12**." msgstr "" -#: __main__.py:1418 +#: meowth/__main__.py:1466 msgid "" "Timezone has been set to: `UTC{offset}`\n" "The current time is **{now}**" msgstr "" -#: __main__.py:1432 +#: meowth/__main__.py:1471 +msgid "Changes server prefix." +msgstr "" + +#: meowth/__main__.py:1471 meowth/__main__.py:1553 +msgid "prefix" +msgstr "" + +#: meowth/__main__.py:1479 msgid "Prefix has been set to: `{}`" msgstr "" -#: __main__.py:1435 +#: meowth/__main__.py:1482 msgid "Prefix has been reset to default: `{}`" msgstr "" -#: __main__.py:1444 +#: meowth/__main__.py:1487 +msgid "Links a server member to a Silph Road Travelers Card." +msgstr "" + +#: meowth/__main__.py:1487 +msgid "silph" +msgstr "" + +#: meowth/__main__.py:1490 msgid "Silph Road Travelers Card cleared!" msgstr "" -#: __main__.py:1457 -msgid "This Travelers Card is private and cannot be linked!" +#: meowth/__main__.py:1500 +msgid "The Silph Extension isn't accessible at the moment, sorry!" msgstr "" -#: __main__.py:1460 -msgid "Travelers Card not found!" +#: meowth/__main__.py:1505 +msgid "Silph Card for {silph_user} not found." msgstr "" -#: __main__.py:1465 __main__.py:1476 +#: meowth/__main__.py:1509 msgid "No Discord account found linked to this Travelers Card!" msgstr "" -#: __main__.py:1479 +#: meowth/__main__.py:1513 msgid "This Travelers Card is linked to another Discord account!" msgstr "" -#: __main__.py:1488 +#: meowth/__main__.py:1527 msgid "This Travelers Card has been successfully linked to you!" msgstr "" -#: __main__.py:1494 +#: meowth/__main__.py:1530 +msgid "Links a server member to a PokeBattler ID." +msgstr "" + +#: meowth/__main__.py:1530 +msgid "pokebattler" +msgstr "" + +#: meowth/__main__.py:1533 msgid "Pokebattler ID cleared!" msgstr "" -#: __main__.py:1520 +#: meowth/__main__.py:1544 +msgid "Pokebattler ID set to {pbid}!" +msgstr "" + +#: meowth/__main__.py:1546 +msgid "Get a setting value" +msgstr "" + +#: meowth/__main__.py:1546 +msgid "get" +msgstr "" + +#: meowth/__main__.py:1553 +msgid "Get server prefix." +msgstr "" + +#: meowth/__main__.py:1557 msgid "Prefix for this server is: `{}`" msgstr "" -#: __main__.py:1616 +#: meowth/__main__.py:1559 +msgid "Show Meowth's permissions for the guild and channel." +msgstr "" + +#: meowth/__main__.py:1559 +msgid "perms" +msgstr "" + +#: meowth/__main__.py:1570 +msgid "Bot Permissions" +msgstr "" + +#: meowth/__main__.py:1585 +msgid "**FAIL**" +msgstr "" + +#: meowth/__main__.py:1585 +msgid "**PASS**" +msgstr "" + +#: meowth/__main__.py:1593 +msgid "**MISSING**" +msgstr "" + +#: meowth/__main__.py:1596 +msgid "**ENABLED**" +msgstr "" + +#: meowth/__main__.py:1601 +msgid "GUILD" +msgstr "" + +#: meowth/__main__.py:1606 +msgid "CATEGORY" +msgstr "" + +#: meowth/__main__.py:1607 +msgid "CHANNEL" +msgstr "" + +#: meowth/__main__.py:1614 +msgid "I couldn't send an embed here, so I've sent you a DM" +msgstr "" + +#: meowth/__main__.py:1621 meowth/__main__.py:1956 +msgid "welcome" +msgstr "" + +#: meowth/__main__.py:1622 +msgid "" +"Test welcome on yourself or mentioned member.\n" +"\n" +"Usage: !welcome [@member]" +msgstr "" + +#: meowth/__main__.py:1630 +msgid "" +"Get current Meowth log.\n" +"\n" +"Usage: !outputlog\n" +"Output is a link to hastebin." +msgstr "" + +#: meowth/__main__.py:1641 +msgid "" +"Repeats your message in an embed from Meowth.\n" +"\n" +"If the announcement isn't added at the same time as the command, Meowth will wait 3 minutes for a followup message containing the announcement." +msgstr "" + +#: meowth/__main__.py:1641 +msgid "announce" +msgstr "" + +#: meowth/__main__.py:1644 +msgid "say" +msgstr "" + +#: meowth/__main__.py:1652 msgid "I'll wait for your announcement!" msgstr "" -#: __main__.py:1623 __main__.py:1678 +#: meowth/__main__.py:1659 meowth/__main__.py:1715 msgid "Meowth! You took too long to send me your announcement! Retry when you're ready." msgstr "" -#: __main__.py:1625 +#: meowth/__main__.py:1662 msgid "Announcement" msgstr "" -#: __main__.py:1635 +#: meowth/__main__.py:1672 msgid "to send it to all servers, " msgstr "" -#: __main__.py:1643 +#: meowth/__main__.py:1680 msgid "That's what you sent, does it look good? React with " msgstr "" -#: __main__.py:1645 +#: meowth/__main__.py:1682 msgid "to send to another channel, " msgstr "" -#: __main__.py:1647 +#: meowth/__main__.py:1684 msgid "to send it to this channel, or " msgstr "" -#: __main__.py:1649 +#: meowth/__main__.py:1686 msgid "to cancel" msgstr "" -#: __main__.py:1659 +#: meowth/__main__.py:1696 msgid "Announcement Cancelled." msgstr "" -#: __main__.py:1662 __main__.py:1674 +#: meowth/__main__.py:1699 meowth/__main__.py:1711 msgid "Announcement Sent." msgstr "" -#: __main__.py:1664 +#: meowth/__main__.py:1701 msgid "What channel would you like me to send it to?" msgstr "" -#: __main__.py:1676 +#: meowth/__main__.py:1713 msgid "Meowth! That channel doesn't exist! Retry when you're ready." msgstr "" -#: __main__.py:1689 __main__.py:3068 +#: meowth/__main__.py:1726 meowth/__main__.py:3608 msgid "For support, contact us on our Discord server. Invite Code: hhVjAN8" msgstr "" -#: __main__.py:1703 +#: meowth/__main__.py:1740 msgid "Announcement sent to {} server owners: {} successful, {} failed." msgstr "" -#: __main__.py:1708 +#: meowth/__main__.py:1745 msgid "Announcement Timed Out." msgstr "" -#: __main__.py:1755 +#: meowth/__main__.py:1751 +msgid "" +"Meowth Configuration\n" +"\n" +"Meowth will DM you instructions on how to configure Meowth for your server.If it is not your first time configuring, you can choose a section to jump to.You can also include a comma separated [list] of sections from the following:all, team, welcome, raid, exraid, invite, counters, wild, research, want, archive, timezone" +msgstr "" + +#: meowth/__main__.py:1751 +msgid "configure" +msgstr "" + +#: meowth/__main__.py:1790 msgid "I'm sorry, I couldn't understand some of what you entered. Let's just start here." msgstr "" -#: __main__.py:1757 +#: meowth/__main__.py:1792 meowth/__main__.py:1909 meowth/__main__.py:1970 +#: meowth/__main__.py:2128 meowth/__main__.py:2351 meowth/__main__.py:2541 +#: meowth/__main__.py:2640 meowth/__main__.py:2739 meowth/__main__.py:2838 +#: meowth/__main__.py:3012 meowth/__main__.py:3092 meowth/__main__.py:3166 +#: meowth/__main__.py:3213 msgid "" "**MULTIPLE SESSIONS!**\n" "\n" @@ -290,7 +545,7 @@ msgid "" "Your Sessions: **{yoursessions}** | Total Sessions: **{allsessions}**" msgstr "" -#: __main__.py:1758 +#: meowth/__main__.py:1793 msgid "" "Meowth! That's Right! Welcome to the configuration for Meowth the Pokemon Go Helper Bot! I will be guiding you through some steps to get me setup on your server.\n" "\n" @@ -298,7 +553,7 @@ msgid "" "Before you begin the configuration, please make sure my role is moved to the top end of the server role hierarchy. It can be under admins and mods, but must be above team and general roles. [Here is an example](http://i.imgur.com/c5eaX1u.png)" msgstr "" -#: __main__.py:1760 +#: meowth/__main__.py:1795 msgid "" "\n" "\n" @@ -306,7 +561,7 @@ msgid "" "This isn't your first time configuring. You can either reconfigure everything by replying with **all** or reply with a comma separated list to configure those commands. Example: `want, raid, wild`" msgstr "" -#: __main__.py:1764 +#: meowth/__main__.py:1799 msgid "" "\n" "\n" @@ -314,7 +569,7 @@ msgid "" "{enabled_commands}" msgstr "" -#: __main__.py:1765 +#: meowth/__main__.py:1800 msgid "" "\n" "\n" @@ -328,47 +583,83 @@ msgid "" "**counters** - for automatic counters configuration\n" "**wild** - for wild command configuration\n" "**research** - for !research command configuration\n" +"**meetup** - for !meetup command configuration\n" "**want** - for want/unwant command configuration\n" "**archive** - For !archive configuration\n" +"**trade** - For trade command configuration\n" "**timezone** - For timezone configuration" msgstr "" -#: __main__.py:1766 __main__.py:1793 +#: meowth/__main__.py:1801 meowth/__main__.py:1828 msgid "" "\n" "\n" "Reply with **cancel** at any time throughout the questions to cancel the configure process." msgstr "" -#: __main__.py:1767 __main__.py:1794 +#: meowth/__main__.py:1802 meowth/__main__.py:1829 msgid "Meowth Configuration - {guild}" msgstr "" -#: __main__.py:1774 __main__.py:1888 __main__.py:1938 __main__.py:1989 -#: __main__.py:2029 __main__.py:2055 __main__.py:2103 __main__.py:2125 -#: __main__.py:2144 __main__.py:2194 __main__.py:2261 __main__.py:2309 -#: __main__.py:2331 __main__.py:2350 __main__.py:2503 __main__.py:2551 -#: __main__.py:2585 __main__.py:2633 __main__.py:2666 __main__.py:2726 -#: __main__.py:2759 __main__.py:2783 +#: meowth/__main__.py:1809 meowth/__main__.py:1947 meowth/__main__.py:2014 +#: meowth/__main__.py:2065 meowth/__main__.py:2106 meowth/__main__.py:2148 +#: meowth/__main__.py:2197 meowth/__main__.py:2219 meowth/__main__.py:2238 +#: meowth/__main__.py:2288 meowth/__main__.py:2371 meowth/__main__.py:2420 +#: meowth/__main__.py:2442 meowth/__main__.py:2461 meowth/__main__.py:2519 +#: meowth/__main__.py:2564 meowth/__main__.py:2604 meowth/__main__.py:2660 +#: meowth/__main__.py:2709 meowth/__main__.py:2759 meowth/__main__.py:2808 +#: meowth/__main__.py:2859 meowth/__main__.py:2908 meowth/__main__.py:2930 +#: meowth/__main__.py:2949 meowth/__main__.py:3031 meowth/__main__.py:3108 +#: meowth/__main__.py:3141 meowth/__main__.py:3181 meowth/__main__.py:3228 msgid "" "**CONFIG CANCELLED!**\n" "\n" "No changes have been made." msgstr "" -#: __main__.py:1788 +#: meowth/__main__.py:1823 msgid "I'm sorry I don't understand. Please reply with the choices above." msgstr "" -#: __main__.py:1845 +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 +msgid "Configuration Complete" +msgstr "" + +#: meowth/__main__.py:1888 meowth/__main__.py:1913 meowth/__main__.py:1974 +#: meowth/__main__.py:2132 meowth/__main__.py:2355 meowth/__main__.py:2545 +#: meowth/__main__.py:2588 meowth/__main__.py:2644 meowth/__main__.py:2743 +#: meowth/__main__.py:2842 meowth/__main__.py:3016 meowth/__main__.py:3096 +#: meowth/__main__.py:3170 meowth/__main__.py:3217 msgid "Meowth! Alright! Your settings have been saved and I'm ready to go! If you need to change any of these settings, just type **!configure** in your server again." msgstr "" -#: __main__.py:1862 +#: meowth/__main__.py:1891 +msgid "All settings" +msgstr "" + +#: meowth/__main__.py:1891 meowth/__main__.py:3933 +msgid "all" +msgstr "" + +#: meowth/__main__.py:1895 +msgid "!team command settings" +msgstr "" + +#: meowth/__main__.py:1895 meowth/__main__.py:3452 meowth/__main__.py:3614 +#: meowth/__main__.py:4432 meowth/__main__.py:4592 meowth/__main__.py:5386 +#: meowth/__main__.py:5400 meowth/__main__.py:6410 +msgid "team" +msgstr "" + +#: meowth/__main__.py:1921 msgid "Team Assignments" msgstr "" -#: __main__.py:1862 +#: meowth/__main__.py:1921 msgid "" "Team assignment allows users to assign their Pokemon Go team role using the **!team** command. If you have a bot that handles this already, you may want to disable this feature.\n" "\n" @@ -377,29 +668,38 @@ msgid "" "Respond here with: **N** to disable, **Y** to enable:" msgstr "" -#: __main__.py:1881 +#: meowth/__main__.py:1940 msgid "Team Assignments enabled!" msgstr "" -#: __main__.py:1885 +#: meowth/__main__.py:1944 msgid "Team Assignments disabled!" msgstr "" -#: __main__.py:1905 +#: meowth/__main__.py:1950 meowth/__main__.py:2109 meowth/__main__.py:2522 +#: meowth/__main__.py:2567 +msgid "I'm sorry I don't understand. Please reply with either **N** to disable, or **Y** to enable." +msgstr "" + +#: meowth/__main__.py:1956 +msgid "Welcome message settings" +msgstr "" + +#: meowth/__main__.py:1981 msgid "" "I can welcome new members to the server with a short message. Here is an example, but it is customizable:\n" "\n" msgstr "" -#: __main__.py:1907 +#: meowth/__main__.py:1983 msgid "Meowth! Welcome to {server_name}, {owner_name.mention}! Set your team by typing '**!team mystic**' or '**!team valor**' or '**!team instinct**' without quotations. If you have any questions just ask an admin." msgstr "" -#: __main__.py:1909 +#: meowth/__main__.py:1985 msgid "Meowth! Welcome to {server_name}, {owner_name.mention}! If you have any questions just ask an admin." msgstr "" -#: __main__.py:1910 +#: meowth/__main__.py:1986 msgid "" "\n" "\n" @@ -408,15 +708,15 @@ msgid "" "Respond with: **N** to disable, **Y** to enable:" msgstr "" -#: __main__.py:1911 __main__.py:1928 +#: meowth/__main__.py:1987 meowth/__main__.py:2004 msgid "Welcome Message" msgstr "" -#: __main__.py:1916 +#: meowth/__main__.py:1992 msgid "Welcome Message enabled!" msgstr "" -#: __main__.py:1919 +#: meowth/__main__.py:1995 msgid "" "Would you like a custom welcome message? You can reply with **N** to use the default message above or enter your own below.\n" "\n" @@ -430,19 +730,19 @@ msgid "" "Surround your message with [] to send it as an embed. **Warning:** Mentions within embeds may be broken on mobile, this is a Discord bug." msgstr "" -#: __main__.py:1930 +#: meowth/__main__.py:2006 msgid "Current Welcome Message" msgstr "" -#: __main__.py:1935 +#: meowth/__main__.py:2011 msgid "Default welcome message set" msgstr "" -#: __main__.py:1941 +#: meowth/__main__.py:2017 msgid "Please shorten your message to less than 500 characters. You entered {count}." msgstr "" -#: __main__.py:1951 +#: meowth/__main__.py:2027 msgid "" "{msg}\n" "\n" @@ -450,73 +750,84 @@ msgid "" "The following could not be found: {errors}" msgstr "" -#: __main__.py:1952 +#: meowth/__main__.py:2028 msgid "Please check the data given and retry a new welcome message, or reply with **N** to use the default." msgstr "" -#: __main__.py:1957 +#: meowth/__main__.py:2033 msgid "Here's what you sent. Does it look ok?" msgstr "" -#: __main__.py:1964 +#: meowth/__main__.py:2040 msgid "" "Here's what you sent. Does it look ok?\n" "\n" "{welcome}" msgstr "" -#: __main__.py:1975 +#: meowth/__main__.py:2047 +msgid "Please enter a new welcome message, or reply with **N** to use the default." +msgstr "" + +#: meowth/__main__.py:2051 msgid "" "Welcome Message set to:\n" "\n" "{}" msgstr "" -#: __main__.py:1978 +#: meowth/__main__.py:2054 msgid "Welcome Message Channel" msgstr "" -#: __main__.py:1978 +#: meowth/__main__.py:2054 msgid "" "Which channel in your server would you like me to post the Welcome Messages? You can also choose to have them sent to the new member via Direct Message (DM) instead.\n" "\n" "Respond with: **channel-name** or ID of a channel in your server or **DM** to Direct Message:" msgstr "" -#: __main__.py:1983 +#: meowth/__main__.py:2059 msgid "Welcome DM set" msgstr "" -#: __main__.py:1986 +#: meowth/__main__.py:2062 msgid "Channel names can't contain spaces, sorry. Please double check the name and send your response again." msgstr "" -#: __main__.py:2016 __main__.py:2092 __main__.py:2298 __main__.py:2540 -#: __main__.py:2622 __main__.py:2703 +#: meowth/__main__.py:2093 meowth/__main__.py:2186 meowth/__main__.py:2409 +#: meowth/__main__.py:2698 meowth/__main__.py:2797 meowth/__main__.py:2897 +#: meowth/__main__.py:3069 meowth/__main__.py:3270 msgid "I couldn't set my own permissions in this channel. Please ensure I have the correct permissions in {channel} using **{prefix}get perms**." msgstr "" -#: __main__.py:2017 +#: meowth/__main__.py:2094 msgid "Welcome Channel set to {channel}" msgstr "" -#: __main__.py:2020 +#: meowth/__main__.py:2097 msgid "The channel you provided isn't in your server. Please double check your channel and resend your response." msgstr "" -#: __main__.py:2026 +#: meowth/__main__.py:2103 msgid "Welcome Message disabled!" msgstr "" -#: __main__.py:2032 -msgid "I'm sorry I don't understand. Please reply with either **N** to disable, or **Y** to enable." +#: meowth/__main__.py:2114 +msgid "!raid reporting settings" msgstr "" -#: __main__.py:2046 +#: meowth/__main__.py:2114 meowth/__main__.py:4042 meowth/__main__.py:5039 +#: meowth/__main__.py:5601 meowth/__main__.py:5622 meowth/__main__.py:6231 +#: meowth/__main__.py:6493 meowth/__main__.py:6999 +msgid "raid" +msgstr "" + +#: meowth/__main__.py:2139 msgid "Raid Reporting Channels" msgstr "" -#: __main__.py:2046 +#: meowth/__main__.py:2139 msgid "" "Raid Reporting allows users to report active raids with **!raid** or raid eggs with **!raidegg**. Pokemon raid reports are contained within one or more channels. Each channel will be able to represent different areas/communities. I'll need you to provide a list of channels in your server you will allow reports from in this format: `channel-name, channel-name, channel-name`\n" "\n" @@ -527,16 +838,17 @@ msgid "" "Respond with: **N** to disable, or the **channel-name** list to enable, each seperated with a comma and space:" msgstr "" -#: __main__.py:2052 +#: meowth/__main__.py:2145 msgid "Raid Reporting disabled" msgstr "" -#: __main__.py:2084 +#: meowth/__main__.py:2177 msgid "Raid Reporting Channels enabled" msgstr "" -#: __main__.py:2095 __main__.py:2301 __main__.py:2543 __main__.py:2625 -#: __main__.py:2707 +#: meowth/__main__.py:2189 meowth/__main__.py:2412 meowth/__main__.py:2701 +#: meowth/__main__.py:2800 meowth/__main__.py:2900 meowth/__main__.py:3073 +#: meowth/__main__.py:3274 msgid "" "The channel list you provided doesn't match with your servers channels.\n" "\n" @@ -545,7 +857,7 @@ msgid "" "Please double check your channel list and resend your reponse." msgstr "" -#: __main__.py:2098 +#: meowth/__main__.py:2192 msgid "" "For each report, I generate Google Maps links to give people directions to the raid or egg! To do this, I need to know which suburb/town/region each report channel represents, to ensure we get the right location in the map. For each report channel you provided, I will need its corresponding general location using only letters and spaces, with each location seperated by a comma and space.\n" "\n" @@ -556,21 +868,24 @@ msgid "" "Respond with: **location info, location info, location info** each matching the order of the previous channel list below." msgstr "" -#: __main__.py:2098 +#: meowth/__main__.py:2192 msgid "Raid Reporting Locations" msgstr "" -#: __main__.py:2099 __main__.py:2141 __main__.py:2305 __main__.py:2347 -#: __main__.py:2547 __main__.py:2629 +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 msgid "Entered Channels" msgstr "" -#: __main__.py:2099 __main__.py:2141 __main__.py:2305 __main__.py:2347 -#: __main__.py:2547 __main__.py:2629 +#: meowth/__main__.py:2193 meowth/__main__.py:2235 meowth/__main__.py:2416 +#: meowth/__main__.py:2458 meowth/__main__.py:2705 meowth/__main__.py:2804 +#: meowth/__main__.py:2904 meowth/__main__.py:2946 msgid "{citychannel_list}" msgstr "" -#: __main__.py:2112 __main__.py:2318 __main__.py:2560 __main__.py:2642 +#: meowth/__main__.py:2206 meowth/__main__.py:2429 meowth/__main__.py:2718 +#: meowth/__main__.py:2817 meowth/__main__.py:2917 msgid "" "The number of cities doesn't match the number of channels you gave me earlier!\n" "\n" @@ -582,11 +897,11 @@ msgid "" "Please double check that your locations match up with your provided channels and resend your response." msgstr "" -#: __main__.py:2115 +#: meowth/__main__.py:2209 msgid "Raid Reporting Locations are set" msgstr "" -#: __main__.py:2116 +#: meowth/__main__.py:2210 msgid "" "How would you like me to categorize the raid channels I create? Your options are:\n" "\n" @@ -596,11 +911,11 @@ msgid "" "**level** - If you want them categorized by level." msgstr "" -#: __main__.py:2116 __main__.py:2140 __main__.py:2191 +#: meowth/__main__.py:2210 meowth/__main__.py:2234 meowth/__main__.py:2285 msgid "Raid Reporting Categories" msgstr "" -#: __main__.py:2140 +#: meowth/__main__.py:2234 msgid "" "In the same order as they appear below, please give the names of the categories you would like raids reported in each channel to appear in. You do not need to use different categories for each channel, but they do need to be pre-existing categories. Separate each category name with a comma. Response can be either category name or ID.\n" "\n" @@ -609,26 +924,29 @@ msgid "" "You have configured the following channels as raid reporting channels." msgstr "" -#: __main__.py:2171 __main__.py:2222 __main__.py:2377 +#: meowth/__main__.py:2265 meowth/__main__.py:2316 meowth/__main__.py:2488 +#: meowth/__main__.py:2976 msgid "The category list you provided doesn't match with your server's categories." msgstr "" -#: __main__.py:2173 __main__.py:2180 __main__.py:2224 __main__.py:2231 -#: __main__.py:2379 __main__.py:2386 +#: meowth/__main__.py:2267 meowth/__main__.py:2274 meowth/__main__.py:2318 +#: meowth/__main__.py:2325 meowth/__main__.py:2490 meowth/__main__.py:2497 +#: meowth/__main__.py:2978 meowth/__main__.py:2985 msgid "" "\n" "\n" "The following aren't in your server: **{invalid_categories}**" msgstr "" -#: __main__.py:2174 __main__.py:2225 __main__.py:2380 +#: meowth/__main__.py:2268 meowth/__main__.py:2319 meowth/__main__.py:2491 +#: meowth/__main__.py:2979 msgid "" "\n" "\n" "Please double check your category list and resend your response. If you just made these categories, try again." msgstr "" -#: __main__.py:2178 __main__.py:2384 +#: meowth/__main__.py:2272 meowth/__main__.py:2495 meowth/__main__.py:2983 msgid "" "The number of categories I found in your server doesn't match the number of channels you gave me earlier!\n" "\n" @@ -640,7 +958,7 @@ msgid "" "Please double check that your categories match up with your provided channels and resend your response." msgstr "" -#: __main__.py:2191 +#: meowth/__main__.py:2285 msgid "" "Pokemon Go currently has five levels of raids. Please provide the names of the categories you would like each level of raid to appear in. Use the following order: 1, 2, 3, 4, 5 \n" "\n" @@ -649,7 +967,7 @@ msgid "" "Example: `level 1-3, level 1-3, level 1-3, level 4, 1231231241561337813`" msgstr "" -#: __main__.py:2229 +#: meowth/__main__.py:2323 msgid "" "The number of categories I found in your server doesn't match the number of raid levels! Make sure you give me exactly six categories, one for each level of raid. You can use the same category for multiple levels if you want, but I need to see six category names.\n" "\n" @@ -658,19 +976,27 @@ msgid "" "Please double check your categories." msgstr "" -#: __main__.py:2235 __main__.py:2391 +#: meowth/__main__.py:2329 meowth/__main__.py:2502 meowth/__main__.py:2990 msgid "Sorry, I didn't understand your answer! Try again." msgstr "" -#: __main__.py:2238 +#: meowth/__main__.py:2332 msgid "Raid Categories are set" msgstr "" -#: __main__.py:2252 +#: meowth/__main__.py:2337 +msgid "!exraid reporting settings" +msgstr "" + +#: meowth/__main__.py:2337 meowth/__main__.py:4643 +msgid "exraid" +msgstr "" + +#: meowth/__main__.py:2362 msgid "EX Raid Reporting Channels" msgstr "" -#: __main__.py:2252 +#: meowth/__main__.py:2362 msgid "" "EX Raid Reporting allows users to report EX raids with **!exraid**. Pokemon EX raid reports are contained within one or more channels. Each channel will be able to represent different areas/communities. I'll need you to provide a list of channels in your server you will allow reports from in this format: `channel-name, channel-name, channel-name`\n" "\n" @@ -681,19 +1007,19 @@ msgid "" "Respond with: **N** to disable, or the **channel-name** list to enable, each seperated with a comma and space:" msgstr "" -#: __main__.py:2258 +#: meowth/__main__.py:2368 msgid "EX Raid Reporting disabled" msgstr "" -#: __main__.py:2290 +#: meowth/__main__.py:2400 msgid "EX Raid Reporting Channels enabled" msgstr "" -#: __main__.py:2304 +#: meowth/__main__.py:2415 msgid "EX Raid Reporting Locations" msgstr "" -#: __main__.py:2304 +#: meowth/__main__.py:2415 msgid "" "For each report, I generate Google Maps links to give people directions to EX raids! To do this, I need to know which suburb/town/region each report channel represents, to ensure we get the right location in the map. For each report channel you provided, I will need its corresponding general location using only letters and spaces, with each location seperated by a comma and space.\n" "\n" @@ -704,11 +1030,11 @@ msgid "" "Respond with: **location info, location info, location info** each matching the order of the previous channel list below." msgstr "" -#: __main__.py:2321 +#: meowth/__main__.py:2432 msgid "EX Raid Reporting Locations are set" msgstr "" -#: __main__.py:2322 +#: meowth/__main__.py:2433 msgid "" "How would you like me to categorize the EX raid channels I create? Your options are:\n" "\n" @@ -717,11 +1043,11 @@ msgid "" "**other** - If you want them categorized in a provided category name or ID" msgstr "" -#: __main__.py:2322 __main__.py:2346 +#: meowth/__main__.py:2433 meowth/__main__.py:2457 msgid "EX Raid Reporting Categories" msgstr "" -#: __main__.py:2346 +#: meowth/__main__.py:2457 msgid "" "In the same order as they appear below, please give the names of the categories you would like raids reported in each channel to appear in. You do not need to use different categories for each channel, but they do need to be pre-existing categories. Separate each category name with a comma. Response can be either category name or ID.\n" "\n" @@ -730,15 +1056,15 @@ msgid "" "You have configured the following channels as EX raid reporting channels." msgstr "" -#: __main__.py:2394 +#: meowth/__main__.py:2505 msgid "EX Raid Categories are set" msgstr "" -#: __main__.py:2396 +#: meowth/__main__.py:2507 msgid "EX Raid Channel Read Permissions" msgstr "" -#: __main__.py:2396 +#: meowth/__main__.py:2507 msgid "" "Who do you want to be able to **see** the EX Raid channels? Your options are:\n" "\n" @@ -746,15 +1072,87 @@ msgid "" "**same** - To only allow those with access to the reporting channel." msgstr "" -#: __main__.py:2477 +#: meowth/__main__.py:2512 +msgid "Everyone permission enabled" +msgstr "" + +#: meowth/__main__.py:2516 +msgid "Same permission enabled" +msgstr "" + +#: meowth/__main__.py:2527 +msgid "!invite command settings" +msgstr "" + +#: meowth/__main__.py:2527 meowth/__main__.py:4762 +msgid "invite" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "" +"Do you want access to EX raids controlled through members using the **!invite** command?\n" +"If enabled, members will have read-only permissions for all EX Raids until they use **!invite** to gain access. If disabled, EX Raids will inherit the permissions from their reporting channels.\n" +"\n" +"Respond with: **N** to disable, or **Y** to enable:" +msgstr "" + +#: meowth/__main__.py:2552 +msgid "Invite Configuration" +msgstr "" + +#: meowth/__main__.py:2557 +msgid "Invite Command enabled" +msgstr "" + +#: meowth/__main__.py:2561 +msgid "Invite Command disabled" +msgstr "" + +#: meowth/__main__.py:2572 +msgid "Automatic counters settings" +msgstr "" + +#: meowth/__main__.py:2572 meowth/__main__.py:5698 +msgid "counters" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "Automatic Counters Configuration" +msgstr "" + +#: meowth/__main__.py:2595 +msgid "" +"Do you want to generate an automatic counters list in newly created raid channels using PokeBattler?\n" +"If enabled, I will post a message containing the best counters for the raid boss in new raid channels. Users will still be able to use **!counters** to generate this list.\n" +"\n" +"Respond with: **N** to disable, or enable with a comma separated list of boss levels that you would like me to generate counters for. Example:`3,4,5,EX`" +msgstr "" + +#: meowth/__main__.py:2601 +msgid "Automatic Counters disabled" +msgstr "" + +#: meowth/__main__.py:2618 msgid "Automatic Counter Levels set to: {levels}" msgstr "" -#: __main__.py:2494 +#: meowth/__main__.py:2621 +msgid "Please enter at least one level from 1 to EX separated by comma. Ex: `4,5,EX` or **N** to turn off automatic counters." +msgstr "" + +#: meowth/__main__.py:2626 +msgid "!wild reporting settings" +msgstr "" + +#: meowth/__main__.py:2626 meowth/__main__.py:3967 +msgid "wild" +msgstr "" + +#: meowth/__main__.py:2651 msgid "Wild Reporting Channels" msgstr "" -#: __main__.py:2494 +#: meowth/__main__.py:2651 msgid "" "Wild Reporting allows users to report wild spawns with **!wild**. Pokemon **wild** reports are contained within one or more channels. Each channel will be able to represent different areas/communities. I'll need you to provide a list of channels in your server you will allow reports from in this format: `channel-name, channel-name, channel-name`\n" "\n" @@ -765,15 +1163,15 @@ msgid "" "Respond with: **N** to disable, or the **channel-name** list to enable, each seperated with a comma and space:" msgstr "" -#: __main__.py:2500 +#: meowth/__main__.py:2657 msgid "Wild Reporting disabled" msgstr "" -#: __main__.py:2532 +#: meowth/__main__.py:2689 msgid "Wild Reporting Channels enabled" msgstr "" -#: __main__.py:2546 +#: meowth/__main__.py:2704 msgid "" "For each report, I generate Google Maps links to give people directions to wild spawns! To do this, I need to know which suburb/town/region each report channel represents, to ensure we get the right location in the map. For each report channel you provided, I will need its corresponding general location using only letters and spaces, with each location seperated by a comma and space.\n" "\n" @@ -784,19 +1182,27 @@ msgid "" "Respond with: **location info, location info, location info** each matching the order of the previous channel list below." msgstr "" -#: __main__.py:2546 +#: meowth/__main__.py:2704 msgid "Wild Reporting Locations" msgstr "" -#: __main__.py:2563 +#: meowth/__main__.py:2721 msgid "Wild Reporting Locations are set" msgstr "" -#: __main__.py:2576 +#: meowth/__main__.py:2725 +msgid "!research reporting settings" +msgstr "" + +#: meowth/__main__.py:2725 meowth/__main__.py:4820 meowth/__main__.py:7164 +msgid "research" +msgstr "" + +#: meowth/__main__.py:2750 msgid "Research Reporting Channels" msgstr "" -#: __main__.py:2576 +#: meowth/__main__.py:2750 msgid "" "Research Reporting allows users to report field research with **!research**. Pokemon **research** reports are contained within one or more channels. Each channel will be able to represent different areas/communities. I'll need you to provide a list of channels in your server you will allow reports from in this format: `channel-name, channel-name, channel-name`\n" "\n" @@ -807,15 +1213,15 @@ msgid "" "Respond with: **N** to disable, or the **channel-name** list to enable, each seperated with a comma and space:" msgstr "" -#: __main__.py:2582 +#: meowth/__main__.py:2756 msgid "Research Reporting disabled" msgstr "" -#: __main__.py:2614 +#: meowth/__main__.py:2788 msgid "Research Reporting Channels enabled" msgstr "" -#: __main__.py:2628 +#: meowth/__main__.py:2803 msgid "" "For each report, I generate Google Maps links to give people directions to field research! To do this, I need to know which suburb/town/region each report channel represents, to ensure we get the right location in the map. For each report channel you provided, I will need its corresponding general location using only letters and spaces, with each location seperated by a comma and space.\n" "\n" @@ -826,19 +1232,103 @@ msgid "" "Respond with: **location info, location info, location info** each matching the order of the previous channel list below." msgstr "" -#: __main__.py:2628 +#: meowth/__main__.py:2803 msgid "Research Reporting Locations" msgstr "" -#: __main__.py:2645 +#: meowth/__main__.py:2820 msgid "Research Reporting Locations are set" msgstr "" -#: __main__.py:2658 +#: meowth/__main__.py:2824 +msgid "!meetup reporting settings" +msgstr "" + +#: meowth/__main__.py:2824 meowth/__main__.py:4947 meowth/__main__.py:5434 +msgid "meetup" +msgstr "" + +#: meowth/__main__.py:2850 +msgid "Meetup Reporting Channels" +msgstr "" + +#: meowth/__main__.py:2850 +msgid "" +"Meetup Reporting allows users to report meetups with **!meetup** or **!event**. Meetup reports are contained within one or more channels. Each channel will be able to represent different areas/communities. I'll need you to provide a list of channels in your server you will allow reports from in this format: `channel-name, channel-name, channel-name`\n" +"\n" +"Example: `kansas-city-meetups, hull-meetups, sydney-meetups`\n" +"\n" +"If you do not require meetup reporting, you may want to disable this function.\n" +"\n" +"Respond with: **N** to disable, or the **channel-name** list to enable, each seperated with a comma and space:" +msgstr "" + +#: meowth/__main__.py:2856 +msgid "Meetup Reporting disabled" +msgstr "" + +#: meowth/__main__.py:2888 +msgid "Meetup Reporting Channels enabled" +msgstr "" + +#: meowth/__main__.py:2903 +msgid "" +"For each report, I generate Google Maps links to give people directions to meetups! To do this, I need to know which suburb/town/region each report channel represents, to ensure we get the right location in the map. For each report channel you provided, I will need its corresponding general location using only letters and spaces, with each location seperated by a comma and space.\n" +"\n" +"Example: `kansas city mo, hull uk, sydney nsw australia`\n" +"\n" +"Each location will have to be in the same order as you provided the channels in the previous question.\n" +"\n" +"Respond with: **location info, location info, location info** each matching the order of the previous channel list below." +msgstr "" + +#: meowth/__main__.py:2903 +msgid "Meetup Reporting Locations" +msgstr "" + +#: meowth/__main__.py:2920 +msgid "Meetup Reporting Locations are set" +msgstr "" + +#: meowth/__main__.py:2921 +msgid "" +"How would you like me to categorize the meetup channels I create? Your options are:\n" +"\n" +"**none** - If you don't want them categorized\n" +"**same** - If you want them in the same category as the reporting channel\n" +"**other** - If you want them categorized in a provided category name or ID" +msgstr "" + +#: meowth/__main__.py:2921 meowth/__main__.py:2945 +msgid "Meetup Reporting Categories" +msgstr "" + +#: meowth/__main__.py:2945 +msgid "" +"In the same order as they appear below, please give the names of the categories you would like raids reported in each channel to appear in. You do not need to use different categories for each channel, but they do need to be pre-existing categories. Separate each category name with a comma. Response can be either category name or ID.\n" +"\n" +"Example: `kansas city, hull, 1231231241561337813`\n" +"\n" +"You have configured the following channels as meetup reporting channels." +msgstr "" + +#: meowth/__main__.py:2993 +msgid "Meetup Categories are set" +msgstr "" + +#: meowth/__main__.py:2998 +msgid "!want/!unwant settings" +msgstr "" + +#: meowth/__main__.py:2998 meowth/__main__.py:3782 +msgid "want" +msgstr "" + +#: meowth/__main__.py:3023 msgid "Pokemon Notifications" msgstr "" -#: __main__.py:2658 +#: meowth/__main__.py:3023 msgid "" "The **!want** and **!unwant** commands let you add or remove roles for Pokemon that will be mentioned in reports. This let you get notifications on the Pokemon you want to track. I just need to know what channels you want to allow people to manage their pokemon with the **!want** and **!unwant** command.\n" "\n" @@ -847,58 +1337,70 @@ msgid "" "Repond with: **N** to disable, or the **channel-name** list to enable, each seperated by a comma and space." msgstr "" -#: __main__.py:2663 +#: meowth/__main__.py:3028 msgid "Pokemon Notifications disabled" msgstr "" -#: __main__.py:2704 +#: meowth/__main__.py:3070 msgid "Pokemon Notifications enabled" msgstr "" -#: __main__.py:2721 +#: meowth/__main__.py:3078 +msgid "Configure !archive command settings" +msgstr "" + +#: meowth/__main__.py:3078 meowth/__main__.py:3533 +msgid "archive" +msgstr "" + +#: meowth/__main__.py:3103 msgid "" "The **!archive** command marks temporary raid channels for archival rather than deletion. This can be useful for investigating potential violations of your server's rules in these channels.\n" "\n" "If you would like to disable this feature, reply with **N**. Otherwise send the category you would like me to place archived channels in. You can say **same** to keep them in the same category, or type the name or ID of a category in your server." msgstr "" -#: __main__.py:2721 __main__.py:2753 +#: meowth/__main__.py:3103 meowth/__main__.py:3135 msgid "Archive Configuration" msgstr "" -#: __main__.py:2731 +#: meowth/__main__.py:3113 msgid "Archived channels will remain in the same category." msgstr "" -#: __main__.py:2735 +#: meowth/__main__.py:3117 msgid "Archived Channels disabled." msgstr "" -#: __main__.py:2746 +#: meowth/__main__.py:3128 msgid "I couldn't find the category you replied with! Please reply with **same** to leave archived channels in the same category, or give the name or ID of an existing category." msgstr "" -#: __main__.py:2750 +#: meowth/__main__.py:3132 msgid "Archive category set." msgstr "" -#: __main__.py:2753 +#: meowth/__main__.py:3135 msgid "" "I can also listen in your raid channels for words or phrases that you want to trigger an automatic archival. For example, if discussion of spoofing is against your server rules, you might tell me to listen for the word 'spoofing'.\n" "\n" "Reply with **none** to disable this feature, or reply with a comma separated list of phrases you want me to listen in raid channels for." msgstr "" -#: __main__.py:2757 +#: meowth/__main__.py:3139 msgid "Phrase list disabled." msgstr "" -#: __main__.py:2766 +#: meowth/__main__.py:3148 msgid "Archive Phrase list set." msgstr "" -#: __main__.py:2779 -msgid "" +#: meowth/__main__.py:3152 +msgid "Configure timezone and other settings" +msgstr "" + +#: meowth/__main__.py:3177 +msgid "" "There are a few settings available that are not within **!configure**. To set these, use **!set ** in any channel to set that setting.\n" "\n" "These include:\n" @@ -915,151 +1417,295 @@ msgid "" "Respond with: A number from **-12** to **12**:" msgstr "" -#: __main__.py:2779 +#: meowth/__main__.py:3177 msgid "Timezone Configuration and Other Settings" msgstr "" -#: __main__.py:2789 __main__.py:2792 +#: meowth/__main__.py:3187 meowth/__main__.py:3190 msgid "" "I couldn't convert your answer to an appropriate timezone!\n" "\n" "Please double check what you sent me and resend a number strarting from **-12** to **12**." msgstr "" -#: __main__.py:2797 +#: meowth/__main__.py:3195 msgid "Timezone set" msgstr "" -#: __main__.py:2818 +#: meowth/__main__.py:3199 +msgid "!trade reporting settings" +msgstr "" + +#: meowth/__main__.py:3199 +msgid "trade" +msgstr "" + +#: meowth/__main__.py:3224 +msgid "" +"The **!trade** command allows your users to organize and coordinate trades. This command requires at least one channel specifically for trades.\n" +"\n" +"If you would like to disable this feature, reply with **N**. Otherwise, just send the names or IDs of the channels you want to allow the **!trade** command in, separated by commas." +msgstr "" + +#: meowth/__main__.py:3224 +msgid "Trade Configuration" +msgstr "" + +#: meowth/__main__.py:3232 +msgid "Trade disabled." +msgstr "" + +#: meowth/__main__.py:3271 +msgid "Pokemon Trades enabled" +msgstr "" + +#: meowth/__main__.py:3279 +msgid "" +"Reloads the JSON files for the server\n" +"\n" +"Useful to avoid a full restart if boss list changed" +msgstr "" + +#: meowth/__main__.py:3279 +msgid "reload_json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "Edits or displays raid_info.json" +msgstr "" + +#: meowth/__main__.py:3286 +msgid "raid_json" +msgstr "" + +#: meowth/__main__.py:3292 msgid "" "\n" "**Level {level} raid list:** `{raidlist}` \n" msgstr "" -#: __main__.py:2825 __main__.py:2835 __main__.py:2840 +#: meowth/__main__.py:3299 meowth/__main__.py:3312 meowth/__main__.py:3317 msgid "" "**Level {level} raid list:** `{raidlist}` \n" msgstr "" -#: __main__.py:2834 +#: meowth/__main__.py:3310 +msgid "I couldn't understand the list you supplied! Please use a comma-separated list of Pokemon species numbers." +msgstr "" + +#: meowth/__main__.py:3311 msgid "" "I will replace this:\n" msgstr "" -#: __main__.py:2839 +#: meowth/__main__.py:3316 msgid "" "\n" "\n" "With this:\n" msgstr "" -#: __main__.py:2844 +#: meowth/__main__.py:3321 msgid "" "\n" "\n" "Continue?" msgstr "" -#: __main__.py:2878 +#: meowth/__main__.py:3329 +msgid "Meowth! Configuration cancelled!" +msgstr "" + +#: meowth/__main__.py:3340 +msgid "Meowth! Configuration successful!" +msgstr "" + +#: meowth/__main__.py:3342 +msgid "Meowth! I'm not sure what went wrong, but configuration is cancelled!" +msgstr "" + +#: meowth/__main__.py:3345 +msgid "reset_board" +msgstr "" + +#: meowth/__main__.py:3360 +msgid "every user" +msgstr "" + +#: meowth/__main__.py:3382 +msgid "Are you sure you want to reset the **{type}** report stats for **{target}**?" +msgstr "" + +#: meowth/__main__.py:3408 +msgid "{trainer}'s report stats have been cleared!" +msgstr "" + +#: meowth/__main__.py:3412 +msgid "" +"Changes raid boss.\n" +"\n" +"Usage: !changeraid \n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3412 +msgid "changeraid" +msgstr "" + +#: meowth/__main__.py:3420 msgid "The channel you entered is not a raid channel." msgstr "" -#: __main__.py:2881 __main__.py:3780 +#: meowth/__main__.py:3423 meowth/__main__.py:4330 msgid "level-{egg_level}-egg-" msgstr "" -#: __main__.py:2900 __main__.py:2903 __main__.py:3790 __main__.py:3793 -#: __main__.py:4142 __main__.py:4145 __main__.py:5681 __main__.py:5684 +#: meowth/__main__.py:3442 meowth/__main__.py:3445 meowth/__main__.py:4346 +#: meowth/__main__.py:4349 meowth/__main__.py:4718 meowth/__main__.py:4721 +#: meowth/__main__.py:6416 meowth/__main__.py:6419 msgid "**Possible Bosses:**" msgstr "" -#: __main__.py:2900 __main__.py:3790 __main__.py:4142 __main__.py:5681 +#: meowth/__main__.py:3442 meowth/__main__.py:4346 meowth/__main__.py:4718 +#: meowth/__main__.py:6416 msgid "{bosslist1}" msgstr "" -#: __main__.py:2901 __main__.py:3791 __main__.py:4143 __main__.py:5682 +#: meowth/__main__.py:3443 meowth/__main__.py:4347 meowth/__main__.py:4719 +#: meowth/__main__.py:6417 msgid "{bosslist2}" msgstr "" -#: __main__.py:2903 __main__.py:3793 __main__.py:4145 __main__.py:5684 +#: meowth/__main__.py:3445 meowth/__main__.py:4349 meowth/__main__.py:4721 +#: meowth/__main__.py:6419 msgid "{bosslist}" msgstr "" -#: __main__.py:2910 __main__.py:3871 __main__.py:4018 __main__.py:4688 -#: __main__.py:4702 __main__.py:5675 -msgid "team" -msgstr "" - -#: __main__.py:2911 __main__.py:3872 __main__.py:4019 __main__.py:4689 -#: __main__.py:4703 __main__.py:5676 +#: meowth/__main__.py:3453 meowth/__main__.py:4433 meowth/__main__.py:4593 +#: meowth/__main__.py:5387 meowth/__main__.py:5401 meowth/__main__.py:6411 msgid "status" msgstr "" -#: __main__.py:2915 __main__.py:2916 +#: meowth/__main__.py:3457 meowth/__main__.py:3458 msgid "Level {}" msgstr "" -#: __main__.py:2915 __main__.py:2916 +#: meowth/__main__.py:3457 meowth/__main__.py:3458 msgid "level\\s\\d" msgstr "" -#: __main__.py:2918 +#: meowth/__main__.py:3460 msgid "Meowth! Level {} reported" msgstr "" -#: __main__.py:2918 __main__.py:2919 +#: meowth/__main__.py:3460 meowth/__main__.py:3461 msgid "Meowth!\\s.*\\sraid\\sreported" msgstr "" -#: __main__.py:2919 +#: meowth/__main__.py:3461 msgid "Meowth! Level {}" msgstr "" -#: __main__.py:2937 +#: meowth/__main__.py:3477 +msgid "" +"Clears raid channel status lists.\n" +"\n" +"Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3477 +msgid "clearstatus" +msgstr "" + +#: meowth/__main__.py:3481 msgid "Are you sure you want to clear all status for this raid? Everybody will have to RSVP again. If you are wanting to clear one user's status, use `!setstatus cancel`" msgstr "" -#: __main__.py:2953 +#: meowth/__main__.py:3497 msgid "Meowth! Raid status lists have been cleared!" msgstr "" -#: __main__.py:2968 +#: meowth/__main__.py:3502 +msgid "" +"Changes raid channel status lists.\n" +"\n" +" Usage: !setstatus [count]\n" +" User can be a mention or ID number. Status can be maybeinterested/i, coming/c, here/h, or cancel/x\n" +" Only usable by admins." +msgstr "" + +#: meowth/__main__.py:3502 +msgid "setstatus" +msgstr "" + +#: meowth/__main__.py:3513 msgid "Meowth! {status} is not a valid status!" msgstr "" -#: __main__.py:2986 +#: meowth/__main__.py:3519 +msgid "" +"Removes all 0 member pokemon roles.\n" +"\n" +" Usage: !cleanroles" +msgstr "" + +#: meowth/__main__.py:3519 +msgid "cleanroles" +msgstr "" + +#: meowth/__main__.py:3531 msgid "Removed {cleancount} empty roles" msgstr "" -#: __main__.py:3016 __main__.py:3067 +#: meowth/__main__.py:3533 +msgid "Marks a raid channel for archival." +msgstr "" + +#: meowth/__main__.py:3550 +msgid "Shows Meowth's uptime" +msgstr "" + +#: meowth/__main__.py:3550 +msgid "uptime" +msgstr "" + +#: meowth/__main__.py:3557 meowth/__main__.py:3607 msgid "Uptime" msgstr "" -#: __main__.py:3020 __main__.py:3072 +#: meowth/__main__.py:3561 meowth/__main__.py:3612 msgid "I need the `Embed links` permission to send this" msgstr "" -#: __main__.py:3029 +#: meowth/__main__.py:3570 msgid "{yr}y {mth}m {day}d {hr}:{min}" msgstr "" -#: __main__.py:3031 +#: meowth/__main__.py:3572 msgid "{mth}m {day}d {hr}:{min}" msgstr "" -#: __main__.py:3033 +#: meowth/__main__.py:3574 msgid "{day} days {hr} hrs {min} mins" msgstr "" -#: __main__.py:3035 +#: meowth/__main__.py:3576 msgid "{hr} hrs {min} mins {sec} secs" msgstr "" -#: __main__.py:3037 +#: meowth/__main__.py:3578 msgid "{min} mins {sec} secs" msgstr "" -#: __main__.py:3053 +#: meowth/__main__.py:3581 +msgid "Shows info about Meowth" +msgstr "" + +#: meowth/__main__.py:3581 +msgid "about" +msgstr "" + +#: meowth/__main__.py:3593 msgid "" "I'm Meowth! A Pokemon Go helper bot for Discord!\n" "\n" @@ -1069,1257 +1715,1982 @@ msgid "" "\n" msgstr "" -#: __main__.py:3060 +#: meowth/__main__.py:3600 msgid "About Meowth" msgstr "" -#: __main__.py:3061 +#: meowth/__main__.py:3601 msgid "Owner" msgstr "" -#: __main__.py:3063 +#: meowth/__main__.py:3603 msgid "Servers" msgstr "" -#: __main__.py:3064 +#: meowth/__main__.py:3604 msgid "Members" msgstr "" -#: __main__.py:3065 +#: meowth/__main__.py:3605 msgid "Your Server" msgstr "" -#: __main__.py:3066 +#: meowth/__main__.py:3606 msgid "Your Members" msgstr "" -#: __main__.py:3099 +#: meowth/__main__.py:3614 +msgid "" +"Set your team role.\n" +"\n" +" Usage: !team \n" +" The team roles have to be created manually beforehand by the server administrator." +msgstr "" + +#: meowth/__main__.py:3639 msgid "Maximum guild roles reached." msgstr "" -#: __main__.py:3104 +#: meowth/__main__.py:3644 msgid "" "Meowth! My roles are ranked lower than the following team roles: **{higher_roles_list}**\n" "Please get an admin to move my roles above them!" msgstr "" -#: __main__.py:3125 +#: meowth/__main__.py:3665 msgid "Meowth! You already have a team role!" msgstr "" -#: __main__.py:3129 +#: meowth/__main__.py:3669 msgid "Meowth! You are already in Team Harmony!" msgstr "" -#: __main__.py:3133 +#: meowth/__main__.py:3673 msgid "Meowth! {team_role} is not configured as a role on this server. Please contact an admin for assistance." msgstr "" -#: __main__.py:3137 +#: meowth/__main__.py:3677 msgid "Meowth! \"{entered_team}\" isn't a valid team! Try {available_teams}" msgstr "" -#: __main__.py:3141 +#: meowth/__main__.py:3681 msgid "Meowth! The \"{entered_team}\" role isn't configured on this server! Contact an admin!" msgstr "" -#: __main__.py:3147 +#: meowth/__main__.py:3687 msgid "Meowth! Added {member} to Team {team_name}! {team_emoji}" msgstr "" -#: __main__.py:3149 +#: meowth/__main__.py:3689 msgid "Meowth! I can't add roles!" msgstr "" -#: __main__.py:3162 -msgid "Meowth! You did not provide a known Silph Road Traveler!" +#: meowth/__main__.py:3700 +msgid "Traveler Card" +msgstr "" + +#: meowth/__main__.py:3702 +msgid "{user}'s Trainer Profile" +msgstr "" + +#: meowth/__main__.py:3704 +msgid "Silph Road" +msgstr "" + +#: meowth/__main__.py:3705 +msgid "Pokebattler" +msgstr "" + +#: meowth/__main__.py:3706 +msgid "Raid Reports" +msgstr "" + +#: meowth/__main__.py:3707 +msgid "Egg Reports" msgstr "" -#: __main__.py:3249 -msgid "Meowth! We've moved this command to **!list interested**." +#: meowth/__main__.py:3708 +msgid "EX Raid Reports" msgstr "" -#: __main__.py:3254 -msgid "Meowth! We've moved this command to **!list coming**." +#: meowth/__main__.py:3709 +msgid "Wild Reports" msgstr "" -#: __main__.py:3259 -msgid "Meowth! We've moved this command to **!list here**." +#: meowth/__main__.py:3710 +msgid "Research Reports" msgstr "" -#: __main__.py:3264 -msgid "Meowth! Hey {member}, I don't know if you meant **!coming** to say that you are coming or **!list coming** to see the other trainers on their way" +#: meowth/__main__.py:3713 +msgid "" +"Displays the top ten reporters of a server.\n" +"\n" +" Usage: !leaderboard [type]\n" +" Accepted types: raids, eggs, exraids, wilds, research" +msgstr "" + +#: meowth/__main__.py:3713 +msgid "leaderboard" +msgstr "" + +#: meowth/__main__.py:3725 +msgid "Leaderboard type not supported. Please select from: **total, raids, eggs, exraids, wilds, research**" +msgstr "" + +#: meowth/__main__.py:3740 +msgid "Reporting Leaderboard ({type})" +msgstr "" + +#: meowth/__main__.py:3745 +msgid "Raids: **{raids}** | Eggs: **{eggs}** | " +msgstr "" + +#: meowth/__main__.py:3747 +msgid "EX Raids: **{exraids}** | " +msgstr "" + +#: meowth/__main__.py:3749 +msgid "Wilds: **{wilds}** | " +msgstr "" + +#: meowth/__main__.py:3751 +msgid "Research: **{research}** | " msgstr "" -#: __main__.py:3331 +#: meowth/__main__.py:3756 +msgid "No Reports" +msgstr "" + +#: meowth/__main__.py:3756 +msgid "Nobody has made a report or this report type is disabled." +msgstr "" + +#: meowth/__main__.py:3782 +msgid "" +"Add a Pokemon to your wanted list.\n" +"\n" +" Usage: !want \n" +" Meowth will mention you if anyone reports seeing\n" +" this species in their !wild or !raid command.\n" +"\n" +" Behind the scenes, Meowth tracks user !wants by\n" +" creating a server role for the Pokemon species, and\n" +" assigning it to the user." +msgstr "" + +#: meowth/__main__.py:3825 +msgid "Meowth! Did you mean **!list wants**?" +msgstr "" + +#: meowth/__main__.py:3846 msgid "Maximum guild roles reached. Pokemon not added." msgstr "" -#: __main__.py:3352 +#: meowth/__main__.py:3867 msgid "Meowth! Got it! {member} wants {pokemon}" msgstr "" -#: __main__.py:3357 +#: meowth/__main__.py:3872 msgid "Meowth! {member}, I already know you want {pokemon}!" msgstr "" -#: __main__.py:3360 +#: meowth/__main__.py:3875 msgid "Meowth! {member}, out of your total {count} items:" msgstr "" -#: __main__.py:3362 +#: meowth/__main__.py:3877 msgid "" "\n" "**{added_count} Added:** \n" "\t{added_list}" msgstr "" -#: __main__.py:3364 +#: meowth/__main__.py:3879 msgid "" "\n" "**{already_want_count} Already Following:** \n" "\t{already_want_list}" msgstr "" -#: __main__.py:3368 +#: meowth/__main__.py:3883 msgid "" "\n" "\t{word}" msgstr "" -#: __main__.py:3370 +#: meowth/__main__.py:3885 msgid ": *({correction}?)*" msgstr "" -#: __main__.py:3371 +#: meowth/__main__.py:3886 msgid "" "\n" "**{count} Not Valid:**" msgstr "" -#: __main__.py:3441 +#: meowth/__main__.py:3889 +msgid "" +"Remove a Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant \n" +" You will no longer be notified of reports about this Pokemon.\n" +"\n" +" Behind the scenes, Meowth removes the user from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3889 +msgid "unwant" +msgstr "" + +#: meowth/__main__.py:3933 +msgid "" +"Remove all Pokemon from your wanted list.\n" +"\n" +" Usage: !unwant all\n" +" All Pokemon roles are removed.Behind the scenes, Meowth removes the user from\n" +" the server role for the Pokemon species." +msgstr "" + +#: meowth/__main__.py:3958 msgid "{0}, you have no pokemon in your want list." msgstr "" -#: __main__.py:3443 +#: meowth/__main__.py:3960 msgid "{0}, I've removed {1} pokemon from your want list." msgstr "" -#: __main__.py:3462 __main__.py:3542 __main__.py:3716 __main__.py:4083 -#: __main__.py:4276 __main__.py:4397 __main__.py:4404 __main__.py:4406 -#: __main__.py:4587 __main__.py:4607 __main__.py:4629 __main__.py:5857 -#: __main__.py:6041 __main__.py:6045 __main__.py:6049 __main__.py:6121 -msgid "%I:%M %p (%H:%M)" +#: meowth/__main__.py:3967 +msgid "" +"Report a wild Pokemon spawn location.\n" +"\n" +" Usage: !wild \n" +" Meowth will insert the details (really just everything after the species name) into a\n" +" Google maps link and post the link to the same channel the report was made in." msgstr "" -#: __main__.py:3465 __main__.py:3481 -msgid "Meowth! Give more details when reporting! Usage: **!wild **" +#: meowth/__main__.py:3978 meowth/__main__.py:4064 meowth/__main__.py:4236 +#: meowth/__main__.py:4658 meowth/__main__.py:4839 meowth/__main__.py:4961 +#: meowth/__main__.py:5042 meowth/__main__.py:5049 meowth/__main__.py:5051 +#: meowth/__main__.py:5285 meowth/__main__.py:5305 meowth/__main__.py:5329 +#: meowth/__main__.py:6600 meowth/__main__.py:6761 meowth/__main__.py:6765 +#: meowth/__main__.py:6779 meowth/__main__.py:6861 +msgid "%I:%M %p (%H:%M)" msgstr "" -#: __main__.py:3493 __main__.py:3644 __main__.py:3862 __main__.py:3983 -#: __main__.py:4355 -msgid "{pokemon} - " +#: meowth/__main__.py:3981 meowth/__main__.py:3997 +msgid "Meowth! Give more details when reporting! Usage: **!wild **" msgstr "" -#: __main__.py:3496 +#: meowth/__main__.py:4012 msgid "**This {pokemon} has despawned!**" msgstr "" -#: __main__.py:3497 +#: meowth/__main__.py:4014 msgid "Meowth! Click here for my directions to the wild {pokemon}!" msgstr "" -#: __main__.py:3497 __main__.py:4358 +#: meowth/__main__.py:4014 meowth/__main__.py:4921 msgid "Ask {author} if my directions aren't perfect!" msgstr "" -#: __main__.py:3498 __main__.py:3648 __main__.py:3866 __main__.py:3987 +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 msgid "**Details:**" msgstr "" -#: __main__.py:3498 __main__.py:3648 __main__.py:3866 __main__.py:3987 +#: meowth/__main__.py:4015 meowth/__main__.py:4179 meowth/__main__.py:4427 +#: meowth/__main__.py:4558 msgid "{pokemon} ({pokemonnumber}) {type}" msgstr "" -#: __main__.py:3502 __main__.py:3504 __main__.py:3652 __main__.py:3797 -#: __main__.py:4149 __main__.py:4276 +#: meowth/__main__.py:4017 +msgid "**Reactions:**" +msgstr "" + +#: meowth/__main__.py:4017 +msgid "{emoji}: I'm on my way!" +msgstr "" + +#: meowth/__main__.py:4018 +msgid "{emoji}: The Pokemon despawned!" +msgstr "" + +#: meowth/__main__.py:4019 meowth/__main__.py:4183 meowth/__main__.py:4353 +#: meowth/__main__.py:4725 meowth/__main__.py:4839 meowth/__main__.py:4986 msgid "Reported by @{author} - {timestamp}" msgstr "" -#: __main__.py:3506 +#: meowth/__main__.py:4020 msgid "{roletest}Meowth! Wild {pokemon} reported by {member}! Details: {location_details}" msgstr "" -#: __main__.py:3549 -msgid "Meowth! Please restrict raid reports to a city channel!" +#: meowth/__main__.py:4042 +msgid "" +"Report an ongoing raid or a raid egg.\n" +"\n" +" Usage: !raid [weather] [minutes]\n" +" Meowth will insert into a\n" +" Google maps link and post the link to the same channel the report was made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for the purposes of organizing the raid." msgstr "" -#: __main__.py:3553 __main__.py:3583 __main__.py:3622 __main__.py:3631 -#: __main__.py:3765 +#: meowth/__main__.py:4067 meowth/__main__.py:4095 meowth/__main__.py:4136 +#: meowth/__main__.py:4145 meowth/__main__.py:4304 msgid "Meowth! Give more details when reporting! Usage: **!raid **" msgstr "" -#: __main__.py:3563 +#: meowth/__main__.py:4077 msgid "Meowth! **!raid assume** is not allowed in this level egg." msgstr "" -#: __main__.py:3575 +#: meowth/__main__.py:4089 msgid "Meowth! Please wait until the egg has hatched before changing it to an open raid!" msgstr "" -#: __main__.py:3610 __main__.py:3850 __main__.py:3952 +#: meowth/__main__.py:4124 meowth/__main__.py:4411 meowth/__main__.py:4516 msgid "Meowth! The Pokemon {pokemon} does not appear in raids!" msgstr "" -#: __main__.py:3613 +#: meowth/__main__.py:4127 msgid "Meowth! The Pokemon {pokemon} only appears in EX Raids! Use **!exraid** to report one!" msgstr "" -#: __main__.py:3617 +#: meowth/__main__.py:4131 msgid "Meowth...that's too long. Level {raidlevel} raids currently last no more than {raidtime} minutes..." msgstr "" -#: __main__.py:3624 __main__.py:3758 __main__.py:5018 __main__.py:5032 -#: __main__.py:5055 __main__.py:5132 __main__.py:5210 +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 msgid "clear" msgstr "" -#: __main__.py:3624 __main__.py:3758 __main__.py:5018 __main__.py:5032 -#: __main__.py:5055 __main__.py:5132 __main__.py:5210 +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 msgid "extreme" msgstr "" -#: __main__.py:3624 __main__.py:3758 __main__.py:5018 __main__.py:5032 -#: __main__.py:5055 __main__.py:5132 __main__.py:5210 +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 msgid "none" msgstr "" -#: __main__.py:3624 __main__.py:3758 __main__.py:5018 __main__.py:5032 -#: __main__.py:5055 __main__.py:5132 __main__.py:5210 +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 msgid "rainy" msgstr "" -#: __main__.py:3624 __main__.py:3758 __main__.py:5018 __main__.py:5032 -#: __main__.py:5055 __main__.py:5132 __main__.py:5210 +#: meowth/__main__.py:4138 meowth/__main__.py:4297 meowth/__main__.py:5743 +#: meowth/__main__.py:5757 meowth/__main__.py:5780 meowth/__main__.py:5858 +#: meowth/__main__.py:5935 msgid "sunny" msgstr "" -#: __main__.py:3625 __main__.py:3759 __main__.py:5019 __main__.py:5033 -#: __main__.py:5056 __main__.py:5133 __main__.py:5211 +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 msgid "cloudy" msgstr "" -#: __main__.py:3625 __main__.py:3759 __main__.py:5019 __main__.py:5033 -#: __main__.py:5056 __main__.py:5133 __main__.py:5211 +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 msgid "fog" msgstr "" -#: __main__.py:3625 __main__.py:3759 __main__.py:5019 __main__.py:5033 -#: __main__.py:5056 __main__.py:5133 __main__.py:5211 +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 msgid "partlycloudy" msgstr "" -#: __main__.py:3625 __main__.py:3759 __main__.py:5019 __main__.py:5033 -#: __main__.py:5056 __main__.py:5133 __main__.py:5211 +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 msgid "snow" msgstr "" -#: __main__.py:3625 __main__.py:3759 __main__.py:5019 __main__.py:5033 -#: __main__.py:5056 __main__.py:5133 __main__.py:5211 +#: meowth/__main__.py:4139 meowth/__main__.py:4298 meowth/__main__.py:5744 +#: meowth/__main__.py:5758 meowth/__main__.py:5781 meowth/__main__.py:5859 +#: meowth/__main__.py:5936 msgid "windy" msgstr "" -#: __main__.py:3647 __main__.py:3986 +#: meowth/__main__.py:4151 meowth/__main__.py:4310 +msgid "Meowth! I couldn't find a gym named '{0}'." +msgstr "" + +#: meowth/__main__.py:4155 meowth/__main__.py:4314 +msgid "No notes for this gym." +msgstr "" + +#: meowth/__main__.py:4175 meowth/__main__.py:4557 msgid "Meowth! Click here for directions to the raid!" msgstr "" -#: __main__.py:3649 __main__.py:3867 __main__.py:3988 +#: meowth/__main__.py:4177 meowth/__main__.py:4343 +msgid "" +"**Name:** {0}\n" +"**Notes:** {1}" +msgstr "" + +#: meowth/__main__.py:4178 meowth/__main__.py:4344 +msgid "**Gym:**" +msgstr "" + +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 msgid "**Weaknesses:**" msgstr "" -#: __main__.py:3649 __main__.py:3867 __main__.py:3988 +#: meowth/__main__.py:4180 meowth/__main__.py:4428 meowth/__main__.py:4559 msgid "{weakness_list}" msgstr "" -#: __main__.py:3650 __main__.py:3795 __main__.py:3868 __main__.py:3989 -#: __main__.py:4147 +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4429 +#: meowth/__main__.py:4723 msgid "**Next Group:**" msgstr "" -#: __main__.py:3650 __main__.py:3795 __main__.py:4147 +#: meowth/__main__.py:4181 meowth/__main__.py:4351 meowth/__main__.py:4723 +#: meowth/__main__.py:4984 meowth/__main__.py:6612 msgid "Set with **!starttime**" msgstr "" -#: __main__.py:3651 __main__.py:3796 __main__.py:4148 +#: meowth/__main__.py:4182 meowth/__main__.py:4352 meowth/__main__.py:4724 +#: meowth/__main__.py:4985 msgid "Set with **!timerset**" msgstr "" -#: __main__.py:3651 __main__.py:3990 __main__.py:4148 +#: meowth/__main__.py:4182 meowth/__main__.py:4564 meowth/__main__.py:4724 msgid "**Expires:**" msgstr "" -#: __main__.py:3655 +#: meowth/__main__.py:4186 msgid "Meowth! {pokemon} raid reported by {member}! Details: {location_details}. Coordinate in {raid_channel}" msgstr "" -#: __main__.py:3657 +#: meowth/__main__.py:4188 msgid "" "{roletest}Meowth! {pokemon} raid reported by {member} in {citychannel}! Details: {location_details}. Coordinate here!\n" "\n" -"To update your status, choose from the following commands: **!maybe**, **!coming**, **!here**, **!cancel**. If you are bringing more than one trainer/account, add in the number of accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested**, **!list coming**, **!list here** or use just **!list** to see all lists. Use **!list teams** to see team distribution.\n" -"\n" -"Sometimes I'm not great at directions, but I'll correct my directions if anybody sends me a maps link or uses **!location new
**. You can see the location of a raid by using **!location**\n" -"\n" -"You can set the time remaining with **!timerset ** and access this with **!timer**.\n" -"You can set the start time with **!starttime [HH:MM AM/PM]** (you can also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' list.\n" +"Click the question mark reaction to get help on the commands that work in here.\n" "\n" "This channel will be deleted five minutes after the timer expires." msgstr "" -#: __main__.py:3695 +#: meowth/__main__.py:4229 msgid "Meowth! Hey {member}, if you can, set the time left on the raid using **!timerset ** so others can check it with **!timer**." msgstr "" -#: __main__.py:3721 +#: meowth/__main__.py:4243 msgid "Meowth! Give more details when reporting! Usage: **!raidegg **" msgstr "" -#: __main__.py:3727 __main__.py:3753 +#: meowth/__main__.py:4249 meowth/__main__.py:4294 msgid "Meowth! Give more details when reporting! Use at least: **!raidegg **. Type **!help** raidegg for more info." msgstr "" -#: __main__.py:3748 +#: meowth/__main__.py:4255 meowth/__main__.py:5078 +msgid "Did you mean egg hatch time {0} or time remaining before hatch {1}?" +msgstr "" + +#: meowth/__main__.py:4275 meowth/__main__.py:5097 meowth/__main__.py:5155 +#: meowth/__main__.py:5238 meowth/__main__.py:5279 +msgid "Meowth! Please enter a time in the future." +msgstr "" + +#: meowth/__main__.py:4289 msgid "Meowth...that's too long. Level {raidlevel} Raid Eggs currently last no more than {hatchtime} minutes..." msgstr "" -#: __main__.py:3769 +#: meowth/__main__.py:4319 msgid "Meowth! Raid egg levels are only from 1-5!" msgstr "" -#: __main__.py:3788 __main__.py:3865 __main__.py:4140 +#: meowth/__main__.py:4341 meowth/__main__.py:4426 meowth/__main__.py:4716 msgid "Meowth! Click here for directions to the coming raid!" msgstr "" -#: __main__.py:3796 __main__.py:3869 +#: meowth/__main__.py:4352 meowth/__main__.py:4430 msgid "**Hatches:**" msgstr "" -#: __main__.py:3799 +#: meowth/__main__.py:4355 msgid "Meowth! Level {level} raid egg reported by {member}! Details: {location_details}. Coordinate in {raid_channel}" msgstr "" -#: __main__.py:3801 +#: meowth/__main__.py:4357 msgid "" "Meowth! Level {level} raid egg reported by {member} in {citychannel}! Details: {location_details}. Coordinate here!\n" "\n" -"To update your status, choose from the following commands: **!maybe**, **!coming**, **!here**, **!cancel**. If you are bringing more than one trainer/account, add in the number of accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested**, **!list coming**, **!list here** or use just **!list** to see all lists. Use **!list teams** to see team distribution.\n" -"\n" -"Sometimes I'm not great at directions, but I'll correct my directions if anybody sends me a maps link or uses **!location new
**. You can see the location of a raid by using **!location**\n" -"\n" -"You can set the time remaining with **!timerset ** and access this with **!timer**.\n" -"You can set the start time with **!starttime [HH:MM AM/PM]** (you can also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' list.\n" +"Click the question mark reaction to get help on the commands that work in here.\n" "\n" "This channel will be deleted five minutes after the timer expires." msgstr "" -#: __main__.py:3824 +#: meowth/__main__.py:4381 msgid "Meowth! Hey {member}, if you can, set the time left until the egg hatches using **!timerset ** so others can check it with **!timer**." msgstr "" -#: __main__.py:3853 __main__.py:3955 +#: meowth/__main__.py:4414 meowth/__main__.py:4519 msgid "Meowth! The Pokemon {pokemon} does not hatch from level {level} raid eggs!" msgstr "" -#: __main__.py:3887 +#: meowth/__main__.py:4448 msgid "{roletest}Meowth! This egg will be assumed to be {pokemon} when it hatches!" msgstr "" -#: __main__.py:3930 __main__.py:4676 __main__.py:4745 __main__.py:5667 +#: meowth/__main__.py:4493 meowth/__main__.py:5374 meowth/__main__.py:5443 +#: meowth/__main__.py:6402 msgid "Coordinate here" msgstr "" -#: __main__.py:3964 +#: meowth/__main__.py:4531 +msgid "The event has started!" +msgstr "" + +#: meowth/__main__.py:4537 msgid "Meowth! The egg has hatched into a {pokemon} raid! Details: {location_details}. Coordinate in {raid_channel}" msgstr "" -#: __main__.py:3965 +#: meowth/__main__.py:4538 msgid "" "Meowth! The egg reported by {member} in {citychannel} hatched into a {pokemon} raid! Details: {location_details}. Coordinate here!\n" "\n" -"To update your status, choose from the following commands: **!maybe**, **!coming**, **!here**, **!cancel**. If you are bringing more than one trainer/account, add in the number of accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested**, **!list coming**, **!list here** or use just **!list** to see all lists. Use **!list teams** to see team distribution.\n" -"\n" -"Sometimes I'm not great at directions, but I'll correct my directions if anybody sends me a maps link or uses **!location new
**. You can see the location of a raid by using **!location**\n" -"\n" -"You can set the time remaining with **!timerset ** and access this with **!timer**.\n" -"You can set the start time with **!starttime [HH:MM AM/PM]** (you can also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' list.\n" +"Click the question mark reaction to get help on the commands that work in here.\n" "\n" "This channel will be deleted five minutes after the timer expires." msgstr "" -#: __main__.py:3969 __main__.py:4152 +#: meowth/__main__.py:4542 meowth/__main__.py:4728 msgid "Use the **!invite** command to gain access and coordinate" msgstr "" -#: __main__.py:3970 __main__.py:4153 +#: meowth/__main__.py:4543 meowth/__main__.py:4729 msgid " after using **!invite** to gain access" msgstr "" -#: __main__.py:3972 __main__.py:4155 +#: meowth/__main__.py:4545 meowth/__main__.py:4731 msgid "Coordinate" msgstr "" -#: __main__.py:3974 +#: meowth/__main__.py:4547 msgid "Meowth! The EX egg has hatched into a {pokemon} raid! Details: {location_details}. {invitemsgstr} coordinate in {raid_channel}" msgstr "" -#: __main__.py:3975 +#: meowth/__main__.py:4548 msgid "" "Meowth! {pokemon} EX raid reported by {member} in {citychannel}! Details: {location_details}. Coordinate here{invitemsgstr2}!\n" "\n" -"To update your status, choose from the following commands: **!maybe**, **!coming**, **!here**, **!cancel**. If you are bringing more than one trainer/account, add in the number of accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested**, **!list coming**, **!list here** or use just **!list** to see all lists. Use **!list teams** to see team distribution.\n" -"\n" -"Sometimes I'm not great at directions, but I'll correct my directions if anybody sends me a maps link or uses **!location new
**. You can see the location of a raid by using **!location**\n" -"\n" -"You can set the time remaining with **!timerset ** and access this with **!timer**.\n" -"You can set the start time with **!starttime [HH:MM AM/PM]** (you can also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' list.\n" +"Click the question mark reaction to get help on the commands that work in here.\n" "\n" "This channel will be deleted five minutes after the timer expires." msgstr "" -#: __main__.py:3990 __main__.py:4400 __main__.py:4402 __main__.py:4500 -#: __main__.py:4501 __main__.py:4503 __main__.py:4504 __main__.py:6047 +#: meowth/__main__.py:4562 meowth/__main__.py:4564 meowth/__main__.py:5024 +#: meowth/__main__.py:5028 meowth/__main__.py:5031 meowth/__main__.py:5045 +#: meowth/__main__.py:5047 meowth/__main__.py:5174 meowth/__main__.py:5175 +#: meowth/__main__.py:5181 meowth/__main__.py:5182 meowth/__main__.py:5184 +#: meowth/__main__.py:5185 meowth/__main__.py:5307 meowth/__main__.py:6767 +#: meowth/__main__.py:6773 meowth/__main__.py:6775 meowth/__main__.py:6777 msgid "%B %d at %I:%M %p (%H:%M)" msgstr "" -#: __main__.py:3993 +#: meowth/__main__.py:4567 msgid "Ends on %B %d at %I:%M %p (%H:%M)" msgstr "" -#: __main__.py:4016 +#: meowth/__main__.py:4590 msgid "" "{roletest}Meowth! Trainers {trainer_list}: The raid egg has just hatched into a {pokemon} raid!\n" "If you couldn't before, you're now able to update your status with **!coming** or **!here**. If you've changed your plans, use **!cancel**." msgstr "" -#: __main__.py:4087 __main__.py:4094 +#: meowth/__main__.py:4643 +msgid "" +"Report an upcoming EX raid.\n" +"\n" +" Usage: !exraid \n" +" Meowth will insert the details (really just everything after the species name) into a\n" +" Google maps link and post the link to the same channel the report was made in.\n" +" Meowth's message will also include the type weaknesses of the boss.\n" +"\n" +" Finally, Meowth will create a separate channel for the raid report, for the purposes of organizing the raid." +msgstr "" + +#: meowth/__main__.py:4662 meowth/__main__.py:4669 msgid "Meowth! Give more details when reporting! Usage: **!exraid **" msgstr "" -#: __main__.py:4108 +#: meowth/__main__.py:4681 msgid "ex-raid-egg-" msgstr "" -#: __main__.py:4157 +#: meowth/__main__.py:4733 msgid "Meowth! EX raid egg reported by {member}! Details: {location_details}. {invitemsgstr} in {raid_channel}" msgstr "" -#: __main__.py:4159 +#: meowth/__main__.py:4735 msgid "" "Meowth! EX raid reported by {member} in {citychannel}! Details: {location_details}. Coordinate here{invitemsgstr2}!\n" "\n" -"To update your status, choose from the following commands: **!maybe**, **!coming**, **!here**, **!cancel**. If you are bringing more than one trainer/account, add in the number of accounts total on your first status update.\n" -"Example: `!coming 5`\n" -"\n" -"To see the list of trainers who have given their status:\n" -"**!list interested**, **!list coming**, **!list here** or use just **!list** to see all lists. Use **!list teams** to see team distribution.\n" -"\n" -"Sometimes I'm not great at directions, but I'll correct my directions if anybody sends me a maps link or uses **!location new
**. You can see the location of a raid by using **!location**\n" -"\n" -"You can set the hatch time with **!timerset ** and access this with **!timer**.\n" -"You can set the start time with **!starttime [HH:MM AM/PM]** (you can also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" -"\n" -"Message **!starting** when the raid is beginning to clear the raid's 'here' list.\n" +"Click the question mark reaction to get help on the commands that work in here.\n" "\n" "This channel will be deleted five minutes after the timer expires." msgstr "" -#: __main__.py:4180 +#: meowth/__main__.py:4757 msgid "Meowth! Hey {member}, if you can, set the time left until the egg hatches using **!timerset ** so others can check it with **!timer**. **** can just be written exactly how it appears on your EX Raid Pass." msgstr "" -#: __main__.py:4228 +#: meowth/__main__.py:4762 +msgid "Join an EX Raid." +msgstr "" + +#: meowth/__main__.py:4790 msgid "Meowth! No EX Raids have been reported in this server! Use **!exraid** to report one!" msgstr "" -#: __main__.py:4230 +#: meowth/__main__.py:4792 msgid "" "Meowth! {0}, you've told me you have an invite to an EX Raid, and I'm just going to take your word for it! The following {1} EX Raids have been reported:\n" "{2}\n" "Reply with **the number** (1, 2, etc) of the EX Raid you have been invited to. If none of them match your invite, type 'N' and report it with **!exraid**" msgstr "" -#: __main__.py:4234 +#: meowth/__main__.py:4796 msgid "Meowth! Be sure to report your EX Raid with **!exraid**!" msgstr "" -#: __main__.py:4237 +#: meowth/__main__.py:4799 msgid "Meowth! I couldn't tell which EX Raid you meant! Try the **!invite** command again, and make sure you respond with the number of the channel that matches!" msgstr "" -#: __main__.py:4245 +#: meowth/__main__.py:4810 msgid "Meowth! Alright {0}, you can now send messages in {1}! Make sure you let the trainers in there know if you can make it to the EX Raid!" msgstr "" -#: __main__.py:4249 +#: meowth/__main__.py:4814 msgid "Meowth! I couldn't understand your reply! Try the **!invite** command again!" msgstr "" -#: __main__.py:4281 +#: meowth/__main__.py:4820 +msgid "" +"Report Field research\n" +"\n" +" Guided report method with just !research. If you supply arguments in one\n" +" line, avoid commas in anything but your separations between pokestop,\n" +" quest, reward. Order matters if you supply arguments. If a pokemon name\n" +" is included in reward, a @mention will be used if role exists.\n" +"\n" +" Usage: !research [pokestop name [optional URL], quest, reward]" +msgstr "" + +#: meowth/__main__.py:4844 msgid "" "entered an incorrect amount of arguments.\n" "\n" "Usage: **!research** or **!research , , **" msgstr "" -#: __main__.py:4286 __main__.py:4310 +#: meowth/__main__.py:4849 meowth/__main__.py:4873 msgid "**Pokestop:**" msgstr "" -#: __main__.py:4287 __main__.py:4328 +#: meowth/__main__.py:4850 meowth/__main__.py:4891 msgid "**Quest:**" msgstr "" -#: __main__.py:4288 __main__.py:4346 +#: meowth/__main__.py:4851 meowth/__main__.py:4909 msgid "**Reward:**" msgstr "" -#: __main__.py:4291 +#: meowth/__main__.py:4854 msgid "**New Research Report**" msgstr "" -#: __main__.py:4291 +#: meowth/__main__.py:4854 msgid "" "Meowth! I'll help you report a research quest!\n" "\n" "First, I'll need to know what **pokestop** you received the quest from. Reply with the name of the **pokestop**. You can reply with **cancel** to stop anytime." msgstr "" -#: __main__.py:4299 __main__.py:4319 __main__.py:4337 +#: meowth/__main__.py:4862 meowth/__main__.py:4882 meowth/__main__.py:4900 msgid "took too long to respond" msgstr "" -#: __main__.py:4302 __main__.py:4322 __main__.py:4340 +#: meowth/__main__.py:4865 meowth/__main__.py:4885 meowth/__main__.py:4903 msgid "cancelled the report" msgstr "" -#: __main__.py:4311 +#: meowth/__main__.py:4874 msgid "" "Great! Now, reply with the **quest** that you received from **{location}**. You can reply with **cancel** to stop anytime.\n" "\n" "Here's what I have so far:" msgstr "" -#: __main__.py:4329 +#: meowth/__main__.py:4892 msgid "" "Fantastic! Now, reply with the **reward** for the **{quest}** quest that you received from **{location}**. You can reply with **cancel** to stop anytime.\n" "\n" "Here's what I have so far:" msgstr "" -#: __main__.py:4356 +#: meowth/__main__.py:4919 msgid "{roletest}Field Research reported by {author}" msgstr "" -#: __main__.py:4357 +#: meowth/__main__.py:4920 msgid "Meowth! Click here for my directions to the research!" msgstr "" -#: __main__.py:4376 +#: meowth/__main__.py:4941 +msgid "**Research Report Cancelled**" +msgstr "" + +#: meowth/__main__.py:4941 msgid "Meowth! Your report has been cancelled because you {error}! Retry when you're ready." msgstr "" -#: __main__.py:4391 __main__.py:4883 -msgid "egg" +#: meowth/__main__.py:4947 +msgid "" +"Report an upcoming event.\n" +"\n" +" Usage: !meetup \n" +" Meowth will insert the details (really just everything after the species name) into a\n" +" Google maps link and post the link to the same channel the report was made in.\n" +"\n" +" Finally, Meowth will create a separate channel for the report, for the purposes of organizing the event." msgstr "" -#: __main__.py:4392 __main__.py:4882 -msgid "hatch" +#: meowth/__main__.py:4964 +msgid "Meowth! Give more details when reporting! Usage: **!meetup **" msgstr "" -#: __main__.py:4394 __main__.py:4886 -msgid "raid" +#: meowth/__main__.py:4970 +msgid "meetup-" +msgstr "" + +#: meowth/__main__.py:4981 +msgid "Meowth! Click here for directions to the event!" +msgstr "" + +#: meowth/__main__.py:4982 +msgid "**Event Location:**" +msgstr "" + +#: meowth/__main__.py:4984 +msgid "**Event Starts:**" +msgstr "" + +#: meowth/__main__.py:4985 +msgid "**Event Ends:**" +msgstr "" + +#: meowth/__main__.py:4988 +msgid "Meowth! Meetup reported by {member}! Details: {location_details}. Coordinate in {raid_channel}" +msgstr "" + +#: meowth/__main__.py:4990 +msgid "" +"Meowth! Meetup reported by {member} in {citychannel}! Details: {location_details}. Coordinate here!\n" +"\n" +"To update your status, choose from the following commands: **!maybe**, **!coming**, **!here**, **!cancel**. If you are bringing more than one trainer/account, add in the number of accounts total, teams optional, on your first status update.\n" +"Example: `!coming 5 2m 2v 1i`\n" +"\n" +"To see the list of trainers who have given their status:\n" +"**!list interested**, **!list coming**, **!list here** or use just **!list** to see all lists. Use **!list teams** to see team distribution.\n" +"\n" +"Sometimes I'm not great at directions, but I'll correct my directions if anybody sends me a maps link or uses **!location new
**. You can see the location of the event by using **!location**\n" +"\n" +"You can set the start time with **!starttime ** (you can also omit AM/PM and use 24-hour time) and access this with **!starttime**.\n" +"You can set the end time with **!timerset ** and access this with **!timer**.\n" +"\n" +"This channel will be deleted five minutes after the timer expires." +msgstr "" + +#: meowth/__main__.py:5008 +msgid "Meowth! Hey {member}, if you can, set the time that the event starts with **!starttime ** and also set the time that the event ends using **!timerset **." +msgstr "" + +#: meowth/__main__.py:5024 +msgid "This event will start at {expiry_time}" +msgstr "" + +#: meowth/__main__.py:5026 +msgid "Nobody has told me a start time! Set it with **!starttime**" +msgstr "" + +#: meowth/__main__.py:5028 +msgid " | This event will end at {expiry_time}" +msgstr "" + +#: meowth/__main__.py:5031 +msgid "This event will end at {expiry_time}" +msgstr "" + +#: meowth/__main__.py:5033 +msgid "Nobody has told me a end time! Set it with **!timerset**" +msgstr "" + +#: meowth/__main__.py:5036 meowth/__main__.py:5598 +msgid "egg" +msgstr "" + +#: meowth/__main__.py:5037 meowth/__main__.py:5597 +msgid "hatch" msgstr "" -#: __main__.py:4395 __main__.py:4885 +#: meowth/__main__.py:5040 meowth/__main__.py:5600 msgid "end" msgstr "" -#: __main__.py:4397 +#: meowth/__main__.py:5042 msgid "This {raidtype}'s timer has already expired as of {expiry_time}!" msgstr "" -#: __main__.py:4400 +#: meowth/__main__.py:5045 msgid "This {raidtype} will {raidaction} on {expiry}!" msgstr "" -#: __main__.py:4402 +#: meowth/__main__.py:5047 msgid "No one told me when the {raidtype} will {raidaction}, so I'm assuming it will {raidaction} on {expiry}!" msgstr "" -#: __main__.py:4404 +#: meowth/__main__.py:5049 msgid "This {raidtype} will {raidaction} at {expiry_time}!" msgstr "" -#: __main__.py:4406 +#: meowth/__main__.py:5051 msgid "No one told me when the {raidtype} will {raidaction}, so I'm assuming it will {raidaction} at {expiry_time}!" msgstr "" -#: __main__.py:4422 +#: meowth/__main__.py:5054 +msgid "" +"Set the remaining duration on a raid.\n" +"\n" +" Usage: !timerset \n" +" Works only in raid channels, can be set or overridden by anyone.\n" +" Meowth displays the end time in HH:MM local time." +msgstr "" + +#: meowth/__main__.py:5054 +msgid "timerset" +msgstr "" + +#: meowth/__main__.py:5069 msgid "Raid Egg" msgstr "" -#: __main__.py:4426 +#: meowth/__main__.py:5073 msgid "Raid" msgstr "" -#: __main__.py:4439 __main__.py:4442 +#: meowth/__main__.py:5100 meowth/__main__.py:5105 meowth/__main__.py:5116 msgid "Meowth! I couldn't understand your time format. Try again like this: **!timerset **" msgstr "" -#: __main__.py:4445 +#: meowth/__main__.py:5119 msgid "Meowth...that's too long. Level {raidlevel} {raidtype}s currently last no more than {maxtime} minutes..." msgstr "" -#: __main__.py:4461 __main__.py:4469 +#: meowth/__main__.py:5135 meowth/__main__.py:5143 msgid "Meowth! Your timer wasn't formatted correctly. Change your **!timerset** to match this format: **MM/DD HH:MM AM/PM** (You can also omit AM/PM and use 24-hour time!)" msgstr "" -#: __main__.py:4476 __main__.py:4581 -msgid "Meowth! Please enter a time in the future." +#: meowth/__main__.py:5148 +msgid "Meowth! Please enter a time after your start time." msgstr "" -#: __main__.py:4478 +#: meowth/__main__.py:5157 msgid "Meowth! Timerset isn't supported for EX Raids after they have hatched." msgstr "" -#: __main__.py:4489 +#: meowth/__main__.py:5168 msgid "The channel has been reactivated." msgstr "" -#: __main__.py:4499 +#: meowth/__main__.py:5174 meowth/__main__.py:5181 meowth/__main__.py:5184 +msgid "Ends on {end}" +msgstr "" + +#: meowth/__main__.py:5180 msgid "%B %d at %I:%M %p (%H:%M) | " msgstr "" -#: __main__.py:4499 +#: meowth/__main__.py:5180 msgid "Hatches on {expiry}" msgstr "" -#: __main__.py:4500 __main__.py:4503 -msgid "Ends on {end}" +#: meowth/__main__.py:5205 +msgid "" +"Have Meowth resend the expire time message for a raid.\n" +"\n" +" Usage: !timer\n" +" The expiry time should have been previously set with !timerset." +msgstr "" + +#: meowth/__main__.py:5205 +msgid "timer" msgstr "" -#: __main__.py:4529 +#: meowth/__main__.py:5211 msgid "Meowth!" msgstr "" -#: __main__.py:4564 __main__.py:4570 +#: meowth/__main__.py:5215 +msgid "" +"Set a time for a group to start a raid\n" +"\n" +" Usage: !starttime [HH:MM AM/PM]\n" +" (You can also omit AM/PM and use 24-hour time!)\n" +" Works only in raid channels. Sends a message and sets a group start time that\n" +" can be seen using !starttime (without a time). One start time is allowed at\n" +" a time and is visibile in !list output. Cleared with !starting." +msgstr "" + +#: meowth/__main__.py:5215 +msgid "starttime" +msgstr "" + +#: meowth/__main__.py:5241 +msgid "Meowth! Please enter a time before your end time." +msgstr "" + +#: meowth/__main__.py:5262 meowth/__main__.py:5268 msgid "Meowth! Your start time wasn't formatted correctly. Change your **!starttime** to match this format: **HH:MM AM/PM** (You can also omit AM/PM and use 24-hour time!)" msgstr "" -#: __main__.py:4578 +#: meowth/__main__.py:5276 msgid "Meowth! The raid will be over before that...." msgstr "" -#: __main__.py:4584 +#: meowth/__main__.py:5282 msgid "Meowth! The egg will not hatch by then!" msgstr "" -#: __main__.py:4587 +#: meowth/__main__.py:5285 msgid "Meowth! There is already a start time of **{start}** set! Do you want to change it?" msgstr "" -#: __main__.py:4595 +#: meowth/__main__.py:5293 msgid "Start time change cancelled." msgstr "" -#: __main__.py:4608 +#: meowth/__main__.py:5308 msgid "Meowth! The current start time has been set to: **{starttime}**" msgstr "" -#: __main__.py:4613 __main__.py:5869 -msgid "**Next Group**" -msgstr "" - -#: __main__.py:4629 +#: meowth/__main__.py:5329 msgid "Meowth! The current start time is: **{starttime}**" msgstr "" -#: __main__.py:4631 +#: meowth/__main__.py:5331 msgid "Meowth! No start time has been set, set one with **!starttime HH:MM AM/PM**! (You can also omit AM/PM and use 24-hour time!)" msgstr "" -#: __main__.py:4655 +#: meowth/__main__.py:5333 +msgid "" +"Get raid location.\n" +"\n" +" Usage: !location\n" +" Works only in raid channels. Gives the raid location link." +msgstr "" + +#: meowth/__main__.py:5333 +msgid "location" +msgstr "" + +#: meowth/__main__.py:5354 msgid "" "Meowth! Here's the current location for the raid!\n" "Details: {location}" msgstr "" -#: __main__.py:4669 +#: meowth/__main__.py:5358 +msgid "" +"Change raid location.\n" +"\n" +" Usage: !location new \n" +" Works only in raid channels. Changes the google map links." +msgstr "" + +#: meowth/__main__.py:5358 +msgid "new" +msgstr "" + +#: meowth/__main__.py:5367 msgid "Meowth! We're missing the new location details! Usage: **!location new **" msgstr "" -#: __main__.py:4725 +#: meowth/__main__.py:5416 +msgid "" +"Recover a raid channel if it is no longer responding to commands\n" +"\n" +" Usage: !recover\n" +" Only necessary after a crash." +msgstr "" + +#: meowth/__main__.py:5416 +msgid "recover" +msgstr "" + +#: meowth/__main__.py:5422 msgid "Meowth! I can't recover this channel because I know about it already!" msgstr "" -#: __main__.py:4736 +#: meowth/__main__.py:5433 msgid "level-[1-5]-egg" msgstr "" -#: __main__.py:4783 +#: meowth/__main__.py:5481 msgid "Ends on %B %d at %I:%M %p" msgstr "" -#: __main__.py:4809 +#: meowth/__main__.py:5524 msgid "Meowth! I couldn't recognize this as a raid channel!" msgstr "" -#: __main__.py:4813 __main__.py:4819 +#: meowth/__main__.py:5528 meowth/__main__.py:5534 msgid "is interested" msgstr "" -#: __main__.py:4813 __main__.py:4821 +#: meowth/__main__.py:5528 meowth/__main__.py:5536 msgid "on the way" msgstr "" -#: __main__.py:4813 __main__.py:4823 +#: meowth/__main__.py:5528 meowth/__main__.py:5538 msgid "at the raid" msgstr "" -#: __main__.py:4813 __main__.py:4825 +#: meowth/__main__.py:5528 meowth/__main__.py:5540 msgid "left the raid" msgstr "" -#: __main__.py:4813 __main__.py:4825 +#: meowth/__main__.py:5528 meowth/__main__.py:5540 msgid "no longer" msgstr "" -#: __main__.py:4827 +#: meowth/__main__.py:5542 msgid "trainers" msgstr "" -#: __main__.py:4875 +#: meowth/__main__.py:5590 msgid "Meowth! This channel has been recovered! However, there may be some inaccuracies in what I remembered! Here's what I have:" msgstr "" -#: __main__.py:4887 +#: meowth/__main__.py:5602 msgid "" "\n" "I'm not sure when this {raidtype} will {action}, so please use **!timerset** if you can!" msgstr "" -#: __main__.py:4915 -msgid "Meowth! You've already made a duplicate report for this raid!" +#: meowth/__main__.py:5609 +msgid "" +"A command to report a raid channel as a duplicate.\n" +"\n" +" Usage: !duplicate\n" +" Works only in raid channels. When three users report a channel as a duplicate,\n" +" Meowth deactivates the channel and marks it for deletion." +msgstr "" + +#: meowth/__main__.py:5609 +msgid "duplicate" msgstr "" -#: __main__.py:4936 -msgid "Meowth! Are you sure you wish to remove this raid?" +#: meowth/__main__.py:5630 +msgid "Meowth! You've already made a duplicate report for this {raidtype}!" msgstr "" -#: __main__.py:4945 +#: meowth/__main__.py:5651 +msgid "Meowth! Are you sure you wish to remove this {raidtype}?" +msgstr "" + +#: meowth/__main__.py:5660 msgid "Duplicate Report cancelled." msgstr "" -#: __main__.py:4954 +#: meowth/__main__.py:5669 msgid "Duplicate Confirmed" msgstr "" -#: __main__.py:4960 +#: meowth/__main__.py:5686 msgid "Duplicate Report Timed Out." msgstr "" -#: __main__.py:4968 +#: meowth/__main__.py:5694 msgid "Duplicate report #{duplicate_report_count} received." msgstr "" -#: __main__.py:5014 __main__.py:5041 +#: meowth/__main__.py:5698 +msgid "" +"Simulate a Raid battle with Pokebattler.\n" +"\n" +" Usage: !counters [pokemon] [weather] [user]\n" +" See !help weather for acceptable values for weather.\n" +" If [user] is a valid Pokebattler user id, Meowth will simulate the Raid with that user's Pokebox.\n" +" Uses current boss and weather by default if available.\n" +" " +msgstr "" + +#: meowth/__main__.py:5739 meowth/__main__.py:5766 msgid "Meowth! You're missing some details! Be sure to enter a pokemon that appears in raids! Usage: **!counters [weather] [user ID]**" msgstr "" -#: __main__.py:5051 +#: meowth/__main__.py:5776 msgid "user #{user}'s" msgstr "" -#: __main__.py:5054 +#: meowth/__main__.py:5779 msgid "Level 30" msgstr "" -#: __main__.py:5096 +#: meowth/__main__.py:5821 meowth/__main__.py:5904 msgid "{pkmn} | {weather} | {movesetstr}" msgstr "" -#: __main__.py:5097 __main__.py:5156 +#: meowth/__main__.py:5822 meowth/__main__.py:5882 msgid "" "**CP:** {raid_cp}\n" msgstr "" -#: __main__.py:5098 __main__.py:5157 +#: meowth/__main__.py:5823 meowth/__main__.py:5883 msgid "" "**Weather:** {weather}\n" msgstr "" -#: __main__.py:5099 __main__.py:5158 +#: meowth/__main__.py:5824 meowth/__main__.py:5884 msgid "**Attacker Level:** {atk_levels}" msgstr "" -#: __main__.py:5103 __main__.py:5162 __main__.py:5182 +#: meowth/__main__.py:5828 meowth/__main__.py:5888 meowth/__main__.py:5908 msgid "Results courtesy of Pokebattler" msgstr "" -#: __main__.py:5110 __main__.py:5167 __main__.py:5187 +#: meowth/__main__.py:5835 meowth/__main__.py:5893 meowth/__main__.py:5913 msgid "{move1} | {move2}" msgstr "" -#: __main__.py:5111 __main__.py:5168 __main__.py:5188 +#: meowth/__main__.py:5836 meowth/__main__.py:5894 meowth/__main__.py:5914 msgid "#{index} - {ctr_name}" msgstr "" -#: __main__.py:5114 +#: meowth/__main__.py:5837 +msgid "CP" +msgstr "" + +#: meowth/__main__.py:5840 msgid "Results with {userstr} attackers" msgstr "" -#: __main__.py:5114 __main__.py:5199 +#: meowth/__main__.py:5840 meowth/__main__.py:5925 msgid "[See your personalized results!](https://www.pokebattler.com/raids/{pkmn})" msgstr "" -#: __main__.py:5116 +#: meowth/__main__.py:5842 +msgid "Difficulty rating: {est}" +msgstr "" + +#: meowth/__main__.py:5842 msgid "Pokebattler Estimator:" msgstr "" -#: __main__.py:5155 +#: meowth/__main__.py:5881 msgid "{pkmn} | {weather} | Unknown Moveset" msgstr "" -#: __main__.py:5199 +#: meowth/__main__.py:5923 +msgid "**Possible Movesets:**" +msgstr "" + +#: meowth/__main__.py:5925 msgid "Results with Level 30 attackers" msgstr "" -#: __main__.py:5213 +#: meowth/__main__.py:5929 +msgid "" +"Sets the weather for the raid.\n" +" Usage: !weather \n" +" Only usable in raid channels.\n" +" Acceptable options: none, extreme, clear, rainy, partlycloudy, cloudy, windy, snow, fog" +msgstr "" + +#: meowth/__main__.py:5929 +msgid "weather" +msgstr "" + +#: meowth/__main__.py:5938 msgid "Meowth! Enter one of the following weather conditions: {}" msgstr "" -#: __main__.py:5228 +#: meowth/__main__.py:5953 msgid "Meowth! Weather set to {}!" msgstr "" -#: __main__.py:5271 __main__.py:5356 __main__.py:5460 +#: meowth/__main__.py:5959 +msgid "" +"Indicate you are interested in the raid.\n" +"\n" +" Usage: !interested [count] [party]\n" +" Works only in raid channels. If count is omitted, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:5959 meowth/__main__.py:6867 +msgid "interested" +msgstr "" + +#: meowth/__main__.py:5996 meowth/__main__.py:6194 msgid "{word} doesn't appear in level {egglevel} raids! Please try again." msgstr "" -#: __main__.py:5309 -msgid "Meowth! {member} is interested!" +#: meowth/__main__.py:6042 +msgid "Meowth! {member} is interested! {emoji}: 1" msgstr "" -#: __main__.py:5311 +#: meowth/__main__.py:6044 msgid "Meowth! {member} is interested with a total of {trainer_count} trainers!" msgstr "" -#: __main__.py:5363 __main__.py:5467 -msgid "Meowth! Specify which of the possible bosses you are interested in! Otherwise, please wait until the raid egg has hatched before announcing you're coming or present." +#: meowth/__main__.py:6058 +msgid "" +"Indicate you are on the way to a raid.\n" +"\n" +" Usage: !coming [count] [party]\n" +" Works only in raid channels. If count is omitted, checks for previous !maybe\n" +" command and takes the count from that. If it finds none, assumes you are a group\n" +" of 1.\n" +" Otherwise, this command expects at least one word in your message to be a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." msgstr "" -#: __main__.py:5413 -msgid "Meowth! {member} is on the way!" +#: meowth/__main__.py:6058 meowth/__main__.py:6913 +msgid "coming" msgstr "" -#: __main__.py:5415 +#: meowth/__main__.py:6088 +msgid "{word} doesn't appear in level {egglevel} raids!" +msgstr "" + +#: meowth/__main__.py:6092 +msgid "Invalid Pokemon detected. Please check the pinned message for the list of possible bosses and try again." +msgstr "" + +#: meowth/__main__.py:6148 +msgid "Meowth! {member} is on the way! {emoji}: 1" +msgstr "" + +#: meowth/__main__.py:6150 msgid "Meowth! {member} is on the way with a total of {trainer_count} trainers!" msgstr "" -#: __main__.py:5504 +#: meowth/__main__.py:6164 +msgid "" +"Indicate you have arrived at the raid.\n" +"\n" +" Usage: !here [count] [party]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be a number,\n" +" and will assume you are a group with that many people.\n" +"\n" +" Party is also optional. Format is #m #v #i #u to tell your party's teams." +msgstr "" + +#: meowth/__main__.py:6164 meowth/__main__.py:6959 +msgid "here" +msgstr "" + +#: meowth/__main__.py:6234 msgid "" "\n" "There is a group already in the lobby! Use **!lobby** to join them or **!backout** to request a backout! Otherwise, you may have to wait for the next group!" msgstr "" -#: __main__.py:5522 -msgid "Meowth! {member} is at the raid!" +#: meowth/__main__.py:6257 +msgid "Meowth! {member} is at the {raidtype}! {emoji}: 1" msgstr "" -#: __main__.py:5525 -msgid "Meowth! {member} is at the raid with a total of {trainer_count} trainers!" +#: meowth/__main__.py:6260 +msgid "Meowth! {member} is at the {raidtype} with a total of {trainer_count} trainers!" msgstr "" -#: __main__.py:5587 +#: meowth/__main__.py:6322 msgid "Only one non-team count can be accepted." msgstr "" -#: __main__.py:5599 +#: meowth/__main__.py:6334 msgid "Only one count per team accepted." msgstr "" -#: __main__.py:5603 +#: meowth/__main__.py:6338 msgid "Invalid format, please check and try again." msgstr "" -#: __main__.py:5607 +#: meowth/__main__.py:6342 msgid "Team counts are higher than the total, double check your counts and try again. You entered **" msgstr "" -#: __main__.py:5608 +#: meowth/__main__.py:6343 msgid "** total and **" msgstr "" -#: __main__.py:5609 +#: meowth/__main__.py:6344 msgid "** in your party." msgstr "" -#: __main__.py:5614 +#: meowth/__main__.py:6349 msgid "Meowth! Something is not adding up! Try making sure your total matches what each team adds up to!" msgstr "" -#: __main__.py:5681 __main__.py:5684 +#: meowth/__main__.py:6416 meowth/__main__.py:6419 msgid "**Boss Interest:**" msgstr "" -#: __main__.py:5687 +#: meowth/__main__.py:6422 msgid "**Status List**" msgstr "" -#: __main__.py:5687 +#: meowth/__main__.py:6422 msgid "Maybe: **{channelmaybe}** | Coming: **{channelcoming}** | Here: **{channelhere}**" msgstr "" -#: __main__.py:5688 +#: meowth/__main__.py:6423 msgid "**Team List**" msgstr "" -#: __main__.py:5723 +#: meowth/__main__.py:6435 +msgid "" +"Indicate you are entering the raid lobby.\n" +"\n" +" Usage: !lobby [message]\n" +" Works only in raid channels. If message is omitted, and\n" +" you have previously issued !coming, then preserves the count\n" +" from that command. Otherwise, assumes you are a group of 1.\n" +" Otherwise, this command expects at least one word in your message to be a number,\n" +" and will assume you are a group with that many people." +msgstr "" + +#: meowth/__main__.py:6435 meowth/__main__.py:7008 +msgid "lobby" +msgstr "" + +#: meowth/__main__.py:6457 msgid "Meowth! I can't understand how many are in your group. Just say **!here** if you're by yourself, or **!coming 5** for example if there are 5 in your group." msgstr "" -#: __main__.py:5733 +#: meowth/__main__.py:6467 msgid "Meowth! There is no group in the lobby for you to join! Use **!starting** if the group waiting at the raid is entering the lobby!" msgstr "" -#: __main__.py:5737 +#: meowth/__main__.py:6471 msgid "Meowth! {member} is entering the lobby!" msgstr "" -#: __main__.py:5739 +#: meowth/__main__.py:6473 msgid "Meowth! {member} is entering the lobby with a total of {trainer_count} trainers!" msgstr "" -#: __main__.py:5763 +#: meowth/__main__.py:6482 +msgid "" +"Indicate you are no longer interested in a raid.\n" +"\n" +" Usage: !cancel\n" +" Works only in raid channels. Removes you and your party\n" +" from the list of trainers who are \"otw\" or \"here\"." +msgstr "" + +#: meowth/__main__.py:6482 +msgid "cancel" +msgstr "" + +#: meowth/__main__.py:6497 msgid "Meowth! {member} has no status to cancel!" msgstr "" -#: __main__.py:5767 +#: meowth/__main__.py:6501 msgid "Meowth! {member} is no longer interested!" msgstr "" -#: __main__.py:5769 +#: meowth/__main__.py:6503 msgid "Meowth! {member} and their total of {trainer_count} trainers are no longer interested!" msgstr "" -#: __main__.py:5772 -msgid "Meowth! {member} has left the raid!" +#: meowth/__main__.py:6506 +msgid "Meowth! {member} has left the {raidtype}!" msgstr "" -#: __main__.py:5774 -msgid "Meowth! {member} and their total of {trainer_count} trainers have left the raid!" +#: meowth/__main__.py:6508 +msgid "Meowth! {member} and their total of {trainer_count} trainers have left the {raidtype}!" msgstr "" -#: __main__.py:5777 +#: meowth/__main__.py:6511 msgid "Meowth! {member} is no longer on their way!" msgstr "" -#: __main__.py:5779 +#: meowth/__main__.py:6513 msgid "Meowth! {member} and their total of {trainer_count} trainers are no longer on their way!" msgstr "" -#: __main__.py:5782 +#: meowth/__main__.py:6516 msgid "Meowth! {member} has backed out of the lobby!" msgstr "" -#: __main__.py:5784 +#: meowth/__main__.py:6518 msgid "Meowth! {member} and their total of {trainer_count} trainers have backed out of the lobby!" msgstr "" -#: __main__.py:5807 -msgid "Meowth! How can you start when the egg hasn't hatched!?" +#: meowth/__main__.py:6536 +msgid "Meowth! The group of {count} in the lobby has entered the raid! Wish them luck!" msgstr "" -#: __main__.py:5811 -msgid "Meowth! Please wait for the group in the lobby to enter the raid." +#: meowth/__main__.py:6551 +msgid "" +"Signal that a raid is starting.\n" +"\n" +" Usage: !starting [team]\n" +" Works only in raid channels. Sends a message and clears the waiting list. Users who are waiting\n" +" for a second group must reannounce with the :here: emoji or !here." msgstr "" -#: __main__.py:5835 -msgid "Meowth! How can you start when there's no one waiting at this raid!?" +#: meowth/__main__.py:6551 +msgid "starting" msgstr "" -#: __main__.py:5839 -msgid "Are you sure you would like to start this raid? Trainers {trainer_list}, react to this message to confirm or cancel the start of the raid." +#: meowth/__main__.py:6566 +msgid "Meowth! How can you start when the egg hasn't hatched!?" msgstr "" -#: __main__.py:5841 -msgid "Are you sure you would like to start this raid? You can also use **!starting [team]** to start that team only. Trainers {trainer_list}, react to this message to confirm or cancel the start of the raid." +#: meowth/__main__.py:6570 +msgid "Meowth! Please wait for the group in the lobby to enter the raid." msgstr "" -#: __main__.py:5848 -msgid "Meowth! The **!starting** command was not confirmed. I'm not sure if the group started." +#: meowth/__main__.py:6594 +msgid "Meowth! How can you start when there's no one waiting at this raid!?" msgstr "" -#: __main__.py:5857 +#: meowth/__main__.py:6600 msgid " to start at **{}** " msgstr "" -#: __main__.py:5861 +#: meowth/__main__.py:6604 msgid "Starting - Meowth! The group that was waiting{timestr}is starting the raid! Trainers {trainer_list}, if you are not in this group and are waiting for the next group, please respond with {here_emoji} or **!here**. If you need to ask those that just started to back out of their lobby, use **!backout**" msgstr "" -#: __main__.py:5889 -msgid "Meowth! The group of {count} in the lobby has entered the raid! Wish them luck!" +#: meowth/__main__.py:6612 +msgid "**Next Group**" msgstr "" -#: __main__.py:5929 +#: meowth/__main__.py:6624 +msgid "" +"Request players in lobby to backout\n" +"\n" +" Usage: !backout\n" +" Will alert all trainers in the lobby that a backout is requested." +msgstr "" + +#: meowth/__main__.py:6624 +msgid "backout" +msgstr "" + +#: meowth/__main__.py:6646 msgid "Meowth! There's no one else in the lobby for this raid!" msgstr "" -#: __main__.py:5935 +#: meowth/__main__.py:6652 msgid "Backout - Meowth! {author} has indicated that the group consisting of {lobby_list} and the people with them has backed out of the lobby! If this is inaccurate, please use **!lobby** or **!cancel** to help me keep my lists accurate!" msgstr "" -#: __main__.py:5949 +#: meowth/__main__.py:6666 msgid "Meowth! There's no one in the lobby for this raid!" msgstr "" -#: __main__.py:5952 +#: meowth/__main__.py:6669 msgid "Backout - Meowth! {author} has requested a backout! If one of the following trainers reacts with the check mark, I will assume the group is backing out of the raid lobby as requested! {lobby_list}" msgstr "" -#: __main__.py:5963 +#: meowth/__main__.py:6680 msgid "Meowth! {user} confirmed the group is backing out!" msgstr "" -#: __main__.py:5983 +#: meowth/__main__.py:6692 +msgid "" +"Lists all raid info for the current channel.\n" +"\n" +" Usage: !list\n" +" Works only in raid or city channels. Calls the interested, waiting, and here lists. Also prints\n" +" the raid timer. In city channels, lists all active raids." +msgstr "" + +#: meowth/__main__.py:6692 +msgid "list" +msgstr "" + +#: meowth/__main__.py:6699 msgid "**Meowth!** " msgstr "" -#: __main__.py:6036 +#: meowth/__main__.py:6755 msgid " (assumed)" msgstr "" -#: __main__.py:6041 +#: meowth/__main__.py:6761 msgid " Next group: **{}**" msgstr "" -#: __main__.py:6045 __main__.py:6047 +#: meowth/__main__.py:6765 meowth/__main__.py:6767 msgid " - Hatches: {expiry}{is_assumed}" msgstr "" -#: __main__.py:6049 +#: meowth/__main__.py:6773 meowth/__main__.py:6777 +msgid " - Starts: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6775 +msgid " - Ends: {expiry}{is_assumed}" +msgstr "" + +#: meowth/__main__.py:6779 msgid " - Expiry: {expiry}{is_assumed}" msgstr "" -#: __main__.py:6050 +#: meowth/__main__.py:6780 msgid "" " {raidchannel}{expiry_text}\n" msgstr "" -#: __main__.py:6051 +#: meowth/__main__.py:6781 msgid "" " {interestcount} interested, {comingcount} coming, {herecount} here, {lobbycount} in the lobby.{start_str}\n" msgstr "" -#: __main__.py:6054 +#: meowth/__main__.py:6784 msgid "" -"**Here's the current raids for {0}**\n" +"**Here's the current channels for {0}**\n" "\n" msgstr "" -#: __main__.py:6056 +#: meowth/__main__.py:6786 msgid "" "**Active Raids:**\n" msgstr "" -#: __main__.py:6062 +#: meowth/__main__.py:6792 msgid "" "**Active Raids:** (continued)\n" msgstr "" -#: __main__.py:6066 +#: meowth/__main__.py:6796 msgid "" "**Raid Eggs:**\n" msgstr "" -#: __main__.py:6072 +#: meowth/__main__.py:6802 msgid "" "**Raid Eggs:** (continued)\n" msgstr "" -#: __main__.py:6076 +#: meowth/__main__.py:6806 msgid "" "**EX Raids:**\n" msgstr "" -#: __main__.py:6082 +#: meowth/__main__.py:6812 +msgid "" +"**EX Raids:** (continued)\n" +msgstr "" + +#: meowth/__main__.py:6815 +msgid "" +"**Meetups:**\n" +msgstr "" + +#: meowth/__main__.py:6821 msgid "" -"**EX Raids::** (continued)\n" +"**Meetups:** (continued)\n" msgstr "" -#: __main__.py:6085 -msgid "Meowth! No active raids! Report one with **!raid **." +#: meowth/__main__.py:6824 +msgid "Meowth! No active raids! Report one with **!raid [weather] [timer]**." msgstr "" -#: __main__.py:6118 +#: meowth/__main__.py:6858 msgid " Nobody has updated their status yet!" msgstr "" -#: __main__.py:6121 +#: meowth/__main__.py:6861 msgid "" "\n" "The next group will be starting at **{}**" msgstr "" -#: __main__.py:6134 __main__.py:6181 __main__.py:6228 __main__.py:6278 -#: __main__.py:6325 __main__.py:6372 __main__.py:6416 __main__.py:6437 -#: __main__.py:6472 +#: meowth/__main__.py:6867 +msgid "" +"Lists the number and users who are interested in the raid.\n" +"\n" +" Usage: !list interested\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:6873 meowth/__main__.py:6919 meowth/__main__.py:6965 +#: meowth/__main__.py:7014 meowth/__main__.py:7060 meowth/__main__.py:7106 +#: meowth/__main__.py:7149 meowth/__main__.py:7167 meowth/__main__.py:7200 msgid "**Meowth!**" msgstr "" -#: __main__.py:6152 __main__.py:6159 __main__.py:6199 __main__.py:6206 -#: __main__.py:6247 __main__.py:6254 __main__.py:6295 __main__.py:6302 +#: meowth/__main__.py:6891 meowth/__main__.py:6898 meowth/__main__.py:6937 +#: meowth/__main__.py:6944 meowth/__main__.py:6984 meowth/__main__.py:6991 +#: meowth/__main__.py:7031 meowth/__main__.py:7038 msgid "**{name}**" msgstr "" -#: __main__.py:6155 __main__.py:6162 __main__.py:6202 __main__.py:6209 -#: __main__.py:6250 __main__.py:6257 __main__.py:6298 __main__.py:6305 +#: meowth/__main__.py:6894 meowth/__main__.py:6901 meowth/__main__.py:6940 +#: meowth/__main__.py:6947 meowth/__main__.py:6987 meowth/__main__.py:6994 +#: meowth/__main__.py:7034 meowth/__main__.py:7041 msgid "**{name} ({count})**" msgstr "" -#: __main__.py:6156 __main__.py:6163 __main__.py:6203 __main__.py:6210 -#: __main__.py:6251 __main__.py:6258 __main__.py:6299 __main__.py:6306 +#: meowth/__main__.py:6895 meowth/__main__.py:6902 meowth/__main__.py:6941 +#: meowth/__main__.py:6948 meowth/__main__.py:6988 meowth/__main__.py:6995 +#: meowth/__main__.py:7035 meowth/__main__.py:7042 msgid "{name} **({count})**" msgstr "" -#: __main__.py:6168 __main__.py:6170 +#: meowth/__main__.py:6907 meowth/__main__.py:6909 msgid " including {trainer_list} and the people with them! Let them know if there is a group forming" msgstr "" -#: __main__.py:6171 +#: meowth/__main__.py:6910 msgid " {trainer_count} interested{including_string}!" msgstr "" -#: __main__.py:6215 __main__.py:6217 +#: meowth/__main__.py:6913 +msgid "" +"Lists the number and users who are coming to a raid.\n" +"\n" +" Usage: !list coming\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:6953 meowth/__main__.py:6955 msgid " including {trainer_list} and the people with them! Be considerate and wait for them if possible" msgstr "" -#: __main__.py:6218 +#: meowth/__main__.py:6956 msgid " {trainer_count} on the way{including_string}!" msgstr "" -#: __main__.py:6265 __main__.py:6267 +#: meowth/__main__.py:6959 +msgid "" +"List the number and users who are present at a raid.\n" +"\n" +" Usage: !list here\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7002 meowth/__main__.py:7004 msgid " including {trainer_list} and the people with them! Be considerate and let them know if and when you'll be there" msgstr "" -#: __main__.py:6268 -msgid " {trainer_count} waiting at the raid{including_string}!" +#: meowth/__main__.py:7005 +msgid " {trainer_count} waiting at the {raidtype}{including_string}!" msgstr "" -#: __main__.py:6312 __main__.py:6314 +#: meowth/__main__.py:7008 +msgid "" +"List the number and users who are in the raid lobby.\n" +"\n" +" Usage: !list lobby\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7048 meowth/__main__.py:7050 msgid " including {trainer_list} and the people with them! Use **!lobby** if you are joining them or **!backout** to request a backout" msgstr "" -#: __main__.py:6315 +#: meowth/__main__.py:7051 msgid " {trainer_count} in the lobby{including_string}!" msgstr "" -#: __main__.py:6358 +#: meowth/__main__.py:7054 +msgid "" +"List each possible boss and the number of users that have RSVP'd for it.\n" +"\n" +" Usage: !list bosses\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7054 +msgid "bosses" +msgstr "" + +#: meowth/__main__.py:7093 msgid "" "{type}{name}: **{total} total,** {interested} interested, {coming} coming, {here} waiting{type}\n" msgstr "" -#: __main__.py:6360 +#: meowth/__main__.py:7095 msgid "" " Boss numbers for the raid:\n" "{}" msgstr "" -#: __main__.py:6362 +#: meowth/__main__.py:7097 msgid " Nobody has told me what boss they want!" msgstr "" -#: __main__.py:6397 +#: meowth/__main__.py:7100 +msgid "" +"List the teams for the users that have RSVP'd to a raid.\n" +"\n" +" Usage: !list teams\n" +" Works only in raid channels." +msgstr "" + +#: meowth/__main__.py:7100 +msgid "teams" +msgstr "" + +#: meowth/__main__.py:7131 msgid "" "{emoji} **{total} total,** {interested} interested, {coming} coming, {here} waiting {emoji}\n" msgstr "" -#: __main__.py:6400 +#: meowth/__main__.py:7134 msgid "**{grey_number} total,** {greymaybe} interested, {greycoming} coming, {greyhere} waiting" msgstr "" -#: __main__.py:6404 +#: meowth/__main__.py:7138 msgid "" " Team numbers for the raid:\n" "{}" msgstr "" -#: __main__.py:6406 +#: meowth/__main__.py:7140 msgid " Nobody has updated their status!" msgstr "" -#: __main__.py:6426 +#: meowth/__main__.py:7143 +msgid "" +"List the wants for the user\n" +"\n" +" Usage: !list wants\n" +" Works only in the want channel." +msgstr "" + +#: meowth/__main__.py:7143 +msgid "wants" +msgstr "" + +#: meowth/__main__.py:7159 msgid " Your current **!want** list is: ```{wantlist}```" msgstr "" -#: __main__.py:6428 +#: meowth/__main__.py:7161 msgid " You don't have any wants! use **!want** to add some." msgstr "" -#: __main__.py:6453 +#: meowth/__main__.py:7164 +msgid "List the quests for the channel" +msgstr "" + +#: meowth/__main__.py:7182 meowth/__main__.py:7188 +msgid "**Reward**: {reward}, **Pokestop**: [{location}]({url}), **Quest**: {quest}, **Reported By**: {author}" +msgstr "" + +#: meowth/__main__.py:7184 msgid "" "Meowth! **Here's the current research reports for {channel}**\n" "{questmsg}" msgstr "" -#: __main__.py:6461 +#: meowth/__main__.py:7192 msgid "" " **Here's the current research reports for {channel}**\n" "{questmsg}" msgstr "" -#: __main__.py:6463 +#: meowth/__main__.py:7194 msgid " There are no reported research reports. Report one with **!research**" msgstr "" -#: __main__.py:6488 +#: meowth/__main__.py:7197 +msgid "List the wilds for the channel" +msgstr "" + +#: meowth/__main__.py:7197 +msgid "wilds" +msgstr "" + +#: meowth/__main__.py:7215 +msgid "**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: {author}" +msgstr "" + +#: meowth/__main__.py:7217 msgid "" "Meowth! **Here's the current wild reports for {channel}**\n" "{wildmsg}" msgstr "" -#: __main__.py:6496 +#: meowth/__main__.py:7221 +msgid "" +"**Pokemon**: {pokemon}, **Location**: [{location}]({url}), **Reported By**: {author}\n" +"**Location**: <{url}>" +msgstr "" + +#: meowth/__main__.py:7225 msgid "" " **Here's the current wild reports for {channel}**\n" "{wildmsg}" msgstr "" -#: __main__.py:6498 +#: meowth/__main__.py:7227 msgid " There are no reported wild pokemon. Report one with **!wild **" msgstr "" +#: meowth/errors.py:140 +msgid "Meowth! I'm missing some details! Usage: {prefix}{command}" +msgstr "" + +#: meowth/errors.py:173 +msgid "Meowth! Team Management is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:178 +msgid "Meowth! Pokemon Notifications are not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:183 +msgid "Meowth! Wild Reporting is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:188 +msgid "Meowth! Reporting is not enabled for this channel. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:193 +msgid "Meowth! Raid Management is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:198 +msgid "Meowth! EX Raid Management is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:203 +msgid "Meowth! Research Reporting is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:208 +msgid "Meowth! Meetup Reporting is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:213 +msgid "Meowth! Channel Archiving is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:218 +msgid "Meowth! EX Raid Invite is not enabled on this server. **{prefix}{cmd_name}** is unable to be used." +msgstr "" + +#: meowth/errors.py:224 meowth/errors.py:419 meowth/errors.py:436 +#: meowth/errors.py:453 +msgid "Meowth! Please use **{prefix}{cmd_name}** in " +msgstr "" + +#: meowth/errors.py:227 meowth/errors.py:354 meowth/errors.py:371 +#: meowth/errors.py:388 meowth/errors.py:405 meowth/errors.py:422 +#: meowth/errors.py:439 meowth/errors.py:456 +msgid "a Region report channel." +msgstr "" + +#: meowth/errors.py:229 meowth/errors.py:356 meowth/errors.py:373 +#: meowth/errors.py:390 meowth/errors.py:407 meowth/errors.py:424 +#: meowth/errors.py:441 meowth/errors.py:458 +msgid "one of the following region channels:" +msgstr "" + +#: meowth/errors.py:241 +msgid "Meowth! Please use **{prefix}{cmd_name}** in the following channel" +msgstr "" + +#: meowth/errors.py:244 +msgid "" +"s:\n" +msgstr "" + +#: meowth/errors.py:246 +msgid ": " +msgstr "" + +#: meowth/errors.py:262 +msgid "Meowth! Please use **{prefix}{cmd_name}** in a Raid channel. Use **{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:265 meowth/errors.py:282 meowth/errors.py:335 +msgid "Region report channel to see active raids." +msgstr "" + +#: meowth/errors.py:267 meowth/errors.py:284 meowth/errors.py:337 +msgid "of the following Region channels to see active raids:" +msgstr "" + +#: meowth/errors.py:279 +msgid "Meowth! Please use **{prefix}{cmd_name}** in an Egg channel. Use **{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:295 +msgid "Meowth! **{prefix}{cmd_name}** can't be used in a Raid channel." +msgstr "" + +#: meowth/errors.py:301 +msgid "Meowth! Please use **{prefix}{cmd_name}** in an Active Raid channel. Use **{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:310 +msgid "Region report channel to see active channels." +msgstr "" + +#: meowth/errors.py:312 +msgid "of the following Region channels to see active channels:" +msgstr "" + +#: meowth/errors.py:320 meowth/errors.py:345 +msgid "" +"\n" +"This is an egg channel. The channel needs to be activated with **{prefix}raid ** before I accept commands!" +msgstr "" + +#: meowth/errors.py:326 +msgid "Meowth! Please use **{prefix}{cmd_name}** in an Active channel. Use **{prefix}list** in any " +msgstr "" + +#: meowth/errors.py:351 +msgid "Meowth! Please use **{prefix}{cmd_name}** in either a Raid channel or " +msgstr "" + +#: meowth/errors.py:368 +msgid "Meowth! Please use **{prefix}{cmd_name}** in either a Raid Egg channel or " +msgstr "" + +#: meowth/errors.py:385 +msgid "Meowth! Please use **{prefix}{cmd_name}** in either a EX Raid channel or one of the following region channels:" +msgstr "" + +#: meowth/errors.py:402 +msgid "Meowth! Please use **{prefix}{cmd_name}** in a EX Raid channel. Use **{prefix}list** in any of the following region channels to see active raids:" +msgstr "" +