mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-22 02:37:57 -05:00
Merge branch 'V3/develop' into cog_guide_core
This commit is contained in:
537
docs/cog_guides/downloader.rst
Normal file
537
docs/cog_guides/downloader.rst
Normal file
@@ -0,0 +1,537 @@
|
||||
.. _downloader:
|
||||
|
||||
==========
|
||||
Downloader
|
||||
==========
|
||||
|
||||
This is the cog guide for the downloader cog. You will
|
||||
find detailed docs about usage and commands.
|
||||
|
||||
``[p]`` is considered as your prefix.
|
||||
|
||||
.. note:: To use this cog, load it by typing this::
|
||||
|
||||
[p]load downloader
|
||||
|
||||
.. _downloader-usage:
|
||||
|
||||
-----
|
||||
Usage
|
||||
-----
|
||||
|
||||
Install community cogs made by Cog Creators.
|
||||
|
||||
Community cogs, also called third party cogs, are not included
|
||||
in the default Red install.
|
||||
|
||||
Community cogs come in repositories. Repos are a group of cogs
|
||||
you can install. You always need to add the creator's repository
|
||||
using the ``[p]repo`` command before you can install one or more
|
||||
cogs from the creator.
|
||||
|
||||
|
||||
.. _downloader-commands:
|
||||
|
||||
--------
|
||||
Commands
|
||||
--------
|
||||
|
||||
.. _downloader-command-cog:
|
||||
|
||||
^^^
|
||||
cog
|
||||
^^^
|
||||
|
||||
.. note:: |owner-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog
|
||||
|
||||
**Description**
|
||||
|
||||
Base command for cog installation management commands.
|
||||
|
||||
.. _downloader-command-cog-checkforupdates:
|
||||
|
||||
"""""""""""""""""""
|
||||
cog checkforupdates
|
||||
"""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog checkforupdates
|
||||
|
||||
**Description**
|
||||
|
||||
Check for available cog updates (including pinned cogs).
|
||||
|
||||
This command doesn't update cogs, it only checks for updates.
|
||||
Use ``[p]cog update`` to update cogs.
|
||||
|
||||
.. _downloader-command-cog-info:
|
||||
|
||||
""""""""
|
||||
cog info
|
||||
""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog info <repo_name> <cog_name>
|
||||
|
||||
**Description**
|
||||
|
||||
List information about a single cog.
|
||||
|
||||
Example:
|
||||
- ``[p]cog info 26-Cogs defender``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repo_name>`` The repo to get cog info from.
|
||||
- ``<cog_name>`` The cog to get info on.
|
||||
|
||||
.. _downloader-command-cog-install:
|
||||
|
||||
"""""""""""
|
||||
cog install
|
||||
"""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog install <repo_name> <cogs>
|
||||
|
||||
**Description**
|
||||
|
||||
Install a cog from the given repo.
|
||||
|
||||
Examples:
|
||||
- ``[p]cog install 26-Cogs defender``
|
||||
- ``[p]cog install Laggrons-Dumb-Cogs say roleinvite``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repo_name>`` The name of the repo to install cogs from.
|
||||
- ``<cogs>`` The cog or cogs to install.
|
||||
|
||||
.. _downloader-command-cog-installversion:
|
||||
|
||||
""""""""""""""""""
|
||||
cog installversion
|
||||
""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog installversion <repo_name> <revision> <cogs>
|
||||
|
||||
**Description**
|
||||
|
||||
Install a cog from the specified revision of given repo.
|
||||
|
||||
Revisions are "commit ids" that point to the point in the code when a specific change was made.
|
||||
The latest revision can be found in the URL bar for any GitHub repo by `pressing "y" on that repo <https://docs.github.com/en/free-pro-team@latest/github/managing-files-in-a-repository/getting-permanent-links-to-files#press-y-to-permalink-to-a-file-in-a-specific-commit>`_.
|
||||
|
||||
Older revisions can be found in the URL bar by `viewing the commit history of any repo <https://cdn.discordapp.com/attachments/133251234164375552/775760247787749406/unknown.png>`_
|
||||
|
||||
Example:
|
||||
- ``[p]cog installversion Broken-Repo e798cc268e199612b1316a3d1f193da0770c7016 cog_name``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repo_name>`` The name of the repo to install cogs from.
|
||||
- ``<revision>`` The revision to install from.
|
||||
- ``<cogs>`` The cog or cogs to install.
|
||||
|
||||
.. _downloader-command-cog-list:
|
||||
|
||||
""""""""
|
||||
cog list
|
||||
""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog list <repo_name>
|
||||
|
||||
**Description**
|
||||
|
||||
List all available cogs from a single repo.
|
||||
|
||||
Example:
|
||||
- ``[p]cog list 26-Cogs``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repo_name>`` The repo to list cogs from.
|
||||
|
||||
.. _downloader-command-cog-listpinned:
|
||||
|
||||
""""""""""""""
|
||||
cog listpinned
|
||||
""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog listpinned
|
||||
|
||||
**Description**
|
||||
|
||||
List currently pinned cogs.
|
||||
|
||||
.. _downloader-command-cog-pin:
|
||||
|
||||
"""""""
|
||||
cog pin
|
||||
"""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog pin <cogs>
|
||||
|
||||
**Description**
|
||||
|
||||
Pin cogs - this will lock cogs on their current version.
|
||||
|
||||
Examples:
|
||||
- ``[p]cog pin defender``
|
||||
- ``[p]cog pin outdated_cog1 outdated_cog2``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<cogs>`` The cog or cogs to pin. Must already be installed.
|
||||
|
||||
.. _downloader-command-cog-uninstall:
|
||||
|
||||
"""""""""""""
|
||||
cog uninstall
|
||||
"""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog uninstall <cogs>
|
||||
|
||||
**Description**
|
||||
|
||||
Uninstall cogs.
|
||||
|
||||
You may only uninstall cogs which were previously installed
|
||||
by Downloader.
|
||||
|
||||
Examples:
|
||||
- ``[p]cog uninstall 26-Cogs defender``
|
||||
- ``[p]cog uninstall Laggrons-Dumb-Cogs say roleinvite``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<cogs>`` The cog or cogs to uninstall.
|
||||
|
||||
.. _downloader-command-cog-unpin:
|
||||
|
||||
"""""""""
|
||||
cog unpin
|
||||
"""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog unpin <cogs>
|
||||
|
||||
**Description**
|
||||
|
||||
Unpin cogs - this will remove the update lock from those cogs.
|
||||
|
||||
Examples:
|
||||
- ``[p]cog unpin defender``
|
||||
- ``[p]cog unpin updated_cog1 updated_cog2``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<cogs>`` The cog or cogs to unpin. Must already be installed and pinned.
|
||||
|
||||
.. _downloader-command-cog-update:
|
||||
|
||||
""""""""""
|
||||
cog update
|
||||
""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog update [cogs...]
|
||||
|
||||
**Description**
|
||||
|
||||
Update all cogs, or ones of your choosing.
|
||||
|
||||
Examples:
|
||||
- ``[p]cog update``
|
||||
- ``[p]cog update defender``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``[cogs...]`` The cog or cogs to update. If omitted, all cogs are updated.
|
||||
|
||||
.. _downloader-command-cog-updateallfromrepos:
|
||||
|
||||
""""""""""""""""""""""
|
||||
cog updateallfromrepos
|
||||
""""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog updateallfromrepos <repos>
|
||||
|
||||
**Description**
|
||||
|
||||
Update all cogs from repos of your choosing.
|
||||
|
||||
Examples:
|
||||
- ``[p]cog updateallfromrepos 26-Cogs``
|
||||
- ``[p]cog updateallfromrepos Laggrons-Dumb-Cogs 26-Cogs``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repos>`` The repo or repos to update all cogs from.
|
||||
|
||||
.. _downloader-command-cog-updatetoversion:
|
||||
|
||||
"""""""""""""""""""
|
||||
cog updatetoversion
|
||||
"""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cog updatetoversion <repo_name> <revision> [cogs]
|
||||
|
||||
**Description**
|
||||
|
||||
Update all cogs, or ones of your choosing to chosen revision of one repo.
|
||||
|
||||
Note that update doesn't mean downgrade and therefore ``revision``
|
||||
has to be newer than the version that cog currently has installed. If you want to
|
||||
downgrade the cog, uninstall and install it again.
|
||||
|
||||
See ``[p]cog installversion`` for an explanation of ``revision``.
|
||||
|
||||
Example:
|
||||
- ``[p]cog updatetoversion Broken-Repo e798cc268e199612b1316a3d1f193da0770c7016 cog_name``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repo_name>`` The repo or repos to update all cogs from.
|
||||
- ``<revision>`` The revision to update to.
|
||||
- ``[cogs]`` The cog or cogs to update.
|
||||
|
||||
.. _downloader-command-findcog:
|
||||
|
||||
^^^^^^^
|
||||
findcog
|
||||
^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]findcog <command_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Find which cog a command comes from.
|
||||
|
||||
This will only work with loaded cogs.
|
||||
|
||||
Example:
|
||||
- ``[p]findcog ping``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<command_name>`` The command to search for.
|
||||
|
||||
.. _downloader-command-pipinstall:
|
||||
|
||||
^^^^^^^^^^
|
||||
pipinstall
|
||||
^^^^^^^^^^
|
||||
|
||||
.. note:: |owner-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]pipinstall [deps...]
|
||||
|
||||
**Description**
|
||||
|
||||
Install a group of dependencies using pip.
|
||||
|
||||
Examples:
|
||||
- ``[p]pipinstall bs4``
|
||||
- ``[p]pipinstall py-cpuinfo psutil``
|
||||
|
||||
Improper usage of this command can break your bot, be careful.
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``[deps...]`` The package or packages you wish to install.
|
||||
|
||||
.. _downloader-command-repo:
|
||||
|
||||
^^^^
|
||||
repo
|
||||
^^^^
|
||||
|
||||
.. note:: |owner-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]repo
|
||||
|
||||
**Description**
|
||||
|
||||
Base command for repository management.
|
||||
|
||||
.. _downloader-command-repo-add:
|
||||
|
||||
""""""""
|
||||
repo add
|
||||
""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]repo add <name> <repo_url> [branch]
|
||||
|
||||
**Description**
|
||||
|
||||
Add a new repo.
|
||||
|
||||
Examples:
|
||||
- ``[p]repo add 26-Cogs https://github.com/Twentysix26/x26-Cogs``
|
||||
- ``[p]repo add Laggrons-Dumb-Cogs https://github.com/retke/Laggrons-Dumb-Cogs v3``
|
||||
|
||||
Repo names can only contain characters A-z, numbers, underscores, and hyphens.
|
||||
The branch will be the default branch if not specified.
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<name>`` The name given to the repo.
|
||||
- ``<repo_url>`` URL to the cog branch. Usually GitHub or GitLab.
|
||||
- ``[branch]`` Optional branch to install cogs from.
|
||||
|
||||
.. _downloader-command-repo-delete:
|
||||
|
||||
"""""""""""
|
||||
repo delete
|
||||
"""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]repo delete <repo_name>
|
||||
|
||||
.. tip:: Aliases: ``repo remove``, ``repo del``
|
||||
|
||||
**Description**
|
||||
|
||||
Remove a repo and its files.
|
||||
|
||||
Example:
|
||||
- ``[p]repo delete 26-Cogs``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repo_name>`` The name of an already added repo
|
||||
|
||||
.. _downloader-command-repo-info:
|
||||
|
||||
"""""""""
|
||||
repo info
|
||||
"""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]repo info <repo_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Show information about a repo.
|
||||
|
||||
Example:
|
||||
- ``[p]repo info 26-Cogs``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<repo_name>`` The name of the repo to show info about.
|
||||
|
||||
.. _downloader-command-repo-list:
|
||||
|
||||
"""""""""
|
||||
repo list
|
||||
"""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]repo list
|
||||
|
||||
**Description**
|
||||
|
||||
List all installed repos.
|
||||
|
||||
.. _downloader-command-repo-update:
|
||||
|
||||
"""""""""""
|
||||
repo update
|
||||
"""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]repo update [repos...]
|
||||
|
||||
**Description**
|
||||
|
||||
Update all repos, or ones of your choosing.
|
||||
|
||||
This will *not* update the cogs installed from those repos.
|
||||
|
||||
Examples:
|
||||
- ``[p]repo update``
|
||||
- ``[p]repo update 26-Cogs``
|
||||
- ``[p]repo update 26-Cogs Laggrons-Dumb-Cogs``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``[repos...]`` The name or names of repos to update. If omitted, all repos are updated.
|
||||
535
docs/cog_guides/economy.rst
Normal file
535
docs/cog_guides/economy.rst
Normal file
@@ -0,0 +1,535 @@
|
||||
.. _economy:
|
||||
|
||||
=======
|
||||
Economy
|
||||
=======
|
||||
|
||||
This is the cog guide for the economy cog. You will
|
||||
find detailed docs about usage and commands.
|
||||
|
||||
``[p]`` is considered as your prefix.
|
||||
|
||||
.. note:: To use this cog, load it by typing this::
|
||||
|
||||
[p]load economy
|
||||
|
||||
.. _economy-usage:
|
||||
|
||||
-----
|
||||
Usage
|
||||
-----
|
||||
|
||||
Get rich and have fun with imaginary currency!
|
||||
|
||||
|
||||
.. _economy-commands:
|
||||
|
||||
--------
|
||||
Commands
|
||||
--------
|
||||
|
||||
.. _economy-command-bank:
|
||||
|
||||
^^^^
|
||||
bank
|
||||
^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank
|
||||
|
||||
**Description**
|
||||
|
||||
Base command to manage the bank.
|
||||
|
||||
.. _economy-command-bank-balance:
|
||||
|
||||
""""""""""""
|
||||
bank balance
|
||||
""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank balance [user]
|
||||
|
||||
**Description**
|
||||
|
||||
Show the user's account balance.
|
||||
|
||||
Example:
|
||||
- ``[p]bank balance``
|
||||
- ``[p]bank balance @Twentysix``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<user>`` The user to check the balance of. If omitted, defaults to your own balance.
|
||||
|
||||
.. _economy-command-bank-prune:
|
||||
|
||||
""""""""""
|
||||
bank prune
|
||||
""""""""""
|
||||
|
||||
.. note:: |admin-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank prune
|
||||
|
||||
**Description**
|
||||
|
||||
Base command for pruning bank accounts.
|
||||
|
||||
.. _economy-command-bank-prune-global:
|
||||
|
||||
"""""""""""""""""
|
||||
bank prune global
|
||||
"""""""""""""""""
|
||||
|
||||
.. note:: |owner-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank prune global [confirmation=False]
|
||||
|
||||
**Description**
|
||||
|
||||
Prune bank accounts for users who no longer share a server with the bot.
|
||||
|
||||
Cannot be used without a global bank. See ``[p]bank prune server``.
|
||||
|
||||
Examples:
|
||||
- ``[p]bank prune global`` - Did not confirm. Shows the help message.
|
||||
- ``[p]bank prune global yes``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<confirmation>`` This will default to false unless specified.
|
||||
|
||||
.. _economy-command-bank-prune-server:
|
||||
|
||||
"""""""""""""""""
|
||||
bank prune server
|
||||
"""""""""""""""""
|
||||
|
||||
.. note:: |guildowner-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank prune server [confirmation=False]
|
||||
|
||||
.. tip:: Aliases: ``bank prune guild``, ``bank prune local``
|
||||
|
||||
**Description**
|
||||
|
||||
Prune bank accounts for users no longer in the server.
|
||||
|
||||
Cannot be used with a global bank. See ``[p]bank prune global``.
|
||||
|
||||
Examples:
|
||||
- ``[p]bank prune server`` - Did not confirm. Shows the help message.
|
||||
- ``[p]bank prune server yes``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<confirmation>`` This will default to false unless specified.
|
||||
|
||||
.. _economy-command-bank-prune-user:
|
||||
|
||||
"""""""""""""""
|
||||
bank prune user
|
||||
"""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank prune user <user> [confirmation=False]
|
||||
|
||||
**Description**
|
||||
|
||||
Delete the bank account of a specified user.
|
||||
|
||||
Examples:
|
||||
- ``[p]bank prune user @TwentySix`` - Did not confirm. Shows the help message.
|
||||
- ``[p]bank prune user @TwentySix yes``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<user>`` The user to delete the bank of. Takes mentions, names, and user ids.
|
||||
- ``<confirmation>`` This will default to false unless specified.
|
||||
|
||||
.. _economy-command-bank-reset:
|
||||
|
||||
""""""""""
|
||||
bank reset
|
||||
""""""""""
|
||||
|
||||
.. note:: |guildowner-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank reset [confirmation=False]
|
||||
|
||||
**Description**
|
||||
|
||||
Delete all bank accounts.
|
||||
|
||||
Examples:
|
||||
- ``[p]bank reset`` - Did not confirm. Shows the help message.
|
||||
- ``[p]bank reset yes``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<confirmation>`` This will default to false unless specified.
|
||||
|
||||
.. _economy-command-bank-set:
|
||||
|
||||
""""""""
|
||||
bank set
|
||||
""""""""
|
||||
|
||||
.. note:: |admin-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank set <to> <creds>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the balance of a user's bank account.
|
||||
|
||||
Putting + or - signs before the amount will add/remove currency on the user's bank account instead.
|
||||
|
||||
Examples:
|
||||
- ``[p]bank set @Twentysix 26`` - Sets balance to 26
|
||||
- ``[p]bank set @Twentysix +2`` - Increases balance by 2
|
||||
- ``[p]bank set @Twentysix -6`` - Decreases balance by 6
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<to>`` The user to set the currency of.
|
||||
- ``<creds>`` The amount of currency to set their balance to.
|
||||
|
||||
.. _economy-command-bank-transfer:
|
||||
|
||||
"""""""""""""
|
||||
bank transfer
|
||||
"""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]bank transfer <to> <amount>
|
||||
|
||||
**Description**
|
||||
|
||||
Transfer currency to other users.
|
||||
|
||||
This will come out of your balance, so make sure you have enough.
|
||||
|
||||
Example:
|
||||
- ``[p]bank transfer @Twentysix 500``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<to>`` The user to give currency to.
|
||||
- ``<amount>`` The amount of currency to give.
|
||||
|
||||
.. _economy-command-economyset:
|
||||
|
||||
^^^^^^^^^^
|
||||
economyset
|
||||
^^^^^^^^^^
|
||||
|
||||
.. note:: |admin-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset
|
||||
|
||||
**Description**
|
||||
|
||||
Base command to manage Economy settings.
|
||||
|
||||
.. _economy-command-economyset-paydayamount:
|
||||
|
||||
"""""""""""""""""""""""
|
||||
economyset paydayamount
|
||||
"""""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset paydayamount <creds>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the amount earned each payday.
|
||||
|
||||
Example:
|
||||
- ``[p]economyset paydayamount 400``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<creds>`` The new amount to give when using the payday command. Default is 120.
|
||||
|
||||
.. _economy-command-economyset-paydaytime:
|
||||
|
||||
"""""""""""""""""""""
|
||||
economyset paydaytime
|
||||
"""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset paydaytime <seconds>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the cooldown for the payday command.
|
||||
|
||||
Example:
|
||||
- ``[p]economyset paydaytime 86400``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<seconds>`` The new number of seconds to wait in between uses of payday. Default is 300.
|
||||
|
||||
.. _economy-command-economyset-registeramount:
|
||||
|
||||
"""""""""""""""""""""""""
|
||||
economyset registeramount
|
||||
"""""""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset registeramount <creds>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the initial balance for new bank accounts.
|
||||
|
||||
Example:
|
||||
- ``[p]economyset registeramount 5000``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<creds>`` The new initial balance amount. Default is 0.
|
||||
|
||||
.. _economy-command-economyset-rolepaydayamount:
|
||||
|
||||
"""""""""""""""""""""""""""
|
||||
economyset rolepaydayamount
|
||||
"""""""""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset rolepaydayamount <role> <creds>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the amount earned each payday for a role.
|
||||
|
||||
Only available when not using a global bank.
|
||||
|
||||
Example:
|
||||
- ``[p]economyset rolepaydayamount @Members 400``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<role>`` The role to assign a custom payday amount to.
|
||||
- ``<creds>`` The new amount to give when using the payday command.
|
||||
|
||||
.. _economy-command-economyset-showsettings:
|
||||
|
||||
"""""""""""""""""""""""
|
||||
economyset showsettings
|
||||
"""""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset showsettings
|
||||
|
||||
**Description**
|
||||
|
||||
Shows the current economy settings
|
||||
|
||||
.. _economy-command-economyset-slotmax:
|
||||
|
||||
""""""""""""""""""
|
||||
economyset slotmax
|
||||
""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset slotmax <bid>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the maximum slot machine bid.
|
||||
|
||||
Example:
|
||||
- ``[p]economyset slotmax 50``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<bid>`` The new maximum bid for using the slot machine. Default is 100.
|
||||
|
||||
.. _economy-command-economyset-slotmin:
|
||||
|
||||
""""""""""""""""""
|
||||
economyset slotmin
|
||||
""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset slotmin <bid>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the minimum slot machine bid.
|
||||
|
||||
Example:
|
||||
- ``[p]economyset slotmin 10``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<bid>`` The new minimum bid for using the slot machine. Default is 5.
|
||||
|
||||
.. _economy-command-economyset-slottime:
|
||||
|
||||
"""""""""""""""""""
|
||||
economyset slottime
|
||||
"""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]economyset slottime <seconds>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the cooldown for the slot machine.
|
||||
|
||||
Example:
|
||||
- ``[p]economyset slottime 10``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<seconds>`` The new number of seconds to wait in between uses of the slot machine. Default is 5.
|
||||
|
||||
.. _economy-command-leaderboard:
|
||||
|
||||
^^^^^^^^^^^
|
||||
leaderboard
|
||||
^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]leaderboard [top=10] [show_global=False]
|
||||
|
||||
**Description**
|
||||
|
||||
Print the leaderboard.
|
||||
|
||||
Defaults to top 10.
|
||||
|
||||
Examples:
|
||||
- ``[p]leaderboard``
|
||||
- ``[p]leaderboard 50`` - Shows the top 50 instead of top 10.
|
||||
- ``[p]leaderboard 100 yes`` - Shows the top 100 from all servers.
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<top>`` How many positions on the leaderboard to show. Defaults to 10 if omitted.
|
||||
- ``<show_global>`` Whether to include results from all servers. This will default to false unless specified.
|
||||
|
||||
.. _economy-command-payday:
|
||||
|
||||
^^^^^^
|
||||
payday
|
||||
^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]payday
|
||||
|
||||
**Description**
|
||||
|
||||
Get some free currency.
|
||||
|
||||
The amount awarded and frequency can be configured.
|
||||
|
||||
.. _economy-command-payouts:
|
||||
|
||||
^^^^^^^
|
||||
payouts
|
||||
^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]payouts
|
||||
|
||||
**Description**
|
||||
|
||||
Show the payouts for the slot machine.
|
||||
|
||||
.. _economy-command-slot:
|
||||
|
||||
^^^^
|
||||
slot
|
||||
^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]slot <bid>
|
||||
|
||||
**Description**
|
||||
|
||||
Use the slot machine.
|
||||
|
||||
Example:
|
||||
- ``[p]slot 50``
|
||||
|
||||
**Arguments**
|
||||
|
||||
- ``<bid>`` The amount to bet on the slot machine. Winning payouts are higher when you bet more.
|
||||
553
docs/cog_guides/streams.rst
Normal file
553
docs/cog_guides/streams.rst
Normal file
@@ -0,0 +1,553 @@
|
||||
.. _streams:
|
||||
|
||||
=======
|
||||
Streams
|
||||
=======
|
||||
|
||||
This is the cog guide for the Streams cog. You will
|
||||
find detailed docs about usage and commands.
|
||||
|
||||
``[p]`` is considered as your prefix.
|
||||
|
||||
.. note:: To use this cog, load it by typing this::
|
||||
|
||||
[p]load streams
|
||||
|
||||
.. _streams-usage:
|
||||
|
||||
-----
|
||||
Usage
|
||||
-----
|
||||
|
||||
This cog provides commands to check if a channel
|
||||
on a supported streaming service is live as well
|
||||
as to create and manage alerts for channels.
|
||||
|
||||
Supported streaming services are:
|
||||
|
||||
- Twitch
|
||||
- Youtube
|
||||
- Smashcast
|
||||
- Picarto
|
||||
|
||||
Youtube and Twitch both require setting authentication
|
||||
details for commands for those services to work. See
|
||||
:ref:`[p]streamset twitchtoken <streams-command-streamset-twitchtoken>` and
|
||||
:ref:`[p]streamset youtubekey <streams-command-streamset-youtubekey>`
|
||||
for more information.
|
||||
|
||||
.. _streams-commands:
|
||||
|
||||
--------
|
||||
Commands
|
||||
--------
|
||||
|
||||
.. _streams-command-streamset:
|
||||
|
||||
^^^^^^^^^
|
||||
streamset
|
||||
^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset
|
||||
|
||||
**Description**
|
||||
|
||||
Manage stream alert settings.
|
||||
|
||||
.. _streams-command-streamset-autodelete:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
streamset autodelete
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset autodelete <on_off>
|
||||
|
||||
**Description**
|
||||
|
||||
Toggles automatic deletion of stream alerts when the
|
||||
stream goes offline.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<on_off>``: Whether to turn on or off
|
||||
|
||||
.. _streams-command-streamset-ignorereruns:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset ignorereruns
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset ignorereruns
|
||||
|
||||
**Description**
|
||||
|
||||
Toggles excluding reruns from the alerts.
|
||||
|
||||
At this time, this functionality only applies to Twitch stream alerts.
|
||||
|
||||
.. _streams-command-streamset-mention:
|
||||
|
||||
^^^^^^^^^^^^^^^^^
|
||||
streamset mention
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset mention
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle mentions for stream alerts.
|
||||
|
||||
.. _streams-command-streamset-mention-all:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset mention all
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset mention all
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle mentioning ``@everyone`` for stream alerts.
|
||||
|
||||
.. _streams-command-streamset-mention-online:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset mention online
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset mention online
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle mentioning ``@here`` for stream alerts.
|
||||
|
||||
.. _streams-command-streamset-mention-role:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset mention role
|
||||
^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset mention role <role>
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle mentioning a role for stream alerts.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<role>``: The role to toggle a mention for. |role-input|
|
||||
|
||||
.. _streams-command-streamset-message:
|
||||
|
||||
^^^^^^^^^^^^^^^^^
|
||||
streamset message
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset message
|
||||
|
||||
**Description**
|
||||
|
||||
Manage custom messages for stream alerts.
|
||||
|
||||
.. _streams-command-streamset-message-mention:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset message mention
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset message mention [message]
|
||||
|
||||
**Description**
|
||||
|
||||
Sets a stream alert message for when mentions are enabled.
|
||||
|
||||
Use ``{mention}`` in the message to insert the selected mentions.
|
||||
|
||||
Use ``{stream}`` in the message to insert the channel or user name.
|
||||
|
||||
For example: ``[p]streamset message mention {mention}, {stream} is live!``
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``[message]``: Your alert message
|
||||
|
||||
.. _streams-command-streamset-message-nomention:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset message nomention
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset message nomention [message]
|
||||
|
||||
**Description**
|
||||
|
||||
Sets a stream alert message for when mentions are disabled.
|
||||
|
||||
Use ``{stream}`` in the message to insert the channel or user name.
|
||||
|
||||
For example: ``[p]streamset message nomention {stream} is live!``
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``[message]``: Your alert message
|
||||
|
||||
.. _streams-command-streamset-message-clear:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset message clear
|
||||
^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset message clear
|
||||
|
||||
**Description**
|
||||
|
||||
Resets the stream alert messages for the server.
|
||||
|
||||
.. _streams-command-streamset-timer:
|
||||
|
||||
^^^^^^^^^^^^^^^
|
||||
streamset timer
|
||||
^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset timer <refresh_timer>
|
||||
|
||||
**Description**
|
||||
|
||||
Sets the refresh time for stream alerts (how frequently they will be checked).
|
||||
|
||||
This cannot be set to anything less than 60 seconds.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<refresh_timer>``: The frequency with which streams should be checked, in seconds
|
||||
|
||||
.. _streams-command-streamset-youtubekey:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
streamset youtubekey
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset youtubekey
|
||||
|
||||
**Description**
|
||||
|
||||
Explains how to set the YouTube token.
|
||||
|
||||
To get one, do the following:
|
||||
|
||||
1. Create a project
|
||||
(see https://support.google.com/googleapi/answer/6251787 for details)
|
||||
|
||||
2. Enable the YouTube Data API v3
|
||||
(see https://support.google.com/googleapi/answer/6158841 for instructions)
|
||||
|
||||
3. Set up your API key
|
||||
(see https://support.google.com/googleapi/answer/6158862 for instructions)
|
||||
|
||||
4. Copy your API key and run the command ``[p]set api youtube api_key <your_api_key_here>``
|
||||
|
||||
.. attention:: These tokens are sensitive and should only be
|
||||
used in a private channel or in DM with the bot.
|
||||
|
||||
.. _streams-command-streamset-twitchtoken:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
streamset twitchtoken
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamset twitchtoken
|
||||
|
||||
**Description**
|
||||
|
||||
Explains how to set the Twitch token.
|
||||
|
||||
To set the Twitch API tokens, follow these steps:
|
||||
|
||||
1. Go to this page: https://dev.twitch.tv/dashboard/apps.
|
||||
|
||||
2. Click Register Your Application.
|
||||
|
||||
3. Enter a name, set the OAuth Redirect URI to http://localhost, and select an Application Category of your choosing.
|
||||
|
||||
4. Click Register.
|
||||
|
||||
5. Copy your client ID and your client secret into:
|
||||
``[p]set api twitch client_id <your_client_id_here> client_secret <your_client_secret_here>``
|
||||
|
||||
.. attention:: These tokens are sensitive and should only be
|
||||
used in a private channel or in DM with the bot.
|
||||
|
||||
.. _streams-command-picarto:
|
||||
|
||||
^^^^^^^
|
||||
picarto
|
||||
^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]picarto <channel_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Check if a Picarto channel is live.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_name>``: The Picarto channel to check.
|
||||
|
||||
.. _streams-command-smashcast:
|
||||
|
||||
^^^^^^^^^
|
||||
smashcast
|
||||
^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]smashcast <channel_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Check if a Smashcast channel is live.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_name>``: The Smashcast channel to check.
|
||||
|
||||
.. _streams-command-twitchstream:
|
||||
|
||||
^^^^^^^^^^^^
|
||||
twitchstream
|
||||
^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]twitchstream <channel_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Check if a Twitch channel is live.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_name>``: The Twitch channel to check.
|
||||
|
||||
.. _streams-command-youtubestream:
|
||||
|
||||
^^^^^^^^^^^^^
|
||||
youtubestream
|
||||
^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]youtubestream <channel_id_or_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Check if a YouTube channel is live.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_id_or_name>``: The name or id of the YouTube channel to be checked.
|
||||
|
||||
.. _streams-command-streamalert:
|
||||
|
||||
^^^^^^^^^^^
|
||||
streamalert
|
||||
^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamalert
|
||||
|
||||
**Description**
|
||||
|
||||
Manage automated stream alerts.
|
||||
|
||||
.. _streams-command-streamalert-list:
|
||||
|
||||
^^^^^^^^^^^^^^^^
|
||||
streamalert list
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamalert list
|
||||
|
||||
**Description**
|
||||
|
||||
Lists all active alerts in the current server.
|
||||
|
||||
.. _streams-command-streamalert-picarto:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
streamalert picarto
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamalert picarto <channel_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle alerts in the current channel for the
|
||||
specified Picarto channel.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_name>``: The Picarto channel to toggle the alert for.
|
||||
|
||||
.. _streams-command-streamalert-smashcast:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
streamalert smashcast
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamalert smashcast <channel_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle alerts in the current channel for the
|
||||
specified Smashcast channel.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_name>``: The Smashcast channel to toggle the alert for.
|
||||
|
||||
.. _streams-command-streamalert-twitch-channel:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
streamalert twitch channel
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamalert twitch channel <channel_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle alerts in the current channel for the
|
||||
specified Twitch channel.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_name>``: The Twitch channel to toggle the alert for.
|
||||
|
||||
.. _streams-command-streamalert-youtube:
|
||||
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
streamalert youtube
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamalert youtube <channel_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle alerts in the current channel for the
|
||||
specified Picarto channel.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``<channel_id_or_name>``: The name or id of the YouTube channel to be checked.
|
||||
|
||||
.. _streams-command-streamalert-stop:
|
||||
|
||||
^^^^^^^^^^^^^^^^
|
||||
streamalert stop
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]streamalert stop [disable-all=No]
|
||||
|
||||
**Description**
|
||||
|
||||
Disable all stream alerts for this channel or server.
|
||||
|
||||
**Arguments**
|
||||
|
||||
* ``[disable-all]``: Defaults to ``no``. If this is set to ``yes``, all
|
||||
stream alerts in the current server will be disabled.
|
||||
If ``no`` or unspecified, all stream alerts in the
|
||||
current channel will be stopped.
|
||||
@@ -39,6 +39,9 @@ Welcome to Red - Discord Bot's documentation!
|
||||
cog_guides/cog_manager_ui
|
||||
cog_guides/core
|
||||
cog_guides/customcommands
|
||||
cog_guides/downloader
|
||||
cog_guides/economy
|
||||
cog_guides/streams
|
||||
red_core_data_statement
|
||||
|
||||
.. toctree::
|
||||
|
||||
@@ -33,19 +33,19 @@ msgstr "En voi muokata roolia {role.name}, koska se on korkeammalla kuin minun y
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "En voi antaa roolia {role.name} käyttäjälle {member.display_name}, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "En voi poistaa roolia {role.name} käyttäjältä {member.display_name}, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "En voi antaa sinun muokata roolia {role.name}, koska rooli on korkeammalla kuin sinun korkein rooli Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
msgid "I need manage roles permission to do that."
|
||||
msgstr ""
|
||||
msgstr "Tarvitsen \"manage roles\" -oikeuden tehdäkseni tämän."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
@@ -58,7 +58,7 @@ msgstr "Kokoelma palvelinhallintaohjelmia."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:162
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
msgstr "Käyttäjällä {member.display_name} on jo rooli {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:182
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
@@ -66,7 +66,7 @@ msgstr "Lisäsin {role.name} onnistuneesti {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:192
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
msgstr "Käyttäjällä {member.display_name} ei ole roolia {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:212
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
@@ -75,12 +75,12 @@ msgstr "Olen poistanut {role.name} onnistuneesti {member.display_name}"
|
||||
#: redbot/cogs/admin/admin.py:223
|
||||
#, docstring
|
||||
msgid "\\n Add a role to a user.\\n\\n Use double quotes if the role contains spaces.\\n If user is left blank it defaults to the author of the command.\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Lisää rooli käyttäjälle.\\n\\n Käytä kaksinkertaisia lainausmerkkejä, jos rooli sisältää välilyöntejä.\\n Jos käyttäjä jätetään tyhjäksi, se on oletuksena tekijä komennon.\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:239
|
||||
#, docstring
|
||||
msgid "\\n Remove a role from a user.\\n\\n Use double quotes if the role contains spaces.\\n If user is left blank it defaults to the author of the command.\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Lisää rooli käyttäjälle.\\n\\n Käytä kaksinkertaisia lainausmerkkejä, jos rooli sisältää välilyöntejä.\\n Jos käyttäjä jätetään tyhjäksi, se on oletuksena tekijä komennon.\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:253
|
||||
#, docstring
|
||||
@@ -90,7 +90,7 @@ msgstr "Muokkaa rooliasetuksia."
|
||||
#: redbot/cogs/admin/admin.py:260
|
||||
#, docstring
|
||||
msgid "\\n Edit a role's colour.\\n\\n Use double quotes if the role contains spaces.\\n Colour must be in hexadecimal format.\\n [Online colour picker](http://www.w3schools.com/colors/colors_picker.asp)\\n\\n Examples:\\n `[p]editrole colour \\\"The Transistor\\\" #ff0000`\\n `[p]editrole colour Test #ff9900`\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Muokkaa roolin väriä.\\n\\n Käytä kaksinkertaisia lainausmerkkejä, jos rooli sisältää välilyöntejä.\\n Värin on oltava heksadesimaalissa.\\n [Väripoimija](http://www.w3schools. om/colors/colors_picker. sp)\\n\\n Esimerkkejä:\\n `[p]editrole colour \\\"The Transistor\\\" #ff0000`\\n `[p]editrole colour Test #ff9900`\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:289 redbot/cogs/admin/admin.py:322
|
||||
msgid "Done."
|
||||
@@ -99,7 +99,7 @@ msgstr "Tehty."
|
||||
#: redbot/cogs/admin/admin.py:293
|
||||
#, docstring
|
||||
msgid "\\n Edit a role's name.\\n\\n Use double quotes if the role or the name contain spaces.\\n\\n Example:\\n `[p]editrole name \\\"The Transistor\\\" Test`\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Muokkaa roolin nimeä.\\n\\n Käytä kaksoislainausmerkkejä, jos rooli tai nimi sisältää välilyöntejä.\\n\\n Esimerkki:\\n `[p]editrole name \\\"The Transistor\\\" Test`\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:327
|
||||
#, docstring
|
||||
@@ -108,125 +108,125 @@ msgstr "Ilmoita viesti kaikille palvelimille, joihin botti on."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:334
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
msgstr "Ilmoittaminen on aloitettu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:341
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
msgstr "Peruuta käynnissä oleva ilmoitus."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
msgstr "Tällä hetkellä ei ole käynnissä olevaa ilmoitusta."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:346
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
msgstr "Tämänhetkinen ilmoitus on peruutettu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:352
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
msgstr "Muokkaa kuinka ilmoitukset lähetetään tässä guildissa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:357
|
||||
#, docstring
|
||||
msgid "\\n Change the channel where the bot will send announcements.\\n\\n If channel is left blank it defaults to the current channel.\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Muuta kanavaa, jossa botti lähettää ilmoituksia.\\n\\n Jos kanava jätetään tyhjäksi, se oletetaan nykyiselle kanavalle.\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:366
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
msgstr "Ilmoituskanava on asetettu {channel.mention} -kanavalle"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:371
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
msgstr "Poista ilmoituskanava käytöstä."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:396
|
||||
#, docstring
|
||||
msgid "Apply selfroles."
|
||||
msgstr ""
|
||||
msgstr "Hyväksy \"selfrolet\"."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:401
|
||||
#, docstring
|
||||
msgid "\\n Add a selfrole to yourself.\\n\\n Server admins must have configured the role as user settable.\\n NOTE: The role is case sensitive!\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Lisää selfrole itseesi.\\n\\n Palvelimen ylläpitäjien on täytynyt konfiguroida rooli käyttäjän asettamana.\\n HUOM: Rooli on kirjainkoolla herkkä!\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:412
|
||||
#, docstring
|
||||
msgid "\\n Remove a selfrole from yourself.\\n\\n Server admins must have configured the role as user settable.\\n NOTE: The role is case sensitive!\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Lisää selfrole itseesi.\\n\\n Palvelimen ylläpitäjien on täytynyt konfiguroida rooli käyttäjän asettamana.\\n HUOM: Rooli on kirjainkoolla herkkä!\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:423
|
||||
#, docstring
|
||||
msgid "\\n Lists all available selfroles.\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Luettele kaikki saatavilla olevat selfrot.\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
msgid "Available Selfroles:\\n{selfroles}"
|
||||
msgstr ""
|
||||
msgstr "Saatavilla olevat omafroles:\\n{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:439
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
msgstr "Hallitse selfroleja."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:444
|
||||
#, docstring
|
||||
msgid "\\n Add a role to the list of available selfroles.\\n\\n NOTE: The role is case sensitive!\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Lisää rooli saatavilla olevien selfrolien luetteloon.\\n\\n HUOM: Rooli on kirjainkoolla herkkä!\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "En voi antaa roolia {role.name} käyttäjälle, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:459
|
||||
msgid "Added."
|
||||
msgstr ""
|
||||
msgstr "Lisätty."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:462
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "Tämä rooli on jo selfrole."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:466
|
||||
#, docstring
|
||||
msgid "\\n Remove a role from the list of available selfroles.\\n\\n NOTE: The role is case sensitive!\\n "
|
||||
msgstr ""
|
||||
msgstr "\\n Lisää rooli saatavilla olevien selfrolien luetteloon.\\n\\n HUOM: Rooli on kirjainkoolla herkkä!\\n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "En voi antaa roolia {role.name} käyttäjälle, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
msgid "Removed."
|
||||
msgstr ""
|
||||
msgstr "Poistettu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:486
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
msgstr "Lukitse botti vain nykyisille palvelimille."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
msgstr "Botti ei ole enää palvelinlukittu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:493
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
msgstr "Botti on nyt palvelinlukittu."
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:68
|
||||
msgid "I could not announce to the following server: "
|
||||
msgstr ""
|
||||
msgstr "En voinut ilmoittaa seuraavalle palvelimelle: "
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:70
|
||||
msgid "I could not announce to the following servers: "
|
||||
msgstr ""
|
||||
msgstr "En voinut ilmoittaa seuraavalle palvelimelle: "
|
||||
|
||||
#: redbot/cogs/admin/converters.py:12
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
msgstr "Admin cog ei ole ladattu."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "Annettu rooli ei ole kelvollinen selfrole."
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ class LavalinkSetupCommands(MixinMeta, metaclass=CompositeMetaClass):
|
||||
java_path=exc_absolute
|
||||
),
|
||||
)
|
||||
await self.config.java_exc_path.set(exc_absolute)
|
||||
await self.config.java_exc_path.set(str(exc_absolute))
|
||||
await self.send_embed_msg(
|
||||
ctx,
|
||||
title=_("Java Executable Changed"),
|
||||
|
||||
@@ -18,34 +18,34 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:36
|
||||
#, docstring
|
||||
msgid "Music configuration options."
|
||||
msgstr ""
|
||||
msgstr "Musiikin konfirugointi asetukset."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:41
|
||||
#, docstring
|
||||
msgid "Manages the keyword whitelist and blacklist."
|
||||
msgstr ""
|
||||
msgstr "Hallitse avainsana valkoista- ja mustaalistaa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:46
|
||||
#, docstring
|
||||
msgid "Manages the global keyword whitelist/blacklist."
|
||||
msgstr ""
|
||||
msgstr "Hallitse globaalin avainsana valkoista/mustaalistaa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:50
|
||||
#, docstring
|
||||
msgid "Manages the global keyword whitelist."
|
||||
msgstr ""
|
||||
msgstr "Hallitse globaalin avainsanan valkoistalistaa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:56
|
||||
#, docstring
|
||||
msgid "Adds a keyword to the whitelist.\\n\\n If anything is added to whitelist, it will blacklist everything else.\\n "
|
||||
msgstr ""
|
||||
msgstr "Lisää avainsanan valkoiselle listalle.\\n\\n Jos jotain lisätään valkoiselle listalle, se mustalla listalla kaikki muu.\\n "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:70
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:135
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:260
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:325
|
||||
msgid "Keyword already in the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Avainsanat ovat jo valkoisella listalla."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:74
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:116
|
||||
@@ -54,67 +54,67 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:306
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:329
|
||||
msgid "Whitelist Modified"
|
||||
msgstr ""
|
||||
msgstr "Valkoista Listaa Muokattu"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:75
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:265
|
||||
msgid "Added `{whitelisted}` to the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Lisätty `{whitelisted}` valkoiselle listalle."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:83
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:273
|
||||
#, docstring
|
||||
msgid "List all keywords added to the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Listaa kaikki valkoiselle listalle lisätyt avainsanat."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:86
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:112
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:276
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:302
|
||||
msgid "Nothing in the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Ei mitään valkoisella listalla."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:102
|
||||
msgid "Global Whitelist"
|
||||
msgstr ""
|
||||
msgstr "Globaali valkoinen lista"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:109
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:299
|
||||
#, docstring
|
||||
msgid "Clear all keywords from the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Tyhjennä kaikki avainsanat valkoiselta listalta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:117
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:307
|
||||
msgid "All entries have been removed from the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Kaikki merkinnät on poistettu valkoiselta listalta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:124
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:314
|
||||
#, docstring
|
||||
msgid "Removes a keyword from the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Tyhjennä kaikki avainsanat valkoiselta listalta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:140
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:330
|
||||
msgid "Removed `{whitelisted}` from the whitelist."
|
||||
msgstr ""
|
||||
msgstr "Lisätty `{whitelisted}` valkoiselle listalle."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:147
|
||||
#, docstring
|
||||
msgid "Manages the global keyword blacklist."
|
||||
msgstr ""
|
||||
msgstr "Hallitse globaalin avainsanan valkoistalistaa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:153
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:342
|
||||
#, docstring
|
||||
msgid "Adds a keyword to the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Lisätty estettyjen luetteloon."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:164
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:353
|
||||
msgid "Keyword already in the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Avainsanat ovat jo valkoisella listalla."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:168
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:210
|
||||
@@ -123,93 +123,93 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:399
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:422
|
||||
msgid "Blacklist Modified"
|
||||
msgstr ""
|
||||
msgstr "Valkoista Listaa Muokattu"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:169
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:358
|
||||
msgid "Added `{blacklisted}` to the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Lisätty `{blacklisted}` mustalle listalle."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:177
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:366
|
||||
#, docstring
|
||||
msgid "List all keywords added to the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Listaa kaikki valkoiselle listalle lisätyt avainsanat."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:180
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:206
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:369
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:395
|
||||
msgid "Nothing in the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Ei mitään valkoisella listalla."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:196
|
||||
msgid "Global Blacklist"
|
||||
msgstr ""
|
||||
msgstr "Globaali Estolista"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:203
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:392
|
||||
#, docstring
|
||||
msgid "Clear all keywords added to the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Listaa kaikki valkoiselle listalle lisätyt avainsanat."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:211
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:400
|
||||
msgid "All entries have been removed from the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Kaikki merkinnät on poistettu valkoiselta listalta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:218
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:407
|
||||
#, docstring
|
||||
msgid "Removes a keyword from the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Tyhjennä kaikki avainsanat valkoiselta listalta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:229
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:418
|
||||
msgid "Keyword is not in the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Avainsanat ovat jo valkoisella listalla."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:234
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:423
|
||||
msgid "Removed `{blacklisted}` from the blacklist."
|
||||
msgstr ""
|
||||
msgstr "Lisätty `{blacklisted}` mustalle listalle."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:242
|
||||
#, docstring
|
||||
msgid "Manages the keyword whitelist."
|
||||
msgstr ""
|
||||
msgstr "Hallitsee palvelimen valkoista listaa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:246
|
||||
#, docstring
|
||||
msgid "Adds a keyword to the whitelist.\\n\\n If anything is added to whitelist, it will blacklist everything else.\\n "
|
||||
msgstr ""
|
||||
msgstr "Lisää avainsanan valkoiselle listalle.\\n\\n Jos jotain lisätään valkoiselle listalle, se mustalla listalla kaikki muu.\\n "
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:292
|
||||
msgid "Whitelist"
|
||||
msgstr ""
|
||||
msgstr "Valkoinen lista"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:338
|
||||
#, docstring
|
||||
msgid "Manages the keyword blacklist."
|
||||
msgstr ""
|
||||
msgstr "Hallitsee palvelimen valkoista listaa."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:385
|
||||
msgid "Blacklist"
|
||||
msgstr ""
|
||||
msgstr "Musta lista"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:432
|
||||
#, docstring
|
||||
msgid "Change auto-play setting."
|
||||
msgstr ""
|
||||
msgstr "Muuta automaattisen toiston asetusta."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:436
|
||||
#, docstring
|
||||
msgid "Toggle auto-play when there no songs in queue."
|
||||
msgstr ""
|
||||
msgstr "Vaihda automaattisen toiston tilaa, kun jonossa ei ole kappaleita."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:440
|
||||
msgid "Auto-play when queue ends: {true_or_false}."
|
||||
msgstr ""
|
||||
msgstr "Toista automaattisesti, kun jono loppuu: {true_or_false}."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:441
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:585
|
||||
@@ -252,7 +252,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:118
|
||||
#: redbot/cogs/audio/core/commands/llset.py:127
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
msgstr "Käytössä"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:441
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:585
|
||||
@@ -295,15 +295,15 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:118
|
||||
#: redbot/cogs/audio/core/commands/llset.py:127
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
msgstr "Ei käytössä"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:445
|
||||
msgid "\\nRepeat has been disabled."
|
||||
msgstr ""
|
||||
msgstr "Toistaminen on poistettu käytöstä."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:448
|
||||
msgid "\\nAuto-disconnecting at queue end has been disabled."
|
||||
msgstr ""
|
||||
msgstr "\\nYhteyden katkaisu jonon lopussa on poistettu käytöstä."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:451
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:546
|
||||
@@ -343,7 +343,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/llset.py:174
|
||||
#: redbot/cogs/audio/core/commands/llset.py:199
|
||||
msgid "Setting Changed"
|
||||
msgstr ""
|
||||
msgstr "Asetukset muutettu"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:464
|
||||
#, docstring
|
||||
@@ -367,7 +367,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1815
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1981
|
||||
msgid "Playlists Are Not Available"
|
||||
msgstr ""
|
||||
msgstr "Soittolistat eivät ole saatavilla"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:498
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:105
|
||||
@@ -386,7 +386,7 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1816
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1982
|
||||
msgid "The playlist section of Audio is currently unavailable"
|
||||
msgstr ""
|
||||
msgstr "Soittolistaosio Audio:ssa ei ole juuri nyt saatavilla"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:501
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:106
|
||||
@@ -405,32 +405,32 @@ msgstr ""
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1819
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1985
|
||||
msgid "Check your logs."
|
||||
msgstr ""
|
||||
msgstr "Tarkista logisi."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:516
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:532
|
||||
msgid "No Playlist Found"
|
||||
msgstr ""
|
||||
msgstr "Soittolistoja ei löytynyt"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:517
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:124
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1498
|
||||
msgid "Could not match '{arg}' to a playlist"
|
||||
msgstr ""
|
||||
msgstr "Ei voitu täsmätä '{arg}soittolistaan"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:524
|
||||
msgid "No Tracks Found"
|
||||
msgstr ""
|
||||
msgstr "Kappaleita ei löytynyt"
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:525
|
||||
msgid "Playlist {name} has no tracks."
|
||||
msgstr ""
|
||||
msgstr "Soittolistalla {name} ei ole kappaleita."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:533
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1587
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1698
|
||||
msgid "Playlist {id} does not exist in {scope} scope."
|
||||
msgstr ""
|
||||
msgstr "Soittolistaa {id} ei löydy kanavalla {scope}."
|
||||
|
||||
#: redbot/cogs/audio/core/commands/audioset.py:540
|
||||
#: redbot/cogs/audio/core/commands/playlists.py:1016
|
||||
|
||||
@@ -25,11 +25,11 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:77
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
msgstr "Käytössä"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:77
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
msgstr "Ei käytössä"
|
||||
|
||||
#: redbot/cogs/audio/core/events/dpy.py:124
|
||||
msgid "No DJ role found. Disabling DJ mode."
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Nejprve se připojte k hlasovému kanálu."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Verbinde dich zuerst mit einem Sprachkanal."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "Verbindung zu Lavalink wurde noch nicht hergestellt."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Maximale Warteschlangengröße erreicht."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Límite de cola alcanzado."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Rejoignez un salon vocal d'abord."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "La connexion à Lavalink n'a pas encore été établie."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Impossible de jouer des pistes"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Limite de la file de lecture atteinte."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Impossible de jouer des pistes"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "먼저 음성체널에 연결하세요."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "라바링크와 연결되지 않았습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "트랙을 재생할수 없습니다"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "큐 최대 제한에 도달했습니다."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "트랙을 재생할수 없습니다"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Koble til en talekanal først."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "Tilkoblingen til Lavalink er ikke etablert ennå."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Kan ikke spille spor"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Grensen for kø er nådd."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Kan ikke spille spor"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Verbind eerst met een spraakkanaal."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "Er is nog geen verbinding gemaakt met Lavalink."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Najpierw połącz się z kanałem głosowym."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "Połączenie z Lavalink nie zostało jeszcze nawiązane."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Nie można odtworzyć utworów"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Osiągnięto limit rozmiaru kolejki."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Nie można odtworzyć utworów"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Сначала подключитесь к голосовому кана
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "Соединение с Lavalink еще не установлено."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Не удается воспроизвести треки"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Достигнут предел размера очереди."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Не удается воспроизвести треки"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Latin)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr "Önce bir sesli bir kanala katılın."
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "Lavalink ile bağlantı henüz sağlanmadı."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Parçalar Çalınamıyor"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr "Sıraya alma limitine ulaşıldı."
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "Parçalar Çalınamıyor"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional, Hong Kong\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-22 12:30+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -44,16 +44,16 @@ msgstr ""
|
||||
msgid "Connection to Lavalink has not yet been established."
|
||||
msgstr "尚未與Lavalink建立連接。"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "無法播放歌曲"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
#: redbot/cogs/audio/core/utilities/player.py:444
|
||||
#: redbot/cogs/audio/core/utilities/player.py:528
|
||||
msgid "Queue size limit reached."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:116
|
||||
msgid "Unable To Play Tracks"
|
||||
msgstr "無法播放歌曲"
|
||||
|
||||
#: redbot/cogs/audio/core/utilities/formatting.py:154
|
||||
#: redbot/cogs/audio/core/utilities/player.py:604
|
||||
msgid "Track Enqueued"
|
||||
|
||||
@@ -46,7 +46,7 @@ msgstr ""
|
||||
#: redbot/cogs/cleanup/cleanup.py:262
|
||||
#, docstring
|
||||
msgid "Delete all messages after a specified message.\\n\\n To get a message id, enable developer mode in Discord's\\n settings, 'appearance' tab. Then right click a message\\n and copy its id.\\n\\n **Arguments:**\\n\\n - `<message_id>` The id of the message to cleanup after. This message won't be deleted.\\n - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\\n "
|
||||
msgstr ""
|
||||
msgstr "Supprime tous les messages après un message spécifié.\\n\\n Pour obtenir l'ID d'un message, activer le mode développeur dans les paramètres\\n de Discord, dans l'onglet \"Apparence\". Puis faites clic droit sur un message\\n et copier son ID.\\n\\n **Arguments:**\\n\\n - `<message_id>` L'ID du message à nettoyer après. Ce message ne sera pas supprimé.\\n - `<delete_pinned>` Si il faut supprimer les messages épinglés ou non. Par défaut sur Faux.\\n "
|
||||
|
||||
#: redbot/cogs/cleanup/cleanup.py:280 redbot/cogs/cleanup/cleanup.py:326
|
||||
msgid "Message not found."
|
||||
|
||||
@@ -481,7 +481,19 @@ class Downloader(commands.Cog):
|
||||
@commands.command()
|
||||
@checks.is_owner()
|
||||
async def pipinstall(self, ctx: commands.Context, *deps: str) -> None:
|
||||
"""Install a group of dependencies using pip."""
|
||||
"""
|
||||
Install a group of dependencies using pip.
|
||||
|
||||
Examples:
|
||||
- `[p]pipinstall bs4`
|
||||
- `[p]pipinstall py-cpuinfo psutil`
|
||||
|
||||
Improper usage of this command can break your bot, be careful.
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `[deps...]` The package or packages you wish to install.
|
||||
"""
|
||||
if not deps:
|
||||
await ctx.send_help()
|
||||
return
|
||||
@@ -502,7 +514,7 @@ class Downloader(commands.Cog):
|
||||
@commands.group()
|
||||
@checks.is_owner()
|
||||
async def repo(self, ctx: commands.Context) -> None:
|
||||
"""Repo management commands."""
|
||||
"""Base command for repository management."""
|
||||
pass
|
||||
|
||||
@repo.command(name="add")
|
||||
@@ -511,8 +523,18 @@ class Downloader(commands.Cog):
|
||||
) -> None:
|
||||
"""Add a new repo.
|
||||
|
||||
Examples:
|
||||
- `[p]repo add 26-Cogs https://github.com/Twentysix26/x26-Cogs`
|
||||
- `[p]repo add Laggrons-Dumb-Cogs https://github.com/retke/Laggrons-Dumb-Cogs v3`
|
||||
|
||||
Repo names can only contain characters A-z, numbers, underscores, and hyphens.
|
||||
The branch will be the default branch if not specified.
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<name>` The name given to the repo.
|
||||
- `<repo_url>` URL to the cog branch. Usually GitHub or GitLab.
|
||||
- `[branch]` Optional branch to install cogs from.
|
||||
"""
|
||||
agreed = await do_install_agreement(ctx)
|
||||
if not agreed:
|
||||
@@ -562,7 +584,16 @@ class Downloader(commands.Cog):
|
||||
|
||||
@repo.command(name="delete", aliases=["remove", "del"], usage="<repo_name>")
|
||||
async def _repo_del(self, ctx: commands.Context, repo: Repo) -> None:
|
||||
"""Remove a repo and its files."""
|
||||
"""
|
||||
Remove a repo and its files.
|
||||
|
||||
Example:
|
||||
- `[p]repo delete 26-Cogs`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repo_name>` The name of an already added repo
|
||||
"""
|
||||
await self._repo_manager.delete_repo(repo.name)
|
||||
|
||||
await ctx.send(
|
||||
@@ -583,7 +614,15 @@ class Downloader(commands.Cog):
|
||||
|
||||
@repo.command(name="info", usage="<repo_name>")
|
||||
async def _repo_info(self, ctx: commands.Context, repo: Repo) -> None:
|
||||
"""Show information about a repo."""
|
||||
"""Show information about a repo.
|
||||
|
||||
Example:
|
||||
- `[p]repo info 26-Cogs`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repo_name>` The name of the repo to show info about.
|
||||
"""
|
||||
made_by = ", ".join(repo.author) or _("Missing from info.json")
|
||||
|
||||
information = _("Repo url: {repo_url}\n").format(repo_url=repo.clean_url)
|
||||
@@ -601,7 +640,19 @@ class Downloader(commands.Cog):
|
||||
|
||||
@repo.command(name="update")
|
||||
async def _repo_update(self, ctx: commands.Context, *repos: Repo) -> None:
|
||||
"""Update all repos, or ones of your choosing."""
|
||||
"""Update all repos, or ones of your choosing.
|
||||
|
||||
This will *not* update the cogs installed from those repos.
|
||||
|
||||
Examples:
|
||||
- `[p]repo update`
|
||||
- `[p]repo update 26-Cogs`
|
||||
- `[p]repo update 26-Cogs Laggrons-Dumb-Cogs`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `[repos...]` The name or names of repos to update. If omitted, all repos are updated.
|
||||
"""
|
||||
async with ctx.typing():
|
||||
updated: Set[str]
|
||||
|
||||
@@ -627,15 +678,17 @@ class Downloader(commands.Cog):
|
||||
@commands.group()
|
||||
@checks.is_owner()
|
||||
async def cog(self, ctx: commands.Context) -> None:
|
||||
"""Cog installation management commands."""
|
||||
"""Base command for cog installation management commands."""
|
||||
pass
|
||||
|
||||
@cog.command(name="reinstallreqs", hidden=True)
|
||||
async def _cog_reinstallreqs(self, ctx: commands.Context) -> None:
|
||||
"""
|
||||
This command should not be used unless Red specifically asks for it.
|
||||
|
||||
This command will reinstall cog requirements and shared libraries for all installed cogs.
|
||||
|
||||
Red might ask user to use this when it clears contents of lib folder
|
||||
Red might ask the owner to use this when it clears contents of the lib folder
|
||||
because of change in minor version of Python.
|
||||
"""
|
||||
async with ctx.typing():
|
||||
@@ -686,14 +739,39 @@ class Downloader(commands.Cog):
|
||||
|
||||
@cog.command(name="install", usage="<repo_name> <cogs>")
|
||||
async def _cog_install(self, ctx: commands.Context, repo: Repo, *cog_names: str) -> None:
|
||||
"""Install a cog from the given repo."""
|
||||
"""Install a cog from the given repo.
|
||||
|
||||
Examples:
|
||||
- `[p]cog install 26-Cogs defender`
|
||||
- `[p]cog install Laggrons-Dumb-Cogs say roleinvite`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repo_name>` The name of the repo to install cogs from.
|
||||
- `<cogs>` The cog or cogs to install.
|
||||
"""
|
||||
await self._cog_installrev(ctx, repo, None, cog_names)
|
||||
|
||||
@cog.command(name="installversion", usage="<repo_name> <revision> <cogs>")
|
||||
async def _cog_installversion(
|
||||
self, ctx: commands.Context, repo: Repo, rev: str, *cog_names: str
|
||||
) -> None:
|
||||
"""Install a cog from the specified revision of given repo."""
|
||||
"""Install a cog from the specified revision of given repo.
|
||||
|
||||
Revisions are "commit ids" that point to the point in the code when a specific change was made.
|
||||
The latest revision can be found in the URL bar for any GitHub repo by [pressing "y" on that repo](https://docs.github.com/en/free-pro-team@latest/github/managing-files-in-a-repository/getting-permanent-links-to-files#press-y-to-permalink-to-a-file-in-a-specific-commit).
|
||||
|
||||
Older revisions can be found in the URL bar by [viewing the commit history of any repo](https://cdn.discordapp.com/attachments/133251234164375552/775760247787749406/unknown.png)
|
||||
|
||||
Example:
|
||||
- `[p]cog installversion Broken-Repo e798cc268e199612b1316a3d1f193da0770c7016 cog_name`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repo_name>` The name of the repo to install cogs from.
|
||||
- `<revision>` The revision to install from.
|
||||
- `<cogs>` The cog or cogs to install.
|
||||
"""
|
||||
await self._cog_installrev(ctx, repo, rev, cog_names)
|
||||
|
||||
async def _cog_installrev(
|
||||
@@ -798,6 +876,14 @@ class Downloader(commands.Cog):
|
||||
|
||||
You may only uninstall cogs which were previously installed
|
||||
by Downloader.
|
||||
|
||||
Examples:
|
||||
- `[p]cog uninstall 26-Cogs defender`
|
||||
- `[p]cog uninstall Laggrons-Dumb-Cogs say roleinvite`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<cogs>` The cog or cogs to uninstall.
|
||||
"""
|
||||
if not cogs:
|
||||
await ctx.send_help()
|
||||
@@ -839,7 +925,16 @@ class Downloader(commands.Cog):
|
||||
|
||||
@cog.command(name="pin", usage="<cogs>")
|
||||
async def _cog_pin(self, ctx: commands.Context, *cogs: InstalledCog) -> None:
|
||||
"""Pin cogs - this will lock cogs on their current version."""
|
||||
"""Pin cogs - this will lock cogs on their current version.
|
||||
|
||||
Examples:
|
||||
- `[p]cog pin defender`
|
||||
- `[p]cog pin outdated_cog1 outdated_cog2`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<cogs>` The cog or cogs to pin. Must already be installed.
|
||||
"""
|
||||
if not cogs:
|
||||
await ctx.send_help()
|
||||
return
|
||||
@@ -862,7 +957,15 @@ class Downloader(commands.Cog):
|
||||
|
||||
@cog.command(name="unpin", usage="<cogs>")
|
||||
async def _cog_unpin(self, ctx: commands.Context, *cogs: InstalledCog) -> None:
|
||||
"""Unpin cogs - this will remove update lock from cogs."""
|
||||
"""Unpin cogs - this will remove the update lock from those cogs.
|
||||
|
||||
Examples:
|
||||
- `[p]cog unpin defender`
|
||||
- `[p]cog unpin updated_cog1 updated_cog2`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<cogs>` The cog or cogs to unpin. Must already be installed and pinned."""
|
||||
if not cogs:
|
||||
await ctx.send_help()
|
||||
return
|
||||
@@ -947,12 +1050,30 @@ class Downloader(commands.Cog):
|
||||
|
||||
@cog.command(name="update")
|
||||
async def _cog_update(self, ctx: commands.Context, *cogs: InstalledCog) -> None:
|
||||
"""Update all cogs, or ones of your choosing."""
|
||||
"""Update all cogs, or ones of your choosing.
|
||||
|
||||
Examples:
|
||||
- `[p]cog update`
|
||||
- `[p]cog update defender`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `[cogs...]` The cog or cogs to update. If omitted, all cogs are updated.
|
||||
"""
|
||||
await self._cog_update_logic(ctx, cogs=cogs)
|
||||
|
||||
@cog.command(name="updateallfromrepos", usage="<repos>")
|
||||
async def _cog_updateallfromrepos(self, ctx: commands.Context, *repos: Repo) -> None:
|
||||
"""Update all cogs from repos of your choosing."""
|
||||
"""Update all cogs from repos of your choosing.
|
||||
|
||||
Examples:
|
||||
- `[p]cog updateallfromrepos 26-Cogs`
|
||||
- `[p]cog updateallfromrepos Laggrons-Dumb-Cogs 26-Cogs`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repos>` The repo or repos to update all cogs from.
|
||||
"""
|
||||
if not repos:
|
||||
await ctx.send_help()
|
||||
return
|
||||
@@ -964,9 +1085,20 @@ class Downloader(commands.Cog):
|
||||
) -> None:
|
||||
"""Update all cogs, or ones of your choosing to chosen revision of one repo.
|
||||
|
||||
Note that update doesn't mean downgrade and therefore revision
|
||||
has to be newer than the one that cog currently has. If you want to
|
||||
Note that update doesn't mean downgrade and therefore `revision`
|
||||
has to be newer than the version that cog currently has installed. If you want to
|
||||
downgrade the cog, uninstall and install it again.
|
||||
|
||||
See `[p]cog installversion` for an explanation of `revision`.
|
||||
|
||||
Example:
|
||||
- `[p]cog updatetoversion Broken-Repo e798cc268e199612b1316a3d1f193da0770c7016 cog_name`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repo_name>` The repo or repos to update all cogs from.
|
||||
- `<revision>` The revision to update to.
|
||||
- `[cogs]` The cog or cogs to update.
|
||||
"""
|
||||
await self._cog_update_logic(ctx, repo=repo, rev=rev, cogs=cogs)
|
||||
|
||||
@@ -1089,7 +1221,15 @@ class Downloader(commands.Cog):
|
||||
|
||||
@cog.command(name="list", usage="<repo_name>")
|
||||
async def _cog_list(self, ctx: commands.Context, repo: Repo) -> None:
|
||||
"""List all available cogs from a single repo."""
|
||||
"""List all available cogs from a single repo.
|
||||
|
||||
Example:
|
||||
- `[p]cog list 26-Cogs`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repo_name>` The repo to list cogs from.
|
||||
"""
|
||||
installed = await self.installed_cogs()
|
||||
installed_str = ""
|
||||
if installed:
|
||||
@@ -1113,7 +1253,16 @@ class Downloader(commands.Cog):
|
||||
|
||||
@cog.command(name="info", usage="<repo_name> <cog_name>")
|
||||
async def _cog_info(self, ctx: commands.Context, repo: Repo, cog_name: str) -> None:
|
||||
"""List information about a single cog."""
|
||||
"""List information about a single cog.
|
||||
|
||||
Example:
|
||||
- `[p]cog info 26-Cogs defender`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<repo_name>` The repo to get cog info from.
|
||||
- `<cog_name>` The cog to get info on.
|
||||
"""
|
||||
cog = discord.utils.get(repo.available_cogs, name=cog_name)
|
||||
if cog is None:
|
||||
await ctx.send(
|
||||
@@ -1424,6 +1573,13 @@ class Downloader(commands.Cog):
|
||||
"""Find which cog a command comes from.
|
||||
|
||||
This will only work with loaded cogs.
|
||||
|
||||
Example:
|
||||
- `[p]findcog ping`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<command_name>` The command to search for.
|
||||
"""
|
||||
command = ctx.bot.all_commands.get(command_name)
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ msgstr "Svaret ditt har gått ut på tid, vennligst prøv igjen."
|
||||
#: redbot/cogs/downloader/converters.py:14
|
||||
#: redbot/cogs/downloader/repo_manager.py:176
|
||||
msgid "No Downloader cog found."
|
||||
msgstr "Ingen nedlastingskog funnet."
|
||||
msgstr "Ingen nedlastings cog funnet."
|
||||
|
||||
#: redbot/cogs/downloader/converters.py:19
|
||||
msgid "Cog `{cog_name}` is not installed."
|
||||
@@ -57,7 +57,7 @@ msgstr "Noen biblioteker kunne ikke installeres. Sjekk loggene for en komplett l
|
||||
#: redbot/cogs/downloader/downloader.py:505
|
||||
#, docstring
|
||||
msgid "Repo management commands."
|
||||
msgstr "Repo ledelse kommandoer."
|
||||
msgstr "Repo ledelseskommandoer."
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:512
|
||||
#, docstring
|
||||
@@ -184,12 +184,12 @@ msgstr "Cog-krav og delte biblioteker for alle installerte cogs er reinstallert.
|
||||
#: redbot/cogs/downloader/downloader.py:689
|
||||
#, docstring
|
||||
msgid "Install a cog from the given repo."
|
||||
msgstr "Installer en cog fra den angitte repoen."
|
||||
msgstr "Installer en cog fra den angitte repo."
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:696
|
||||
#, docstring
|
||||
msgid "Install a cog from the specified revision of given repo."
|
||||
msgstr "Installer en cog fra den angitte versjonen av det angitte repoet."
|
||||
msgstr "Installer en cog fra den angitte versjonen av det angitte repo."
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:711
|
||||
msgid "Error: short sha1 `{rev}` is ambiguous. Possible candidates:\\n"
|
||||
@@ -412,7 +412,7 @@ msgstr " (Minimum: {min_version}"
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:1249
|
||||
msgid ", at most: {max_version}"
|
||||
msgstr ", best: {max_version}"
|
||||
msgstr ", på det meste {max_version}"
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:1257
|
||||
msgid "\\nThese cogs require higher python version than you have: "
|
||||
@@ -440,7 +440,7 @@ msgstr "\\nDu kan bruke {command} til å se de oppdaterte utsagnet\\n"
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:1349
|
||||
msgid "\\nFailed to update cogs: "
|
||||
msgstr "\\nKunne ikke oppdatere tannhjul: "
|
||||
msgstr "\\nKunne ikke oppdatere cogs: "
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:1351
|
||||
msgid "No cogs were updated."
|
||||
@@ -460,7 +460,7 @@ msgstr "Ingen av de oppdaterte cogs ble lastet inn. Oppdateringen var fullført.
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:1371
|
||||
msgid "Would you like to reload the updated cogs?"
|
||||
msgstr "Ønsker du å laste de oppdaterte loggene på nytt?"
|
||||
msgstr "Ønsker du å laste de oppdaterte cog på nytt?"
|
||||
|
||||
#: redbot/cogs/downloader/downloader.py:1394
|
||||
msgid "OK then."
|
||||
|
||||
@@ -167,14 +167,21 @@ class Economy(commands.Cog):
|
||||
@guild_only_check()
|
||||
@commands.group(name="bank")
|
||||
async def _bank(self, ctx: commands.Context):
|
||||
"""Manage the bank."""
|
||||
"""Base command to manage the bank."""
|
||||
pass
|
||||
|
||||
@_bank.command()
|
||||
async def balance(self, ctx: commands.Context, user: discord.Member = None):
|
||||
"""Show the user's account balance.
|
||||
|
||||
Defaults to yours."""
|
||||
Example:
|
||||
- `[p]bank balance`
|
||||
- `[p]bank balance @Twentysix`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<user>` The user to check the balance of. If omitted, defaults to your own balance.
|
||||
"""
|
||||
if user is None:
|
||||
user = ctx.author
|
||||
|
||||
@@ -192,7 +199,18 @@ class Economy(commands.Cog):
|
||||
|
||||
@_bank.command()
|
||||
async def transfer(self, ctx: commands.Context, to: discord.Member, amount: int):
|
||||
"""Transfer currency to other users."""
|
||||
"""Transfer currency to other users.
|
||||
|
||||
This will come out of your balance, so make sure you have enough.
|
||||
|
||||
Example:
|
||||
- `[p]bank transfer @Twentysix 500`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<to>` The user to give currency to.
|
||||
- `<amount>` The amount of currency to give.
|
||||
"""
|
||||
from_ = ctx.author
|
||||
currency = await bank.get_currency_name(ctx.guild)
|
||||
|
||||
@@ -214,14 +232,19 @@ class Economy(commands.Cog):
|
||||
@checks.admin_or_permissions(manage_guild=True)
|
||||
@_bank.command(name="set")
|
||||
async def _set(self, ctx: commands.Context, to: discord.Member, creds: SetParser):
|
||||
"""Set the balance of user's bank account.
|
||||
"""Set the balance of a user's bank account.
|
||||
|
||||
Passing positive and negative values will add/remove currency instead.
|
||||
Putting + or - signs before the amount will add/remove currency on the user's bank account instead.
|
||||
|
||||
Examples:
|
||||
- `[p]bank set @Twentysix 26` - Sets balance to 26
|
||||
- `[p]bank set @Twentysix +2` - Increases balance by 2
|
||||
- `[p]bank set @Twentysix -6` - Decreases balance by 6
|
||||
- `[p]bank set @Twentysix 26` - Sets balance to 26
|
||||
- `[p]bank set @Twentysix +2` - Increases balance by 2
|
||||
- `[p]bank set @Twentysix -6` - Decreases balance by 6
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<to>` The user to set the currency of.
|
||||
- `<creds>` The amount of currency to set their balance to.
|
||||
"""
|
||||
author = ctx.author
|
||||
currency = await bank.get_currency_name(ctx.guild)
|
||||
@@ -260,7 +283,16 @@ class Economy(commands.Cog):
|
||||
@checks.guildowner_or_permissions(administrator=True)
|
||||
@_bank.command()
|
||||
async def reset(self, ctx, confirmation: bool = False):
|
||||
"""Delete all bank accounts."""
|
||||
"""Delete all bank accounts.
|
||||
|
||||
Examples:
|
||||
- `[p]bank reset` - Did not confirm. Shows the help message.
|
||||
- `[p]bank reset yes`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<confirmation>` This will default to false unless specified.
|
||||
"""
|
||||
if confirmation is False:
|
||||
await ctx.send(
|
||||
_(
|
||||
@@ -283,14 +315,25 @@ class Economy(commands.Cog):
|
||||
@checks.admin_or_permissions(manage_guild=True)
|
||||
@_bank.group(name="prune")
|
||||
async def _prune(self, ctx):
|
||||
"""Prune bank accounts."""
|
||||
"""Base command for pruning bank accounts."""
|
||||
pass
|
||||
|
||||
@_prune.command(name="server", aliases=["guild", "local"])
|
||||
@commands.guild_only()
|
||||
@checks.guildowner()
|
||||
async def _local(self, ctx, confirmation: bool = False):
|
||||
"""Prune bank accounts for users no longer in the server."""
|
||||
"""Prune bank accounts for users no longer in the server.
|
||||
|
||||
Cannot be used with a global bank. See `[p]bank prune global`.
|
||||
|
||||
Examples:
|
||||
- `[p]bank prune server` - Did not confirm. Shows the help message.
|
||||
- `[p]bank prune server yes`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<confirmation>` This will default to false unless specified.
|
||||
"""
|
||||
global_bank = await bank.is_global()
|
||||
if global_bank is True:
|
||||
return await ctx.send(_("This command cannot be used with a global bank."))
|
||||
@@ -312,7 +355,18 @@ class Economy(commands.Cog):
|
||||
@_prune.command(name="global")
|
||||
@checks.is_owner()
|
||||
async def _global(self, ctx, confirmation: bool = False):
|
||||
"""Prune bank accounts for users who no longer share a server with the bot."""
|
||||
"""Prune bank accounts for users who no longer share a server with the bot.
|
||||
|
||||
Cannot be used without a global bank. See `[p]bank prune server`.
|
||||
|
||||
Examples:
|
||||
- `[p]bank prune global` - Did not confirm. Shows the help message.
|
||||
- `[p]bank prune global yes`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<confirmation>` This will default to false unless specified.
|
||||
"""
|
||||
global_bank = await bank.is_global()
|
||||
if global_bank is False:
|
||||
return await ctx.send(_("This command cannot be used with a local bank."))
|
||||
@@ -338,7 +392,17 @@ class Economy(commands.Cog):
|
||||
async def user(
|
||||
self, ctx, member_or_id: Union[discord.Member, RawUserIds], confirmation: bool = False
|
||||
):
|
||||
"""Delete the bank account of a specified user."""
|
||||
"""Delete the bank account of a specified user.
|
||||
|
||||
Examples:
|
||||
- `[p]bank prune user @TwentySix` - Did not confirm. Shows the help message.
|
||||
- `[p]bank prune user @TwentySix yes`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<user>` The user to delete the bank of. Takes mentions, names, and user ids.
|
||||
- `<confirmation>` This will default to false unless specified.
|
||||
"""
|
||||
global_bank = await bank.is_global()
|
||||
if global_bank is False and ctx.guild is None:
|
||||
return await ctx.send(_("This command cannot be used in DMs with a local bank."))
|
||||
@@ -364,7 +428,10 @@ class Economy(commands.Cog):
|
||||
@guild_only_check()
|
||||
@commands.command()
|
||||
async def payday(self, ctx: commands.Context):
|
||||
"""Get some free currency."""
|
||||
"""Get some free currency.
|
||||
|
||||
The amount awarded and frequency can be configured.
|
||||
"""
|
||||
author = ctx.author
|
||||
guild = ctx.guild
|
||||
|
||||
@@ -480,6 +547,16 @@ class Economy(commands.Cog):
|
||||
"""Print the leaderboard.
|
||||
|
||||
Defaults to top 10.
|
||||
|
||||
Examples:
|
||||
- `[p]leaderboard`
|
||||
- `[p]leaderboard 50` - Shows the top 50 instead of top 10.
|
||||
- `[p]leaderboard 100 yes` - Shows the top 100 from all servers.
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<top>` How many positions on the leaderboard to show. Defaults to 10 if omitted.
|
||||
- `<show_global>` Whether to include results from all servers. This will default to false unless specified.
|
||||
"""
|
||||
guild = ctx.guild
|
||||
author = ctx.author
|
||||
@@ -596,7 +673,15 @@ class Economy(commands.Cog):
|
||||
@commands.command()
|
||||
@guild_only_check()
|
||||
async def slot(self, ctx: commands.Context, bid: int):
|
||||
"""Use the slot machine."""
|
||||
"""Use the slot machine.
|
||||
|
||||
Example:
|
||||
- `[p]slot 50`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<bid>` The amount to bet on the slot machine. Winning payouts are higher when you bet more.
|
||||
"""
|
||||
author = ctx.author
|
||||
guild = ctx.guild
|
||||
channel = ctx.channel
|
||||
@@ -713,7 +798,7 @@ class Economy(commands.Cog):
|
||||
@checks.admin_or_permissions(manage_guild=True)
|
||||
@commands.group()
|
||||
async def economyset(self, ctx: commands.Context):
|
||||
"""Manage Economy settings."""
|
||||
"""Base command to manage Economy settings."""
|
||||
|
||||
@economyset.command(name="showsettings")
|
||||
async def economyset_showsettings(self, ctx: commands.Context):
|
||||
@@ -750,7 +835,15 @@ class Economy(commands.Cog):
|
||||
|
||||
@economyset.command()
|
||||
async def slotmin(self, ctx: commands.Context, bid: int):
|
||||
"""Set the minimum slot machine bid."""
|
||||
"""Set the minimum slot machine bid.
|
||||
|
||||
Example:
|
||||
- `[p]economyset slotmin 10`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<bid>` The new minimum bid for using the slot machine. Default is 5.
|
||||
"""
|
||||
if bid < 1:
|
||||
await ctx.send(_("Invalid min bid amount."))
|
||||
return
|
||||
@@ -768,7 +861,15 @@ class Economy(commands.Cog):
|
||||
|
||||
@economyset.command()
|
||||
async def slotmax(self, ctx: commands.Context, bid: int):
|
||||
"""Set the maximum slot machine bid."""
|
||||
"""Set the maximum slot machine bid.
|
||||
|
||||
Example:
|
||||
- `[p]economyset slotmax 50`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<bid>` The new maximum bid for using the slot machine. Default is 100.
|
||||
"""
|
||||
slot_min = await self.config.SLOT_MIN()
|
||||
if bid < 1 or bid < slot_min:
|
||||
await ctx.send(
|
||||
@@ -789,7 +890,15 @@ class Economy(commands.Cog):
|
||||
|
||||
@economyset.command()
|
||||
async def slottime(self, ctx: commands.Context, seconds: int):
|
||||
"""Set the cooldown for the slot machine."""
|
||||
"""Set the cooldown for the slot machine.
|
||||
|
||||
Example:
|
||||
- `[p]economyset slottime 10`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<seconds>` The new number of seconds to wait in between uses of the slot machine. Default is 5.
|
||||
"""
|
||||
guild = ctx.guild
|
||||
if await bank.is_global():
|
||||
await self.config.SLOT_TIME.set(seconds)
|
||||
@@ -799,7 +908,15 @@ class Economy(commands.Cog):
|
||||
|
||||
@economyset.command()
|
||||
async def paydaytime(self, ctx: commands.Context, seconds: int):
|
||||
"""Set the cooldown for payday."""
|
||||
"""Set the cooldown for the payday command.
|
||||
|
||||
Example:
|
||||
- `[p]economyset paydaytime 86400`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<seconds>` The new number of seconds to wait in between uses of payday. Default is 300.
|
||||
"""
|
||||
guild = ctx.guild
|
||||
if await bank.is_global():
|
||||
await self.config.PAYDAY_TIME.set(seconds)
|
||||
@@ -813,7 +930,15 @@ class Economy(commands.Cog):
|
||||
|
||||
@economyset.command()
|
||||
async def paydayamount(self, ctx: commands.Context, creds: int):
|
||||
"""Set the amount earned each payday."""
|
||||
"""Set the amount earned each payday.
|
||||
|
||||
Example:
|
||||
- `[p]economyset paydayamount 400`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<creds>` The new amount to give when using the payday command. Default is 120.
|
||||
"""
|
||||
guild = ctx.guild
|
||||
max_balance = await bank.get_max_balance(ctx.guild)
|
||||
if creds <= 0 or creds > max_balance:
|
||||
@@ -835,7 +960,18 @@ class Economy(commands.Cog):
|
||||
|
||||
@economyset.command()
|
||||
async def rolepaydayamount(self, ctx: commands.Context, role: discord.Role, creds: int):
|
||||
"""Set the amount earned each payday for a role."""
|
||||
"""Set the amount earned each payday for a role.
|
||||
|
||||
Only available when not using a global bank.
|
||||
|
||||
Example:
|
||||
- `[p]economyset rolepaydayamount @Members 400`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<role>` The role to assign a custom payday amount to.
|
||||
- `<creds>` The new amount to give when using the payday command.
|
||||
"""
|
||||
guild = ctx.guild
|
||||
max_balance = await bank.get_max_balance(ctx.guild)
|
||||
if creds <= 0 or creds > max_balance:
|
||||
@@ -858,7 +994,15 @@ class Economy(commands.Cog):
|
||||
|
||||
@economyset.command()
|
||||
async def registeramount(self, ctx: commands.Context, creds: int):
|
||||
"""Set the initial balance for new bank accounts."""
|
||||
"""Set the initial balance for new bank accounts.
|
||||
|
||||
Example:
|
||||
- `[p]economyset registeramount 5000`
|
||||
|
||||
**Arguments**
|
||||
|
||||
- `<creds>` The new initial balance amount. Default is 0.
|
||||
"""
|
||||
guild = ctx.guild
|
||||
max_balance = await bank.get_max_balance(ctx.guild)
|
||||
credits_name = await bank.get_currency_name(guild)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Роли"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr "Zobrazit informace o uživateli.\\n\\n To zahrnuje pole pro stav, datum registrace na discordu, datum připojení\\n na server, stavy hlasu a předchozích jmen / přezdívky.\\n\\n Pokud uživatel nemá žádné role, předchozí jména nebo předchozí přezdívky,\\n tato pole budou vynechány.\\n "
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr "Neznámý"
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n(před {} dny {)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n(před {} dny {)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "Přidal/a se na Discord"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr "Přidal/a se na tento server"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Role"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr "Předchozí jména"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr "Předchozí přezdívky"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr "Aktuální hlasový kanál"
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "Člen #{} | ID uživatele: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr "Zobrazit předchozí jména a přezdívky uživatele."
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**Posledních 20 jmen**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**Posledních 20 přezdívek**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Roller"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr "Hört: {title}"
|
||||
msgid "Watching: {name}"
|
||||
msgstr "Schaut: {name}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr "Zeigt Informationen über den Benutzer.\\n\\n Dazu gehören Angaben des Status, Beitrittsdatum bei Discord,\\n des Servers, Sprachstatus und frühere Namen/Nicknamen.\\n\\n Wenn der Benutzer keine Rollen, frühere Namen oder Spitznamen hat,\\n werden diese Angaben ausgelassen.\\n "
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr "Unbekannt"
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} Tage her)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} Tage her)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr "Entspannt in {} status"
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr "und {numeric_number} weitere Rollen, die aufgrund von Embedlimitierungen nicht angezeigt werden."
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "Ist Discord beigetreten am"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr "Dem Server beigetreten am"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Rollen"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr "Vorherige Namen"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr "Vorherige Nicknamen"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr "Aktueller Sprachkanal"
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "Benutzer #{} | User ID: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr "Zeige vorherige Namen und Nicknamen von einem Benutzer."
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**Vorherige 20 Namen:**"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**Die letzten 20 Nicknamen:**"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "Über diesen Benutzer sind keine Namens- oder Nicknamenänderungen bekannt."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Roles"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**Últimos 20 nombres**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**Últimos 20 nombres**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "Que el usuario no tiene ningún nombre grabado o cambio de apodo."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,86 +372,90 @@ msgstr "Écoute : {title}"
|
||||
msgid "Watching: {name}"
|
||||
msgstr "Regarde : {name}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr "Affiche les informations sur un utilisateur.\\n\\n Ceci inclut les champs pour le statut, la date d'inscription sur Discord,\\n la date à laquelle cet utilisateur à rejoint le serveur, l'état vocal \\n et les noms/pseudos précédents.\\n\\n Si l'utilisateur n'a pas de rôles, noms ou pseudos précédents,\\n ces champs seront omis.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr "Inconnu"
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n(il y a {} jours)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n(il y a {} jours)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr "Statut : {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr "et {numeric_number} autres rôles non affichés en raison des limites de l'embed."
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "A rejoint Discord le"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr "A rejoint ce serveur le"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Rôles"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr "Noms précédents"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr "Pseudos précédents"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr "Salon vocal actuel"
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "Membre #{} | ID utilisateur: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr "Afficher les noms et pseudos précédents d'un utilisateur."
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**20 derniers noms **:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**20 derniers pseudos ** :"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "Cet utilisateur n'a aucun nom ou pseudo enregistré."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Peran"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**20 nama terakhir**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**20 julukan terakhir**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "Pengguna tidak memiliki nama yang tercatat atau nama panggilan yang berubah."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Ruoli"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "役職"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "역할"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**20개의 이름 초과** :"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**20개의 닉네임을 초과** :"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "해당 사용자에게 기록된 이름이나 닉네임이 없어요."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr "Lytter: {title}"
|
||||
msgid "Watching: {name}"
|
||||
msgstr "Overvåker: {name}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr "Vis informasjon om en bruker.\\n\\n Dette inkluderer felt for status, discord sammenkoblingsdato, server\\n bli med dato, stemmetilstand og tidligere navn/kallenavn.\\n\\n Hvis brukeren ikke har noen roller, tidligere navn eller tidligere kallenavn,\\n vil disse feltene utelates.\\n "
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr "Ukjent"
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} dager siden)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} dager siden)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr "Slapper av i {} status"
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr "og {numeric_number} flere roller vises ikke på grunn av grenseverdier for innebygging."
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "Ble med Discord den"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr "Ble medlem på serveren"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Roller"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr "Rolle"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr "Forrige navn"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr "Forrige navn"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr "Forrige kallenavn"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr "Forrige kallenavn"
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr "Gjeldende talekanal"
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "Medlem #{} | Bruker ID: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr "Vis tidligere navn og kallenavn på en bruker."
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**Siste 20 navn**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**Siste 20 kallenavn**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "Den brukeren har ikke registrert noe navn eller endring av kallenavn."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Rollen"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Role"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr "Расслабляется в статусе {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "Присоединился к Discord"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr "Присоединился к этому серверу"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Роли"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr "Предыдущие имена"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr "Предыдущие никнеймы"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr "Текущий голосовой канал"
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "Участник #{} | ID пользователя: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr "Показать предыдущие имена и никнеймы пользователя."
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**Последние 20 имен пользователя**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**Последние 20 никнеймов**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "У этого пользователя нет записанного имени или никнейма."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Role"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Latin)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Roller"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,86 +372,90 @@ msgstr "Dinliyor: {title}"
|
||||
msgid "Watching: {name}"
|
||||
msgstr "İzliyor: {name}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr "Bir kullanıcı hakkında bilgi göster.\\n\\n Buna kullanıcının durumu, discorda katılma tarihi, sunucuya\\n katılma tarihi, ses durumu\n"
|
||||
" önceki adı/adları dahildir.\\n\\n Eğer üyenin her hangi bir rolü, önceden kullandığı ad ya da takma ad yoksa,\\n bu alanlar boş bırakılacaktır.\\n "
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr "Bilinmiyor"
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} gün önce)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} gün önce)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr "{} durumda rahatına bakıyor"
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr "Ve mesaj sınırlamaları yüzünden gösterilemeyen {numeric_number} rol."
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "Discord'a Katıldı"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr "Bu sunucuya katıldı"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "Roller"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr "Rol"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr "Geçmiş İsimleri"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr "Önceki isim"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr "Geçmiş Kullanıcı adları"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr "Önceki Takma İsim"
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr "Şu anki ses kanalı"
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "Üye #{} | Kullanıcı IDsi: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr "Bir kullanıcının önceki adlarını ve takma adlarını göster."
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**Son 20 isim**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**Son 20 takma isim**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "O kullanıcının her hangi bir kaydedilmiş adı yada ad değişikliği bulunmamakta."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "加入Discord日期"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "角色"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "成员 #{} | 用户 ID: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional, Hong Kong\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr ""
|
||||
msgid "Watching: {name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-11-12 12:20+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -372,85 +372,89 @@ msgstr "收聽中: {title}"
|
||||
msgid "Watching: {name}"
|
||||
msgstr "觀看中: {name}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:155
|
||||
#: redbot/cogs/mod/names.py:141
|
||||
msgid "Competing in: {competing}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:164
|
||||
#, docstring
|
||||
msgid "Show information about a user.\\n\\n This includes fields for status, discord join date, server\\n join date, voice state and previous names/nicknames.\\n\\n If the user has no roles, previous names or previous nicknames,\\n these fields will be omitted.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:183
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
msgid "Unknown"
|
||||
msgstr "未知"
|
||||
|
||||
#: redbot/cogs/mod/names.py:191
|
||||
#: redbot/cogs/mod/names.py:200
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} 天前)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:192
|
||||
#: redbot/cogs/mod/names.py:201
|
||||
msgid "{}\\n({} days ago)"
|
||||
msgstr "{}\\n({} 天前)"
|
||||
|
||||
#: redbot/cogs/mod/names.py:204
|
||||
#: redbot/cogs/mod/names.py:213
|
||||
msgid "Chilling in {} status"
|
||||
msgstr "目前狀態 {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:218
|
||||
#: redbot/cogs/mod/names.py:227
|
||||
msgid "and {numeric_number} more roles not displayed due to embed limits."
|
||||
msgstr "和 {numeric_number} 由於嵌入的限制,無法顯示更多身分組。"
|
||||
|
||||
#: redbot/cogs/mod/names.py:245
|
||||
#: redbot/cogs/mod/names.py:254
|
||||
msgid "Joined Discord on"
|
||||
msgstr "加入Discord於"
|
||||
|
||||
#: redbot/cogs/mod/names.py:246
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
msgid "Joined this server on"
|
||||
msgstr "加入這個伺服器於"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Roles"
|
||||
msgstr "身分組"
|
||||
|
||||
#: redbot/cogs/mod/names.py:249
|
||||
#: redbot/cogs/mod/names.py:258
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Names"
|
||||
msgstr "以前的名字"
|
||||
|
||||
#: redbot/cogs/mod/names.py:255
|
||||
#: redbot/cogs/mod/names.py:264
|
||||
msgid "Previous Name"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nicknames"
|
||||
msgstr "以前的暱稱"
|
||||
|
||||
#: redbot/cogs/mod/names.py:263
|
||||
#: redbot/cogs/mod/names.py:272
|
||||
msgid "Previous Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/mod/names.py:269
|
||||
#: redbot/cogs/mod/names.py:278
|
||||
msgid "Current voice channel"
|
||||
msgstr "目前的語音頻道"
|
||||
|
||||
#: redbot/cogs/mod/names.py:273
|
||||
#: redbot/cogs/mod/names.py:282
|
||||
msgid "Member #{} | User ID: {}"
|
||||
msgstr "成員 #{} | 使用者ID: {}"
|
||||
|
||||
#: redbot/cogs/mod/names.py:287
|
||||
#: redbot/cogs/mod/names.py:296
|
||||
#, docstring
|
||||
msgid "Show previous names and nicknames of a user."
|
||||
msgstr "顯示用戶以前的姓名和暱稱。"
|
||||
|
||||
#: redbot/cogs/mod/names.py:291
|
||||
#: redbot/cogs/mod/names.py:300
|
||||
msgid "**Past 20 names**:"
|
||||
msgstr "**過去的20個名字**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:297
|
||||
#: redbot/cogs/mod/names.py:306
|
||||
msgid "**Past 20 nicknames**:"
|
||||
msgstr "**過去的20個暱稱**:"
|
||||
|
||||
#: redbot/cogs/mod/names.py:304
|
||||
#: redbot/cogs/mod/names.py:313
|
||||
msgid "That user doesn't have any recorded name or nickname change."
|
||||
msgstr "該使用者沒有任何姓名或暱稱的更改記錄。"
|
||||
|
||||
|
||||
@@ -107,16 +107,16 @@ msgstr ""
|
||||
#: redbot/cogs/permissions/permissions.py:276
|
||||
#, docstring
|
||||
msgid "Manage permissions with YAML files."
|
||||
msgstr ""
|
||||
msgstr "Administrar permisos con archivos YAML."
|
||||
|
||||
#: redbot/cogs/permissions/permissions.py:280
|
||||
#, docstring
|
||||
msgid "Sends an example of the yaml layout for permissions"
|
||||
msgstr ""
|
||||
msgstr "Envía un ejemplo de plantilla yaml para los permisos"
|
||||
|
||||
#: redbot/cogs/permissions/permissions.py:282
|
||||
msgid "Example YAML for setting rules:\\n"
|
||||
msgstr ""
|
||||
msgstr "Ejemplo YAML para configurar las reglas:\\n"
|
||||
|
||||
#: redbot/cogs/permissions/permissions.py:304
|
||||
#, docstring
|
||||
@@ -231,7 +231,7 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/permissions/permissions.py:711
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
msgstr "¿Estás seguro?"
|
||||
|
||||
#: redbot/cogs/permissions/permissions.py:718
|
||||
#: redbot/cogs/permissions/permissions.py:731
|
||||
@@ -240,9 +240,9 @@ msgstr "No hay respuesta; se ha agotado el tiempo de espera"
|
||||
|
||||
#: redbot/cogs/permissions/permissions.py:726
|
||||
msgid "Are you sure? (y/n)"
|
||||
msgstr ""
|
||||
msgstr "¿Estás seguro? (y/n)"
|
||||
|
||||
#: redbot/cogs/permissions/permissions.py:737
|
||||
msgid "Action cancelled."
|
||||
msgstr ""
|
||||
msgstr "Acción cancelada."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr "Zkontroluje, jestli probíhá Twitch vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr "Zkontroluje, jestli probíhá Youtube vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr "Zkontroluje, jestli probíhá Picarto vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr "Tento uživatel je offline."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr "Zdá se, že tento kanál neexistuje."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr "Při pokusu o spojení s API streamovací službou nastala chyba."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr "Správa automatického upozornění na vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr "Spravovat oznámení Twitch streamu."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr "Zapnout upozornění v tomto kanálu pro Twitch stream."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr "Zadejte název kanálu *Twitch*, ne název Discord serveru."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr "Zapnout upozornění v tomto kanálu pro Youtube stream."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr "Zapnout upozornění v tomto kanálu pro Picarto stream."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr "Všechna upozornění na vysílání v tomto kanálu byla zakázána."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr "Seznam všech aktivních upozornění vysílání na tomto serveru."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr "Aktivní upozornění:\\n\\n"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr "Nejsou žádné aktivní notifikace na tomto serveru."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr "Nastavit čas kontroly streamů."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr "Vysvětli, jak nastavit twitch token."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr "Vysvětli, jak nastavit YouTube token."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr "Spravovat nastavení vlastní zprávy pro upozornění na vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr "Spravovat nastavení zmínění pro upozornění na vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr "Zapnout `@everyone` zmínku."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@everyone` již nebude zmíněn pro upozornění na vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr "Když někdo zapne stream, `@everyone` bude zmíněno."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr "Zapnout `@here` zmínku."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@here` již nebude zmíněn pro upozornění na vysílání."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr "Když někdo zapne stream, `@here` bude zmíněno."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr "Zapnout zmínku role."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr "Zapnout mazání alertů, když streamy budou offline."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr "Oznámení již nebudou odstraňována."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr "Pošlu nyní oznámení do tohoto kanálu, až bude {stream.name} vysílat."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr "Nebudu již posílat oznámení o {stream.name} v tomto kanálu."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr "{mention}, {stream} právě vysílá!"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr "{stream} vysílá!"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr "Nepojmenované vysílání"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr " - Znovu spustit"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr "Sledující"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr "Celkové shlédnutí"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr "Hraje: "
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr "Žádná"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr "NSFW | "
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr "{adult}Kategorie: {category} | Štítky: {tags}"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr "Prüfe ob ein Twitch Kanal Live ist."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr "Prüfe ob ein YouTube Kanal Live ist."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr "Prüfe ob ein Picarto Kanal Live ist."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr "Dieser Benutzer ist offline."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr "Dieser Kanal scheint nicht zu existieren."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr "Etwas lief schief bei dem Versuch die API des Streaming Dienstes zu kontaktieren."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr "Verwalte automatische Stream Alarme."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr "Verwalte Twitch Stream Benachrichtigungen."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr "Schalte die Alarme in diesem Kanal für Twitch Streams um."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr "Bitte geben Sie den Namen eines *Twitch* Kanals ein, nicht den eines Discord-Kanals."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr "Schalte die Alarme in diesem Kanal für YouTube Streams um."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr "Schalte die Alarme in diesem Kanal für Picarto Streams um."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr "Deaktiviere alle Stream-Alarme in diesem Kanal oder Server.\\n\\n `[p]streamalert stop` deaktiviert die Stream Alarme in diesem\\n Kanal.\\n\\n Nutze `[p]streamalert stop yes` um alle Stream Alarme auf diesem Server\\n zu stoppen.\\n "
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr "Alle Stream Alarme auf diesem Server wurden deaktiviert."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr "Alle Stream Alarme in diesem Kanal wurden deaktiviert."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr "Listet alle aktiven Stream Alarme auf diesem Server auf."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr "Aktive Alarme:\\n\\n"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr "Es sind keine aktiven Alarme auf diesem Server vorhanden."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr "Stelle ein wie oft nach neuen Streams geschaut werden soll."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr "Die minimale Wartezeit zwischen Aktualisierungen beträgt 60 Sekunden"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr "Erklären Sie, wie Sie den Twitchtoken setzen."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr "Erklären Sie, wie Sie den YouTube-Token setzen."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr "Benutzerdefinierte Nachricht für Stream-Alarme verwalten."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr "Stream-Alarm-Nachricht gesetzt!"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr "Stream-Warnmeldungen in diesem Server zurücksetzen."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr "Stream-Alarme in diesem Server werden nun die Standardwarnmeldung verwenden."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr "Verwalte Einstellungen für Erwähnungen bei Stream-Alarmen."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr "Schalte die `@everyone` Erwähnung um."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@everyone` wird nicht mehr bei Stream-Alarmen erwähnt."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr "Wenn ein Stream live ist, wird`@everyone` erwähnt."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr "Schalte die `@here` Erwähnung um."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@here` wird nicht mehr bei Stream-Alarmen erwähnt."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr "Wenn ein Stream live ist, wird`@here` erwähnt."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr "Schalte Rollen-Erwähnung um."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@{role.name}` wird nicht mehr bei Stream-Alarmen erwähnt."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr "Wenn ein Stream oder eine Community live ist wird `@{role.name}` erwähnt."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr "Da diese Rolle nicht erwähnt werden kann wird sie vorübergehend bei einem Stream-Alarm erwähnbar gemacht. Bitte stelle sicher, dass ich die korrekten Berechtigungen habe diese Rolle zu verwalten, sonst werden Mitglieder diese Rolle keine Benachrichtigung erhalten."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr "Schalte die Löschung von Alarmen um wenn ein Stream offline geht."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr "Die Benachrichtigungen werden gelöscht sobald ein Stream offline geht."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr "Benachrichtigungen werden nicht mehr gelöscht."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr "Aktiviert oder deaktiviert das Ausschließen von erneuten Streams aus Warnungen."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr "Streams vom Typ \"Wiederholung\" werden in Warnungen eingeschlossen."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr "Streams vom Typ \"Erneut ausführen\" senden keine Warnung mehr."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr "Ich werde jetzt in diesem Kanal eine Benachrichtigungen senden, wenn {stream.name} live ist."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr "Ich werde in diesem Kanal keine Benachrichtigungen mehr über {stream.name} senden."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr "{mention}, {stream} ist live!"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr "{stream} ist live!"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr "Unbenannte Übertragung"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr " - Wiederholung"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr "Followers"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr "Alle Aufrufe"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr "Gerade läuft: "
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr "Keine"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr "NSFW | "
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr "{adult}Kategorie: {category} | Tags: {tags}"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr "<your_client_id_here>"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr "<votre_secret_client_ici>"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr "Vérifiez si une chaîne Twitch est en live."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr "Vérifiez si une chaîne YouTube est en live."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr "Vérifiez si une chaîne Picarto est en live."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr "Cet utilisateur est hors ligne."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr "Ce salon ne semble pas exister."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr "Une erreur s'est produite lors de la tentative de connexion a l'API du service de stream."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr "Gérer les alertes de stream."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr "Gérer les notifications de stream Twitch."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr "Activer les alertes dans ce salon pour un stream Twitch."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr "Veuillez fournir le nom d'une chaîne *Twitch*, pas d'un salon Discord."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr "Activer les alertes dans ce salon pour un stream YouTube."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr "Activer les alertes dans ce salon pour un stream Picarto."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr "Désactive toutes les alertes de stream sur ce salon ou ce serveur.\\n\\n `[p]streamalert stop'' désactivera les alertes pour ce salon.\\n\\n Utiliser `[p]streamalert stop yes` pour désactiver les alertes\\n pour ce serveur.\\n "
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr "Toutes les alertes de stream de ce serveur ont été désactivées."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr "Toutes les alertes de stream dans ce salon ont été désactivées."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr "Liste toutes les alertes de streams actives dans ce serveur."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr "Alertes actives :\\n\\n"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr "Il n'y a pas d'alertes actives dans ce serveur."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr "Gérer les paramètres d'alerte de stream."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr "Définir le temps de rafraîchissement de la vérification des streams."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr "Vous ne pouvez pas régler le temps de rafraîchissement à moins de 60 secondes"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr "Expliquer comment définir le token Twitch."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr "Expliquer comment définir le token YouTube."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr "<votre_clé_API_ici>"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr "Gérer le message personnalisé pour les alertes de streams."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr "Message d'alerte de stream défini !"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr "Réinitialiser les messages d'alerte de streams sur ce serveur."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr "Les alertes de stream de ce serveur utiliseront maintenant le message d'alerte par défaut."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr "Gérer les paramètres de mention pour les alertes de streams."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr "Activer la mention `@'everyone`."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@'everyone` ne sera plus mentionné pour les alertes de streams."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr "Quand un stream est en direct, `@everyone` sera mentionné."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr "Utiliser la mention `@here`."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@here` ne sera plus mentionné pour les alertes de streams."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr "Quand un stream est en direct, `@here` sera mentionné."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr "Activer une mention de rôle."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr "`@{role.name}` ne sera plus mentionné pour les alertes de streams."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr "Quand un stream ou une communauté est en direct, `@{role.name}` sera mentionné."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr "Puisque le rôle n'est pas mentionnable, il le sera momentanément lors de l'annonce d'un stream. Veuillez vous assurer que j'ai les bonnes permissions pour gérer ce rôle, sinon les membres de ce rôle ne recevront pas de notification."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr "Activer la suppression de l'alerte lorsque les streams sont hors ligne."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr "Les notifications seront supprimées une fois que les streams seront hors ligne."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr "Les notifications ne seront plus supprimées."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr "Activer/désactiver l'exclusion des reruns de streams des alertes."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr "Les streams de type 'reerun' seront inclus dans les alertes."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr "Les flux de type 'rerun' n'enverront plus d'alerte."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr "Je vais maintenant envoyer une notification dans ce salon lorsque {stream.name} sera en live."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr "Je n'enverrai plus de notifications à propos de {stream.name} dans ce salon."
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr "{mention}, {stream} est en live !"
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr "{stream} est en live !"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr "Diffusion sans titre"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr " - Rerun"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr "Abonnés"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr "Vues totales"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr "Joue à : "
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr "Aucun"
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr "NSFW | "
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr "{adult}Catégorie : {category} | Tags : {tags}"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2020-10-29 12:34+0000\n"
|
||||
"POT-Creation-Date: 2020-11-19 12:22+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,309 +20,326 @@ msgstr ""
|
||||
msgid "Various commands relating to streaming platforms.\\n\\n You can check if a Twitch, YouTube or Picarto stream is\\n currently live.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:141
|
||||
#: redbot/cogs/streams/streams.py:142
|
||||
msgid "You need a client secret key if you want to use the Twitch API on this cog.\\nFollow these steps:\\n1. Go to this page: https://dev.twitch.tv/console/apps.\\n2. Click \\\"Manage\\\" on your application.\\n3. Click on \\\"New secret\\\".\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel or in DM with the bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_id_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:154 redbot/cogs/streams/streams.py:488
|
||||
#: redbot/cogs/streams/streams.py:155 redbot/cogs/streams/streams.py:489
|
||||
msgid "<your_client_secret_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:207
|
||||
#: redbot/cogs/streams/streams.py:208
|
||||
#, docstring
|
||||
msgid "Check if a Twitch channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:220
|
||||
#: redbot/cogs/streams/streams.py:221
|
||||
#, docstring
|
||||
msgid "Check if a YouTube channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:233
|
||||
#: redbot/cogs/streams/streams.py:234
|
||||
#, docstring
|
||||
msgid "Check if a smashcast channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:239
|
||||
#: redbot/cogs/streams/streams.py:240
|
||||
#, docstring
|
||||
msgid "Check if a Picarto channel is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:251 redbot/cogs/streams/streams.py:287
|
||||
#: redbot/cogs/streams/streams.py:252 redbot/cogs/streams/streams.py:288
|
||||
msgid "That user is offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:253 redbot/cogs/streams/streams.py:447
|
||||
#: redbot/cogs/streams/streams.py:254 redbot/cogs/streams/streams.py:448
|
||||
msgid "That channel doesn't seem to exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:256 redbot/cogs/streams/streams.py:415
|
||||
#: redbot/cogs/streams/streams.py:257 redbot/cogs/streams/streams.py:416
|
||||
msgid "The Twitch token is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:262 redbot/cogs/streams/streams.py:422
|
||||
#: redbot/cogs/streams/streams.py:263 redbot/cogs/streams/streams.py:423
|
||||
msgid "The YouTube API key is either invalid or has not been set. See {command}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:268 redbot/cogs/streams/streams.py:430
|
||||
#: redbot/cogs/streams/streams.py:269 redbot/cogs/streams/streams.py:431
|
||||
msgid "YouTube quota has been exceeded. Try again later or contact the owner if this continues."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:280 redbot/cogs/streams/streams.py:442
|
||||
#: redbot/cogs/streams/streams.py:281 redbot/cogs/streams/streams.py:443
|
||||
msgid "Something went wrong whilst trying to contact the stream service's API."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:297
|
||||
#: redbot/cogs/streams/streams.py:298
|
||||
#, docstring
|
||||
msgid "Manage automated stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:302
|
||||
#: redbot/cogs/streams/streams.py:303
|
||||
#, docstring
|
||||
msgid "Manage Twitch stream notifications."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:310
|
||||
#: redbot/cogs/streams/streams.py:311
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Twitch stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:313
|
||||
#: redbot/cogs/streams/streams.py:314
|
||||
msgid "Please supply the name of a *Twitch* channel, not a Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:320
|
||||
#: redbot/cogs/streams/streams.py:321
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a YouTube stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:325
|
||||
#: redbot/cogs/streams/streams.py:326
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Smashcast stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:330
|
||||
#: redbot/cogs/streams/streams.py:331
|
||||
#, docstring
|
||||
msgid "Toggle alerts in this channel for a Picarto stream."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:335
|
||||
#: redbot/cogs/streams/streams.py:336
|
||||
#, docstring
|
||||
msgid "Disable all stream alerts in this channel or server.\\n\\n `[p]streamalert stop` will disable this channel's stream\\n alerts.\\n\\n Do `[p]streamalert stop yes` to disable all stream alerts in\\n this server.\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:365
|
||||
#: redbot/cogs/streams/streams.py:366
|
||||
msgid "All the stream alerts in this server have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:367
|
||||
#: redbot/cogs/streams/streams.py:368
|
||||
msgid "All the stream alerts in this channel have been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:373
|
||||
#: redbot/cogs/streams/streams.py:374
|
||||
#, docstring
|
||||
msgid "List all active stream alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:376
|
||||
#: redbot/cogs/streams/streams.py:377
|
||||
msgid "Active alerts:\\n\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:384
|
||||
#: redbot/cogs/streams/streams.py:385
|
||||
msgid "There are no active alerts in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:455
|
||||
#: redbot/cogs/streams/streams.py:456
|
||||
#, docstring
|
||||
msgid "Manage stream alert settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:461
|
||||
#: redbot/cogs/streams/streams.py:462
|
||||
#, docstring
|
||||
msgid "Set stream check refresh time."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:463
|
||||
#: redbot/cogs/streams/streams.py:464
|
||||
msgid "You cannot set the refresh timer to less than 60 seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:473
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#, docstring
|
||||
msgid "Explain how to set the twitch token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:474
|
||||
#: redbot/cogs/streams/streams.py:475
|
||||
msgid "To set the twitch API tokens, follow these steps:\\n1. Go to this page: https://dev.twitch.tv/dashboard/apps.\\n2. Click *Register Your Application*.\\n3. Enter a name, set the OAuth Redirect URI to `http://localhost`, and select an Application Category of your choosing.\\n4. Click *Register*.\\n5. Copy your client ID and your client secret into:\\n{command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:497
|
||||
#: redbot/cogs/streams/streams.py:498
|
||||
#, docstring
|
||||
msgid "Explain how to set the YouTube token."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:499
|
||||
#: redbot/cogs/streams/streams.py:500
|
||||
msgid "To get one, do the following:\\n1. Create a project\\n(see https://support.google.com/googleapi/answer/6251787 for details)\\n2. Enable the YouTube Data API v3 \\n(see https://support.google.com/googleapi/answer/6158841 for instructions)\\n3. Set up your API key \\n(see https://support.google.com/googleapi/answer/6158862 for instructions)\\n4. Copy your API key and run the command {command}\\n\\nNote: These tokens are sensitive and should only be used in a private channel\\nor in DM with the bot.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:513
|
||||
#: redbot/cogs/streams/streams.py:514
|
||||
msgid "<your_api_key_here>"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:522
|
||||
#: redbot/cogs/streams/streams.py:523
|
||||
#, docstring
|
||||
msgid "Manage custom message for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:528
|
||||
#: redbot/cogs/streams/streams.py:529
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are enabled.\\n\\n Use `{mention}` in the message to insert the selected mentions.\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message mention {mention}, {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:538 redbot/cogs/streams/streams.py:554
|
||||
#: redbot/cogs/streams/streams.py:539 redbot/cogs/streams/streams.py:555
|
||||
msgid "Stream alert message set!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:545
|
||||
#: redbot/cogs/streams/streams.py:546
|
||||
#, docstring
|
||||
msgid "Set stream alert message when mentions are disabled.\\n\\n Use `{stream}` in the message to insert the channel or user name.\\n\\n For example: `[p]streamset message nomention {stream} is live!`\\n "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:561
|
||||
#: redbot/cogs/streams/streams.py:562
|
||||
#, docstring
|
||||
msgid "Reset the stream alert messages in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:565
|
||||
#: redbot/cogs/streams/streams.py:566
|
||||
msgid "Stream alerts in this server will now use the default alert message."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:570
|
||||
#: redbot/cogs/streams/streams.py:571
|
||||
#, docstring
|
||||
msgid "Manage mention settings for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:576
|
||||
#: redbot/cogs/streams/streams.py:577
|
||||
#, docstring
|
||||
msgid "Toggle the `@everyone` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:581
|
||||
#: redbot/cogs/streams/streams.py:582
|
||||
msgid "`@everyone` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:584
|
||||
#: redbot/cogs/streams/streams.py:585
|
||||
msgid "When a stream is live, `@everyone` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:589
|
||||
#: redbot/cogs/streams/streams.py:590
|
||||
#, docstring
|
||||
msgid "Toggle the `@here` mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:594
|
||||
#: redbot/cogs/streams/streams.py:595
|
||||
msgid "`@here` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:597
|
||||
#: redbot/cogs/streams/streams.py:598
|
||||
msgid "When a stream is live, `@here` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:602
|
||||
#: redbot/cogs/streams/streams.py:603
|
||||
#, docstring
|
||||
msgid "Toggle a role mention."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:607
|
||||
#: redbot/cogs/streams/streams.py:608
|
||||
msgid "`@{role.name}` will no longer be mentioned for stream alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:613
|
||||
#: redbot/cogs/streams/streams.py:614
|
||||
msgid "When a stream or community is live, `@{role.name}` will be mentioned."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:617
|
||||
#: redbot/cogs/streams/streams.py:618
|
||||
msgid "Since the role is not mentionable, it will be momentarily made mentionable when announcing a streamalert. Please make sure I have the correct permissions to manage this role, or else members of this role won't receive a notification."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:628
|
||||
#: redbot/cogs/streams/streams.py:629
|
||||
#, docstring
|
||||
msgid "Toggle alert deletion for when streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:631
|
||||
#: redbot/cogs/streams/streams.py:632
|
||||
msgid "The notifications will be deleted once streams go offline."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:633
|
||||
#: redbot/cogs/streams/streams.py:634
|
||||
msgid "Notifications will no longer be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:638
|
||||
#: redbot/cogs/streams/streams.py:639
|
||||
#, docstring
|
||||
msgid "Toggle excluding rerun streams from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:643
|
||||
#: redbot/cogs/streams/streams.py:644
|
||||
msgid "Streams of type 'rerun' will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:646
|
||||
#: redbot/cogs/streams/streams.py:647
|
||||
msgid "Streams of type 'rerun' will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:654
|
||||
#: redbot/cogs/streams/streams.py:652
|
||||
#, docstring
|
||||
msgid "Toggle excluding YouTube streams schedules from alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:657
|
||||
msgid "Streams schedules will be included in alerts."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:660
|
||||
msgid "Streams schedules will no longer send an alert."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:668
|
||||
msgid "I'll now send a notification in this channel when {stream.name} is live."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:663
|
||||
#: redbot/cogs/streams/streams.py:677
|
||||
msgid "I won't send notifications about {stream.name} in this channel anymore."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:761
|
||||
#: redbot/cogs/streams/streams.py:795
|
||||
msgid "{mention}, {stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streams.py:778
|
||||
#: redbot/cogs/streams/streams.py:812
|
||||
msgid "{stream} is live!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:316
|
||||
#: redbot/cogs/streams/streamtypes.py:176
|
||||
msgid "This stream will start in {time}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:351
|
||||
msgid "Untitled broadcast"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:318
|
||||
#: redbot/cogs/streams/streamtypes.py:353
|
||||
msgid " - Rerun"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:321
|
||||
#: redbot/cogs/streams/streamtypes.py:364
|
||||
#: redbot/cogs/streams/streamtypes.py:405
|
||||
#: redbot/cogs/streams/streamtypes.py:356
|
||||
#: redbot/cogs/streams/streamtypes.py:399
|
||||
#: redbot/cogs/streams/streamtypes.py:440
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:322
|
||||
#: redbot/cogs/streams/streamtypes.py:406
|
||||
#: redbot/cogs/streams/streamtypes.py:357
|
||||
#: redbot/cogs/streams/streamtypes.py:441
|
||||
msgid "Total views"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:327
|
||||
#: redbot/cogs/streams/streamtypes.py:368
|
||||
#: redbot/cogs/streams/streamtypes.py:362
|
||||
#: redbot/cogs/streams/streamtypes.py:403
|
||||
msgid "Playing: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:411
|
||||
#: redbot/cogs/streams/streamtypes.py:446
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:414
|
||||
#: redbot/cogs/streams/streamtypes.py:449
|
||||
msgid "NSFW | "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/streams/streamtypes.py:418
|
||||
#: redbot/cogs/streams/streamtypes.py:453
|
||||
msgid "{adult}Category: {category} | Tags: {tags}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user