`: Run a git command
+
+# Prompt Toolkit defaults
+
+The interactive prompt is built with [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) which provides a lot of Emacs and Vi-style keyboard. Some emacs bindings you may find useful are
+
+- `Ctrl-A` : Move cursor to the start of the line.
+- `Ctrl-B` : Move cursor back one character.
+- `Ctrl-D` : Delete the character under the cursor.
+- `Ctrl-E` : Move cursor to the end of the line.
+- `Ctrl-F` : Move cursor forward one character.
+- `Ctrl-K` : Delete from the cursor to the end of the line.
+- `Ctrl-L` : Clear the screen.
+- `Ctrl-N` : Move down to the next history entry.
+- `Ctrl-P` : Move up to the previous history entry.
+- `Ctrl-R` : Reverse search in command history.
+
+Note: aider currently exits vi normal mode after a single command, (maybe something to do with the esc keybinding?). Feel free to investigate and make a PR if you would like to see it fully supported.
+
+Prompt toolkit also does not provide clear documentation on the bindings they support - maybe you can take aider and help them out with that and we can then link to the authoritative docs.
diff --git a/testbed/Aider-AI__aider/docs/ctags.md b/testbed/Aider-AI__aider/docs/ctags.md
new file mode 100644
index 0000000000000000000000000000000000000000..c517d7bfee210248b21f06efb5eaeff3b171a9ee
--- /dev/null
+++ b/testbed/Aider-AI__aider/docs/ctags.md
@@ -0,0 +1,233 @@
+
+# Improving GPT-4's codebase understanding with ctags
+
+
+
+GPT-4 is extremely useful for "self-contained" coding tasks,
+like generating brand new code or modifying a pure function
+that has no dependencies.
+
+But it's difficult to use GPT-4 to modify or extend
+a large, complex pre-existing codebase.
+To modify such code, GPT needs to understand the dependencies and APIs
+which interconnect its subsystems.
+Somehow we need to provide this "code context" to GPT
+when we ask it to accomplish a coding task. Specifically, we need to:
+
+ - Help GPT understand the overall codebase, so that it
+can decifer the meaning of code with complex dependencies and generate
+new code that respects and utilizes existing abstractions.
+ - Convey all of this "code context" to GPT in an
+efficient manner that fits within the 8k-token context window.
+
+To address these issues, `aider` now
+sends GPT a **concise map of your whole git repository**
+that includes
+all declared variables and functions with call signatures.
+This *repo map* is built automatically using `ctags`, which
+extracts symbol definitions from source files. Historically,
+ctags were generated and indexed by IDEs and editors to
+help humans search and navigate large codebases.
+Instead, we're going to use ctags to help GPT better comprehend, navigate
+and edit code in larger repos.
+
+To get a sense of how effective this can be, this
+[chat transcript](https://aider.chat/examples/add-test.html)
+shows GPT-4 creating a black box test case, **without being given
+access to the source code of the function being tested or any of the
+other code in the repo.**
+Using only the meta-data in the repo map, GPT is able to figure out how to
+call the method to be tested, as well as how to instantiate multiple
+class objects that are required to prepare for the test.
+
+To code with GPT-4 using the techniques discussed here:
+
+
+ - Install [aider](https://aider.chat/docs/install.html).
+ - Install [universal ctags](https://aider.chat/docs/install.html#install-universal-ctags-optional).
+ - Run `aider` inside your repo, and it should say "Repo-map: universal-ctags using 1024 tokens".
+
+## The problem: code context
+
+GPT-4 is great at "self contained" coding tasks, like writing or
+modifying a pure function with no external dependencies.
+GPT can easily handle requests like "write a
+Fibonacci function" or "rewrite the loop using list
+comprehensions", because they require no context beyond the code
+being discussed.
+
+Most real code is not pure and self-contained, it is intertwined with
+and depends on code from many different files in a repo.
+If you ask GPT to "switch all the print statements in class Foo to
+use the BarLog logging system", it needs to see the code in the Foo class
+with the prints, and it also needs to understand the project's BarLog
+subsystem.
+
+A simple solution is to **send the entire codebase** to GPT along with
+each change request. Now GPT has all the context! But this won't work
+for even moderately
+sized repos, because they won't fit into the 8k-token context window.
+
+A better approach is to be selective,
+and **hand pick which files to send**.
+For the example above, you could send the file that
+contains the Foo class
+and the file that contains the BarLog logging subsystem.
+This works pretty well, and is supported by `aider` -- you
+can manually specify which files to "add to the chat" you are having with GPT.
+
+But it's not ideal to have to manually identify the right
+set of files to add to the chat.
+And sending whole files is a bulky way to send code context,
+wasting the precious 8k context window.
+GPT doesn't need to see the entire implementation of BarLog,
+it just needs to understand it well enough to use it.
+You may quickly run out of context window if you
+send many files worth of code just to convey context.
+
+## Using a repo map to provide context
+
+The latest version of `aider` sends a **repo map** to GPT along with
+each change request. The map contains a list of all the files in the
+repo, along with the symbols which are defined in each file. Callables
+like functions and methods also include their signatures.
+
+Here's a
+sample of the map of the aider repo, just showing the maps of
+[main.py](https://github.com/paul-gauthier/aider/blob/main/aider/main.py)
+and
+[io.py](https://github.com/paul-gauthier/aider/blob/main/aider/io.py)
+:
+
+```
+aider/
+ ...
+ main.py:
+ function
+ main (args=None, input=None, output=None)
+ variable
+ status
+ ...
+ io.py:
+ class
+ FileContentCompleter
+ InputOutput
+ FileContentCompleter
+ member
+ __init__ (self, fnames, commands)
+ get_completions (self, document, complete_event)
+ InputOutput
+ member
+ __init__ (self, pretty, yes, input_history_file=None, chat_history_file=None, input=None, output=None)
+ ai_output (self, content)
+ append_chat_history (self, text, linebreak=False, blockquote=False)
+ confirm_ask (self, question, default="y")
+ get_input (self, fnames, commands)
+ prompt_ask (self, question, default=None)
+ tool (self, *messages, log_only=False)
+ tool_error (self, message)
+ ...
+```
+
+Mapping out the repo like this provides some benefits:
+
+ - GPT can see variables, classes, methods and function signatures from everywhere in the repo. This alone may give it enough context to solve many tasks. For example, it can probably figure out how to use the API exported from a module just based on the details shown in the map.
+ - If it needs to see more code, GPT can use the map to figure out by itself which files it needs to look at. GPT will then ask to see these specific files, and `aider` will automatically add them to the chat context (with user approval).
+
+Of course, for large repositories even just the map might be too large
+for the context window. However, this mapping approach opens up the
+ability to collaborate with GPT-4 on larger codebases than previous
+methods. It also reduces the need to manually curate which files to
+add to the chat context, empowering GPT to autonomously identify
+relevant files for the task at hand.
+
+## Using ctags to make the map
+
+Under the hood, `aider` uses
+[universal ctags](https://github.com/universal-ctags/ctags)
+to build the
+map. Universal ctags can scan source code written in many
+languages, and extract data about all the symbols defined in each
+file.
+
+Historically, ctags were generated and indexed by IDEs or code editors
+to make it easier for a human to search and navigate a
+codebase, find the implementation of functions, etc.
+Instead, we're going to use ctags to help GPT navigate and understand the codebase.
+
+Here is the type of output you get when you run ctags on source code. Specifically,
+this is the
+`ctags --fields=+S --output-format=json` output for the `main.py` file mapped above:
+
+```json
+{
+ "_type": "tag",
+ "name": "main",
+ "path": "aider/main.py",
+ "pattern": "/^def main(args=None, input=None, output=None):$/",
+ "kind": "function",
+ "signature": "(args=None, input=None, output=None)"
+}
+{
+ "_type": "tag",
+ "name": "status",
+ "path": "aider/main.py",
+ "pattern": "/^ status = main()$/",
+ "kind": "variable"
+}
+```
+
+The repo map is built using this type of `ctags` data,
+but formatted into the space
+efficient hierarchical tree format shown earlier.
+This is a format that GPT can easily understand
+and which conveys the map data using a
+minimal number of tokens.
+
+## Example chat transcript
+
+This
+[chat transcript](https://aider.chat/examples/add-test.html)
+shows GPT-4 creating a black box test case, **without being given
+access to the source code of the function being tested or any of the
+other code in the repo.** Instead, GPT is operating solely off
+the repo map.
+
+Using only the meta-data in the map, GPT is able to figure out how to call the method to be tested, as well as how to instantiate multiple class objects that are required to prepare for the test.
+
+GPT makes one reasonable mistake writing the first version of the test, but is
+able to quickly fix the issue after being shown the `pytest` error output.
+
+## Future work
+
+Just as "send the whole codebase to GPT with every request"
+is not an efficient solution to this problem,
+there are probably better approaches than
+"send the whole repo map with every request".
+Sending an appropriate subset of the repo map would help `aider` work
+better with even larger repositories which have large maps.
+
+Some possible approaches to reducing the amount of map data are:
+
+ - Distill the global map, to prioritize important symbols and discard "internal" or otherwise less globally relevant identifiers. Possibly enlist `gpt-3.5-turbo` to perform this distillation in a flexible and language agnostic way.
+ - Provide a mechanism for GPT to start with a distilled subset of the global map, and let it ask to see more detail about subtrees or keywords that it feels are relevant to the current coding task.
+ - Attempt to analyize the natural language coding task given by the user and predict which subset of the repo map is relevant. Possibly by analysis of prior coding chats within the specific repo. Work on certain files or types of features may require certain somewhat predictable context from elsewhere in the repo. Vector and keyword search against the chat history, repo map or codebase may help here.
+
+One key goal is to prefer solutions which are language agnostic or
+which can be easily deployed against most popular code languages.
+The `ctags` solution has this benefit, since it comes pre-built
+with support for most popular languages.
+I suspect that Language Server Protocol might be an even
+better tool than `ctags` for this problem.
+But it is more cumbersome to deploy for a broad
+array of languages.
+Users would need to stand up an LSP server for their
+specific language(s) of interest.
+
+## Try it out
+
+To use this experimental repo map feature:
+
+ - Install [aider](https://aider.chat/docs/install.html).
+ - Install [universal ctags](https://aider.chat/docs/install.html#install-universal-ctags-optional).
+ - Run `aider` inside your repo, and it should say "Repo-map: universal-ctags using 1024 tokens".
diff --git a/testbed/Aider-AI__aider/docs/faq.md b/testbed/Aider-AI__aider/docs/faq.md
new file mode 100644
index 0000000000000000000000000000000000000000..789adecb51251b0459464f02629a1fc6c236af20
--- /dev/null
+++ b/testbed/Aider-AI__aider/docs/faq.md
@@ -0,0 +1,205 @@
+
+# Frequently asked questions
+
+- [How does aider use git?](#how-does-aider-use-git)
+- [GPT-4 vs GPT-3.5](#gpt-4-vs-gpt-35)
+- [Aider isn't editing my files?](#aider-isnt-editing-my-files)
+- [Can I use aider with other LLMs, local LLMs, etc?](#can-i-use-aider-with-other-llms-local-llms-etc)
+- [Can I change the system prompts that aider uses?](#can-i-change-the-system-prompts-that-aider-uses)
+- [Can I run aider in Google Colab?](#can-i-run-aider-in-google-colab)
+
+## How does aider use git?
+
+It is recommended that you use aider with code that is part of a git repo.
+This allows aider to maintain the safety of your code. Using git makes it easy to:
+
+ - Review the changes GPT made to your code
+ - Undo changes that weren't appropriate
+ - Manage a series of GPT's changes on a git branch
+ - etc
+
+Working without git means that GPT might drastically change your code without an easy way to undo the changes.
+
+Aider tries to provide safety using git in a few ways:
+
+ - It asks to create a git repo if you launch it in a directory without one.
+ - When you add a file to the chat, aider asks permission to add it to the git repo if needed.
+ - At launch and before sending requests to GPT, aider checks if the repo is dirty and offers to commit those changes for you. This way, the GPT changes will be applied to a clean repo and won't be intermingled with your own changes.
+ - After GPT changes your code, aider commits those changes with a descriptive commit message.
+
+Aider also allows you to use in-chat commands to `/diff` or `/undo` the last change made by GPT.
+To do more complex management of your git history, you should use `git` on the command line outside of aider.
+You can start a branch before using aider to make a sequence of changes.
+Or you can `git reset` a longer series of aider changes that didn't pan out. Etc.
+
+While it is not recommended, you can disable aider's use of git in a few ways:
+
+ - `--no-auto-commits` will stop aider from git committing each of GPT's changes.
+ - `--no-dirty-commits` will stop aider from ensuring your repo is clean before sending requests to GPT.
+ - `--no-git` will completely stop aider from using git on your files. You should ensure you are keeping sensible backups of the files you are working with.
+
+
+## GPT-4 vs GPT-3.5
+
+Aider supports all of OpenAI's chat models.
+You can choose a model with the `--model` command line argument.
+
+You will probably get the best results with one of the GPT-4 models.
+They have large context windows, better coding skills and
+they generally obey the instructions in the system prompt.
+GPT-4 is able to structure code edits as simple "diffs"
+and use a
+[repository map](https://aider.chat/docs/ctags.html)
+to improve its ability to make changes in larger codebases.
+
+GPT-3.5 is supported more experimentally
+and is limited to editing somewhat smaller codebases.
+It is less able to follow instructions and
+can't reliably return code edits as "diffs".
+Aider disables the
+repository map
+when using GPT-3.5.
+
+For a detailed and quantitative comparison, please see the
+[code editing benchmark results for GPT-3.5 and GPT-4](https://aider.chat/docs/benchmarks.html).
+
+In practice, this means you can use aider to edit a set of source files
+that total up to the sizes below.
+Just add the specific set of files to the chat
+that are relevant to the change you are requesting.
+This minimizes your use of the context window, as well as costs.
+
+| Model | Context
Size | Edit
Format | Max
File Size | Max
File Size | Repo
Map? |
+| ----------------- | -- | -- | -----| -- | -- |
+| gpt-3.5-turbo | 4k tokens | whole file | 2k tokens | ~8k bytes | no |
+| gpt-3.5-turbo-16k | 16k tokens | whole file | 8k tokens | ~32k bytes | no |
+| gpt-4 | 8k tokens | diffs | 8k tokens | ~32k bytes | yes |
+| gpt-4-32k | 32k tokens | diffs | 32k tokens | ~128k bytes | yes |
+
+## Aider isn't editing my files?
+
+Sometimes GPT will reply with some code changes that don't get applied to your local files.
+In these cases, aider might say something like "Failed to apply edit to *filename*".
+
+This usually happens because GPT is not specifying the edits
+to make in the format that aider expects.
+GPT-3.5 is especially prone to disobeying the system prompt instructions in this manner, but it also happens with GPT-4.
+
+Aider makes every effort to get GPT to conform, and works hard to deal with
+replies that are "almost" correctly formatted.
+If Aider detects an improperly formatted reply, it gives GPT feedback to try again.
+Also, before each release new versions of aider are
+[benchmarked](https://aider.chat/docs/benchmarks.html).
+This helps prevent regressions in the code editing
+performance of GPT that could have been inadvertantly
+introduced.
+
+But sometimes GPT just won't cooperate.
+In these cases, here are some things you might try:
+
+ - Just ask it to try again. Explain the problem with the response if you can. Here is some suggested language which will be familiar to GPT based on its system prompt.
+ - With GPT-3.5, you could say something like "Send me back the new code as a properly formatted **file listing**".
+ - With GPT-4, you could say something like "Format those code changes properly as an **edit block**".
+ - "Don't skip code and replace it with comments, send me back all the code!"
+ - Etc...
+ - Use `/drop` to remove files from the chat session which aren't needed for the task at hand. This will reduce distractions and may help GPT produce properly formatted edits.
+ - Use `/clear` to remove the conversation history, again to help GPT focus.
+
+## Can I use aider with other LLMs, local LLMs, etc?
+
+Aider only has experimental support for LLMs other than OpenAI's GPT-3.5 and GPT-4. This is for two reasons:
+
+- GPT-3.5 is just barely capable of *editing code* to provide aider's interactive "pair programming" style workflow. None of the other models seem to be as capable as GPT-3.5.
+- Just "hooking up" aider to a new model by connecting to its API is almost certainly not enough to get it working in a useful way. Getting aider working well with GPT-3.5 and GPT-4 was a significant undertaking, involving [specific code editing prompts and backends for each model and extensive benchmarking](https://aider.chat/docs/benchmarks.html). Officially supporting each new LLM will probably require a similar effort to tailor the prompts and editing backends.
+
+That said, aider does provide features to experiment with other models. Numerous users have already done experiments with numerous models. None of these experiments have yet identified other models that look like they are capable of working with aider.
+
+Once we see signs that a *particular* model is capable of code editing, it would be reasonable for aider to attempt to officially support such a model. Until then, aider will simply maintain experimental support for using alternative models.
+
+There are ongoing discussions about [LLM integrations in the aider discord](https://discord.com/channels/1131200896827654144/1133060780649087048).
+
+Here are some [GitHub issues which may contain relevant information](https://github.com/paul-gauthier/aider/issues?q=is%3Aissue+%23172).
+
+### OpenAI API compatible LLMs
+
+If you can make the model accessible via an OpenAI compatible API,
+you can use `--openai-api-base` to connect to a different API endpoint.
+
+### Local LLMs
+
+[LocalAI](https://github.com/go-skynet/LocalAI)
+and
+[SimpleAI](https://github.com/lhenault/simpleAI)
+look like relevant tools to serve local models via a compatible API.
+
+
+### Azure
+
+Aider can be configured to connect to the OpenAI models on Azure.
+Aider supports the configuration changes specified in the
+[official openai python library docs](https://github.com/openai/openai-python#microsoft-azure-endpoints).
+You should be able to run aider with the following arguments to connect to Azure:
+
+```
+$ aider \
+ --openai-api-type azure \
+ --openai-api-key your-key-goes-here \
+ --openai-api-base https://example-endpoint.openai.azure.com \
+ --openai-api-version 2023-05-15 \
+ --openai-api-deployment-id deployment-name \
+ ...
+```
+
+You could also store those values in an `.aider.conf.yml` file in your home directory:
+
+```
+openai-api-type: azure
+openai-api-key: your-key-goes-here
+openai-api-base: https://example-endpoint.openai.azure.com
+openai-api-version: 2023-05-15
+openai-api-deployment-id: deployment-name
+```
+
+See the
+[official Azure documentation on using OpenAI models](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/chatgpt-quickstart?tabs=command-line&pivots=programming-language-python)
+for more information on how to populate the above configuration values.
+
+
+
+
+## Can I change the system prompts that aider uses?
+
+Aider is set up to support different system prompts and edit formats
+in a modular way. If you look in the `aider/coders` subdirectory, you'll
+see there's a base coder with base prompts, and then there are
+a number of
+different specific coder implementations.
+
+If you're thinking about experimenting with system prompts
+this document about
+[benchmarking GPT-3.5 and GPT-4 on code editing](https://aider.chat/docs/benchmarks.html)
+might be useful background.
+
+While it's not well documented how to add new coder subsystems, you may be able
+to modify an existing implementation or use it as a template to add another.
+
+To get started, try looking at and modifying these files.
+
+The wholefile coder is currently used by GPT-3.5 by default. You can manually select it with `--edit-format whole`.
+
+- wholefile_coder.py
+- wholefile_prompts.py
+
+The editblock coder is currently used by GPT-4 by default. You can manually select it with `--edit-format diff`.
+
+- editblock_coder.py
+- editblock_prompts.py
+
+When experimenting with coder backends, it helps to run aider with `--verbose --no-pretty` so you can see
+all the raw information being sent to/from GPT in the conversation.
+
+## Can I run aider in Google Colab?
+
+User [imabutahersiddik](https://github.com/imabutahersiddik)
+has provided this
+[Colab notebook](https://colab.research.google.com/drive/1J9XynhrCqekPL5PR6olHP6eE--rnnjS9?usp=sharing).
diff --git a/testbed/Aider-AI__aider/docs/voice.md b/testbed/Aider-AI__aider/docs/voice.md
new file mode 100644
index 0000000000000000000000000000000000000000..b3f5ffff52170aa702a574329a586e1e05bfdff4
--- /dev/null
+++ b/testbed/Aider-AI__aider/docs/voice.md
@@ -0,0 +1,114 @@
+
+# Voice-to-code with aider
+
+Speak with GPT about your code! Request new features, test cases or bug fixes using your voice and let GPT do the work of editing the files in your local git repo. As with all of aider's capabilities, you can use voice-to-code with an existing repo or to start a new project.
+
+Voice support fits quite naturally into aider's AI pair programming chat interface. Now you can fluidly switch between voice and text chat where you ask GPT to edit the code and your own editor when it makes more sense for you to drive.
+
+## How to use voice-to-code
+
+Use the in-chat `/voice` command to start recording,
+and press `ENTER` when you're done speaking.
+Your voice coding instructions will be transcribed
+and sent to GPT, as if you had typed them into
+the aider chat session.
+
+See the [installation instructions](https://aider.chat/docs/install.html#install-portaudio-optional) for
+information on how to enable the `/voice` command.
+
+
+
+
+> Aider v0.11.2-dev
+> Added app.py to the chat.
+
+#### /voice
+
+
+
+
Recording, press ENTER when done... 3.5sec
+
+
+
+
+
+
+
+
+
+
+“ add a factorial endpoint that uses math factorial ”
+
+
+#### Add a factorial endpoint that uses math.factorial.
+
+To add a factorial endpoint to the Flask application, we need to modify the `app.py` file.
+
+Here are the steps:
+
+1. Add a new route `/fact/
` to the Flask application.
+2. In the function for this route, call `math.factorial(x)` and return the result as a string.
+
+Here is the *edit block* for these changes:
+
+```python
+app.py
+<<<<<<< HEAD
+if __name__ == '__main__':
+ print("Starting...")
+ app.run()
+=======
+@app.route('/fact/')
+def factorial(x):
+ result = math.factorial(x)
+ return str(result)
+
+if __name__ == '__main__':
+ print("Starting...")
+ app.run()
+>>>>>>> updated
+```
+
+> Applied edit to app.py
+> Commit ef9e3e7 aider: Add a factorial endpoint that uses math.factorial.
+
+
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/2048-game.md b/testbed/Aider-AI__aider/examples/2048-game.md
new file mode 100644
index 0000000000000000000000000000000000000000..a1a8de1fd3c6fe20f23f8fe1a1e4b74844919b54
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/2048-game.md
@@ -0,0 +1,88 @@
+
+# Modify an open source 2048 game with aider and gpt-4
+
+In this chat transcript, the user explores and modifies an open source [javascript 2048 game repo](https://github.com/gabrielecirulli/2048).
+
+Notice that GPT-4 asks to see a particular source file, and aider automatically includes it in the chat session after getting permission from the user.
+
+
+
+> $ git clone https://github.com/gabrielecirulli/2048
+> $ cd 2048
+> $ aider
+
+#### what is this repo?
+
+Based on the file names you provided, it seems like this repository is for a web-based game, possibly a 2048 game clone. The files include JavaScript files for game logic, HTML and CSS files for the user interface, and various meta files for icons and touch startup images.
+
+If you need help with any specific part of the code or want to add new features, please let me know, and I'll be happy to assist you.
+
+
+#### how does the scoring work?
+
+To help you with the scoring mechanism, I need to see the relevant code. Please provide the contents of the `js/game_manager.js` file, as it is likely to contain the scoring logic.
+
+
+> js/game_manager.js
+> Add these files to the chat? y
+
+
+Apologies for the oversight. I see the contents of the `js/game_manager.js` file now.
+
+The scoring in this 2048 game works as follows:
+
+1. When two tiles with the same value merge, they create a new tile with a value equal to the sum of the merged tiles' values.
+2. The score is updated by adding the value of the new merged tile.
+
+Here's the relevant code snippet from the `js/game_manager.js` file:
+
+```javascript
+if (next && next.value === tile.value && !next.mergedFrom) {
+ var merged = new Tile(positions.next, tile.value * 2);
+ merged.mergedFrom = [tile, next];
+
+ self.grid.insertTile(merged);
+ self.grid.removeTile(tile);
+
+ // Converge the two tiles' positions
+ tile.updatePosition(positions.next);
+
+ // Update the score
+ self.score += merged.value;
+
+ // The mighty 2048 tile
+ if (merged.value === 2048) self.won = true;
+}
+```
+
+In this code snippet, when two tiles with the same value (`tile` and `next`) are found, they are merged into a new tile (`merged`). The value of the new tile is added to the current score (`self.score += merged.value`). If the merged tile's value is 2048, the game is considered won (`self.won = true`).
+
+
+#### can we add some randomness? maybe 10% of the time give the user a 10x bonus?
+
+Sure, we can add a 10% chance of giving the user a 10x bonus when two tiles merge. To implement this, we'll modify the scoring logic in the `js/game_manager.js` file. Here's the step-by-step plan:
+
+1. Generate a random number between 0 and 1.
+2. Check if the random number is less than or equal to 0.1 (10% chance).
+3. If the condition is met, multiply the merged tile's value by 10 before adding it to the score.
+
+Here's the code change for the `js/game_manager.js` file:
+
+```javascript
+js/game_manager.js
+<<<<<<< ORIGINAL
+ // Update the score
+ self.score += merged.value;
+=======
+ // Update the score with a 10% chance of 10x bonus
+ var bonus = Math.random() <= 0.1 ? 10 : 1;
+ self.score += merged.value * bonus;
+>>>>>>> UPDATED
+```
+
+This change will give the user a 10x bonus 10% of the time when two tiles merge.
+
+> Applied edit to js/game_manager.js
+> Commit eb9d882 aider: Added a 10% chance of giving the user a 10x bonus when two tiles merge.
+
+
diff --git a/testbed/Aider-AI__aider/examples/README.md b/testbed/Aider-AI__aider/examples/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..e66ed963c5ba32a9d7e748761dc01732453d0715
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/README.md
@@ -0,0 +1,56 @@
+# What's it like to code with GPT-4 and aider?
+
+Below are some chat transcripts showing what it's like to code with the help of GPT-4 using the `aider` command-line chat tool.
+In the chats, you'll see a varity of coding tasks like generating new code, editing existing code, debugging, exploring unfamiliar code, etc.
+
+* [**Hello World Flask App**](https://aider.chat/examples/hello-world-flask.html): Start from scratch and have GPT create a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence.
+
+* [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Dive into an existing open-source repo, and get GPT's help to understand it and make modifications.
+
+* [**Complex Multi-file Change with Debugging**](https://aider.chat/examples/complex-change.html): GPT makes a complex code change that is coordinated across multiple source files, and resolves bugs by reviewing error output and doc snippets.
+
+* [**Create a Black Box Test Case**](https://aider.chat/examples/add-test.html): GPT creates a "black box" test case without access to the source of the method being tested, using only a [high level map of the repository based on ctags](https://aider.chat/docs/ctags.html).
+
+* [**Honor the NO_COLOR env var**](https://aider.chat/examples/no-color.html): The user pastes the NO_COLOR spec from no-color.org into the chat, and GPT-4 modifies the application to conform.
+
+* [**Download, analyze and plot US Census data**](https://aider.chat/examples/census.html): GPT-4 downloads census data, suggests some hypotheses to test, tests one and then summarizes and plots a graph of the results.
+
+* [**Semantic Search & Replace**](semantic-search-replace.md): Updating a collection of function calls, which requires dealing with various formatting and semantic differences in the various function call sites.
+
+* [**Pong Game with Pygame**](pong.md): Creating a simple Pong game using the Pygame library, with customizations for paddle size and color, and ball speed adjustments.
+
+* [**CSS Exercise: Animation Dropdown Menu**](css-exercises.md): A small CSS exercise involving adding animation to a dropdown menu.
+
+* [**Automatically Update Docs**](update-docs.md): Automatically updating documentation based on the latest version of the main() function.
+
+* [**Editing an Asciinema Cast File**](asciinema.md): Editing escape sequences in an `asciinema` screencast file.
+
+## What's happening in these chats?
+
+To better understand the chat transcripts, it's worth knowing that:
+
+ - Each time GPT-4 suggests a code change, `aider` automatically applies it to the source files.
+ - After applying the edits, `aider` commits them to git with a descriptive commit message.
+ - GPT-4 can only see and edit files which have been "added to the chat session". The user adds files either via the command line or the in-chat `/add` command. If GPT-4 asks to see specific files, `aider` asks the user for permission to add them to the chat. The transcripts contain notifications from `aider` whenever a file is added or dropped from the session.
+
+## Transcript formatting
+
+
+
+> This is output from the aider tool.
+
+#### These are chat messages written by the user.
+
+Chat responses from GPT-4 are in a blue font like this, and often include colorized "edit blocks" that specify edits to the code.
+Here's a sample edit block that switches from printing "hello" to "goodbye":
+
+```python
+hello.py
+<<<<<<< ORIGINAL
+print("hello")
+=======
+print("goodbye")
+>>>>>>> UPDATED
+```
+
+
diff --git a/testbed/Aider-AI__aider/examples/add-test.md b/testbed/Aider-AI__aider/examples/add-test.md
new file mode 100644
index 0000000000000000000000000000000000000000..cada5104b09b60e2354c2493d80a64f0748dff73
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/add-test.md
@@ -0,0 +1,173 @@
+
+# Create a "black box" test case
+
+This transcript shows GPT-4 creating a black box test case,
+**without being given
+access to the source code of the function being tested or any of the
+other code in the repo.**
+
+Instead, GPT is operating entirely off a
+[high level map of the repository based on ctags](https://aider.chat/docs/ctags.html),
+which provides details on all the symbols and function signatures in the repo.
+Using only the meta-data in the map, GPT is able to figure out how to call the method to be tested, as well as how to instantiate multiple class objects that are required to prepare for the test.
+
+In detail, GPT is able to use the repo map to:
+
+ - Find the function signature of the `cmd_add()` function which the user wants a test case for.
+ - Determine that it is a method of the `Command` class, so the test case will need to instantiate an instance to conduct the test.
+ - Identify that creating a `Command` instance requires passing in `InputOutput` and `Coder` instances.
+ - Figure out the arguments required to instantiate the `InputOutput` instance.
+ - Decide that the `Coder` class looks complex enough to use a `MagickMock`.
+
+The `cmd_add()` method is defined without type annotations, so GPT makes a
+reasonable but incorrect guess that it accepts a `list` of files. The
+user invokes the `/run` command to run the new unit test, which throws an
+error based on this misunderstanding.
+
+GPT reviews the error message and fixes the call to `cmd_add()` to
+correctly pass a `str` with a space-separated list of filenames
+instead. The test then passes on the next `/run`.
+
+
+
+> $ aider tests/test_commands.py
+> Creating empty file tests/test_commands.py
+> Added tests/test_commands.py to the chat
+> Files not tracked in .git:
+> - tests/test_commands.py
+>
+> Add them? y
+> Added tests/test_commands.py to the git repo
+> Commit b9cea2c Added new files to the git repo: tests/test_commands.py
+> Using git repo: .git
+
+#### add a test for cmd_add that passes in 'foo.txt' and 'bar.txt' and ensures they have both been created after the test. run the test in a tmp dir.
+
+I will add a new test method called `test_cmd_add` in the `tests/test_commands.py` file. This test will create a temporary directory, change the current working directory to the temporary directory, and then call the `cmd_add` method with 'foo.txt' and 'bar.txt' as arguments. After that, it will check if both files have been created in the temporary directory.
+
+Here's the code change:
+
+```python
+tests/test_commands.py
+<<<<<<< ORIGINAL
+=======
+import os
+import tempfile
+from unittest import TestCase
+from unittest.mock import MagicMock
+from aider.commands import Commands
+from aider.io import InputOutput
+
+class TestCommands(TestCase):
+ def test_cmd_add(self):
+ # Create a temporary directory and change the current working directory
+ with tempfile.TemporaryDirectory() as tmpdir:
+ os.chdir(tmpdir)
+
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+ coder = MagicMock()
+ commands = Commands(io, coder)
+
+ # Call the cmd_add method with 'foo.txt' and 'bar.txt'
+ commands.cmd_add(["foo.txt", "bar.txt"])
+
+ # Check if both files have been created in the temporary directory
+ self.assertTrue(os.path.exists("foo.txt"))
+ self.assertTrue(os.path.exists("bar.txt"))
+>>>>>>> UPDATED
+```
+
+This test will ensure that the `cmd_add` method creates the specified files in the current working directory.
+
+> Applied edit to tests/test_commands.py
+> Commit e2d5212 aider: Added a test method `test_cmd_add` that creates a temporary directory, calls the `cmd_add` method with 'foo.txt' and 'bar.txt', and checks if both files have been created in the temporary directory.
+
+#### /run pytest tests/test_commands.py
+
+> ```
+> ============================= test session starts ==============================
+> platform darwin -- Python 3.11.3, pytest-7.3.1, pluggy-1.0.0
+> rootdir: /Users/gauthier/Projects/aider
+> collected 1 item
+>
+> tests/test_commands.py F [100%]
+>
+> =================================== FAILURES ===================================
+> __________________________ TestCommands.test_cmd_add ___________________________
+>
+> self =
+>
+> def test_cmd_add(self):
+> # Create a temporary directory and change the current working directory
+> with tempfile.TemporaryDirectory() as tmpdir:
+> os.chdir(tmpdir)
+>
+> # Initialize the Commands and InputOutput objects
+> io = InputOutput(pretty=False, yes=True)
+> coder = MagicMock()
+> commands = Commands(io, coder)
+>
+> # Call the cmd_add method with 'foo.txt' and 'bar.txt'
+> > commands.cmd_add(["foo.txt", "bar.txt"])
+>
+> /Users/gauthier/Projects/aider/tests/test_commands.py:20:
+> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
+>
+> self =
+> args = ['foo.txt', 'bar.txt']
+>
+> def cmd_add(self, args):
+> "Add matching files to the chat session"
+>
+> added_fnames = []
+> files = self.coder.get_all_relative_files()
+> > for word in args.split():
+> E AttributeError: 'list' object has no attribute 'split'
+>
+> /Users/gauthier/Projects/aider/aider/commands.py:161: AttributeError
+> =========================== short test summary info ============================
+> FAILED tests/test_commands.py::TestCommands::test_cmd_add - AttributeError: '...
+> ============================== 1 failed in 0.34s ===============================
+> ```
+>
+> Add the output to the chat? [y/n] (y): y
+
+It seems that the `cmd_add` method in `aider/commands.py` is expecting a string as input, but in the test, we are passing a list. I will update the test to pass a string instead of a list.
+
+Here's the code change:
+
+```python
+tests/test_commands.py
+<<<<<<< ORIGINAL
+ # Call the cmd_add method with 'foo.txt' and 'bar.txt'
+ commands.cmd_add(["foo.txt", "bar.txt"])
+=======
+ # Call the cmd_add method with 'foo.txt' and 'bar.txt' as a single string
+ commands.cmd_add("foo.txt bar.txt")
+>>>>>>> UPDATED
+```
+
+Now, run the test again with the updated test method:
+
+```
+pytest tests/test_commands.py
+```
+
+> Applied edit to tests/test_commands.py
+> Commit d1551b4 aider: Updated test to pass a string instead of a list when calling `cmd_add` method.
+
+#### /run pytest tests/test_commands.py
+
+> ```
+> ============================= test session starts ==============================
+> platform darwin -- Python 3.11.3, pytest-7.3.1, pluggy-1.0.0
+> rootdir: /Users/gauthier/Projects/aider
+> collected 1 item
+>
+> tests/test_commands.py . [100%]
+>
+> ============================== 1 passed in 0.38s ===============================
+> ```
+
+
diff --git a/testbed/Aider-AI__aider/examples/asciinema.md b/testbed/Aider-AI__aider/examples/asciinema.md
new file mode 100644
index 0000000000000000000000000000000000000000..afb664f8c56ec712dd0da072becd671b1811eb92
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/asciinema.md
@@ -0,0 +1,26 @@
+
+# Editing an asciinema cast file with aider and gpt-4
+
+The user needs to make some tedious edits to the escape sequences in an `asciinema` screencast file.
+
+
+
+> $ aider hello.cast
+> Added hello.cast to the chat
+
+#### when the "hello.py> " prompt is displayed, it's including some escape codes to add a few blank lines below the prompt and then bringing the cursor back up. remove all that. just show the prompt followed by a space and leave the cursor showing right after that.
+
+```python
+hello.cast
+<<<<<<< ORIGINAL
+[19.534013, "o", "\u001b[?2004h\u001b[?1l\u001b[?25l\u001b[0m\u001b[?7l\u001b[0m\u001b[J\u001b[0;38;5;28mhello.py> \u001b[0m\r\r\n\r\r\n\r\r\n\u001b[0;38;5;28m \r\u001b[64C \r\u001b[3A\u001b[10C\u001b[?7h\u001b[0m\u001b[?12l\u001b[?25h"]
+=======
+[19.534013, "o", "\u001b[?2004h\u001b[?1l\u001b[?25l\u001b[0m\u001b[?7l\u001b[0m\u001b[J\u001b[0;38;5;28mhello.py> \u001b[0m\u001b[?7h\u001b[0m\u001b[?12l\u001b[?25h"]
+>>>>>>> UPDATED
+```
+
+> Applied edit to hello.cast
+> Commit a3fa4d2 aider: Removed escape codes to display prompt and cursor correctly.
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/census.md b/testbed/Aider-AI__aider/examples/census.md
new file mode 100644
index 0000000000000000000000000000000000000000..8988010b9108f30a1570a806790559f487568941
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/census.md
@@ -0,0 +1,305 @@
+
+# Download, analyze and plot US Census data
+
+Inspired by
+[Ethan Mollick's recent blog article about ChatGPT plugins](https://www.oneusefulthing.org/p/it-is-starting-to-get-strange),
+I used `aider` and GPT-4 to do data analysis of some US Census data.
+I asked GPT-4 how to download census data and to suggest some
+hypotheses to test. I asked it to write the code to get the data, test one of the
+hypotheses and provide a summary and plot of the results.
+
+
+
+> $ aider
+> Using git repo: .git
+
+#### what is a good basic us census dataset to analyze for interesting patterns?
+
+A good basic US Census dataset to analyze for interesting patterns is the American Community Survey (ACS) dataset. The ACS is an ongoing survey conducted by the US Census Bureau that provides vital information on a yearly basis about the US population and its characteristics. The dataset includes information on demographics, social, economic, and housing characteristics.
+
+You can find the ACS dataset on the US Census Bureau's website: https://www.census.gov/programs-surveys/acs/data.html
+
+Some interesting patterns to analyze in the ACS dataset could include:
+
+1. Population growth and decline in different regions.
+2. Changes in racial and ethnic composition.
+3. Income inequality and poverty levels.
+4. Educational attainment and its relationship with income.
+5. Housing affordability and homeownership rates.
+
+Remember to consider the dataset's documentation and guidelines to understand the data and its limitations.
+
+
+#### do you know how to download American Community Survey data?
+
+Yes, I can guide you on how to download American Community Survey (ACS) data. You can use the Census Bureau's API to access the data. To do this, you'll need an API key, which you can obtain from the Census Bureau's website.
+
+Here's a Python example using the `requests` library to download ACS data:
+
+1. Install the `requests` library if you haven't already:
+
+```
+pip install requests
+```
+
+2. Use the following code to download ACS data:
+
+```python
+import requests
+
+# Replace 'your_api_key' with your actual API key
+api_key = 'your_api_key'
+
+# Define the API endpoint and parameters
+url = 'https://api.census.gov/data/2019/acs/acs5'
+params = {
+ 'get': 'NAME,B01001_001E', # Variables to retrieve (NAME: Geographic area name, B01001_001E: Total population)
+ 'for': 'state:*', # Geographic area (all states)
+ 'key': api_key
+}
+
+# Send the request and parse the response
+response = requests.get(url, params=params)
+data = response.json()
+
+# Print the data
+for row in data:
+ print(row)
+```
+
+Replace `'your_api_key'` with the API key you obtained from the Census Bureau's website. This example retrieves the total population (variable `B01001_001E`) for all states. You can modify the `get` and `for` parameters to download different variables and geographic areas.
+
+For more information on available variables and geographic areas, refer to the ACS documentation:
+
+- Variables: https://api.census.gov/data/2019/acs/acs5/variables.html
+- Geographic Areas: https://api.census.gov/data/2019/acs/acs5/geography.html
+
+
+#### how do i get an api key?
+
+To obtain an API key from the Census Bureau, follow these steps:
+
+1. Go to the Census Bureau's API key request page: https://api.census.gov/data/key_signup.html
+
+2. Fill out the form with your name, email address, organization (if applicable), and a brief description of your intended use of the API.
+
+3. Click the "Request Key" button.
+
+4. You will receive an email containing your API key. It may take a few minutes for the email to arrive. Make sure to check your spam folder if you don't see it in your inbox.
+
+Once you have your API key, you can use it in your Python code to access the American Community Survey data, as shown in the previous example. Replace `'your_api_key'` with the API key you received in the email.
+
+
+#### please save your download script as `getdata.py`
+
+Here's the `getdata.py` file with the download script:
+
+```python
+new_file/getdata.py
+<<<<<<< ORIGINAL
+=======
+import requests
+
+# Replace 'your_api_key' with your actual API key
+api_key = 'your_api_key'
+
+# Define the API endpoint and parameters
+url = 'https://api.census.gov/data/2019/acs/acs5'
+params = {
+ 'get': 'NAME,B01001_001E', # Variables to retrieve (NAME: Geographic area name, B01001_001E: Total population)
+ 'for': 'state:*', # Geographic area (all states)
+ 'key': api_key
+}
+
+# Send the request and parse the response
+response = requests.get(url, params=params)
+data = response.json()
+
+# Print the data
+for row in data:
+ print(row)
+>>>>>>> UPDATED
+```
+
+Save this code in a new file named `getdata.py`. Remember to replace `'your_api_key'` with your actual API key obtained from the Census Bureau.
+
+> Allow creation of new file new_file/getdata.py? y
+> Add new_file/getdata.py to git? y
+> Applied edit to new_file/getdata.py
+> Commit afcb9d1 aider: Added `getdata.py` file with download script.
+
+#### add my api key: 4ae31ed2a0f0dd62609e51cd95deadbeefe7774f
+
+I will update the API key in the file.
+
+```python
+new_file/getdata.py
+<<<<<<< ORIGINAL
+api_key = 'your_api_key'
+=======
+api_key = '4ae31ed2a0f0dd62609e51cd95deadbeefe7774f'
+>>>>>>> UPDATED
+```
+
+> Applied edit to new_file/getdata.py
+> Commit 1d8b4a6 aider: Updated the API key in new_file/getdata.py.
+
+
+#### what are some interesting hypothesis that you might be able to test using ACS data?
+
+Here are some interesting hypotheses that you can test using ACS (American Community Survey) data:
+
+1. Relationship between income and education level: Higher education levels lead to higher income.
+2. Impact of population density on housing prices: Higher population density areas have higher housing prices.
+3. Relationship between employment rate and crime rate: Higher employment rates lead to lower crime rates.
+4. Effect of public transportation availability on car ownership: Areas with better public transportation have lower car ownership rates.
+5. Relationship between age distribution and healthcare facilities: Areas with a higher percentage of elderly population have more healthcare facilities.
+
+These are just a few examples. ACS data provides a wealth of information on various demographic, social, economic, and housing characteristics, allowing you to explore many different hypotheses.
+
+
+#### can you download the data to test #2 Impact of population density on housing prices: Higher population density areas have higher housing prices.
+
+As an AI language model, I cannot directly download or access data. However, I can help you with the code to download the required data for testing hypothesis #2 using the ACS data.
+
+To test the hypothesis, you'll need to obtain population density and housing price data. You can use the following ACS variables:
+
+- B01003_001E: Total population
+- B25077_001E: Median value of owner-occupied housing units
+
+Here's the updated code to fetch the required data:
+
+```python
+new_file/getdata.py
+<<<<<<< ORIGINAL
+ 'get': 'NAME,B01001_001E', # Variables to retrieve (NAME: Geographic area name, B01001_001E: Total population)
+=======
+ 'get': 'NAME,B01003_001E,B25077_001E', # Variables to retrieve (NAME: Geographic area name, B01003_001E: Total population, B25077_001E: Median value of owner-occupied housing units)
+>>>>>>> UPDATED
+```
+
+After running the updated code, you'll have the population and housing price data for each geographic area. You can then analyze the data to test the hypothesis.
+
+> Applied edit to new_file/getdata.py
+> Commit 81549ab aider: Updated code to fetch population and housing price data for testing hypothesis #2.
+
+#### instead of printing all the data, print a summary table that shows whether the data supports the hypothesis
+
+To print a summary table, you can use the pandas library to analyze the data and calculate the correlation between population density and housing prices. Here's how to modify the code:
+
+1. Import pandas.
+2. Convert the JSON data to a pandas DataFrame.
+3. Calculate the correlation between population density and housing prices.
+4. Print the correlation as a summary table.
+
+Here are the changes to the code:
+
+```python
+new_file/getdata.py
+<<<<<<< ORIGINAL
+import requests
+=======
+import requests
+import pandas as pd
+>>>>>>> UPDATED
+```
+
+```python
+new_file/getdata.py
+<<<<<<< ORIGINAL
+data = response.json()
+=======
+data = response.json()
+# Convert the JSON data to a pandas DataFrame
+df = pd.DataFrame(data[1:], columns=data[0])
+df[['B01003_001E', 'B25077_001E']] = df[['B01003_001E', 'B25077_001E']].apply(pd.to_numeric)
+>>>>>>> UPDATED
+```
+
+```python
+new_file/getdata.py
+<<<<<<< ORIGINAL
+for row in data:
+ print(row)
+=======
+# Calculate the correlation between population density and housing prices
+correlation = df['B01003_001E'].corr(df['B25077_001E'])
+
+# Print the correlation as a summary table
+print("Summary Table:")
+print("Correlation between population density and housing prices:", correlation)
+>>>>>>> UPDATED
+```
+
+After applying these changes, the code will print a summary table showing the correlation between population density and housing prices. A positive correlation value indicates that higher population density areas have higher housing prices, supporting the hypothesis.
+
+> Applied edit to new_file/getdata.py
+> Applied edit to new_file/getdata.py
+> Applied edit to new_file/getdata.py
+> Commit 2f4fcd4 aider: Added pandas library to analyze data and calculate correlation between population density and housing prices, and printed the correlation as a summary table.
+
+
+#### /run python3 new_file/getdata.py
+>```
+>Summary Table:
+>Correlation between population density and housing prices: 0.16020298445808737
+>```
+>
+> Add the output to the chat? y
+
+Great! The script seems to be working as expected. The correlation between population density and housing prices is 0.1602. If you need any further assistance or modifications to the code, please let me know.
+
+
+#### can you also plot a graph which would show any correlation?
+
+To plot a graph showing the correlation between population density and housing prices, we'll need to modify the `new_file/getdata.py` file. We'll use the `matplotlib` library to create the plot. If you don't have it installed, you can install it using `pip install matplotlib`.
+
+Here are the changes to make:
+
+1. Import the `matplotlib.pyplot` module.
+2. Create a scatter plot of population density (x-axis) and housing prices (y-axis).
+3. Add labels to the axes and a title to the plot.
+4. Display the plot.
+
+Here's the updated code:
+
+```python
+new_file/getdata.py
+<<<<<<< ORIGINAL
+import requests
+import pandas as pd
+=======
+import requests
+import pandas as pd
+import matplotlib.pyplot as plt
+>>>>>>> UPDATED
+
+...
+
+new_file/getdata.py
+<<<<<<< ORIGINAL
+print("Summary Table:")
+print("Correlation between population density and housing prices:", correlation)
+=======
+print("Summary Table:")
+print("Correlation between population density and housing prices:", correlation)
+
+# Create a scatter plot of population density and housing prices
+plt.scatter(df['B01003_001E'], df['B25077_001E'])
+plt.xlabel('Population Density')
+plt.ylabel('Housing Prices')
+plt.title('Correlation between Population Density and Housing Prices')
+plt.show()
+>>>>>>> UPDATED
+```
+
+This will create a scatter plot of population density and housing prices, which will help visualize the correlation between the two variables.
+
+> Applied edit to new_file/getdata.py
+> Applied edit to new_file/getdata.py
+> Commit 9ff3666 aider: Added scatter plot of population density and housing prices to visualize correlation.
+
+
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/chat-transcript-css.md b/testbed/Aider-AI__aider/examples/chat-transcript-css.md
new file mode 100644
index 0000000000000000000000000000000000000000..96e4f4f981cdb604055e5eda275c2aef2c2f5726
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/chat-transcript-css.md
@@ -0,0 +1,453 @@
+
+# Improve css styling of chat transcripts
+
+
+
+> $ aider index.html assets/css/style.css
+> Added index.html to the chat
+> Added assets/css/style.css to the chat
+
+
+#### add a rounded border to all sides of the boxquote
+
+```css
+assets/css/style.css
+<<<<<<< ORIGINAL
+.main-content blockquote{padding:0 1rem;margin-left:0;color:#819198;border-left:0.3rem solid #dce6f0}
+=======
+.main-content blockquote{
+ padding: 0 1rem;
+ margin
+```
+
+> ^C KeyboardInterrupt
+> ^C again to quit
+
+
+#### make all the edits to the embedded style tag in the html
+
+```html
+index.html
+<<<<<<< ORIGINAL
+
+=======
+
+>>>>>>> UPDATED
+```
+
+> Applied edit to index.html
+> Commit e7a5cb5 aider: Added rounded border to all sides of the boxquote.
+
+
+#### (blank)
+> Git repo has uncommitted changes.
+> Commit before the chat proceeds [y/n/commit message]? Changed border color and width of blockquote in index.html.
+> Commit 6898a1d Changed border color and width of blockquote in index.html.
+
+
+#### make the blockquote font color the same as the p color
+> Git repo has uncommitted changes.
+> Commit before the chat proceeds [y/n/commit message]? Added note about missing method and incorrect method calls in index.html.
+> Commit 2d31f5b Added note about missing method and incorrect method calls in index.html.
+
+```css
+assets/css/style.css
+<<<<<<< ORIGINAL
+.main-content blockquote{padding:0 1rem;margin-left:0;color:#819198;border-left
+```
+
+> ^C KeyboardInterrupt
+
+
+#### only edit index.html
+
+```html
+index.html
+<<<<<<< ORIGINAL
+
+=======
+
+>>>>>>> UPDATED
+```
+
+> Applied edit to index.html
+> Commit 8645217 aider: Changed blockquote font color to match
color in index.html.
+
+
+#### (blank)
+> Git repo has uncommitted changes.
+> Commit before the chat proceeds [y/n/commit message]? Removed color and button styles from blockquote in index.html.
+> Commit f8d4782 Removed color and button styles from blockquote in index.html.
+
+
+#### make the blockquote background a lighter shade of the same green as the border
+
+```html
+index.html
+<<<<<<< ORIGINAL
+
+=======
+
+>>>>>>> UPDATED
+```
+
+> Applied edit to index.html
+> Commit 0b0e332 aider: Added label "aider" to the top of the blockquote box using style.
+
+
+#### add more padding on the top of the box and bring the label into the box so it doesn't intersect the border
+
+```html
+index.html
+<<<<<<< ORIGINAL
+
+=======
+
+>>>>>>> UPDATED
+```
+
+> Applied edit to index.html
+> Commit eee902e aider: Added more padding on the top of the box and brought the label into the box so it doesn't intersect the border.
+
+
+#### (blank)
+> Git repo has uncommitted changes.
+> Commit before the chat proceeds [y/n/commit message]? Changed padding and added margin to main-content blockquote.
+> Commit c9128d1 Changed padding and added margin to main-content blockquote.
+
+
+#### change all the blockquote colors to be shades of blue instead of green. choose the blue based on the blue in the header gradient
+
+```html
+index.html
+<<<<<<< ORIGINAL
+
+=======
+
+>>>>>>> UPDATED
+```
+
+> Applied edit to index.html
+> Commit a26c135 aider: Changed blockquote colors to shades of blue based on the blue in the header gradient.
+
+#### can you style the "aider" label on the blockquote as a "tab" that docks onto the top of the box?
+
+```html
+index.html
+<<<<<<< ORIGINAL
+ .main-content blockquote {
+ border: 0.1rem solid #155799;
+ border-radius: 0.5rem;
+ background-color: #e0ecf4;
+ padding: 0.75rem;
+ position: relative;
+ margin-top: 2rem;
+ }
+ .main-content blockquote::before {
+ content: "aider";
+ display: inline-block;
+ position: absolute;
+ top: -1.75rem;
+ left: -0.5rem;
+ padding: 0 0.5rem;
+ font-weight: bold;
+ color: #155799;
+ }
+=======
+ .main-content blockquote {
+ border: 0.1rem solid #155799;
+ border-radius: 0.5rem;
+ background-color: #e0ecf4;
+ padding: 0.75rem;
+ position: relative;
+ margin-top: 2rem;
+ }
+ .main-content blockquote::before {
+ content: "aider";
+ display: inline-block;
+ position: absolute;
+ top: -0.5rem;
+ left: 0;
+ padding: 0.25rem 0.5rem;
+ font-weight: bold;
+ color: #155799;
+ background-color: #e0ecf4;
+ border-top-left-radius: 0.5rem;
+ border-top-right-radius: 0.5rem;
+ border: 0.1rem solid #155799;
+ border-bottom: none;
+ }
+>>>>>>> UPDATED
+```
+
+> Applied edit to index.html
+> Commit 292eda3 aider: Styled the "aider" label on the blockquote as a "tab" that docks onto the top of the box.
+
+
+#### (blank)
+> Git repo has uncommitted changes.
+> Commit before the chat proceeds [y/n/commit message]? Changed padding and positioning of a CSS element and updated its border.
+> Commit 01fda51 Changed padding and positioning of a CSS element and updated its border.
+
+
+#### apply the same box around the h4 element
+
+```html
+index.html
+<<<<<<< ORIGINAL
+
+=======
+
+>>>>>>> UPDATED
+```
+
+> Applied edit to index.html
+> Commit 6a8cd27 aider: Added box around h4 element.
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/complex-change.md b/testbed/Aider-AI__aider/examples/complex-change.md
new file mode 100644
index 0000000000000000000000000000000000000000..df2d2132150d5fa98149f2611b09a8f78c3f00d6
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/complex-change.md
@@ -0,0 +1,353 @@
+
+# A complex multi-file change, with debugging
+
+This is a chat transcript of a fairly complex code change. The user is trying to update tests to use an input mock provided by `prompt_toolkit`. This requires changes to multiple source files.
+
+Some things to notice:
+ - The initial changes don't work, so the user provides error messages and snippets from the `prompt_toolkit` docs to collaboratively debug and solve the problem.
+ - The user edits a file outside the chat using their editor. `aider` notices these out-of-band changes and offers to commit them.
+ - At one point the user hits `^C` to interrupt the GPT-4 response, since it's not a useful response. The user gives clarifications and gets a better result on the next reply.
+
+
+
+> $ aider tests/test_main.py aider/getinput.py
+> Added tests/test_main.py to the chat
+> Added aider/getinput.py to the chat
+
+#### instead of using /dev/null to send no input in the main tests, can we use the prompt_toolkit input mocking functions?
+
+Yes, we can use the `prompt_toolkit.input` module to mock the input in the tests. Here's how to modify the `tests/test_main.py` file:
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+import os
+import sys
+import tempfile
+from unittest import TestCase
+from aider.main import main
+import subprocess
+=======
+import os
+import tempfile
+from unittest import TestCase
+from aider.main import main
+import subprocess
+from prompt_toolkit.input import create_pipe_input
+from prompt_toolkit.output import DummyOutput
+>>>>>>> UPDATED
+```
+
+Now, update the tests to use the `create_pipe_input` and `DummyOutput`:
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+ with open(os.devnull, "r") as dev_null:
+ save_stdin = sys.stdin
+ sys.stdin = dev_null
+ main([])
+ sys.stdin = save_stdin
+=======
+ pipe_input = create_pipe_input()
+ save_stdin = sys.stdin
+ sys.stdin = pipe_input
+ main([], input=pipe_input, output=DummyOutput())
+ sys.stdin = save_stdin
+ pipe_input.close()
+>>>>>>> UPDATED
+```
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+ with open(os.devnull, "r") as dev_null:
+ save_stdin = sys.stdin
+ sys.stdin = dev_null
+ main(["foo.txt"])
+ sys.stdin = save_stdin
+ self.assertTrue(os.path.exists("foo.txt"))
+=======
+ pipe_input = create_pipe_input()
+ save_stdin = sys.stdin
+ sys.stdin = pipe_input
+ main(["foo.txt"], input=pipe_input, output=DummyOutput())
+ sys.stdin = save_stdin
+ pipe_input.close()
+ self.assertTrue(os.path.exists("foo.txt"))
+>>>>>>> UPDATED
+```
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+ with open(os.devnull, "r") as dev_null:
+ save_stdin = sys.stdin
+ sys.stdin = dev_null
+ main(["--yes", "foo.txt"])
+ sys.stdin = save_stdin
+ self.assertTrue(os.path.exists("foo.txt"))
+=======
+ pipe_input = create_pipe_input()
+ save_stdin = sys.stdin
+ sys.stdin = pipe_input
+ main(["--yes", "foo.txt"], input=pipe_input, output=DummyOutput())
+ sys.stdin = save_stdin
+ pipe_input.close()
+ self.assertTrue(os.path.exists("foo.txt"))
+>>>>>>> UPDATED
+```
+
+These changes will replace the usage of `/dev/null` with `prompt_toolkit`'s input mocking functions.
+
+> Applied edit to tests/test_main.py
+> Applied edit to tests/test_main.py
+> Applied edit to tests/test_main.py
+> Applied edit to tests/test_main.py
+> Commit c177e29 aider: Replaced usage of /dev/null with prompt_toolkit's input mocking functions in tests.
+
+
+> Git repo has uncommitted changes.
+> Suggested commit message:
+> Added import statement for sys module in test_main.py.
+> Commit before the chat proceeds [y/n/commit message]? y
+> Commit 6724fcd Added import statement for sys module in test_main.py.
+
+
+#### /add aider/main.py
+
+> Added aider/main.py to the chat
+
+
+#### I am getting this error: FAILED tests/test_main.py::TestMain::test_main_with_empty_git_dir_new_file - TypeError: main() got an unexpected keyword argument 'input'
+
+I apologize for the confusion. It seems I made a mistake in the `main()` function definition in `aider/main.py`. The `main()` function should accept `input` and `output` keyword arguments. Here's the fix:
+
+```python
+aider/main.py
+<<<<<<< ORIGINAL
+def main(args=None):
+ if args is None:
+ args = sys.argv[1:]
+=======
+def main(args=None, input=None, output=None):
+ if args is None:
+ args = sys.argv[1:]
+ if input is None:
+ input = sys.stdin
+ if output is None:
+ output = sys.stdout
+>>>>>>> UPDATED
+```
+
+Now, the `main()` function will accept the `input` and `output` keyword arguments, and the tests should pass.
+
+> Applied edit to aider/main.py
+> Commit 79dfba9 aider: Fixed main() function to accept input and output keyword arguments.
+
+#### we need to pass those into InputOutput and to prompt_toolkit right?
+
+Yes, you're right. We need to pass the `input` and `output` arguments to the `InputOutput` class and then to the `prompt_toolkit.prompt()` function. Here's how to modify the `aider/getinput.py` and `aider/main.py` files:
+
+In `aider/getinput.py`, update the `InputOutput` class to accept `input` and `output` arguments:
+
+```python
+aider/getinput.py
+<<<<<<< ORIGINAL
+class InputOutput:
+ def __init__(self, pretty, yes, input_history_file, chat_history_file):
+=======
+class InputOutput:
+ def __init__(self, pretty, yes, input_history_file, chat_history_file, input=None, output=None):
+ self.input = input
+ self.output = output
+>>>>>>> UPDATED
+```
+
+Now, update the `prompt()` function calls in the `get_input()` method to use the `input` and `output` arguments:
+
+```python
+aider/getinput.py
+<<<<<<< ORIGINAL
+ line = prompt(
+ show,
+ completer=completer_instance,
+ history=FileHistory(self.input_history_file),
+ style=style,
+ reserve_space_for_menu=4,
+ complete_style=CompleteStyle.MULTI_COLUMN,
+ )
+=======
+ line = prompt(
+ show,
+ completer=completer_instance,
+ history=FileHistory(self.input_history_file),
+ style=style,
+ reserve_space_for_menu=4,
+ complete_style=CompleteStyle.MULTI_COLUMN,
+ input=self.input,
+ output=self.output,
+ )
+>>>>>>> UPDATED
+```
+
+In `aider/main.py`, pass the `input` and `output` arguments to the `InputOutput` class:
+
+```python
+aider/main.py
+<<<<<<< ORIGINAL
+ io = InputOutput(args.pretty, args.yes, args.input_history_file, args.chat_history_file)
+=======
+ io = InputOutput(args.pretty, args.yes, args.input_history_file, args.chat_history_file, input=input, output=output)
+>>>>>>> UPDATED
+```
+
+These changes will ensure that the `input` and `output` arguments are passed to the `InputOutput` class and then to the `prompt_toolkit.prompt()` function.
+
+> Applied edit to aider/getinput.py
+> Applied edit to aider/getinput.py
+> Applied edit to aider/main.py
+> Commit cea9d2a aider: Updated InputOutput class to accept input and output arguments and passed them to prompt_toolkit.prompt() function.
+
+#### FAILED tests/test_main.py::TestMain::test_main_with_empty_git_dir_new_file - TypeError: prompt() got an unexpected keyword argument 'input'
+
+I apologize for the confusion. It seems I made a mistake in the `prompt_toolkit.prompt()` function call. The `prompt()` function accepts `stdin` and `stdout` arguments instead of `input` and `output`. Here's the fix:
+
+Update the `prompt()` function call in the `get_input()` method in `aider/getinput.py`:
+
+```python
+aider/getinput.py
+<<<<<<< ORIGINAL
+ input=self.input,
+ output=self.output,
+=======
+ stdin=self.input,
+ stdout=self.output,
+>>>>>>> UPDATED
+```
+
+These changes will ensure that the `input` and `output` arguments are passed correctly to the `prompt_toolkit.prompt()` function.
+
+> Applied edit to aider/getinput.py
+> Commit 55d3540 aider: Fixed `prompt()` function call in `get_input()` method to pass `stdin` and `stdout` arguments instead of `input` and `output`.
+
+#### prompt_toolkit.shortcuts.prompt(message: AnyFormattedText | None = None, *, history: History | None = None, editing_mode: EditingMode | None = None, refresh_interval: float | None = None, vi_mode: bool | None = None, lexer: Lexer | None = None, completer: Completer | None = None, complete_in_thread: bool | None = None, is_password: bool | None = None, key_bindings: KeyBindingsBase | None = None, bottom_toolbar: AnyFormattedText | None = None, style: BaseStyle | None = None, color_depth: ColorDepth | None = None, cursor: AnyCursorShapeConfig = None, include_default_pygments_style: FilterOrBool | None = None, style_transformation: StyleTransformation | None = None, swap_light_and_dark_colors: FilterOrBool | None = None, rprompt: AnyFormattedText | None = None, multiline: FilterOrBool | None = None, prompt_continuation: PromptContinuationText | None = None, wrap_lines: FilterOrBool | None = None, enable_history_search: FilterOrBool | None = None, search_ignore_case: FilterOrBool | None = None, complete_while_typing: FilterOrBool | None = None, validate_while_typing: FilterOrBool | None = None, complete_style: CompleteStyle | None = None, auto_suggest: AutoSuggest | None = None, validator: Validator | None = None, clipboard: Clipboard | None = None, mouse_support: FilterOrBool | None = None, input_processors: list[Processor] | None = None, placeholder: AnyFormattedText | None = None, reserve_space_for_menu: int | None = None, enable_system_prompt: FilterOrBool | None = None, enable_suspend: FilterOrBool | None = None, enable_open_in_editor: FilterOrBool | None = None, tempfile_suffix: str | Callable[[], str] | None = None, tempfile: str | Callable[[], str] | None = None, default: str = '', accept_default: bool = False, pre_run: Callable[[], None] | None = None) → str
+
+I apologize for the confusion earlier. It seems that the `prompt_toolkit.prompt()` function does not accept `stdin` and `stdout` arguments directly. Instead, we need to use the `Application` class from `prompt_toolkit` to create a custom application with the desired input and output. Here's how to modify the `aider/getinput.py` file:
+
+First, import the necessary classes and functions from `prompt_tool
+
+> ^C KeyboardInterrupt
+
+#### class prompt_toolkit.shortcuts.PromptSession(message: AnyFormattedText = '', *, multiline: FilterOrBool = False, wrap_lines: FilterOrBool = True, is_password: FilterOrBool = False, vi_mode: bool = False, editing_mode: EditingMode = , complete_while_typing: FilterOrBool = True, validate_while_typing: FilterOrBool = True, enable_history_search: FilterOrBool = False, search_ignore_case: FilterOrBool = False, lexer: Lexer | None = None, enable_system_prompt: FilterOrBool = False, enable_suspend: FilterOrBool = False, enable_open_in_editor: FilterOrBool = False, validator: Validator | None = None, completer: Completer | None = None, complete_in_thread: bool = False, reserve_space_for_menu: int = 8, complete_style: CompleteStyle = , auto_suggest: AutoSuggest | None = None, style: BaseStyle | None = None, style_transformation: StyleTransformation | None = None, swap_light_and_dark_colors: FilterOrBool = False, color_depth: ColorDepth | None = None, cursor: AnyCursorShapeConfig = None, include_default_pygments_style: FilterOrBool = True, history: History | None = None, clipboard: Clipboard | None = None, prompt_continuation: PromptContinuationText | None = None, rprompt: AnyFormattedText = None, bottom_toolbar: AnyFormattedText = None, mouse_support: FilterOrBool = False, input_processors: list[Processor] | None = None, placeholder: AnyFormattedText | None = None, key_bindings: KeyBindingsBase | None = None, erase_when_done: bool = False, tempfile_suffix: str | Callable[[], str] | None = '.txt', tempfile: str | Callable[[], str] | None = None, refresh_interval: float = 0, input: Input | None = None, output: Output | None = None)
+
+Thank you for providing the `PromptSession` class information. We can use the `PromptSession` class to create a custom session with the desired input and output. Here's how to modify the `aider/getinput.py` file:
+
+First, import the `PromptSession` class from `prompt_toolkit.shortcuts`:
+
+```python
+aider/getinput.py
+<<<<<<< ORIGINAL
+from prompt_toolkit import prompt
+=======
+from prompt_toolkit.shortcuts import PromptSession
+>>>>>>> UPDATED
+```
+
+Now, update the `get_input()` method to use the `PromptSession` class:
+
+```python
+aider/getinput.py
+<<<<<<< ORIGINAL
+ line = prompt(
+ show,
+ completer=completer_instance,
+ history=FileHistory(self.input_history_file),
+ style=style,
+ reserve_space_for_menu=4,
+ complete_style=CompleteStyle.MULTI_COLUMN,
+ input=self.input,
+ output=self.output,
+ )
+=======
+ session = PromptSession(
+ message=show,
+ completer=completer_instance,
+ history=FileHistory(self.input_history_file),
+ style=style,
+ reserve_space_for_menu=4,
+ complete_style=CompleteStyle.MULTI_COLUMN,
+ input=self.input,
+ output=self.output,
+ )
+ line = session.prompt()
+>>>>>>> UPDATED
+```
+
+These changes will ensure that the `input` and `output` arguments are passed correctly to the `prompt_toolkit`'s `PromptSession` class.
+
+> Applied edit to aider/getinput.py
+> Applied edit to aider/getinput.py
+> Commit ac92cca aider: Replaced `prompt()` with `PromptSession()` to correctly pass input and output arguments.
+
+#### try using create_input(StringIO('')) in the tests
+
+
+I understand that you want to use `create_input(StringIO(''))` in the tests. However, I need more information about which test cases you want to apply this change to and how you want to use it. Please provide more details or examples.
+
+
+#### the ones that currently use create_pipe_input()
+
+I see that you want to replace `create_pipe_input()` with `create_input(StringIO(''))` in the test cases. Here are the changes for the `tests/test_main.py` file:
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+from prompt_toolkit.input import create_pipe_input
+=======
+from prompt_toolkit.input import create_input
+from io import StringIO
+>>>>>>> UPDATED
+```
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+ pipe_input = create_pipe_input()
+=======
+ pipe_input = create_input(StringIO(''))
+>>>>>>> UPDATED
+```
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+ pipe_input = create_pipe_input()
+=======
+ pipe_input = create_input(StringIO(''))
+>>>>>>> UPDATED
+```
+
+```python
+tests/test_main.py
+<<<<<<< ORIGINAL
+ pipe_input = create_pipe_input()
+=======
+ pipe_input = create_input(StringIO(''))
+>>>>>>> UPDATED
+```
+
+These changes will replace the usage of `create_pipe_input()` with `create_input(StringIO(''))` in the test cases.
+
+> Applied edit to tests/test_main.py
+> Applied edit to tests/test_main.py
+> Applied edit to tests/test_main.py
+> Applied edit to tests/test_main.py
+> Commit 4bb043f aider: Replaced the usage of `create_pipe_input()` with `create_input(StringIO(''))` in the test cases.
+
+#### nice, that worked!
+
+I'm glad the changes worked for you! If you have any more requests or need further assistance, feel free to ask.
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/css-exercises.md b/testbed/Aider-AI__aider/examples/css-exercises.md
new file mode 100644
index 0000000000000000000000000000000000000000..7a361965df1a184b338dfe8475c9dce61238fa65
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/css-exercises.md
@@ -0,0 +1,77 @@
+
+# Complete a css exercise with aider and GPT-4
+
+In this chat transcript, the user asks about the open source [CSS Exercises repo](https://github.com/TheOdinProject/css-exercises) and completes an animation exercise.
+
+
+
+> $ aider
+
+#### what is this repo?
+
+Based on the file list provided, it seems like this repository contains a collection of CSS and HTML exercises, solutions, and examples. The exercises cover various topics such as Flexbox, Grid, Animation, Foundations, and Margin & Padding. The repository also includes images and other assets used in the exercises.
+
+
+#### /add animation/03-dropdown-menu/README.md
+
+> Added animation/03-dropdown-menu/README.md to the chat
+
+Yes, I see the content of the `animation/03-dropdown-menu/README.md` file. It describes an exercise to add animation to a dropdown menu, creating a bounce illusion when the dropdown expands close to its final end state. The desired outcome is shown in a GIF file, and the hints provided suggest using the `transform-origin` property and adding an intermediate step to the keyframe at-rule to achieve the bounce effect.
+
+Is there any specific change or improvement you would like me to make to this file or any other file in the repository?
+
+
+#### can you make the changes suggested in the readme?
+
+To make the changes suggested in the `animation/03-dropdown-menu/README.md`, I need to see the contents of the following files:
+
+1. `animation/03-dropdown-menu/style.css`
+2. `animation/03-dropdown-menu/script.js`
+
+Please provide the contents of these files so I can suggest the necessary changes.
+
+
+> animation/03-dropdown-menu/style.css
+> animation/03-dropdown-menu/script.js
+> Add these files to the chat? y
+
+
+Apologies for the oversight. I see the content of the `animation/03-dropdown-menu/style.css` and `animation/03-dropdown-menu/script.js` files now. I will suggest the necessary changes to add the bounce animation to the dropdown menu.
+
+```css
+animation/03-dropdown-menu/style.css
+<<<<<<< ORIGINAL
+.visible {
+ display: block;
+}
+=======
+.visible {
+ display: block;
+ animation: expand 0.3s ease-out;
+ transform-origin: top;
+}
+
+@keyframes expand {
+ 0% {
+ transform: scaleY(0);
+ }
+ 80% {
+ transform: scaleY(1.1);
+ }
+ 100% {
+ transform: scaleY(1);
+ }
+}
+>>>>>>> UPDATED
+```
+
+These changes add the bounce animation to the dropdown menu by creating a new keyframe animation called `expand`. The `transform-origin` property is set to `top` to make the dropdown menu start transforming from the top. The intermediate step at 80% of the animation creates the bounce illusion.
+
+> Applied edit to animation/03-dropdown-menu/style.css
+> Commit bb3a813 aider: Added bounce animation to dropdown menu.
+
+#### that worked!
+
+I'm glad the changes worked for you! If you have any more requests or need assistance with other parts of the code, feel free to ask. I'm here to help!
+
+
diff --git a/testbed/Aider-AI__aider/examples/hello-world-flask.md b/testbed/Aider-AI__aider/examples/hello-world-flask.md
new file mode 100644
index 0000000000000000000000000000000000000000..af52a7a2a09cc42959adaa956300726f2b39adcc
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/hello-world-flask.md
@@ -0,0 +1,124 @@
+
+# Create a simple flask app with aider & gpt-4
+
+In this chat transcript, the user asks to make a simple flask app with various endpoints.
+
+
+
+> $ aider app.py
+> Creating empty file app.py
+> Added app.py to the chat
+
+#### make a flask app with a /hello endpoint that returns hello world
+
+To create a Flask app with a `/hello` endpoint that returns "Hello, World!", we need to install Flask, import it, create an app instance, and define a route for the `/hello` endpoint. Here's how to update the `app.py` file:
+
+```python
+app.py
+<<<<<<< ORIGINAL
+
+=======
+from flask import Flask
+
+app = Flask(__name__)
+
+@app.route('/hello')
+def hello():
+ return "Hello, World!"
+
+if __name__ == '__main__':
+ app.run()
+>>>>>>> UPDATED
+```
+
+Make sure to install Flask in your project environment using `pip install flask` before running the app.
+
+> Applied edit to app.py
+> Commit 414c394 aider: Added a `/hello` endpoint that returns "Hello, World!" to the Flask app.
+
+#### add an endpoint like /add/3/5 which returns the sum of the 2 numbers
+
+To add an endpoint like `/add/3/5` that returns the sum of the two numbers, you can create a new route with two URL parameters. Update the `app.py` file as follows:
+
+```python
+app.py
+<<<<<<< ORIGINAL
+@app.route('/hello')
+def hello():
+ return "Hello, World!"
+=======
+@app.route('/add//')
+def add(num1, num2):
+ return str(num1 + num2)
+
+@app.route('/hello')
+def hello():
+ return "Hello, World!"
+>>>>>>> UPDATED
+```
+
+Now, when you visit `/add/3/5`, it will return the sum of the two numbers, which is `8`.
+
+> Applied edit to app.py
+> Commit 0872c51 aider: Added an endpoint `/add//` that returns the sum of the two numbers.
+
+#### add /fibonacci/X
+
+To add a `/fibonacci/X` endpoint that returns the Xth number in the Fibonacci sequence, you can create a new route with a URL parameter for X and a function to calculate the Fibonacci number. Update the `app.py` file as follows:
+
+```python
+app.py
+<<<<<<< ORIGINAL
+@app.route('/hello')
+def hello():
+ return "Hello, World!"
+=======
+def fibonacci(n):
+ if n <= 0:
+ return "Invalid input. Please enter a positive integer."
+ elif n == 1:
+ return 0
+ elif n == 2:
+ return 1
+ else:
+ a, b = 0, 1
+ for _ in range(n - 2):
+ a, b = b, a + b
+ return b
+
+@app.route('/fibonacci/')
+def fibonacci_x(x):
+ return str(fibonacci(x))
+
+@app.route('/hello')
+def hello():
+ return "Hello, World!"
+>>>>>>> UPDATED
+```
+
+Now, when you visit `/fibonacci/X`, it will return the Xth number in the Fibonacci sequence. For example, `/fibonacci/5` will return `3`.
+
+> Applied edit to app.py
+> Commit 163fba8 aider: Added a `/fibonacci/X` endpoint that returns the Xth number in the Fibonacci sequence.
+
+#### remove the hello endpoint
+
+To remove the `/hello` endpoint, you can simply delete the corresponding route and function in the `app.py` file. Here's the update:
+
+```python
+app.py
+<<<<<<< ORIGINAL
+@app.route('/hello')
+def hello():
+ return "Hello, World!"
+=======
+>>>>>>> UPDATED
+```
+
+Now, the `/hello` endpoint has been removed from the Flask app.
+
+> Applied edit to app.py
+> Commit eab6620 aider: Removed the `/hello` endpoint from the Flask app.
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/hello.md b/testbed/Aider-AI__aider/examples/hello.md
new file mode 100644
index 0000000000000000000000000000000000000000..5828ec3fc80dd709c62ba87ea3eae8e0f40d6091
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/hello.md
@@ -0,0 +1,31 @@
+# Hello aider!
+
+Here is the simplest possible "hello world" example of using aider:
+
+
+
+
+
+
+#### change hello to goodbye
+
+To change the output from "hello" to "goodbye", we need to modify the `hello.py` file.
+
+Here is the change:
+
+```python
+hello.py
+<<<<<<< ORIGINAL
+print("hello")
+=======
+print("goodbye")
+>>>>>>> UPDATED
+```
+
+> Applied edit to hello.py
+> Commit 672ae42 aider: Changed output from "hello" to "goodbye" in hello.py.
+
+
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/no-color.md b/testbed/Aider-AI__aider/examples/no-color.md
new file mode 100644
index 0000000000000000000000000000000000000000..8cc3042ce903dfbe3f30253d0af8cf5871260e38
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/no-color.md
@@ -0,0 +1,160 @@
+
+# Honor the NO_COLOR environment variable
+
+The user pastes the specification of the NO_COLOR environment variable protocol
+from [no-color.org](https://no-color.org) into the chat with GPT-4.
+
+GPT figures out which files need to be edited, and asks permission to make changes.
+It then disables all the color and pretty-printing functions if NO_COLOR is
+set, so the tool conforms to the specification.
+
+The user then asks for a test case, which GPT adds as well.
+
+
+
+> $ aider
+> Using git repo: .git
+> Use /help to see in-chat commands.
+
+#### Command-line software which adds ANSI color to its output by default should check for a NO_COLOR environment variable that, when present and not an empty string (regardless of its value), prevents the addition of ANSI color.
+
+To implement this feature, we need to modify the `aider/io.py` file. Please make it *read-write* so I can provide the necessary changes.
+
+> aider/io.py
+> Add these files to the chat? y
+
+Great! Now, I will make the necessary changes to check for the `NO_COLOR` environment variable and disable ANSI color when it is present and not an empty string.
+
+```python
+aider/io.py
+<<<<<<< ORIGINAL
+import os
+=======
+import os
+import os.path
+>>>>>>> UPDATED
+```
+
+```python
+aider/io.py
+<<<<<<< ORIGINAL
+ def __init__(
+ self,
+ pretty=True,
+ yes=False,
+ input_history_file=None,
+ chat_history_file=None,
+ input=None,
+ output=None,
+ user_input_color="blue",
+ tool_output_color=None,
+ tool_error_color="red",
+ ):
+ self.user_input_color = user_input_color
+ self.tool_output_color = tool_output_color
+ self.tool_error_color = tool_error_color
+ self.input = input
+ self.output = output
+ self.pretty = pretty
+ self.yes = yes
+ self.input_history_file = input_history_file
+ if chat_history_file is not None:
+ self.chat_history_file = Path(chat_history_file)
+ else:
+ self.chat_history_file = None
+
+ if pretty:
+ self.console = Console()
+ else:
+ self.console = Console(force_terminal=True, no_color=True)
+=======
+ def __init__(
+ self,
+ pretty=True,
+ yes=False,
+ input_history_file=None,
+ chat_history_file=None,
+ input=None,
+ output=None,
+ user_input_color="blue",
+ tool_output_color=None,
+ tool_error_color="red",
+ ):
+ no_color = os.environ.get("NO_COLOR")
+ if no_color is not None and no_color != "":
+ pretty = False
+
+ self.user_input_color = user_input_color if pretty else None
+ self.tool_output_color = tool_output_color if pretty else None
+ self.tool_error_color = tool_error_color if pretty else None
+ self.input = input
+ self.output = output
+ self.pretty = pretty
+ self.yes = yes
+ self.input_history_file = input_history_file
+ if chat_history_file is not None:
+ self.chat_history_file = Path(chat_history_file)
+ else:
+ self.chat_history_file = None
+
+ self.console = Console(force_terminal=not pretty, no_color=not pretty)
+>>>>>>> UPDATED
+```
+
+These changes will make the software check for the `NO_COLOR` environment variable and disable ANSI color when it is present and not an empty string.
+
+> Applied edit to aider/io.py
+> Applied edit to aider/io.py
+> Commit 3218242 aider: Added check for NO_COLOR environment variable to disable ANSI color.
+
+#### add a test
+
+To add a test for the `NO_COLOR` environment variable, we will create a new test function in the `tests/test_io.py` file. Since this file does not exist, we will create it first.
+
+```python
+tests/test_io.py
+<<<<<<< ORIGINAL
+=======
+import os
+import unittest
+from unittest.mock import patch
+from aider.io import InputOutput
+
+class TestInputOutput(unittest.TestCase):
+ def test_no_color_environment_variable(self):
+ with patch.dict(os.environ, {"NO_COLOR": "1"}):
+ io = InputOutput()
+ self.assertFalse(io.pretty)
+
+if __name__ == "__main__":
+ unittest.main()
+>>>>>>> UPDATED
+```
+
+This test function checks if the `pretty` attribute of the `InputOutput` class is set to `False` when the `NO_COLOR` environment variable is set.
+
+> Allow creation of new file tests/test_io.py? y
+> Add tests/test_io.py to git? y
+> Applied edit to tests/test_io.py
+> Commit 52a9df5 aider: Added a test function to check if the `pretty` attribute of the `InputOutput` class is set to `False` when the `NO_COLOR` environment variable is set.
+
+#### /run pytest
+
+> ============================= test session starts ==============================
+> platform darwin -- Python 3.11.3, pytest-7.3.1, pluggy-1.0.0
+> rootdir: /Users/gauthier/Projects/aider
+> collected 25 items
+>
+> tests/test_coder.py ...... [ 24%]
+> tests/test_commands.py . [ 28%]
+> tests/test_io.py . [ 32%]
+> tests/test_main.py .... [ 48%]
+> tests/test_repomap.py ... [ 60%]
+> tests/test_utils.py .......... [100%]
+>
+> ============================== 25 passed in 1.41s ==============================
+>
+> Add the output to the chat? y
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/semantic-search-replace.md b/testbed/Aider-AI__aider/examples/semantic-search-replace.md
new file mode 100644
index 0000000000000000000000000000000000000000..212a7dff3358e2ac9d11eb0a61e1188d7cfeb600
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/semantic-search-replace.md
@@ -0,0 +1,56 @@
+# Semantic search & replace code with aider and gpt-4
+
+In this chat transcript, the user asks to modify a series of function calls.
+
+Notice that it isn't replacing exact strings.
+Making the change requires dealing with various formatting and semantic differences in the calls that it is updating.
+
+Some edits were elided from this transcript for brevity.
+
+
+
+> $ aider aider/coder.py
+> Added aider/coder.py to the chat
+
+#### replace all the self.console.print() calls that contain [red] with calls to self.io.tool_error() with [red] removed from the string
+
+```python
+aider/coder.py
+<<<<<<< ORIGINAL
+ self.console.print(
+ f"[red]This tool will almost certainly fail to work with {main_model}"
+ )
+=======
+ self.io.tool_error(f"This tool will almost certainly fail to work with {main_model}")
+>>>>>>> UPDATED
+```
+
+```python
+aider/coder.py
+<<<<<<< ORIGINAL
+ self.console.print("[red]Files are not in a git repo.")
+=======
+ self.io.tool_error("Files are not in a git repo.")
+>>>>>>> UPDATED
+```
+
+```python
+aider/coder.py
+<<<<<<< ORIGINAL
+ self.console.print("[red]Malformed ORIGINAL/UPDATE blocks, retrying...")
+ self.console.print("[red]", Text(err))
+=======
+ self.io.tool_error("Malformed ORIGINAL/UPDATE blocks, retrying...")
+ self.io.tool_error(Text(err))
+>>>>>>> UPDATED
+```
+
+Please note that I couldn't find the `self.io.tool_error()` method in the provided code. You may need to create this method in the appropriate class or provide the correct method name to replace the `self.console.print()` calls.
+
+> Applied edit to aider/coder.py
+> Applied edit to aider/coder.py
+> Applied edit to aider/coder.py
+> Commit 919cfc2 aider: Replaced all self.console.print() calls with self.io.tool_error() calls with [red] removed from the string.
+
+
+
diff --git a/testbed/Aider-AI__aider/examples/update-docs.md b/testbed/Aider-AI__aider/examples/update-docs.md
new file mode 100644
index 0000000000000000000000000000000000000000..ca956b5f829229ebd4bccb971d2d791f0ef0ad94
--- /dev/null
+++ b/testbed/Aider-AI__aider/examples/update-docs.md
@@ -0,0 +1,38 @@
+# Automatically update docs with aider and gpt-4
+
+In this chat transcript, the user asks to automatically update the Usage docs based on the latest version of the main() function in the code.
+
+
+
+> $ aider ./README.md aider/main.py
+> Added README.md to the chat
+> Added aider/main.py to the chat
+
+#### the cmd line args in main() have been updated. update the readme to accurately describe them.
+
+```markdown
+README.md
+<<<<<<< ORIGINAL
+- `--history-file HISTORY_FILE`: Specify the chat input history file (default: .aider.history). Override the default with the environment variable `AIDER_HISTORY_FILE`.
+- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override the default with the environment variable `AIDER_MODEL`.
+- `-3`: Use gpt-3.5-turbo model for the main chat (basically won't work). No environment variable override.
+- `--no-pretty`: Disable pretty, colorized output. Override the default with the environment variable `AIDER_PRETTY` (default: 1 for enabled, 0 for disabled).
+- `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True).
+- `--no-auto-commits`: Disable auto commit of changes. Override the default with the environment variable `AIDER_AUTO_COMMITS` (default: 1 for enabled, 0 for disabled).
+=======
+- `--input-history-file INPUT_HISTORY_FILE`: Specify the chat input history file (default: .aider.input.history). Override the default with the environment variable `AIDER_INPUT_HISTORY_FILE`.
+- `--chat-history-file CHAT_HISTORY_FILE`: Specify the chat history file (default: .aider.chat.history.md). Override the default with the environment variable `AIDER_CHAT_HISTORY_FILE`.
+- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override the default with the environment variable `AIDER_MODEL`.
+- `-3`: Use gpt-3.5-turbo model for the main chat (basically won't work). No environment variable override.
+- `--no-pretty`: Disable pretty, colorized output. Override the default with the environment variable `AIDER_PRETTY` (default: 1 for enabled, 0 for disabled).
+- `--apply FILE`: Apply the changes from the given file instead of running the chat (debug).
+- `--no-auto-commits`: Disable auto commit of changes. Override the default with the environment variable `AIDER_AUTO_COMMITS` (default: 1 for enabled, 0 for disabled).
+- `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True).
+- `--yes`: Always say yes to every confirmation (default: False).
+>>>>>>> UPDATED
+```
+
+> Applied edit to README.md
+> Commit 024f45e aider: Updated command line arguments in main() and updated README.md to accurately describe them.
+
+
diff --git a/testbed/Aider-AI__aider/hello.py b/testbed/Aider-AI__aider/hello.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/testbed/Aider-AI__aider/pytest.ini b/testbed/Aider-AI__aider/pytest.ini
new file mode 100644
index 0000000000000000000000000000000000000000..5ea365392cfd412e2cffed638a2547f312e50588
--- /dev/null
+++ b/testbed/Aider-AI__aider/pytest.ini
@@ -0,0 +1,3 @@
+[pytest]
+norecursedirs = tmp.* build benchmark
+
diff --git a/testbed/Aider-AI__aider/requirements.txt b/testbed/Aider-AI__aider/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0eedb5cf00ccb0d9aca61e564d36fb3698b7b1c0
--- /dev/null
+++ b/testbed/Aider-AI__aider/requirements.txt
@@ -0,0 +1,35 @@
+aiohttp==3.8.4
+aiosignal==1.3.1
+async-timeout==4.0.2
+attrs==23.1.0
+certifi==2023.5.7
+charset-normalizer==3.1.0
+frozenlist==1.3.3
+gitdb==4.0.10
+GitPython==3.1.31
+idna==3.4
+markdown-it-py==2.2.0
+mdurl==0.1.2
+multidict==6.0.4
+openai==0.27.6
+prompt-toolkit==3.0.38
+Pygments==2.15.1
+requests==2.30.0
+rich==13.3.5
+smmap==5.0.0
+tqdm==4.65.0
+urllib3==2.0.2
+wcwidth==0.2.6
+yarl==1.9.2
+pytest==7.3.1
+tiktoken==0.4.0
+configargparse
+PyYAML
+backoff==2.2.1
+networkx==3.1
+diskcache==5.6.1
+numpy==1.24.3
+scipy==1.10.1
+jsonschema==4.17.3
+sounddevice==0.4.6
+soundfile==0.12.1
diff --git a/testbed/Aider-AI__aider/scripts/versionbump.py b/testbed/Aider-AI__aider/scripts/versionbump.py
new file mode 100644
index 0000000000000000000000000000000000000000..2704cb6cbb5cf3da68bfd9fec9eafa9e1e8f6d33
--- /dev/null
+++ b/testbed/Aider-AI__aider/scripts/versionbump.py
@@ -0,0 +1,80 @@
+import argparse
+import re
+import subprocess
+
+from packaging import version
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Bump version")
+ parser.add_argument("new_version", help="New version in x.y.z format")
+ parser.add_argument(
+ "--dry-run", action="store_true", help="Print each step without actually executing them"
+ )
+ args = parser.parse_args()
+ dry_run = args.dry_run
+
+ new_version_str = args.new_version
+ if not re.match(r"^\d+\.\d+\.\d+$", new_version_str):
+ raise ValueError(f"Invalid version format, must be x.y.z: {new_version_str}")
+
+ new_version = version.parse(new_version_str)
+ incremented_version = version.Version(
+ f"{new_version.major}.{new_version.minor}.{new_version.micro + 1}"
+ )
+
+ with open("aider/__init__.py", "r") as f:
+ content = f.read()
+
+ current_version = re.search(r'__version__ = "(.+?)"', content).group(1)
+ if new_version <= version.parse(current_version):
+ raise ValueError(
+ f"New version {new_version} must be greater than the current version {current_version}"
+ )
+
+ updated_content = re.sub(r'__version__ = ".+?"', f'__version__ = "{new_version}"', content)
+
+ print("Updating aider/__init__.py with new version:")
+ print(updated_content)
+ if not dry_run:
+ with open("aider/__init__.py", "w") as f:
+ f.write(updated_content)
+
+ git_commands = [
+ ["git", "add", "aider/__init__.py"],
+ ["git", "commit", "-m", f"version bump to {new_version}"],
+ ["git", "tag", f"v{new_version}"],
+ ["git", "push", "origin"],
+ ["git", "push", "origin", f"v{new_version}"],
+ ]
+
+ for cmd in git_commands:
+ print(f"Running: {' '.join(cmd)}")
+ if not dry_run:
+ subprocess.run(cmd, check=True)
+
+ updated_dev_content = re.sub(
+ r'__version__ = ".+?"', f'__version__ = "{incremented_version}-dev"', content
+ )
+
+ print()
+ print("Updating aider/__init__.py with new dev version:")
+ print(updated_dev_content)
+ if not dry_run:
+ with open("aider/__init__.py", "w") as f:
+ f.write(updated_dev_content)
+
+ git_commands_dev = [
+ ["git", "add", "aider/__init__.py"],
+ ["git", "commit", "-m", f"set version to {incremented_version}-dev"],
+ ["git", "push", "origin"],
+ ]
+
+ for cmd in git_commands_dev:
+ print(f"Running: {' '.join(cmd)}")
+ if not dry_run:
+ subprocess.run(cmd, check=True)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/testbed/Aider-AI__aider/setup.py b/testbed/Aider-AI__aider/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..bc6efe6ca44ca388381f8635438b9c3e5ac86102
--- /dev/null
+++ b/testbed/Aider-AI__aider/setup.py
@@ -0,0 +1,31 @@
+import re
+
+from setuptools import find_packages, setup
+
+with open("requirements.txt") as f:
+ requirements = f.read().splitlines()
+
+from aider import __version__
+
+with open("README.md", "r", encoding="utf-8") as f:
+ long_description = f.read()
+ long_description = re.sub(r"\n!\[.*\]\(.*\)", "", long_description)
+ long_description = re.sub(r"\n- \[.*\]\(.*\)", "", long_description)
+
+setup(
+ name="aider-chat",
+ version=__version__,
+ packages=find_packages(),
+ include_package_data=True,
+ install_requires=requirements,
+ python_requires='>=3.9',
+ entry_points={
+ "console_scripts": [
+ "aider = aider.main:main",
+ ],
+ },
+ description="aider is GPT powered coding in your terminal",
+ long_description=long_description,
+ long_description_content_type="text/markdown",
+ url="https://github.com/paul-gauthier/aider",
+)
diff --git a/testbed/Aider-AI__aider/share/index.md b/testbed/Aider-AI__aider/share/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..9ef901fbc03793daab634edcb3b10129db4995a1
--- /dev/null
+++ b/testbed/Aider-AI__aider/share/index.md
@@ -0,0 +1,71 @@
+
+# Shared aider chat transcript
+
+A user has shared the following transcript of a pair programming chat session
+created using aider.
+Aider is a command line tool that lets you pair program with GPT-3.5 or
+GPT-4, to edit code stored in your local git repository.
+
+The transcript is based on this chat transcript data.
+
+
+
+
+## Transcript format
+
+
+
+> This is output from the aider tool.
+
+#### These are chat messages written by the user.
+
+Chat responses from GPT are in a blue font like this,
+and often include colorized "diffs" where GPT is editing code:
+
+
+```python
+hello.py
+<<<<<<< ORIGINAL
+print("hello")
+=======
+print("goodbye")
+>>>>>>> UPDATED
+```
+
+
+
+
+
diff --git a/testbed/Aider-AI__aider/tests/__init__.py b/testbed/Aider-AI__aider/tests/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/testbed/Aider-AI__aider/tests/test_commands.py b/testbed/Aider-AI__aider/tests/test_commands.py
new file mode 100644
index 0000000000000000000000000000000000000000..70362651d1fc28572502f92fd2265ffc4fc93b3a
--- /dev/null
+++ b/testbed/Aider-AI__aider/tests/test_commands.py
@@ -0,0 +1,278 @@
+import codecs
+import os
+import shutil
+import sys
+import tempfile
+from io import StringIO
+from pathlib import Path
+from unittest import TestCase
+
+import git
+
+from aider import models
+from aider.coders import Coder
+from aider.commands import Commands
+from aider.dump import dump # noqa: F401
+from aider.io import InputOutput
+from tests.utils import GitTemporaryDirectory
+
+
+class TestCommands(TestCase):
+ def setUp(self):
+ self.original_cwd = os.getcwd()
+ self.tempdir = tempfile.mkdtemp()
+ os.chdir(self.tempdir)
+
+ def tearDown(self):
+ os.chdir(self.original_cwd)
+ shutil.rmtree(self.tempdir, ignore_errors=True)
+
+ def test_cmd_add(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+ from aider.coders import Coder
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ # Call the cmd_add method with 'foo.txt' and 'bar.txt' as a single string
+ commands.cmd_add("foo.txt bar.txt")
+
+ # Check if both files have been created in the temporary directory
+ self.assertTrue(os.path.exists("foo.txt"))
+ self.assertTrue(os.path.exists("bar.txt"))
+
+ def test_cmd_add_with_glob_patterns(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+ from aider.coders import Coder
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ # Create some test files
+ with open("test1.py", "w") as f:
+ f.write("print('test1')")
+ with open("test2.py", "w") as f:
+ f.write("print('test2')")
+ with open("test.txt", "w") as f:
+ f.write("test")
+
+ # Call the cmd_add method with a glob pattern
+ commands.cmd_add("*.py")
+
+ # Check if the Python files have been added to the chat session
+ self.assertIn(str(Path("test1.py").resolve()), coder.abs_fnames)
+ self.assertIn(str(Path("test2.py").resolve()), coder.abs_fnames)
+
+ # Check if the text file has not been added to the chat session
+ self.assertNotIn(str(Path("test.txt").resolve()), coder.abs_fnames)
+
+ def test_cmd_add_no_match(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+ from aider.coders import Coder
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ # Call the cmd_add method with a non-existent file pattern
+ commands.cmd_add("*.nonexistent")
+
+ # Check if no files have been added to the chat session
+ self.assertEqual(len(coder.abs_fnames), 0)
+
+ def test_cmd_add_drop_directory(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=False)
+ from aider.coders import Coder
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ # Create a directory and add files to it using pathlib
+ Path("test_dir").mkdir()
+ Path("test_dir/another_dir").mkdir()
+ Path("test_dir/test_file1.txt").write_text("Test file 1")
+ Path("test_dir/test_file2.txt").write_text("Test file 2")
+ Path("test_dir/another_dir/test_file.txt").write_text("Test file 3")
+
+ # Call the cmd_add method with a directory
+ commands.cmd_add("test_dir test_dir/test_file2.txt")
+
+ # Check if the files have been added to the chat session
+ self.assertIn(str(Path("test_dir/test_file1.txt").resolve()), coder.abs_fnames)
+ self.assertIn(str(Path("test_dir/test_file2.txt").resolve()), coder.abs_fnames)
+ self.assertIn(str(Path("test_dir/another_dir/test_file.txt").resolve()), coder.abs_fnames)
+
+ commands.cmd_drop("test_dir/another_dir")
+ self.assertIn(str(Path("test_dir/test_file1.txt").resolve()), coder.abs_fnames)
+ self.assertIn(str(Path("test_dir/test_file2.txt").resolve()), coder.abs_fnames)
+ self.assertNotIn(
+ str(Path("test_dir/another_dir/test_file.txt").resolve()), coder.abs_fnames
+ )
+
+ # Issue #139 /add problems when cwd != git_root
+
+ # remember the proper abs path to this file
+ abs_fname = str(Path("test_dir/another_dir/test_file.txt").resolve())
+
+ # chdir to someplace other than git_root
+ Path("side_dir").mkdir()
+ os.chdir("side_dir")
+
+ # add it via it's git_root referenced name
+ commands.cmd_add("test_dir/another_dir/test_file.txt")
+
+ # it should be there, but was not in v0.10.0
+ self.assertIn(abs_fname, coder.abs_fnames)
+
+ # drop it via it's git_root referenced name
+ commands.cmd_drop("test_dir/another_dir/test_file.txt")
+
+ # it should be there, but was not in v0.10.0
+ self.assertNotIn(abs_fname, coder.abs_fnames)
+
+ def test_cmd_drop_with_glob_patterns(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+ from aider.coders import Coder
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ subdir = Path("subdir")
+ subdir.mkdir()
+ (subdir / "subtest1.py").touch()
+ (subdir / "subtest2.py").touch()
+
+ Path("test1.py").touch()
+ Path("test2.py").touch()
+
+ # Add some files to the chat session
+ commands.cmd_add("*.py")
+
+ self.assertEqual(len(coder.abs_fnames), 2)
+
+ # Call the cmd_drop method with a glob pattern
+ commands.cmd_drop("*2.py")
+
+ self.assertIn(str(Path("test1.py").resolve()), coder.abs_fnames)
+ self.assertNotIn(str(Path("test2.py").resolve()), coder.abs_fnames)
+
+ def test_cmd_add_bad_encoding(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+ from aider.coders import Coder
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ # Create a new file foo.bad which will fail to decode as utf-8
+ with codecs.open("foo.bad", "w", encoding="iso-8859-15") as f:
+ f.write("ÆØÅ") # Characters not present in utf-8
+
+ commands.cmd_add("foo.bad")
+
+ self.assertEqual(coder.abs_fnames, set())
+
+ def test_cmd_git(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+
+ with GitTemporaryDirectory() as tempdir:
+ # Create a file in the temporary directory
+ with open(f"{tempdir}/test.txt", "w") as f:
+ f.write("test")
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ # Run the cmd_git method with the arguments "commit -a -m msg"
+ commands.cmd_git("add test.txt")
+ commands.cmd_git("commit -a -m msg")
+
+ # Check if the file has been committed to the repository
+ repo = git.Repo(tempdir)
+ files_in_repo = repo.git.ls_files()
+ self.assertIn("test.txt", files_in_repo)
+
+ def test_cmd_tokens(self):
+ # Initialize the Commands and InputOutput objects
+ io = InputOutput(pretty=False, yes=True)
+
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ commands.cmd_add("foo.txt bar.txt")
+
+ # Redirect the standard output to an instance of io.StringIO
+ stdout = StringIO()
+ sys.stdout = stdout
+
+ commands.cmd_tokens("")
+
+ # Reset the standard output
+ sys.stdout = sys.__stdout__
+
+ # Get the console output
+ console_output = stdout.getvalue()
+
+ self.assertIn("foo.txt", console_output)
+ self.assertIn("bar.txt", console_output)
+
+ def test_cmd_add_from_subdir(self):
+ repo = git.Repo.init()
+ repo.config_writer().set_value("user", "name", "Test User").release()
+ repo.config_writer().set_value("user", "email", "testuser@example.com").release()
+
+ # Create three empty files and add them to the git repository
+ filenames = ["one.py", Path("subdir") / "two.py", Path("anotherdir") / "three.py"]
+ for filename in filenames:
+ file_path = Path(filename)
+ file_path.parent.mkdir(parents=True, exist_ok=True)
+ file_path.touch()
+ repo.git.add(str(file_path))
+ repo.git.commit("-m", "added")
+
+ filenames = [str(Path(fn).resolve()) for fn in filenames]
+
+ ###
+
+ os.chdir("subdir")
+
+ io = InputOutput(pretty=False, yes=True)
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ # this should get added
+ commands.cmd_add(str(Path("anotherdir") / "three.py"))
+
+ # this should add one.py
+ commands.cmd_add("*.py")
+
+ self.assertIn(filenames[0], coder.abs_fnames)
+ self.assertNotIn(filenames[1], coder.abs_fnames)
+ self.assertIn(filenames[2], coder.abs_fnames)
+
+ def test_cmd_commit(self):
+ with GitTemporaryDirectory():
+ fname = "test.txt"
+ with open(fname, "w") as f:
+ f.write("test")
+ repo = git.Repo()
+ repo.git.add(fname)
+ repo.git.commit("-m", "initial")
+
+ io = InputOutput(pretty=False, yes=True)
+ coder = Coder.create(models.GPT35, None, io)
+ commands = Commands(io, coder)
+
+ self.assertFalse(repo.is_dirty())
+ with open(fname, "w") as f:
+ f.write("new")
+ self.assertTrue(repo.is_dirty())
+
+ commit_message = "Test commit message"
+ commands.cmd_commit(commit_message)
+ self.assertFalse(repo.is_dirty())
diff --git a/testbed/Aider-AI__aider/tests/test_models.py b/testbed/Aider-AI__aider/tests/test_models.py
new file mode 100644
index 0000000000000000000000000000000000000000..af2a6f8d773de90dde192b79dbe8895f4af95b6c
--- /dev/null
+++ b/testbed/Aider-AI__aider/tests/test_models.py
@@ -0,0 +1,28 @@
+import unittest
+
+from aider.models import Model
+
+
+class TestModels(unittest.TestCase):
+ def test_max_context_tokens(self):
+ model = Model("gpt-3.5-turbo")
+ self.assertEqual(model.max_context_tokens, 4 * 1024)
+
+ model = Model("gpt-3.5-turbo-16k")
+ self.assertEqual(model.max_context_tokens, 16 * 1024)
+
+ model = Model("gpt-4")
+ self.assertEqual(model.max_context_tokens, 8 * 1024)
+
+ model = Model("gpt-4-32k")
+ self.assertEqual(model.max_context_tokens, 32 * 1024)
+
+ model = Model("gpt-4-0101")
+ self.assertEqual(model.max_context_tokens, 8 * 1024)
+
+ model = Model("gpt-4-32k-2123")
+ self.assertEqual(model.max_context_tokens, 32 * 1024)
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git a/testbed/Aider-AI__aider/tests/test_sendchat.py b/testbed/Aider-AI__aider/tests/test_sendchat.py
new file mode 100644
index 0000000000000000000000000000000000000000..59c6f8c805f2427f04d70c17ef441f90ff455dd5
--- /dev/null
+++ b/testbed/Aider-AI__aider/tests/test_sendchat.py
@@ -0,0 +1,41 @@
+import unittest
+from unittest.mock import patch
+
+import openai
+import requests
+
+from aider.sendchat import send_with_retries
+
+
+class TestSendChat(unittest.TestCase):
+ @patch("aider.sendchat.openai.ChatCompletion.create")
+ @patch("builtins.print")
+ def test_send_with_retries_rate_limit_error(self, mock_print, mock_chat_completion_create):
+ # Set up the mock to raise RateLimitError on
+ # the first call and return None on the second call
+ mock_chat_completion_create.side_effect = [
+ openai.error.RateLimitError("Rate limit exceeded"),
+ None,
+ ]
+
+ # Call the send_with_retries method
+ send_with_retries("model", ["message"], None, False)
+
+ # Assert that print was called once
+ mock_print.assert_called_once()
+
+ @patch("aider.sendchat.openai.ChatCompletion.create")
+ @patch("builtins.print")
+ def test_send_with_retries_connection_error(self, mock_print, mock_chat_completion_create):
+ # Set up the mock to raise ConnectionError on the first call
+ # and return None on the second call
+ mock_chat_completion_create.side_effect = [
+ requests.exceptions.ConnectionError("Connection error"),
+ None,
+ ]
+
+ # Call the send_with_retries method
+ send_with_retries("model", ["message"], None, False)
+
+ # Assert that print was called once
+ mock_print.assert_called_once()
diff --git a/testbed/Aider-AI__aider/tests/test_wholefile.py b/testbed/Aider-AI__aider/tests/test_wholefile.py
new file mode 100644
index 0000000000000000000000000000000000000000..8f9f89fc5bda90c74f90e3f960560bd0eb4683fe
--- /dev/null
+++ b/testbed/Aider-AI__aider/tests/test_wholefile.py
@@ -0,0 +1,324 @@
+import os
+import shutil
+import tempfile
+import unittest
+from pathlib import Path
+from unittest.mock import MagicMock, patch
+
+from aider import models
+from aider.coders import Coder
+from aider.coders.wholefile_coder import WholeFileCoder
+from aider.dump import dump # noqa: F401
+from aider.io import InputOutput
+
+
+class TestWholeFileCoder(unittest.TestCase):
+ def setUp(self):
+ self.original_cwd = os.getcwd()
+ self.tempdir = tempfile.mkdtemp()
+ os.chdir(self.tempdir)
+
+ self.patcher = patch("aider.coders.base_coder.check_model_availability")
+ self.mock_check = self.patcher.start()
+ self.mock_check.return_value = True
+
+ def tearDown(self):
+ os.chdir(self.original_cwd)
+ shutil.rmtree(self.tempdir, ignore_errors=True)
+
+ self.patcher.stop()
+
+ def test_no_files(self):
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[])
+ coder.partial_response_content = (
+ 'To print "Hello, World!" in most programming languages, you can use the following'
+ ' code:\n\n```python\nprint("Hello, World!")\n```\n\nThis code will output "Hello,'
+ ' World!" to the console.'
+ )
+
+ # This is throwing ValueError!
+ coder.render_incremental_response(True)
+
+ def test_no_files_new_file_should_ask(self):
+ io = InputOutput(yes=False) # <- yes=FALSE
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[])
+ coder.partial_response_content = (
+ 'To print "Hello, World!" in most programming languages, you can use the following'
+ ' code:\n\nfoo.js\n```python\nprint("Hello, World!")\n```\n\nThis code will output'
+ ' "Hello, World!" to the console.'
+ )
+ coder.update_files()
+ self.assertFalse(Path("foo.js").exists())
+
+ def test_update_files(self):
+ # Create a sample file in the temporary directory
+ sample_file = "sample.txt"
+ with open(sample_file, "w") as f:
+ f.write("Original content\n")
+
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[sample_file])
+
+ # Set the partial response content with the updated content
+ coder.partial_response_content = f"{sample_file}\n```\nUpdated content\n```"
+
+ # Call update_files method
+ edited_files = coder.update_files()
+
+ # Check if the sample file was updated
+ self.assertIn("sample.txt", edited_files)
+
+ # Check if the content of the sample file was updated
+ with open(sample_file, "r") as f:
+ updated_content = f.read()
+ self.assertEqual(updated_content, "Updated content\n")
+
+ def test_update_files_live_diff(self):
+ # Create a sample file in the temporary directory
+ sample_file = "sample.txt"
+ with open(sample_file, "w") as f:
+ f.write("\n".join(map(str, range(0, 100))))
+
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[sample_file])
+
+ # Set the partial response content with the updated content
+ coder.partial_response_content = f"{sample_file}\n```\n0\n\1\n2\n"
+
+ lines = coder.update_files(mode="diff").splitlines()
+
+ # the live diff should be concise, since we haven't changed anything yet
+ self.assertLess(len(lines), 20)
+
+ def test_update_files_with_existing_fence(self):
+ # Create a sample file in the temporary directory
+ sample_file = "sample.txt"
+ original_content = """
+Here is some quoted text:
+```
+Quote!
+```
+"""
+ with open(sample_file, "w") as f:
+ f.write(original_content)
+
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[sample_file])
+
+ coder.choose_fence()
+
+ self.assertNotEqual(coder.fence[0], "```")
+
+ # Set the partial response content with the updated content
+ coder.partial_response_content = (
+ f"{sample_file}\n{coder.fence[0]}\nUpdated content\n{coder.fence[1]}"
+ )
+
+ # Call update_files method
+ edited_files = coder.update_files()
+
+ # Check if the sample file was updated
+ self.assertIn("sample.txt", edited_files)
+
+ # Check if the content of the sample file was updated
+ with open(sample_file, "r") as f:
+ updated_content = f.read()
+ self.assertEqual(updated_content, "Updated content\n")
+
+ def test_update_files_bogus_path_prefix(self):
+ # Create a sample file in the temporary directory
+ sample_file = "sample.txt"
+ with open(sample_file, "w") as f:
+ f.write("Original content\n")
+
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[sample_file])
+
+ # Set the partial response content with the updated content
+ # With path/to/ prepended onto the filename
+ coder.partial_response_content = f"path/to/{sample_file}\n```\nUpdated content\n```"
+
+ # Call update_files method
+ edited_files = coder.update_files()
+
+ # Check if the sample file was updated
+ self.assertIn("sample.txt", edited_files)
+
+ # Check if the content of the sample file was updated
+ with open(sample_file, "r") as f:
+ updated_content = f.read()
+ self.assertEqual(updated_content, "Updated content\n")
+
+ def test_update_files_not_in_chat(self):
+ # Create a sample file in the temporary directory
+ sample_file = "sample.txt"
+ with open(sample_file, "w") as f:
+ f.write("Original content\n")
+
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io)
+
+ # Set the partial response content with the updated content
+ coder.partial_response_content = f"{sample_file}\n```\nUpdated content\n```"
+
+ # Call update_files method
+ edited_files = coder.update_files()
+
+ # Check if the sample file was updated
+ self.assertIn("sample.txt", edited_files)
+
+ # Check if the content of the sample file was updated
+ with open(sample_file, "r") as f:
+ updated_content = f.read()
+ self.assertEqual(updated_content, "Updated content\n")
+
+ def test_update_files_no_filename_single_file_in_chat(self):
+ sample_file = "accumulate.py"
+ content = (
+ "def accumulate(collection, operation):\n return [operation(x) for x in"
+ " collection]\n"
+ )
+
+ with open(sample_file, "w") as f:
+ f.write("Original content\n")
+
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[sample_file])
+
+ # Set the partial response content with the updated content
+ coder.partial_response_content = (
+ f"Here's the modified `{sample_file}` file that implements the `accumulate`"
+ f" function as per the given instructions:\n\n```\n{content}```\n\nThis"
+ " implementation uses a list comprehension to apply the `operation` function to"
+ " each element of the `collection` and returns the resulting list."
+ )
+
+ # Call update_files method
+ edited_files = coder.update_files()
+
+ # Check if the sample file was updated
+ self.assertIn(sample_file, edited_files)
+
+ # Check if the content of the sample file was updated
+ with open(sample_file, "r") as f:
+ updated_content = f.read()
+ self.assertEqual(updated_content, content)
+
+ def test_update_files_earlier_filename(self):
+ fname_a = Path("a.txt")
+ fname_b = Path("b.txt")
+
+ fname_a.write_text("before a\n")
+ fname_b.write_text("before b\n")
+
+ response = """
+Here is a new version of `a.txt` for you to consider:
+
+```
+after a
+```
+
+And here is `b.txt`:
+
+```
+after b
+```
+"""
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[fname_a, fname_b])
+
+ # Set the partial response content with the updated content
+ coder.partial_response_content = response
+
+ # Call update_files method
+ edited_files = coder.update_files()
+
+ # Check if the sample file was updated
+ self.assertIn(str(fname_a), edited_files)
+ self.assertIn(str(fname_b), edited_files)
+
+ self.assertEqual(fname_a.read_text(), "after a\n")
+ self.assertEqual(fname_b.read_text(), "after b\n")
+
+ def test_update_named_file_but_extra_unnamed_code_block(self):
+ sample_file = "hello.py"
+ new_content = "new\ncontent\ngoes\nhere\n"
+
+ with open(sample_file, "w") as f:
+ f.write("Original content\n")
+
+ # Initialize WholeFileCoder with the temporary directory
+ io = InputOutput(yes=True)
+ coder = WholeFileCoder(main_model=models.GPT35, io=io, fnames=[sample_file])
+
+ # Set the partial response content with the updated content
+ coder.partial_response_content = (
+ f"Here's the modified `{sample_file}` file that implements the `accumulate`"
+ f" function as per the given instructions:\n\n```\n{new_content}```\n\nThis"
+ " implementation uses a list comprehension to apply the `operation` function to"
+ " each element of the `collection` and returns the resulting list.\n"
+ "Run it like this:\n\n"
+ "```\npython {sample_file}\n```\n\n"
+ )
+
+ # Call update_files method
+ edited_files = coder.update_files()
+
+ # Check if the sample file was updated
+ self.assertIn(sample_file, edited_files)
+
+ # Check if the content of the sample file was updated
+ with open(sample_file, "r") as f:
+ updated_content = f.read()
+ self.assertEqual(updated_content, new_content)
+
+ def test_full_edit(self):
+ # Create a few temporary files
+ _, file1 = tempfile.mkstemp()
+
+ with open(file1, "w", encoding="utf-8") as f:
+ f.write("one\ntwo\nthree\n")
+
+ files = [file1]
+
+ # Initialize the Coder object with the mocked IO and mocked repo
+ coder = Coder.create(models.GPT4, "whole", io=InputOutput(), fnames=files)
+
+ # no trailing newline so the response content below doesn't add ANOTHER newline
+ new_content = "new\ntwo\nthree"
+
+ def mock_send(*args, **kwargs):
+ coder.partial_response_content = f"""
+Do this:
+
+{Path(file1).name}
+```
+{new_content}
+```
+
+"""
+ coder.partial_response_function_call = dict()
+
+ coder.send = MagicMock(side_effect=mock_send)
+
+ # Call the run method with a message
+ coder.run(with_message="hi")
+
+ content = Path(file1).read_text(encoding="utf-8")
+
+ # check for one trailing newline
+ self.assertEqual(content, new_content + "\n")
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.bandit.yml b/testbed/Cog-Creators__Red-DiscordBot/.bandit.yml
new file mode 100644
index 0000000000000000000000000000000000000000..4b100f56830523d35ac379ea9775775c70fc835b
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.bandit.yml
@@ -0,0 +1,396 @@
+
+### Bandit config file generated
+
+### This config may optionally select a subset of tests to run or skip by
+### filling out the 'tests' and 'skips' lists given below. If no tests are
+### specified for inclusion then it is assumed all tests are desired. The skips
+### set will remove specific tests from the include set. This can be controlled
+### using the -t/-s CLI options. Note that the same test ID should not appear
+### in both 'tests' and 'skips', this would be nonsensical and is detected by
+### Bandit at runtime.
+
+# Available tests:
+# B101 : assert_used
+# B102 : exec_used
+# B103 : set_bad_file_permissions
+# B104 : hardcoded_bind_all_interfaces
+# B105 : hardcoded_password_string
+# B106 : hardcoded_password_funcarg
+# B107 : hardcoded_password_default
+# B108 : hardcoded_tmp_directory
+# B110 : try_except_pass
+# B112 : try_except_continue
+# B201 : flask_debug_true
+# B301 : pickle
+# B302 : marshal
+# B303 : md5
+# B304 : ciphers
+# B305 : cipher_modes
+# B306 : mktemp_q
+# B307 : eval
+# B308 : mark_safe
+# B309 : httpsconnection
+# B310 : urllib_urlopen
+# B311 : random
+# B312 : telnetlib
+# B313 : xml_bad_cElementTree
+# B314 : xml_bad_ElementTree
+# B315 : xml_bad_expatreader
+# B316 : xml_bad_expatbuilder
+# B317 : xml_bad_sax
+# B318 : xml_bad_minidom
+# B319 : xml_bad_pulldom
+# B320 : xml_bad_etree
+# B321 : ftplib
+# B322 : input
+# B323 : unverified_context
+# B324 : hashlib_new_insecure_functions
+# B325 : tempnam
+# B401 : import_telnetlib
+# B402 : import_ftplib
+# B403 : import_pickle
+# B404 : import_subprocess
+# B405 : import_xml_etree
+# B406 : import_xml_sax
+# B407 : import_xml_expat
+# B408 : import_xml_minidom
+# B409 : import_xml_pulldom
+# B410 : import_lxml
+# B411 : import_xmlrpclib
+# B412 : import_httpoxy
+# B413 : import_pycrypto
+# B501 : request_with_no_cert_validation
+# B502 : ssl_with_bad_version
+# B503 : ssl_with_bad_defaults
+# B504 : ssl_with_no_version
+# B505 : weak_cryptographic_key
+# B506 : yaml_load
+# B507 : ssh_no_host_key_verification
+# B601 : paramiko_calls
+# B602 : subprocess_popen_with_shell_equals_true
+# B603 : subprocess_without_shell_equals_true
+# B604 : any_other_function_with_shell_equals_true
+# B605 : start_process_with_a_shell
+# B606 : start_process_with_no_shell
+# B607 : start_process_with_partial_path
+# B608 : hardcoded_sql_expressions
+# B609 : linux_commands_wildcard_injection
+# B610 : django_extra_used
+# B611 : django_rawsql_used
+# B701 : jinja2_autoescape_false
+# B702 : use_of_mako_templates
+# B703 : django_mark_safe
+
+# (optional) list included test IDs here, eg '[B101, B406]':
+tests:
+
+# (optional) list skipped test IDs here, eg '[B101, B406]':
+skips: ['B322']
+
+### (optional) plugin settings - some test plugins require configuration data
+### that may be given here, per-plugin. All bandit test plugins have a built in
+### set of sensible defaults and these will be used if no configuration is
+### provided. It is not necessary to provide settings for every (or any) plugin
+### if the defaults are acceptable.
+
+any_other_function_with_shell_equals_true:
+ no_shell:
+ - os.execl
+ - os.execle
+ - os.execlp
+ - os.execlpe
+ - os.execv
+ - os.execve
+ - os.execvp
+ - os.execvpe
+ - os.spawnl
+ - os.spawnle
+ - os.spawnlp
+ - os.spawnlpe
+ - os.spawnv
+ - os.spawnve
+ - os.spawnvp
+ - os.spawnvpe
+ - os.startfile
+ shell:
+ - os.system
+ - os.popen
+ - os.popen2
+ - os.popen3
+ - os.popen4
+ - popen2.popen2
+ - popen2.popen3
+ - popen2.popen4
+ - popen2.Popen3
+ - popen2.Popen4
+ - commands.getoutput
+ - commands.getstatusoutput
+ subprocess:
+ - subprocess.Popen
+ - subprocess.call
+ - subprocess.check_call
+ - subprocess.check_output
+ - subprocess.run
+hardcoded_tmp_directory:
+ tmp_dirs:
+ - /tmp
+ - /var/tmp
+ - /dev/shm
+linux_commands_wildcard_injection:
+ no_shell:
+ - os.execl
+ - os.execle
+ - os.execlp
+ - os.execlpe
+ - os.execv
+ - os.execve
+ - os.execvp
+ - os.execvpe
+ - os.spawnl
+ - os.spawnle
+ - os.spawnlp
+ - os.spawnlpe
+ - os.spawnv
+ - os.spawnve
+ - os.spawnvp
+ - os.spawnvpe
+ - os.startfile
+ shell:
+ - os.system
+ - os.popen
+ - os.popen2
+ - os.popen3
+ - os.popen4
+ - popen2.popen2
+ - popen2.popen3
+ - popen2.popen4
+ - popen2.Popen3
+ - popen2.Popen4
+ - commands.getoutput
+ - commands.getstatusoutput
+ subprocess:
+ - subprocess.Popen
+ - subprocess.call
+ - subprocess.check_call
+ - subprocess.check_output
+ - subprocess.run
+ssl_with_bad_defaults:
+ bad_protocol_versions:
+ - PROTOCOL_SSLv2
+ - SSLv2_METHOD
+ - SSLv23_METHOD
+ - PROTOCOL_SSLv3
+ - PROTOCOL_TLSv1
+ - SSLv3_METHOD
+ - TLSv1_METHOD
+ssl_with_bad_version:
+ bad_protocol_versions:
+ - PROTOCOL_SSLv2
+ - SSLv2_METHOD
+ - SSLv23_METHOD
+ - PROTOCOL_SSLv3
+ - PROTOCOL_TLSv1
+ - SSLv3_METHOD
+ - TLSv1_METHOD
+start_process_with_a_shell:
+ no_shell:
+ - os.execl
+ - os.execle
+ - os.execlp
+ - os.execlpe
+ - os.execv
+ - os.execve
+ - os.execvp
+ - os.execvpe
+ - os.spawnl
+ - os.spawnle
+ - os.spawnlp
+ - os.spawnlpe
+ - os.spawnv
+ - os.spawnve
+ - os.spawnvp
+ - os.spawnvpe
+ - os.startfile
+ shell:
+ - os.system
+ - os.popen
+ - os.popen2
+ - os.popen3
+ - os.popen4
+ - popen2.popen2
+ - popen2.popen3
+ - popen2.popen4
+ - popen2.Popen3
+ - popen2.Popen4
+ - commands.getoutput
+ - commands.getstatusoutput
+ subprocess:
+ - subprocess.Popen
+ - subprocess.call
+ - subprocess.check_call
+ - subprocess.check_output
+ - subprocess.run
+start_process_with_no_shell:
+ no_shell:
+ - os.execl
+ - os.execle
+ - os.execlp
+ - os.execlpe
+ - os.execv
+ - os.execve
+ - os.execvp
+ - os.execvpe
+ - os.spawnl
+ - os.spawnle
+ - os.spawnlp
+ - os.spawnlpe
+ - os.spawnv
+ - os.spawnve
+ - os.spawnvp
+ - os.spawnvpe
+ - os.startfile
+ shell:
+ - os.system
+ - os.popen
+ - os.popen2
+ - os.popen3
+ - os.popen4
+ - popen2.popen2
+ - popen2.popen3
+ - popen2.popen4
+ - popen2.Popen3
+ - popen2.Popen4
+ - commands.getoutput
+ - commands.getstatusoutput
+ subprocess:
+ - subprocess.Popen
+ - subprocess.call
+ - subprocess.check_call
+ - subprocess.check_output
+ - subprocess.run
+start_process_with_partial_path:
+ no_shell:
+ - os.execl
+ - os.execle
+ - os.execlp
+ - os.execlpe
+ - os.execv
+ - os.execve
+ - os.execvp
+ - os.execvpe
+ - os.spawnl
+ - os.spawnle
+ - os.spawnlp
+ - os.spawnlpe
+ - os.spawnv
+ - os.spawnve
+ - os.spawnvp
+ - os.spawnvpe
+ - os.startfile
+ shell:
+ - os.system
+ - os.popen
+ - os.popen2
+ - os.popen3
+ - os.popen4
+ - popen2.popen2
+ - popen2.popen3
+ - popen2.popen4
+ - popen2.Popen3
+ - popen2.Popen4
+ - commands.getoutput
+ - commands.getstatusoutput
+ subprocess:
+ - subprocess.Popen
+ - subprocess.call
+ - subprocess.check_call
+ - subprocess.check_output
+ - subprocess.run
+subprocess_popen_with_shell_equals_true:
+ no_shell:
+ - os.execl
+ - os.execle
+ - os.execlp
+ - os.execlpe
+ - os.execv
+ - os.execve
+ - os.execvp
+ - os.execvpe
+ - os.spawnl
+ - os.spawnle
+ - os.spawnlp
+ - os.spawnlpe
+ - os.spawnv
+ - os.spawnve
+ - os.spawnvp
+ - os.spawnvpe
+ - os.startfile
+ shell:
+ - os.system
+ - os.popen
+ - os.popen2
+ - os.popen3
+ - os.popen4
+ - popen2.popen2
+ - popen2.popen3
+ - popen2.popen4
+ - popen2.Popen3
+ - popen2.Popen4
+ - commands.getoutput
+ - commands.getstatusoutput
+ subprocess:
+ - subprocess.Popen
+ - subprocess.call
+ - subprocess.check_call
+ - subprocess.check_output
+ - subprocess.run
+subprocess_without_shell_equals_true:
+ no_shell:
+ - os.execl
+ - os.execle
+ - os.execlp
+ - os.execlpe
+ - os.execv
+ - os.execve
+ - os.execvp
+ - os.execvpe
+ - os.spawnl
+ - os.spawnle
+ - os.spawnlp
+ - os.spawnlpe
+ - os.spawnv
+ - os.spawnve
+ - os.spawnvp
+ - os.spawnvpe
+ - os.startfile
+ shell:
+ - os.system
+ - os.popen
+ - os.popen2
+ - os.popen3
+ - os.popen4
+ - popen2.popen2
+ - popen2.popen3
+ - popen2.popen4
+ - popen2.Popen3
+ - popen2.Popen4
+ - commands.getoutput
+ - commands.getstatusoutput
+ subprocess:
+ - subprocess.Popen
+ - subprocess.call
+ - subprocess.check_call
+ - subprocess.check_output
+ - subprocess.run
+try_except_continue:
+ check_typed_exception: false
+try_except_pass:
+ check_typed_exception: false
+weak_cryptographic_key:
+ weak_key_size_dsa_high: 1024
+ weak_key_size_dsa_medium: 2048
+ weak_key_size_ec_high: 160
+ weak_key_size_ec_medium: 224
+ weak_key_size_rsa_high: 1024
+ weak_key_size_rsa_medium: 2048
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.cherry_picker.toml b/testbed/Cog-Creators__Red-DiscordBot/.cherry_picker.toml
new file mode 100644
index 0000000000000000000000000000000000000000..5763a84a44871ffe546d629efca91a2c856c9a13
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.cherry_picker.toml
@@ -0,0 +1,5 @@
+team = "Cog-Creators"
+repo = "Red-DiscordBot"
+check_sha = "6251c585e4ec0a53813a9993ede3ab5309024579"
+fix_commit_msg = false
+default_branch = "V3/develop"
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.codeclimate.yml b/testbed/Cog-Creators__Red-DiscordBot/.codeclimate.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3f29a0496bbe52008cf30136956e393b267534e3
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.codeclimate.yml
@@ -0,0 +1,52 @@
+version: "2" # required to adjust maintainability checks
+checks:
+ argument-count:
+ config:
+ threshold: 8 # work on this later
+ complex-logic:
+ enabled: false # Disabled in favor of using Radon for this
+ config:
+ threshold: 4
+ file-lines:
+ enabled: false # enable after audio stuff...
+ config:
+ threshold: 2000 # I would set this lower if not for cogs as command containers.
+ method-complexity:
+ enabled: false # Disabled in favor of using Radon for this
+ config:
+ threshold: 5
+ method-count:
+ enabled: false # I would set this lower if not for cogs as command containers.
+ config:
+ threshold: 20
+ method-lines:
+ enabled: false
+ config:
+ threshold: 25 # I'm fine with long methods, cautious about the complexity of a single method.
+ nested-control-flow:
+ config:
+ threshold: 6
+ return-statements:
+ config:
+ threshold: 6
+ similar-code:
+ enabled: false
+ config:
+ threshold: # language-specific defaults. an override will affect all languages.
+ identical-code:
+ enabled: false
+ config:
+ threshold: # language-specific defaults. an override will affect all languages.
+plugins:
+ bandit:
+ enabled: false
+ radon:
+ enabled: false
+ config:
+ threshold: "D"
+ duplication:
+ enabled: false
+ config:
+ languages:
+ python:
+ python_version: 3
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.git_archive_info.txt b/testbed/Cog-Creators__Red-DiscordBot/.git_archive_info.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e371a76818191cfc72f13cc96f9f965c241689c1
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.git_archive_info.txt
@@ -0,0 +1,2 @@
+$Format:%h$
+$Format:%(describe:tags=true)$
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.gitattributes b/testbed/Cog-Creators__Red-DiscordBot/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..5857211e3ca419810102976d62ac2041ef9bf3da
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.gitattributes
@@ -0,0 +1,7 @@
+* text eol=lf
+
+# binary file excludsions
+*.png binary
+
+# include commit/tag information in `.git_archive_info.txt` when packing with git-archive
+.git_archive_info.txt export-subst
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/01_command_bug.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/01_command_bug.yml
new file mode 100644
index 0000000000000000000000000000000000000000..613fb343c447cfb0612039a1604c07d063abe478
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/01_command_bug.yml
@@ -0,0 +1,86 @@
+name: Bug reports for commands
+description: For bugs that involve commands found within Red.
+labels: 'Type: Bug'
+body:
+- type: markdown
+ attributes:
+ value: |
+ Thank you for taking the time to fill out an issue. This template is meant for any issues related to commands.
+ If you require help with installing Red we ask that you join our [Discord server](https://discord.gg/red)
+- type: input
+ id: red-version
+ attributes:
+ label: "What Red version are you using?"
+ placeholder: 3.4.5
+ validations:
+ required: true
+- type: dropdown
+ id: cog-name
+ attributes:
+ label: "Cog name"
+ description: "From which cog does the command come from?"
+ options:
+ - Admin
+ - Alias
+ - Audio
+ - Bank
+ - Cleanup
+ - CogManagerUI
+ - Core
+ - Customcom
+ - Dev
+ - Downloader
+ - Economy
+ - Filter
+ - General
+ - Image
+ - Mod
+ - Modlog
+ - Mutes
+ - Permissions
+ - Reports
+ - Streams
+ - Trivia
+ - Warnings
+ validations:
+ required: true
+- type: input
+ id: command-name
+ attributes:
+ label: "Command name"
+ description: "What is the command that caused the error?"
+ placeholder: "play"
+ validations:
+ required: true
+- type: textarea
+ id: weh
+ attributes:
+ label: "What did you expect to happen?"
+ validations:
+ required: true
+- type: textarea
+ id: wah
+ attributes:
+ label: "What actually happened?"
+ description: |
+ A clear and concise description of what the bug is.
+ If the issue is visual in nature, consider posting a screenshot.
+ validations:
+ required: true
+- type: textarea
+ id: reproduction-steps
+ attributes:
+ label: "How can we reproduce this error?"
+ description: "List of steps required to reproduce this error."
+ value: |
+ 1.
+ 2.
+ 3.
+ ...
+ validations:
+ required: true
+- type: textarea
+ id: anything-else
+ attributes:
+ label: Anything else?
+ description: Let us know if you have anything else to share.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/02_other_bugs.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/02_other_bugs.yml
new file mode 100644
index 0000000000000000000000000000000000000000..1e741da5981bc6ca462284dd76f52bebc57680a5
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/02_other_bugs.yml
@@ -0,0 +1,54 @@
+name: Bug report
+description: "For bugs that don't involve a command."
+labels: 'Type: Bug'
+body:
+- type: markdown
+ attributes:
+ value: |
+ Thank you for taking the time to fill out an issue. This template is meant for any issues not related to any existing command.
+ If you require help with installing Red we ask that you join our [Discord server](https://discord.gg/red)
+- type: input
+ id: red-version
+ attributes:
+ label: "What Red version are you using?"
+ placeholder: 3.4.5
+ validations:
+ required: true
+- type: textarea
+ id: what-happened
+ attributes:
+ label: "What were you trying to do?"
+ validations:
+ required: true
+- type: textarea
+ id: weh
+ attributes:
+ label: "What did you expect to happen?"
+ validations:
+ required: true
+- type: textarea
+ id: wah
+ attributes:
+ label: "What actually happened?"
+ description: |
+ If the issue is visual in nature, consider posting a screenshot.
+ validations:
+ required: true
+- type: textarea
+ id: reproduction-steps
+ attributes:
+ label: "How can we reproduce this error?"
+ description: |
+ List of steps required to reproduce the error. If the bug is code related, a minimal code example that reproduces the problem would be a big help.
+ value: |
+ 1.
+ 2.
+ 3.
+ ...
+ validations:
+ required: true
+- type: textarea
+ id: anything-else
+ attributes:
+ label: Anything else?
+ description: Let us know if you have anything else to share.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/03_enhancements.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/03_enhancements.yml
new file mode 100644
index 0000000000000000000000000000000000000000..78ce71e5c1ac074328c61b16174bd89762e0051f
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/03_enhancements.yml
@@ -0,0 +1,29 @@
+name: Enhancement proposal
+description: For feature requests and improvements related to already existing functionality.
+labels: 'Type: Enhancement'
+body:
+- type: markdown
+ attributes:
+ value: |
+ Thank you for taking the time to fill out an issue. This template is meant for feature requests and improvements to already existing functionality.
+ If you require help with installing Red we ask that you join our [Discord server](https://discord.gg/red)
+- type: input
+ id: component-name
+ attributes:
+ label: "What component of Red (cog, command, API) would you like to see improvements on?"
+ placeholder: Audio
+ validations:
+ required: true
+- type: textarea
+ id: proposal
+ attributes:
+ label: "Describe the enhancement you're suggesting."
+ description: |
+ Feel free to describe in as much detail as you wish.
+ validations:
+ required: true
+- type: textarea
+ id: anything-else
+ attributes:
+ label: Anything else?
+ description: Let us know if you have anything else to share.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/04_feature_request.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/04_feature_request.yml
new file mode 100644
index 0000000000000000000000000000000000000000..125e7ebf7c2eb654775d8258ae5782cab8b408d2
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/04_feature_request.yml
@@ -0,0 +1,52 @@
+name: Feature request
+description: For feature requests regarding Red itself.
+labels: 'Type: Feature'
+body:
+- type: markdown
+ attributes:
+ value: |
+ Thank you for taking the time to fill out an issue, this template is meant for any feature suggestions.
+ If you require help with installing Red we ask that you join our [Discord server](https://discord.gg/red)
+- type: dropdown
+ id: feature-name
+ attributes:
+ label: "Type of feature request"
+ description: "What type of feature would you like to request?"
+ multiple: true
+ options:
+ - API functionality
+ - Cog
+ - Command
+ - Other
+ validations:
+ required: true
+- type: textarea
+ id: proposal
+ attributes:
+ label: "Description of the feature you're suggesting"
+ description: |
+ Feel free to describe in as much detail as you wish.
+
+ If you are requesting API functionality:
+ - Describe what it should do
+ - Note whether it is to extend existing functionality or introduce new functionality
+
+ If you are requesting a cog to be included in core:
+ - Describe the functionality in as much detail as possible
+ - Include the command structure, if possible
+ - Please note that unless it's something that should be core functionality,
+ we reserve the right to reject your suggestion and point you to our cog
+ board to request it for a third-party cog
+
+ If you are requesting a command:
+ - Include what cog it should be in and a name for the command
+ - Describe the intended functionality for the command
+ - Note any restrictions on who can use the command or where it can be used
+ validations:
+ required: true
+- type: textarea
+ id: anything-else
+ attributes:
+ label: Anything else?
+ description: Let us know if you have anything else to share.
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/config.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000000000000000000000000000000000..7c3865f217cd71ab3d2e6d3974186c77dc8256ef
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: true
+contact_links:
+ - name: Support question
+ url: https://discord.gg/red
+ about: For any questions regarding on how to operate and run Red.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/enhancement.md b/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/enhancement.md
new file mode 100644
index 0000000000000000000000000000000000000000..292b220fcbe0c7381126249c3f04302419ed2e98
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/enhancement.md
@@ -0,0 +1,21 @@
+# Enhancement request
+
+
+
+#### Describe the enhancement
+
+
+
+#### Does this enhancement break existing functionality?
+
+
+
+- [ ] Yes
+- [ ] No
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/new_feature.md b/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/new_feature.md
new file mode 100644
index 0000000000000000000000000000000000000000..16c5804d894cc8c4d6ffeeb3792ede0f52254697
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/new_feature.md
@@ -0,0 +1,22 @@
+# New feature addition
+
+
+
+#### What type of feature is this?
+
+
+
+- [ ] New core cog
+- [ ] New API
+- [ ] Other
+
+#### Describe the feature
+
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/translations.md b/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/translations.md
new file mode 100644
index 0000000000000000000000000000000000000000..6f0f020a6d1d24a76d06cfc1065bf5289328f760
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/PULL_REQUEST_TEMPLATE/translations.md
@@ -0,0 +1,6 @@
+# Translations update
+
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/auto_labeler_issues.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/auto_labeler_issues.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2dc30274d7ffe9af596a223200cfd1b79cbfd889
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/auto_labeler_issues.yml
@@ -0,0 +1,28 @@
+name: Auto Labeler - Issues
+on:
+ issues:
+ types: [opened]
+
+permissions:
+ issues: write
+
+jobs:
+ apply_triage_label_to_issues:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Apply Triage Label
+ uses: actions/github-script@v6
+ with:
+ github-token: ${{secrets.GITHUB_TOKEN}}
+ script: |
+ const is_status_label = (label) => label.name.startsWith('Status: ');
+ if (context.payload.issue.labels.some(is_status_label)) {
+ console.log('Issue already has Status label, skipping...');
+ return;
+ }
+ github.rest.issues.addLabels({
+ issue_number: context.issue.number,
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ labels: ['Status: Needs Triage']
+ });
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/auto_labeler_pr.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/auto_labeler_pr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..8939e91f386e621fe4c24a1eec16e81dc3536f6f
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/auto_labeler_pr.yml
@@ -0,0 +1,27 @@
+name: Auto Labeler - PRs
+on:
+ pull_request_target:
+ types:
+ - opened
+ - synchronize
+ - reopened
+ - labeled
+ - unlabeled
+
+permissions:
+ pull-requests: write
+
+jobs:
+ label_pull_requests:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Apply Type Label
+ uses: actions/labeler@v4
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ sync-labels: true
+
+ - name: Label documentation-only changes.
+ uses: Jackenmen/label-doconly-changes@v1
+ env:
+ LDC_LABELS: Docs-only
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/check_label_pattern_exhaustiveness.yaml b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/check_label_pattern_exhaustiveness.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..8cef9dad4c8dfc1f4ef13727cd143adfb2f7c08c
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/check_label_pattern_exhaustiveness.yaml
@@ -0,0 +1,23 @@
+name: Check label pattern exhaustiveness
+on:
+ pull_request:
+ push:
+
+jobs:
+ check_label_pattern_exhaustiveness:
+ name: Check label pattern exhaustiveness
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout the repository
+ uses: actions/checkout@v3
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.8"
+ - name: Install script's pre-requirements
+ run: |
+ python -m pip install -U pip
+ python -m pip install -U pathspec pyyaml rich
+ - name: Check label pattern exhaustiveness
+ run: |
+ python .github/workflows/scripts/check_label_pattern_exhaustiveness.py
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/codeql-analysis.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/codeql-analysis.yml
new file mode 100644
index 0000000000000000000000000000000000000000..cf4681d86efe84186979bf21a58d84b67b592074
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/codeql-analysis.yml
@@ -0,0 +1,58 @@
+name: "CodeQL"
+
+on:
+ push:
+ pull_request:
+ schedule:
+ - cron: '0 14 * * 4'
+ workflow_dispatch:
+
+jobs:
+ analyze:
+ name: Analyze
+ runs-on: ubuntu-latest
+ permissions:
+ security-events: write
+ actions: read
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.8"
+
+ - name: Install dependencies
+ run: |
+ python -m pip install -U pip wheel
+ python -m pip install -e .[all]
+ # Set the `CODEQL-PYTHON` environment variable to the Python executable
+ # that includes the dependencies
+ echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
+
+ # Initializes the CodeQL tools for scanning.
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v2
+ with:
+ languages: 'python'
+ # Override the default behavior so that the action doesn't attempt
+ # to auto-install Python dependencies
+ # Learn more...
+ # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#analyzing-python-dependencies
+ setup-python-dependencies: false
+
+ # ℹ️ Command-line programs to run using the OS shell.
+ # 📚 https://git.io/JvXDl
+
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
+ # and modify them (or add more) to build your code if your project
+ # uses a compiled language
+
+ #- run: |
+ # make bootstrap
+ # make release
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v2
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/lint_python.yaml b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/lint_python.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..1cfa71aa8b39b6811a532013501a67155a3386fe
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/lint_python.yaml
@@ -0,0 +1,26 @@
+name: Lint Python
+on:
+ pull_request:
+ push:
+ repository_dispatch:
+ types:
+ - dispatched_test
+
+env:
+ ref: ${{ github.event.client_payload.ref || '' }}
+
+jobs:
+ lint_python:
+ name: Lint Python
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ ref: ${{ env.ref }}
+ - uses: actions/setup-python@v4
+ with:
+ python-version: "3.8"
+ - run: "python -m pip install git+https://github.com/pycqa/pyflakes@1911c20#egg=pyflakes git+https://github.com/pycqa/pycodestyle@d219c68#egg=pycodestyle git+https://github.com/pycqa/flake8@3.7.9#egg=flake8"
+ name: Install Flake8
+ - run: "python -m flake8 . --count --select=E9,F7,F82 --show-source"
+ name: Flake8 Linting
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/publish_release.yml b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/publish_release.yml
new file mode 100644
index 0000000000000000000000000000000000000000..820cd2f619d1838db5c0e214682588a1665fc0ad
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/publish_release.yml
@@ -0,0 +1,150 @@
+name: Publish Release
+on:
+ push:
+ tags:
+ - "*"
+
+jobs:
+ release_information:
+ if: github.repository == 'Cog-Creators/Red-DiscordBot'
+ name: GO HERE BEFORE APPROVING
+ runs-on: ubuntu-latest
+ steps:
+ # Checkout repository and install Python
+ - uses: actions/checkout@v3
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.8'
+
+ # Get version to release
+ - name: Get version to release
+ id: version_to_release
+ run: |
+ python .github/workflows/scripts/bump_version.py
+ env:
+ PYTHONPATH: ${{ github.workspace }}:${{ env.PYTHONPATH }}
+ JUST_RETURN_VERSION: '1'
+
+ # Print release information
+ - name: REVIEW OUTPUT OF THIS STEP BEFORE APPROVING
+ env:
+ TAG_BASE_BRANCH: ${{ github.event.base_ref }}
+ TAG_REF_NAME: ${{ github.ref }}
+ RELEASE_VERSION: ${{ steps.version_to_release.outputs.version }}
+ run: |
+ echo 'Release information:'
+ echo "- Branch the tag was based off: ${TAG_BASE_BRANCH#'refs/heads/'}"
+ echo "- Tag name: ${TAG_REF_NAME#'refs/tags/'}"
+ echo "- Release version: $RELEASE_VERSION"
+
+ echo "TAG_NAME=${TAG_REF_NAME#'refs/tags/'}" >> $GITHUB_ENV
+
+ - name: Ensure the tag name corresponds to the released version
+ env:
+ RELEASE_VERSION: ${{ steps.version_to_release.outputs.version }}
+ run: |
+ if [[ "$TAG_NAME" != "$RELEASE_VERSION" ]]; then
+ echo -n "The tag name ($TAG_NAME) is not the same as"
+ echo " the release version ($RELEASE_VERSION)!"
+ exit 1
+ else
+ echo "The tag name and the release version are the same ($TAG_NAME)."
+ echo 'Continuing...'
+ fi
+
+ release_to_pypi:
+ needs: release_information
+ environment: Release
+ name: Release to PyPI
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.8'
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install build twine
+ - name: Build and publish
+ env:
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.pypi_token }}
+ run: |
+ python -m build
+ twine upload dist/*
+
+ pr_dev_bump:
+ permissions:
+ contents: write
+ pull-requests: write
+ needs: release_to_pypi
+ name: Update Red version number to dev
+ runs-on: ubuntu-latest
+ steps:
+ - name: Get base branch
+ env:
+ TAG_BASE_BRANCH: ${{ github.event.base_ref }}
+ run: |
+ echo "BASE_BRANCH=${TAG_BASE_BRANCH#'refs/heads/'}" >> $GITHUB_ENV
+
+ - uses: actions/checkout@v3
+ with:
+ ref: ${{ env.BASE_BRANCH }}
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.8'
+
+ # Version bump to development version
+ - name: Update Red version number to dev
+ id: bump_version_dev
+ run: |
+ python .github/workflows/scripts/bump_version.py
+ env:
+ PYTHONPATH: ${{ github.workspace }}:${{ env.PYTHONPATH }}
+ DEV_BUMP: '1'
+
+ # Get milestone number of the milestone for the old version
+ - name: Get milestone number
+ id: get_milestone_number
+ uses: actions/github-script@v6
+ env:
+ MILESTONE_TITLE: ${{ steps.bump_version_dev.outputs.old_version }}
+ with:
+ script: |
+ const script = require(
+ `${process.env.GITHUB_WORKSPACE}/.github/workflows/scripts/get_milestone_number_by_exact_title.js`
+ );
+ return await script({github, context});
+
+ - name: Create Pull Request
+ id: cpr_bump_dev
+ uses: peter-evans/create-pull-request@v4
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ commit-message: Version bump to ${{ steps.bump_version_dev.outputs.new_version }}
+ title: Version bump to ${{ steps.bump_version_dev.outputs.new_version }}
+ body: |
+ This is an automated PR.
+ Please ensure that there are no errors or invalid files are in the PR.
+ labels: "Automated PR, Changelog Entry: Skipped"
+ branch: "automated/pr_bumps/${{ steps.bump_version_dev.outputs.new_version }}"
+ author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
+ milestone: ${{ steps.get_milestone_number.outputs.result }}
+ base: ${{ env.BASE_BRANCH }}
+
+ - name: Close and reopen the PR with different token to trigger CI
+ uses: actions/github-script@v6
+ env:
+ PR_NUMBER: ${{ steps.cpr_bump_dev.outputs.pull-request-number }}
+ PR_OPERATION: ${{ steps.cpr_bump_dev.outputs.pull-request-operation }}
+ with:
+ github-token: ${{ secrets.cogcreators_bot_repo_scoped }}
+ script: |
+ const script = require(
+ `${process.env.GITHUB_WORKSPACE}/.github/workflows/scripts/close_and_reopen_pr.js`
+ );
+ console.log(await script({github, context}));
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/bump_version.py b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/bump_version.py
new file mode 100644
index 0000000000000000000000000000000000000000..aefacf1ef6016d32804ccc6bd62bed0724a17bb3
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/bump_version.py
@@ -0,0 +1,59 @@
+import os
+import re
+import sys
+from typing import Any, Match
+
+import redbot
+
+GITHUB_OUTPUT = os.environ["GITHUB_OUTPUT"]
+
+
+def set_output(name: str, value: Any) -> None:
+ with open(GITHUB_OUTPUT, "a", encoding="utf-8") as fp:
+ fp.write(f"{name}={value}\n")
+
+
+if int(os.environ.get("JUST_RETURN_VERSION", 0)):
+ set_output("version", redbot._VERSION)
+ sys.exit(0)
+
+
+version_info = None
+
+
+def repl(match: Match[str]) -> str:
+ global version_info
+
+ set_output("old_version", match.group("version"))
+
+ new_stable_version = os.environ.get("NEW_STABLE_VERSION", "auto")
+ if new_stable_version == "auto":
+ version_info = redbot.VersionInfo.from_str(match.group("version"))
+ version_info.dev_release = None
+ else:
+ version_info = redbot.VersionInfo.from_str(new_stable_version)
+
+ if int(os.environ.get("DEV_BUMP", 0)):
+ version_info.micro += 1
+ version_info.dev_release = 1
+
+ return f'_VERSION = "{version_info}"'
+
+
+with open("redbot/__init__.py", encoding="utf-8") as fp:
+ new_contents, found = re.subn(
+ pattern=r'^_VERSION = "(?P[^"]*)"$',
+ repl=repl,
+ string=fp.read(),
+ count=1,
+ flags=re.MULTILINE,
+ )
+
+if not found:
+ print("Couldn't find `_VERSION` line!")
+ sys.exit(1)
+
+with open("redbot/__init__.py", "w", encoding="utf-8", newline="\n") as fp:
+ fp.write(new_contents)
+
+set_output("new_version", version_info)
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/close_and_reopen_pr.js b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/close_and_reopen_pr.js
new file mode 100644
index 0000000000000000000000000000000000000000..81497f90a22462feabb45bd92933fd109bfe327f
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/close_and_reopen_pr.js
@@ -0,0 +1,25 @@
+module.exports = (async function ({github, context}) {
+ const pr_number = process.env.PR_NUMBER;
+ const pr_operation = process.env.PR_OPERATION;
+ let sleep_time = 0;
+
+ if (!['created', 'updated'].includes(pr_operation)) {
+ console.log('PR was not created as there were no changes.')
+ return;
+ }
+
+ for (const new_state of ['closed', 'open']) {
+ // some sleep time needed to make sure API handles open after close
+ if (sleep_time)
+ await new Promise(r => setTimeout(r, sleep_time));
+
+ github.rest.issues.update({
+ issue_number: pr_number,
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ state: new_state
+ });
+
+ sleep_time = 2000;
+ }
+})
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/compile_requirements.py b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/compile_requirements.py
new file mode 100644
index 0000000000000000000000000000000000000000..37aab01b84c70e2a85cbb8552d7aa9b0f71282e4
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.github/workflows/scripts/compile_requirements.py
@@ -0,0 +1,35 @@
+import os
+import shutil
+import subprocess
+import sys
+from pathlib import Path
+
+
+GITHUB_OUTPUT = os.environ["GITHUB_OUTPUT"]
+REQUIREMENTS_FOLDER = Path(__file__).parents[3].absolute() / "requirements"
+os.chdir(REQUIREMENTS_FOLDER)
+
+
+def pip_compile(name: str) -> None:
+ subprocess.check_call(
+ (
+ sys.executable,
+ "-m",
+ "piptools",
+ "compile",
+ "--upgrade",
+ "--verbose",
+ f"{name}.in",
+ "--output-file",
+ f"{sys.platform}-{name}.txt",
+ )
+ )
+
+
+pip_compile("base")
+shutil.copyfile(f"{sys.platform}-base.txt", "base.txt")
+for file in REQUIREMENTS_FOLDER.glob("extra-*.in"):
+ pip_compile(file.stem)
+
+with open(GITHUB_OUTPUT, "a", encoding="utf-8") as fp:
+ fp.write(f"sys_platform={sys.platform}\n")
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.gitignore b/testbed/Cog-Creators__Red-DiscordBot/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..bf8bf731ab1cbdecfdafc4cf40d29d6ccd096aa8
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.gitignore
@@ -0,0 +1,228 @@
+*.exe
+*.dll
+*.pot
+.data
+!/tests/cogs/dataconverter/data/**/*.json
+Pipfile
+Pipfile.lock
+.directory
+
+### JetBrains template
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
+
+# User-specific stuff:
+.idea/
+*.iws
+.vscode/
+*.sublime-project
+*.sublime-workspace
+
+## Plugin-specific files:
+
+# IntelliJ
+out/
+
+# mpeltonen/sbt-idea plugin
+.idea_modules/
+
+# JIRA plugin
+atlassian-ide-plugin.xml
+
+# Cursive Clojure plugin
+.idea/replstate.xml
+
+# Crashlytics plugin (for Android Studio and IntelliJ)
+com_crashlytics_export_strings.xml
+crashlytics.properties
+crashlytics-build.properties
+fabric.properties
+### Python template
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+pip-wheel-metadata/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+.hypothesis/
+
+# Translations
+*.mo
+
+# Django stuff:
+*.log
+local_settings.py
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# pyenv
+.python-version
+
+# celery beat schedule file
+celerybeat-schedule
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+
+# pytest
+.pytest_cache/
+
+# Pre-commit hooks
+/.pre-commit-config.yaml
+
+### macOS template
+# General
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# Icon must end with two \r
+Icon
+
+# Thumbnails
+._*
+
+# Files that might appear in the root of a volume
+.DocumentRevisions-V100
+.fseventsd
+.Spotlight-V100
+.TemporaryItems
+.Trashes
+.VolumeIcon.icns
+.com.apple.timemachine.donotpresent
+
+# Directories potentially created on remote AFP share
+.AppleDB
+.AppleDesktop
+Network Trash Folder
+Temporary Items
+.apdisk
+
+### Windows template
+# Windows thumbnail cache files
+Thumbs.db
+Thumbs.db:encryptable
+ehthumbs.db
+ehthumbs_vista.db
+
+# Dump file
+*.stackdump
+
+# Folder config file
+[Dd]esktop.ini
+
+# Recycle Bin used on file shares
+$RECYCLE.BIN/
+
+# Windows Installer files
+*.cab
+*.msi
+*.msix
+*.msm
+*.msp
+
+# Windows shortcuts
+*.lnk
+
+### SublimeText template
+# Cache files for Sublime Text
+*.tmlanguage.cache
+*.tmPreferences.cache
+*.stTheme.cache
+
+# Workspace files are user-specific
+
+# SFTP configuration file
+sftp-config.json
+sftp-config-alt*.json
+
+# Package control specific files
+Package Control.last-run
+Package Control.ca-list
+Package Control.ca-bundle
+Package Control.system-ca-bundle
+Package Control.cache/
+Package Control.ca-certs/
+Package Control.merged-ca-bundle
+Package Control.user-ca-bundle
+oscrypto-ca-bundle.crt
+bh_unicode_properties.cache
+
+# Sublime-github package stores a github token in this file
+# https://packagecontrol.io/packages/sublime-github
+GitHub.sublime-settings
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.pylintrc b/testbed/Cog-Creators__Red-DiscordBot/.pylintrc
new file mode 100644
index 0000000000000000000000000000000000000000..1e870ede169bae66902d986974ffafffa641b0be
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.pylintrc
@@ -0,0 +1,148 @@
+[MASTER]
+
+# Specify a configuration file.
+#rcfile=
+
+# Add files or directories to the blacklist. They should be base names, not
+# paths.
+ignore=pytest
+
+# Pickle collected data for later comparisons.
+persistent=no
+
+# List of plugins (as comma separated values of python modules names) to load,
+# usually to register additional checkers.
+load-plugins=
+
+# DO NOT CHANGE THIS VALUE # Use multiple processes to speed up Pylint.
+jobs=1
+
+# Allow loading of arbitrary C extensions. Extensions are imported into the
+# active Python interpreter and may run arbitrary code.
+unsafe-load-any-extension=no
+
+# A comma-separated list of package or module names from where C extensions may
+# be loaded. Extensions are loading into the active Python interpreter and may
+# run arbitrary code
+extension-pkg-whitelist=
+
+# Allow optimization of some AST trees. This will activate a peephole AST
+# optimizer, which will apply various small optimizations. For instance, it can
+# be used to obtain the result of joining multiple strings with the addition
+# operator. Joining a lot of strings can lead to a maximum recursion error in
+# Pylint and this flag can prevent that. It has one side effect, the resulting
+# AST will be different than the one from reality.
+optimize-ast=no
+
+
+[MESSAGES CONTROL]
+
+# Only show warnings with the listed confidence levels. Leave empty to show
+# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
+confidence=
+
+# Enable the message, report, category or checker with the given id(s). You can
+# either give multiple identifier separated by comma (,) or put this option
+# multiple time. See also the "--disable" option for examples.
+
+
+enable=all
+
+disable=C, # black is enforcing this for us already, incompatibly
+ W, # unbroaden this to the below specifics later on.
+ W0107, # uneccessary pass is stylisitc in most places
+ W0212, # Should likely refactor around protected access warnings later
+ W1203, # fstrings are too fast to care about enforcing this.
+ W0612, # unused vars can sometimes indicate an issue, but ...
+ W1401, # Should probably fix the reason this is disabled (start up screen)
+ W0511, # Nope, todos are fine for future people to see things to do.
+ W0613, # Too many places where we need to take unused args do to d.py ... also menus
+ W0221, # Overriden converters.
+ W0223, # abstractmethod not defined in mixins is expected
+ I, # ...
+ R # While some of these have merit, It's too large a burden to enable this right now.
+
+
+[REPORTS]
+
+output-format=parseable
+files-output=no
+reports=no
+
+
+[LOGGING]
+
+# Logging modules to check that the string format arguments are in logging
+# function parameter format
+logging-modules=logging
+
+
+[TYPECHECK]
+
+# Tells whether missing members accessed in mixin class should be ignored. A
+# mixin class is detected if its name ends with "mixin" (case insensitive).
+ignore-mixin-members=yes
+
+# TODO: Write a plyint plugin to allow this with these mixin classes
+# To use the abstractmethod we know will be defined in the final class.
+ignored-classes=redbot.cogs.mod.movetocore.MoveToCore,
+ redbot.cogs.mod.kickban.KickBanMixin,
+ redbot.cogs.mod.mutes.MuteMixin,
+ redbot.cogs.mod.names.ModInfo,
+ redbot.cogs.mod.settings.ModSettings,
+ redbot.cogs.mod.events.Events
+
+ignored-modules=distutils # https://github.com/PyCQA/pylint/issues/73
+
+
+[VARIABLES]
+
+# Tells whether we should check for unused import in __init__ files.
+init-import=no
+
+# A regular expression matching the name of dummy variables (i.e. expectedly
+# not used).
+dummy-variables-rgx=_$|dummy
+
+
+[SIMILARITIES]
+
+# Minimum lines number of a similarity.
+min-similarity-lines=4
+
+# Ignore comments when computing similarities.
+ignore-comments=yes
+
+# Ignore docstrings when computing similarities.
+ignore-docstrings=yes
+
+# Ignore imports when computing similarities.
+ignore-imports=no
+
+
+[MISCELLANEOUS]
+
+# List of note tags to take in consideration, separated by a comma.
+notes=FIXME,XXX,TODO
+
+
+[CLASSES]
+
+# List of method names used to declare (i.e. assign) instance attributes.
+defining-attr-methods=__init__,__new__,__call__
+
+# List of valid names for the first argument in a class method.
+valid-classmethod-first-arg=cls
+
+# List of valid names for the first argument in a metaclass class method.
+valid-metaclass-classmethod-first-arg=mcs
+
+# List of member names, which should be excluded from the protected access
+# warning.
+exclude-protected=
+
+[EXCEPTIONS]
+
+# Exceptions that will emit a warning when being caught. Defaults to
+# "Exception"
+overgeneral-exceptions=Exception,discord.DiscordException
\ No newline at end of file
diff --git a/testbed/Cog-Creators__Red-DiscordBot/.readthedocs.yml b/testbed/Cog-Creators__Red-DiscordBot/.readthedocs.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fd00d359580ecf4223382216b6440fcd7e7c2f30
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/.readthedocs.yml
@@ -0,0 +1,13 @@
+version: 2
+
+build:
+ os: "ubuntu-22.04"
+ tools:
+ python: "3.8"
+
+python:
+ install:
+ - method: pip
+ path: .
+ extra_requirements:
+ - doc
diff --git a/testbed/Cog-Creators__Red-DiscordBot/CHANGES.rst b/testbed/Cog-Creators__Red-DiscordBot/CHANGES.rst
new file mode 100644
index 0000000000000000000000000000000000000000..fb3f7f9c2a9b52fd6fab8114389139b86a4bc17a
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/CHANGES.rst
@@ -0,0 +1,3241 @@
+.. Red changelogs
+
+Redbot 3.4.18 (2022-08-15)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`RheingoldRiver`
+
+Read before updating
+--------------------
+
+#. openSUSE Leap 15.2 is no longer supported as it has already reached its end of life.
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ - Red 3.4.18 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+ - We've updated our `application.yml file `__ and you should update your instance's ``application.yml`` appropriately.
+
+
+End-user changelog
+------------------
+
+Removals
+********
+
+- **Core - OS Support** - openSUSE Leap 15.2 is no longer supported as it has already reached its end of life (:issue:`5777`)
+
+Fixes
+*****
+
+- |cool| **Cogs - Audio** - Addressed a cipher change that made it impossible to find tracks (:issue:`5822`)
+- **Cogs - Audio** - Fixed an issue with ``[p]llset external`` making the bot completely unresponsive when switching to an external Lavalink server (:issue:`5804`, :issue:`5828`)
+
+
+Documentation changes
+---------------------
+
+Changes
+*******
+
+- Updated the screenshot in `bot_application_guide` to include the message content intent (:issue:`5798`)
+- Unpinned Temurin version on Windows as a fixed version is now available (:issue:`5815`)
+
+----
+
+Redbot 3.4.17 (2022-06-07)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`ltzmax`, :ghuser:`matcha19`, :ghuser:`mina9999`, :ghuser:`ponte-vecchio`, :ghuser:`PredaaA`, :ghuser:`TrustyJAID`, :ghuser:`untir-l`, :ghuser:`Vexed01`
+
+Read before updating
+--------------------
+
+#. Fedora 34 is no longer supported as it has already reached its end of life.
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.17 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Cogs - Trivia - Lists** - Added a trivia list for the FIFA World Cup with questions based on hosts, placements, venues, continental confederations, number of participants, top goal scorers, qualification shocks, and more (:issue:`5639`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - Added instructions on how to respond to the message received from ``[p]contact`` in the embed footer of the message sent to the bot owner (:issue:`5528`, :issue:`5529`)
+- **Core - Bot Commands** - Updated ``[p]servers`` command to escape Discord markdown in server names (:issue:`5696`, :issue:`5744`)
+- **Cogs - Audio** - Added timestamps to all embeds sent by Audio cog (:issue:`5632`)
+- **Cogs - Audio** - Improved handling of voice connection close codes received from Discord (:issue:`5712`)
+- |cool| **Cogs - Downloader** - Added information about the commit hash at which the cog is pinned in the output of ``[p]cog listpinned`` command (:issue:`5551`, :issue:`5563`)
+- **Cogs - General** - Updated features list in ``[p]serverinfo`` with the latest changes from Discord (:issue:`5655`)
+- **Cogs - Mod** - Updated Red's ban commands to address the breaking change that Discord made in their ban list API endpoint (:issue:`5656`)
+- **Cogs - Mutes** - Added proper error handling for VERY long durations in mute commands (:issue:`5605`)
+- **Cogs - Permissions** - Updated ``[p]permissions acl setglobal`` and ``[p]permissions acl setserver`` to allow sending the file in a follow-up message (:issue:`5473`, :issue:`5685`)
+- **Cogs - Permissions** - ``[p]permissions canrun`` now prepends an emoji to the response to better differentiate between the positive and negative results (:issue:`5711`)
+- **Cogs - Trivia** - Allowed passing ``use_spoilers`` setting in the CONFIG section of the trivia list file (:issue:`5566`)
+- **Cogs - Trivia - Lists** - Updated ``geography`` trivia list with up-to-date answers and removed questions that lack sources for their claimed answers (:issue:`5638`)
+- **Cogs - Trivia - Lists** - Updated Kazakhstan's capital city in the ``worldcapitals`` trivia list (:issue:`5598`, :issue:`5599`)
+
+Removals
+********
+
+- **Core - OS Support** - Fedora 34 is no longer supported as it has already reached its end of life (:issue:`5701`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed grammar in the ``[p]uptime`` command (:issue:`5596`)
+- **Core - Command-line Interfaces** - Fixed a bug that prevented users from changing the name and data location with ``redbot --edit`` command (:issue:`5545`, :issue:`5540`, :issue:`5541`)
+- **Core - Modlog** - Modlog's automated case creation for bans now properly checks that the guild is available before further processing (:issue:`5647`)
+- |cool| **Cogs - Audio** - Fixed plain word YT searching with ``[p]play`` and ``[p]search`` commands (:issue:`5712`)
+- |cool| **Cogs - Audio** - Fixed YT age-restricted track playback (:issue:`5712`)
+- **Cogs - Audio** - Fixed the cog not sending any Track Error message on track decoding errors (:issue:`5716`)
+- **Cogs - Audio** - Fixed the ``UnboundLocalError`` exception happening when using ``[p]playlist list`` with an empty playlist (:issue:`5378`, :issue:`5394`)
+- **Cogs - Filter** - Fixed a potential memory leak in Filter cog (:issue:`5578`)
+- **Cogs - Trivia - Lists** - Fixed spelling error in the answer to one of the questions in ``computers`` trivia list (:issue:`5587`, :issue:`5588`)
+
+
+Developer changelog
+-------------------
+
+Changes
+*******
+
+- **Vendored Packages** - Updated ``discord.ext.menus`` vendor (:issue:`5579`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Added CentOS Stream 9, RHEL 9, Alma Linux 9, Oracle Linux 9, and Rocky Linux 9 install guides (:issue:`5537`, :issue:`5721`)
+- Added Ubuntu 22.04 install guide (:issue:`5720`)
+
+Changes
+*******
+
+- Changed the recommended operating system for hosting Red from Ubuntu 20.04 LTS to Ubuntu 22.04 LTS (:issue:`5720`)
+- Updated Python version in ``pyenv`` and Windows instructions (:issue:`5719`)
+- Replaced install instructions for discontinued AdoptOpenJDK package with Temurin 11 package in the macOS install guide (:issue:`5718`)
+- Updated Visual Studio Build Tools version in Windows install guide (:issue:`5702`)
+- Updated systemd guide to use the absolute path to ``which`` command to avoid triggering shell aliases on some OSes (:issue:`5547`)
+- Emphasized lines that contain text that needs to be replaced by the user (:issue:`5548`)
+- Prevented Google and other search engines from indexing versioned documentation (:issue:`5549`)
+
+Fixes
+*****
+
+- Pinned Temurin version on Windows until a fixed version becomes available (:issue:`5717`)
+- Fixed git installation instructions in CentOS 7 install guide (:issue:`5700`)
+
+----
+
+Redbot 3.4.16 (2021-12-31)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`jack1142`, :ghuser:`PredaaA`
+
+This is a hotfix release fixing issues with invite URL API that caused
+``[p]invite`` command and ``CORE__INVITE_URL`` RPC method to not work.
+
+End-user changelog
+------------------
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed ``[p]invite`` command (:issue:`5517`)
+
+
+Developer changelog
+-------------------
+
+Fixes
+*****
+
+- **RPC methods** - Fixed ``CORE__INVITE_URL`` RPC method (:issue:`5517`)
+
+
+Documentation changes
+---------------------
+
+Changes
+*******
+
+- Changed Arch install guide to temporarily use ``python39`` AUR package instead of ``python`` package as Red does not currently support Python 3.10 (:issue:`5518`)
+
+----
+
+Redbot 3.4.15 (2021-12-31)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`aleclol`, :ghuser:`Arman0334`, :ghuser:`Crossedfall`, :ghuser:`Dav-Git`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Jan200101`, :ghuser:`Just-Jojo`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`laggron42`, :ghuser:`ltzmax`, :ghuser:`Parnassius`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`RasmusWL`, :ghuser:`sravan1946`, :ghuser:`Stonedestroyer`, :ghuser:`the-krak3n`, :ghuser:`Tobotimus`, :ghuser:`vertyco`, :ghuser:`Vexed01`, :ghuser:`WreckRox`, :ghuser:`yamikaitou`
+
+Read before updating
+--------------------
+
+#. Fedora 33 and CentOS 8 are no longer supported as they have already reached end of life.
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.15 uses a new Lavalink jar that you MUST manually update from `our GitHub `__ to be able to continue using Audio.
+
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- |cool| **Core - Command-line Interfaces** - Added new CLI options for non-interactive usage of ``redbot-setup`` (:issue:`2396`, :issue:`5448`)
+
+ See output of ``redbot-setup --help`` for more information.
+
+- **Cogs - Admin** - Added ``[p]selfroleset clear`` command which can be used to clear the list of available selfroles in the server (:issue:`5387`)
+- **Cogs - Audio** - Added native Mac M1 support for Java runtimes supporting Mac M1 (:issue:`5474`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - Updated prefix length limit to ``25`` to allow setting bot mention as a prefix (:issue:`5476`)
+- **Core - Bot Commands** - Improved ``[p]helpset showaliases`` responses (:issue:`5376`)
+- **Core - Bot Commands** - Added plural forms to the responses of ``[p]leave`` command (:issue:`5391`)
+- **Core - Bot Commands** - The embed setting for ``[p]help`` command set with ``[p]embedset command`` will now affect all help messages, not just the ones sent when invoking ``[p]help`` command directly (:issue:`5452`)
+- **Core - Bot Commands** - ``[p]traceback`` command now indicates that it DMed the command caller with a tick reaction (:issue:`5353`)
+- **Core - Command-line Interfaces** - JSON is now more strongly recommended and is used by default for new instances in ``redbot-setup`` (:issue:`5448`)
+- **Cogs - Audio** - Enabled JDA-NAS on all system architectures which should limit stuttering/buffering issues on some machines (:issue:`5474`)
+- **Cogs - Audio** - The bot will now disconnect from the voice channel when all members are bots if the auto-disconnect setting is enabled (:issue:`5421`)
+- **Cogs - CustomCommands** - Added 2000 character limit for custom command responses to prevent Nitro users from adding longer responses than a Discord bot can send (:issue:`5499`)
+- **Cogs - Downloader** - Added repo name to the response of ``[p]findcog`` command (:issue:`5382`, :issue:`5383`)
+- **Cogs - Mod** - ``[p]voicekick`` now sends a response when the action succeeds (:issue:`5367`)
+- |cool| **Cogs - Modlog** - Added the new native Discord timestamps in ``[p]case``, ``[p]casesfor``, and ``[p]listcases`` commands (:issue:`5395`)
+
+Removals
+********
+
+- **Core - OS Support** - Fedora 33 and CentOS 8 are no longer supported as they have already reached end of life (:issue:`5440`)
+- **Cogs - General** - Removed voice region field from ``[p]serverinfo`` command as Discord no longer provides this setting for servers (:issue:`5449`)
+
+Fixes
+*****
+
+- Fixed short help for some of the commands in Core Red (:issue:`5502`)
+- Confirmation prompts (accepting "yes/no" or "I agree" as the answer) no longer wrongfully translate the answer that needs to be sent when only English answers are accepted by the bot (:issue:`5363`, :issue:`5364`, :issue:`5404`)
+- **Core - Bot Commands** - Corrected usage examples in help of ``[p]set api`` and ``[p]set api remove`` (:issue:`5444`)
+- **Core - Bot Commands** - ``[p]command enable guild`` and ``[p]command disable guild`` commands no longer error out for commands that *only* check for user permissions, not caller's roles (:issue:`5477`)
+- **Core - Command-line Interfaces** - Fixed an issue with instance backup failing for non-JSON storage backends (:issue:`5315`)
+- **Core - Command-line Interfaces** - Running Red with ``--no-instance`` CLI flag no longer fails when no instance was ever created by the user (:issue:`5415`, :issue:`5416`)
+- **Core - Modlog** - Fixed issues with rendering of modlog cases with usernames written in a right-to-left language (:issue:`5422`)
+- |cool| **Cogs - Audio** - Fixed an issue with resuming playback after changing voice channels (:issue:`5170`)
+- |cool| **Cogs - Audio** - Fixed issues with Soundcloud private playlists and mobile links (:issue:`5474`)
+- |cool| **Cogs - Audio** - Fixed searching music with some of the queries containing quotes or backslashes (:issue:`5474`)
+- |cool| **Cogs - Audio** - Fixed an exception caused by unavailable YT tracks in Mix playlists (:issue:`5474`)
+- **Cogs - Audio** - Fixed ``IndexError`` in ``[p]queue`` command which occurred when the user provides negative integer as the page number (:issue:`5429`)
+- **Cogs - Cleanup** - Restricted ``[p]cleanupset notify`` to only be invokable in server channels (:issue:`5466`)
+- **Cogs - Economy** - ``[p]economyset showsettings`` now includes configured role payday amounts (:issue:`5455`, :issue:`5457`)
+- **Cogs - Mod** - Fixed an error with ``[p]tempban`` failing to send an invite link when a server has an unset vanity URL (:issue:`5472`)
+- **Cogs - Mod** - Fixed explanations of example usage for ``[p]ban``, ``[p]kick``, and ``[p]tempban`` commands (:issue:`5372`)
+- **Cogs - Mod** - Fixed a typo in one of ``[p]unban``'s error messages (:issue:`5470`)
+- **Cogs - Warnings** - Warning actions no longer error out when the action is set to use a command that *only* checks for user permissions, not caller's roles (:issue:`5477`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Bot Class** - Added optional ``check_permissions`` keyword-only argument to `Red.embed_requested()` which, if ``True``, will make the method also check whether the bot can send embeds in the given channel (:issue:`5452`)
+- |cool| **Core - Bot Class** - Added `Red.get_invite_url()` and `Red.is_invite_url_public()` that expose the functionality of ``[p]invite`` programmatically (:issue:`5152`, :issue:`5424`)
+- |cool| **Core - Commands Package** - Added optional ``message`` argument to `Context.tick()` and `Context.react_quietly()` which is used if adding the reaction doesn't succeed (:issue:`3359`, :issue:`4092`)
+
+Changes
+*******
+
+- **Cogs - Dev** - ``[p]mockmsg`` now allows mocking attachment-only messages (:issue:`5446`)
+- **RPC methods** - Changed the output of ``CORE__LOAD``, ``CORE__RELOAD``, and ``CORE__UNLOAD`` RPC methods to a dictionary (:issue:`5451`, :issue:`5453`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added install guide for Alma Linux 8.4-8.x and Raspberry Pi OS 11 Bullseye (:issue:`5440`)
+- Specified that Red currently requires Python 3.8.1 - 3.9.x (:issue:`5403`)
+
+Changes
+*******
+
+- Updated the Java distribution used in the Windows install guide to Temurin - rebranded AdoptOpenJDK (:issue:`5403`)
+- Improved Mac and pyenv instructions to address common issues with load path configuration (:issue:`5356`)
+- Updated the server locations for Hetzner and Contabo in :ref:`host-list` document (:issue:`5475`)
+- Updated Python version in ``pyenv`` and Windows instructions (:issue:`5447`)
+- Removed LXC from unsupported hosting platforms as many VPS providers utilize that technology (:issue:`5351`)
+
+Fixes
+*****
+
+- Removed inaccurate note from Unix install guides about install commands also being used for updating Red (:issue:`5439`)
+
+----
+
+Redbot 3.4.14 (2021-09-23)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`L33Tech`, :ghuser:`maxbooiii`, :ghuser:`RheingoldRiver`
+
+Read before updating
+--------------------
+
+#. Versions of RHEL older than 8.4 (including 7) and versions of CentOS older than 8.4 (excluding 7) are no longer supported.
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.14 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- |cool| **Core - Bot Commands** - Added the new native Discord timestamp in the ``[p]uptime`` command (:issue:`5323`)
+
+Changes
+*******
+
+- **Core - Command-line Interfaces** - ``redbot-setup delete`` command no longer requires database connection if the data deletion was not requested (:issue:`5312`, :issue:`5313`)
+
+Fixes
+*****
+
+- |cool| **Cogs - Audio** - Fixed intermittent 403 Forbidden errors (:issue:`5329`)
+- **Cogs - Modlog** - Fixed formatting of **Last modified at** field in Modlog cases (:issue:`5317`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added install guide for CentOS Stream 8, Oracle Linux 8.4-8.x, and Rocky Linux 8 (:issue:`5328`)
+
+Changes
+*******
+
+- |cool| Each operating system now has a dedicated install guide (:issue:`5328`)
+- Install guides for RHEL derivatives no longer require the use of pyenv (:issue:`5328`)
+
+Fixes
+*****
+
+- Fixed Raspberry Pi OS install guide (:issue:`5314`, :issue:`5328`)
+
+----
+
+Redbot 3.4.13 (2021-09-09)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Arman0334`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`fredster33`, :ghuser:`Injabie3`, :ghuser:`jack1142`, :ghuser:`Just-Jojo`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`leblancg`, :ghuser:`maxbooiii`, :ghuser:`npc203`, :ghuser:`palmtree5`, :ghuser:`phenom4n4n`, :ghuser:`PredaaA`, :ghuser:`qenu`, :ghuser:`TheDataLeek`, :ghuser:`Twentysix26`, :ghuser:`TwinDragon`, :ghuser:`Vexed01`
+
+Read before updating
+--------------------
+
+#. If you're hosting a public/big bot (>75 servers) or strive to scale your bot at that level, you should read :doc:`our stance on (privileged) intents and public bots `.
+#. Fedora 32 is no longer supported as it has already reached end of life.
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.13 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- |cool| **Core** - Red 3.4.13 is the first release to (finally) support Python 3.9! (:issue:`4655`, :issue:`5121`)
+- |cool| **Core - Bot Commands** - Added a new ``[p]diagnoseissues`` command to allow the bot owners to diagnose issues with various command checks with ease (:issue:`4717`, :issue:`5243`)
+
+ Since some of us are pretty excited about this feature, here's a very small teaser showing a part of what it can do:
+
+ .. figure:: https://user-images.githubusercontent.com/6032823/132610057-d6c65d67-c244-4f0b-9458-adfbe0c68cab.png
+- **Core - Bot Commands** - Added a setting for ``[p]help``'s reaction timeout (:issue:`5205`)
+
+ This can be changed with ``[p]helpset reacttimeout`` command
+- **Cogs - Alias** - Added commands for editing existing aliases (:issue:`5108`)
+- **Cogs - Audio** - Added a per-guild max volume setting (:issue:`5165`)
+
+ This can be changed with the ``[p]audioset maxvolume`` command
+- |cool| **Cogs - Cleanup** - All ``[p]cleanup`` commands will now send a notification with the number of deleted messages. The notification is deleted automatically after 5 seconds (:issue:`5218`)
+
+ This can be disabled with the ``[p]cleanupset notify`` command
+- **Cogs - Filter** - Added ``[p]filter clear`` and ``[p]filter channel clear`` commands for clearing the server's/channel's filter list (:issue:`4841`, :issue:`4981`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - Revamped the ``[p]debuginfo`` to make it more useful for... You guessed it, debugging! (:issue:`4997`, :issue:`5156`)
+
+ More specifically, added information about CPU and RAM, bot's instance name and owners
+- |cool| **Core - Bot Commands** - Added the new native Discord timestamps in Modlog cases, ``[p]userinfo``, ``[p]serverinfo``, and ``[p]tempban`` (:issue:`5155`, :issue:`5241`)
+- **Core - Bot Commands** - The ``[p]invite`` command will now add a tick reaction after it DMs an invite link to the user (:issue:`5184`)
+- |cool| **Core - Command-line Interfaces** - The formatting of Red's console logs has been updated to make it more copy-paste friendly (:issue:`4868`, :issue:`5181`)
+- **Core - Command-line Interfaces** - The console error about missing Privileged Intents stands out more now (:issue:`5184`)
+- **Core - Dependencies** - Upgraded all Red's dependencies (:issue:`5121`)
+- **Cogs - Admin** - The ``[p]selfroleset add`` and ``[p]selfroleset remove`` commands can now be used to add multiple selfroles at once (:issue:`5237`, :issue:`5238`)
+- **Cogs - Audio** - ``[p]summon`` will now indicate that it has succeeded or failed to summon the bot (:issue:`5186`)
+- |cool| **Cogs - Cleanup** - The ``[p]cleanup user`` command can now be used to clean messages of a user that is no longer in the server (:issue:`5169`)
+- **Cogs - Downloader** - The dot character (``.``) can now be used in repo names. No more issues with adding repositories using the commands provided by the Cog Index! (:issue:`5214`)
+- |cool| **Cogs - Mod** - The DM message from the ``[p]tempban`` command will now include the ban reason if ``[p]modset dm`` setting is enabled (:issue:`4836`, :issue:`4837`)
+- **Cogs - Streams** - Made small optimizations in regards to stream alerts (:issue:`4968`)
+- **Cogs - Trivia** - Added schema validation of the custom trivia files (:issue:`4571`, :issue:`4659`)
+
+Removals
+********
+
+- **Core - OS Support** - Fedora 32 is no longer supported as it has already reached end of life (:issue:`5121`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed a bunch of errors related to the missing permissions and channels/messages no longer existing (:issue:`5109`, :issue:`5163`, :issue:`5172`, :issue:`5191`)
+- **Cogs - Audio** - Fixed an issue with short clips being cutoff when auto-disconnect on queue end is enabled (:issue:`5158`, :issue:`5188`)
+- |cool| **Cogs - Audio** - Fixed fetching of age-restricted tracks (:issue:`5233`)
+- |cool| **Cogs - Audio** - Fixed searching of YT Music (:issue:`5233`)
+- |cool| **Cogs - Audio** - Fixed playback from SoundCloud (:issue:`5233`)
+- **Cogs - Downloader** - Added a few missing line breaks (:issue:`5185`, :issue:`5187`)
+- **Cogs - Mod** - Fixed an error with handling of temporary ban expirations while the guild is unavailable due to Discord outage (:issue:`5173`)
+- **Cogs - Mod** - The ``[p]rename`` command will no longer permit changing nicknames of members that are not lower in the role hierarchy than the command caller (:issue:`5187`, :issue:`5211`)
+- **Cogs - Streams** - Fixed an issue with some YouTube streamers getting removed from stream alerts after a while (:issue:`5195`, :issue:`5223`)
+- |cool| **Cogs - Warnings** - 0 point warnings are, once again, allowed. (:issue:`5177`, :issue:`5178`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- |cool| **Core - Bot Class** - Added more APIs for allowlists and blocklists (:issue:`5206`)
+
+ Here's the list of the methods that were added to the ``bot`` object:
+
+ - `Red.add_to_blacklist()`
+ - `Red.remove_from_blacklist()`
+ - `Red.get_blacklist()`
+ - `Red.clear_blacklist()`
+ - `Red.add_to_whitelist()`
+ - `Red.remove_from_whitelist()`
+ - `Red.get_whitelist()`
+ - `Red.clear_whitelist()`
+- |cool| **Core - Commands Package** - Added `RelativedeltaConverter` and `parse_relativedelta` to the ``redbot.core.commands`` package (:issue:`5000`)
+
+ This converter and function return `dateutil.relativedelta.relativedelta` object that represents a relative delta.
+ In addition to regular timedelta arguments, it also accepts months and years!
+- **Core - Commands Package** - Added `CommandConverter` and `CogConverter` to the ``redbot.core.commands`` package (:issue:`5037`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Added a document about (privileged) intents and our stance regarding "public bots" (:issue:`5216`, :issue:`5221`)
+- |cool| Added install instructions for Debian 11 Bullseye (:issue:`5213`, :issue:`5217`)
+- Added Oracle Cloud's Always Free offering to the :ref:`host-list` (:issue:`5225`)
+
+Changes
+*******
+
+- |cool| Updated the commands in the install guide for Mac OS to work properly on Apple Silicon devices (:issue:`5234`)
+
+Fixes
+*****
+
+- Fixed the examples of commands that are only available to people with the mod role (:issue:`5180`)
+- Fixed few other small issues with the documentation :) (:issue:`5048`, :issue:`5092`, :issue:`5149`, :issue:`5207`, :issue:`5209`, :issue:`5215`, :issue:`5219`, :issue:`5220`)
+
+----
+
+Redbot 3.4.12 (2021-06-17)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Just-Jojo`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`npc203`, :ghuser:`PredaaA`, :ghuser:`retke`, :ghuser:`Stonedestroyer`
+
+This is a hotfix release related to Red ceasing to use the Audio Global API service.
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core - Bot Commands** - ``applications.commands`` scope can now be included in the invite URL returned from ``[p]invite`` by enabling it with``[p]inviteset commandscope``
+
+Changes
+*******
+
+- **Core - Bot Commands** - ``[p]set serverprefix`` command will now prevent the user from setting a prefix with length greater than 20 characters (:issue:`5091`, :issue:`5117`)
+- **Core - Bot Commands** - ``[p]set prefix`` command will now warn the user when trying to set a prefix with length greater than 20 characters (:issue:`5091`, :issue:`5117`)
+- |cool| **Cogs - Audio** - All local caches are now enabled by default (:issue:`5140`)
+
+Removals
+********
+
+- **Cogs - Audio** - Global API service will no longer be used in Audio and as such support for it has been removed from the cog (:issue:`5143`)
+
+Fixes
+*****
+
+- **Cogs - Audio** - Updated URL of the curated playlist (:issue:`5135`)
+- **Cogs - Filter** - Fixed an edge case that caused the cog to sometimes check contents of DM messages (:issue:`5125`)
+- **Cogs - Warnings** - Prevented users from applying 0 or less points in custom warning reasons (:issue:`5119`, :issue:`5120`)
+
+Developer changelog
+-------------------
+
+Changes
+*******
+
+- **Cogs - Dev** - ``[p]debug`` command will now confirm the code finished running with a tick reaction (:issue:`5107`)
+
+----
+
+Redbot 3.4.11 (2021-06-12)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`Onii-Chan-Discord`
+
+This is a hotfix release fixing a crash involving guild uploaded stickers.
+
+End-user changelog
+------------------
+
+Changes
+*******
+
+- **Core - Dependencies** - discord.py version has been bumped to 1.7.3 (:issue:`5129`)
+
+
+Documentation changes
+---------------------
+
+Fixes
+*****
+
+- Links to the CogBoard in Red's documentation have been updated to use the new domain (:issue:`5124`)
+
+----
+
+Redbot 3.4.10 (2021-05-28)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`aleclol`, :ghuser:`benno1237`, :ghuser:`bobloy`, :ghuser:`BoyDownTown`, :ghuser:`Danstr5544`, :ghuser:`DeltaXWizard`, :ghuser:`Drapersniper`, :ghuser:`Fabian-Evolved`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`Lifeismana`, :ghuser:`Obi-Wan3`, :ghuser:`OofChair`, :ghuser:`palmtree5`, :ghuser:`plofts`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`TrustyJAID`, :ghuser:`Vexed01`
+
+Read before updating
+--------------------
+
+#. PM2 process manager is no longer supported as it is not a viable solution due to certain parts of its behavior.
+
+ We highly recommend you to switch to one of the other supported solutions:
+ - `autostart_systemd`
+ - `autostart_mac`
+
+ If you experience any issues when trying to configure it, you can join `our discord server `__ and ask in the **support** channel for help.
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ - Red 3.4.10 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+ - We've updated our `application.yml file `__ and you should update your instance's ``application.yml`` appropriately.
+
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Cogs - Streams** - In message template, ``{stream.display_name}`` can now be used to refer to streamer's display name (:issue:`5050`, :issue:`5066`)
+
+ - This is not always the same as ``{stream}`` which refers to the streamer's channel or username
+
+Changes
+*******
+
+- Rephrased a few strings and fixed maaaaany grammar issues and typos (:issue:`4793`, :issue:`4832`, :issue:`4955`, :issue:`4966`, :issue:`5015`, :issue:`5019`, :issue:`5029`, :issue:`5038`, :issue:`5055`, :issue:`5080`, :issue:`5081`)
+- **Cogs - Admin** - The cog will now log when it leaves a guild due to the serverlock (:issue:`5008`, :issue:`5073`)
+- **Cogs - Audio** - The ``[p]audiostats`` command can now only be used by bot owners (:issue:`5017`)
+- **Cogs - Audio** - The cog will now check whether it has speak permissions in the channel before performing any actions (:issue:`5012`)
+- **Cogs - Audio** - Improved logging in Audio cog (:issue:`5044`)
+- **Cogs - Cleanup** - Clarified that ``[p]cleanup`` commands only delete the messages from the current channel (:issue:`5070`)
+- **Cogs - Downloader** - ``[p]repo remove`` can now remove multiple repos at the same time (:issue:`4765`, :issue:`5082`)
+- **Cogs - General** - The ``[p]urban`` command will now use the default embed color of the bot (:issue:`5014`)
+- **Cogs - Modlog** - Modlog will no longer try editing the case's Discord message once it knows that it no longer exists (:issue:`4975`)
+- **Cogs - Modlog** - ``[p]modlogset resetcases`` will now ask for confirmation before proceeding (:issue:`4976`)
+- **Cogs - Streams** - - Improved logging of API errors in Streams cog (:issue:`4995`)
+
+Removals
+********
+
+- **Cogs - Streams** - Smashcast service has been closed and for that reason we have removed support for it from the cog (:issue:`5039`, :issue:`5040`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Added missing information about the ``showaliases`` setting in ``[p]helpset showsettings`` (:issue:`4971`)
+- **Core - Bot Commands** - The help command no longer errors when it doesn't have permission to read message history and menus are enabled (:issue:`4959`, :issue:`5030`)
+- **Core - Bot Commands** - Fixed a bug in ``[p]embedset user`` that made it impossible to reset the user's embed setting (:issue:`4962`)
+- **Core - Bot Commands** - ``[p]embedset command`` and its subcommands now properly check whether any of the passed command's parents require Embed Links permission (:issue:`4962`)
+- **Core - Bot Commands** - Fixed an issue with Red reloading unrelated modules when using ``[p]load`` and ``[p]reload`` (:issue:`4956`, :issue:`4958`)
+- |cool| **Core - Command-line Interfaces** - Fixed terminal colors on Windows (:issue:`5063`)
+- **Core - Command-line Interfaces** - Fixed the ``--rich-traceback-extra-lines`` flag (:issue:`5028`)
+- **Cogs - Audio** - Fixed an issue that made it possible to remove Aikaterna's curated tracks playlist (:issue:`5018`)
+- |cool| **Cogs - Audio** - Fixed auto-resume of auto play after Lavalink restart (:issue:`5051`)
+- **Cogs - Audio** - Fixed an error with ``[p]audiostats`` caused by players not always having their connection time stored (:issue:`5046`)
+- **Cogs - Audio** - Fixed track resuming in a certain edge case (:issue:`4996`)
+- **Cogs - Audio** - Fixed an error in ``[p]audioset restart`` (:issue:`4987`)
+- **Cogs - Audio** - Fixed an issue with Audio failing when it's missing permissions to send a message in the notification channel (:issue:`4960`)
+- |cool| **Cogs - Audio** - Fixed fetching of age-restricted tracks (:issue:`5085`)
+- **Cogs - Audio** - Fixed an issue with SoundCloud URLs that ended with a slash (``/``) character (:issue:`5085`)
+- **Cogs - CustomCommands** - ``[p]customcom create simple`` no longer errors for a few specific names (:issue:`5026`, :issue:`5027`)
+- **Cogs - Downloader** - ``[p]cog install`` now properly shows the repo name rather than ``{repo.name}`` (:issue:`4954`)
+- **Cogs - Mod** - ``[p]mute`` no longer errors on muting a bot user if the ``senddm`` option is enabled (:issue:`5071`)
+- **Cogs - Mutes** - Forbidden errors during the channel mute are now handled properly in a rare edge case (:issue:`4994`)
+- |cool| **Cogs - Streams** - Fixed Picarto support (:issue:`4969`, :issue:`4970`)
+- **Cogs - Streams** - ``[p]twitchstream``, ``[p]youtubestream``, and ``[p]picarto`` commands can no longer be run in DMs (:issue:`5036`, :issue:`5035`)
+- |cool| **Cogs - Streams** - Fixed Twitch stream alerts for streams that use localized display names (:issue:`5050`, :issue:`5066`)
+- **Cogs - Streams** - The cog no longer errors when trying to delete a cached message from a channel that no longer exists (:issue:`5032`, :issue:`5031`)
+- **Cogs - Warnings** - The warn action is now taken *after* sending the warn message to the member (:issue:`4713`, :issue:`5004`)
+
+
+Developer changelog
+-------------------
+
+Changes
+*******
+
+- **Core - Dependencies** - Bumped discord.py to 1.7.2 (:issue:`5066`)
+- **Cogs - Dev** - ``[p]eval``, ``[p]repl``, and ``[p]debug`` commands now, in addition to ``py``, support code blocks with ``python`` syntax (:issue:`5083`)
+
+Fixes
+*****
+
+- **Core - Command-line Interfaces** - The log messages shown by the global error handler will now show the trace properly for task done callbacks (:issue:`4980`)
+- **Cogs - Dev** - ``[p]eval``, ``[p]repl``, and ``[p]debug`` commands no longer fail to send very long syntax errors (:issue:`5041`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added `a guide for making auto-restart service on Mac ` (:issue:`4082`, :issue:`5020`)
+- |cool| Added `cog guide for core commands ` (:issue:`1734`, :issue:`4597`)
+- |cool| Added `cog guide for Mod cog ` (:issue:`1734`, :issue:`4886`)
+- |cool| Added `cog guide for Modlog cog ` (:issue:`1734`, :issue:`4919`)
+- |cool| Added `cog guide for Mutes cog ` (:issue:`1734`, :issue:`4875`)
+- |cool| Added `cog guide for Permissions cog ` (:issue:`1734`, :issue:`4985`)
+- |cool| Added `cog guide for Reports cog ` (:issue:`1734`, :issue:`4882`)
+- |cool| Added `cog guide for Warnings cog ` (:issue:`1734`, :issue:`4920`)
+- |cool| Added :ref:`a guide about Trivia list creation ` (:issue:`4595`, :issue:`5023`)
+- Added the documentation for `redbot.core.modlog.Case` (:issue:`4979`)
+- Added information on how to set the bot not to start on boot anymore to auto-restart docs (:issue:`5020`)
+
+Changes
+*******
+
+- Updated Python version in ``pyenv`` and Windows instructions (:issue:`5025`)
+- Cog creation guide now includes the ``bot`` as an argument to the cog class (:issue:`4988`)
+
+Removals
+********
+
+- Removed PM2 guide (:issue:`4991`)
+
+----
+
+Redbot 3.4.9 (2021-04-06)
+=========================
+
+This is a hotfix release fixing an issue with command error handling.
+
+discord.py version has been bumped to 1.7.1.
+
+Thanks again to :ghuser:`Rapptz` for quick response on this issue.
+
+----
+
+Redbot 3.4.8 (2021-04-06)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`6days9weeks`, :ghuser:`aikaterna`, :ghuser:`Drapersniper`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`kingslayer268`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`Obi-Wan3`, :ghuser:`OofChair`, :ghuser:`palmtree5`, :ghuser:`phenom4n4n`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`rijusougata13`, :ghuser:`TheDiscordHistorian`, :ghuser:`Tobotimus`, :ghuser:`TrustyJAID`, :ghuser:`Twentysix26`, :ghuser:`Vexed01`
+
+Read before updating
+--------------------
+
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.8 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+#. Fedora 31 and OpenSUSE Leap 15.1 are no longer supported as they have already reached end of life.
+
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- |cool| **Core** - Added per-command embed settings (:issue:`4049`)
+
+ - See help of ``[p]embedset`` and ``[p]embedset command`` command group for more information
+- **Core** - An error message will now be shown when a command that is only available in NSFW channels is used in a non-NSFW channel (:issue:`4933`)
+- |cool| **Core - Bot Commands** - ``[p]leave`` accepts server IDs now (:issue:`4831`)
+- |cool| **Cogs - Trivia** - Added a new option for hiding the answer to the Trivia answer in a spoiler (:issue:`4700`, :issue:`4877`)
+
+ - ``[p]triviaset usespoilers`` command can be used to enable/disable this option
+
+Changes
+*******
+
+- |cool| **Core - Bot Commands** - The ``[p]servers`` command uses menus now (:issue:`4720`, :issue:`4831`)
+- |cool| **Core - Bot Commands** - Commands for listing global and local allowlists and blocklists will now, in addition to IDs, contain user/role names (:issue:`4839`)
+- **Core - Bot Commands** - Added more singular and plural forms in a bunch of commands in the bot (:issue:`4004`, :issue:`4898`)
+- |cool| **Core - Command-line Interfaces** - Added a progress bar to ``redbot-setup convert`` (:issue:`2952`)
+- **Cogs - Audio** - Improved playlist extraction (:issue:`4932`)
+- |cool| **Cogs - Cleanup** - ``[p]cleanup before`` and ``[p]cleanup after`` commands can now be used without a message ID if the invocation message replies to some message (:issue:`4790`)
+- **Cogs - Filter** - Added meaningful error messages for incorrect arguments in the ``[p]bank set`` command (:issue:`4789`, :issue:`4801`)
+- **Cogs - Mod** - Improved performance of checking tempban expirations (:issue:`4907`)
+- **Cogs - Mutes** - Vastly improved performance of automatic unmute handling (:issue:`4906`)
+- **Cogs - Streams** - Streams cog should now load faster on bots that have many stream alerts set up (:issue:`4731`, :issue:`4742`)
+- **Cogs - Streams** - Checking Twitch streams will now make less API calls (:issue:`4938`)
+- **Cogs - Streams** - Ratelimits from Twitch API are now properly handled (:issue:`4808`, :issue:`4883`)
+- **Cogs - Warnings** - Embeds now use the default embed color of the bot (:issue:`4878`)
+
+Removals
+********
+
+- **Core - Command-line Interfaces** - Removed the option to drop the entire PostgreSQL database in ``redbot-setup delete`` due to limitations of PostgreSQL (:issue:`3699`, :issue:`3833`)
+
+Fixes
+*****
+
+- |cool| **Core** - Messages sent interactively in DM channels no longer fail (:issue:`4876`)
+- **Core - Help** - Fixed how the command signature is shown in help for subcommands that have group args (:issue:`4928`)
+- **Cogs - Alias** - Fixed issues with command aliases for commands that take an arbitrary, but non-zero, number of arguments (e.g. ``[p]load``) (:issue:`4766`, :issue:`4871`)
+- |cool| **Cogs - Audio** - Fixed stuttering (:issue:`4565`)
+- |cool| **Cogs - Audio** - Fixed random disconnects (:issue:`4565`)
+- |cool| **Cogs - Audio** - Fixed the issues causing the player to be stuck on 00:00 (:issue:`4565`)
+- |cool| **Cogs - Audio** - Fixed ghost players (:issue:`4565`)
+- |cool| **Cogs - Audio** - Audio will no longer stop playing after a while (:issue:`4565`)
+- **Cogs - Audio** - Fixed playlist loading for playlists with over 100 songs (:issue:`4932`)
+- **Cogs - Audio** - Fixed an issue with alerts causing errors in playlists being loaded (:issue:`4932`)
+- **Cogs - Audio** - Fixed an issue with consent pages appearing while trying to load songs or playlists (:issue:`4932`)
+- **Cogs - Downloader** - Improved compatibility with Git 2.31 and newer (:issue:`4897`)
+- **Cogs - Mod** - Fixed tracking of nicknames that were set just before nick reset (:issue:`4830`)
+- **Cogs - Streams** - Fixed possible memory leak related to automatic message deletion (:issue:`4731`, :issue:`4742`)
+- **Cogs - Streams** - Streamer accounts that no longer exist are now properly handled (:issue:`4735`, :issue:`4746`)
+- **Cogs - Streams** - Fixed stream alerts being sent even after unloading Streams cog (:issue:`4940`)
+- **Cogs - Warnings** - Fixed output of ``[p]warnings`` command for members that are no longer in the server (:issue:`4900`, :issue:`4904`)
+
+
+Developer changelog
+-------------------
+
+Changes
+*******
+
+- **Core - Dependencies** - Bumped discord.py version to 1.7.0 (:issue:`4928`)
+
+Deprecations
+************
+
+- **Core - Bot Class** - Added ``guild`` parameter to `bot.allowed_by_whitelist_blacklist() ` which is meant to replace the deprecated ``guild_id`` parameter (:issue:`4905`, :issue:`4914`)
+
+ - Read the method's documentation for more information
+- **Core - Commands Package** - Deprecated importing ``GuildConverter`` from ``redbot.core.commands.converter`` namespace (:issue:`4928`)
+
+ - ``discord.Guild`` or ``GuildConverter`` from ``redbot.core.commands`` should be used instead
+
+Fixes
+*****
+
+- **Core - Bot Class** - Fixed ``on_red_api_tokens_update`` not being dispatched when the tokens were removed with ``[p]set api remove`` (:issue:`4916`, :issue:`4917`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added `cog guide for Image cog ` (:issue:`4821`)
+
+Changes
+*******
+
+- Added a note about updating cogs in update message and documentation (:issue:`4910`)
+- `getting-started` now contains an explanation of parameters that can take an arbitrary number of arguments (:issue:`4888`, :issue:`4889`)
+- All shell commands in the documentation are now prefixed with an unselectable prompt (:issue:`4908`)
+- `systemd-service-guide` now asks the user to create the new service file using ``nano`` text editor (:issue:`4869`, :issue:`4870`)
+
+ - Instructions for all Linux-based operating systems now recommend to install ``nano``
+- Updated Python version in ``pyenv`` and Windows instructions (:issue:`4864`, :issue:`4942`)
+- Added a warning to Arch Linux install guide about the instructions being out-of-date (:issue:`4866`)
+
+Fixes
+*****
+
+- Updated Mac install guide with new ``brew`` commands (:issue:`4865`)
+
+----
+
+Redbot 3.4.7 (2021-02-26)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`elijabesu`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`kreusada`, :ghuser:`palmtree5`, :ghuser:`TrustyJAID`
+
+End-user changelog
+------------------
+
+Security
+********
+
+- **Cogs - Mutes** - Added proper permission checks to ``[p]muteset senddm`` and ``[p]muteset showmoderator`` (:issue:`4849`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - Updated the ``[p]info`` command to more clearly indicate that the instance is owned by a team (:issue:`4851`)
+
+Fixes
+*****
+
+- **Cogs - General** - Updated the ``[p]lmgtfy`` command to use the new domain (:issue:`4840`)
+- **Cogs - Mutes** - Fixed minor issues with error messages in Mutes cog (:issue:`4847`, :issue:`4850`, :issue:`4853`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added `cog guide for General cog ` (:issue:`4797`)
+- |cool| Added `cog guide for Trivia cog ` (:issue:`4566`)
+
+----
+
+Redbot 3.4.6 (2021-02-16)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`aleclol`, :ghuser:`Andeeeee`, :ghuser:`bobloy`, :ghuser:`BreezeQS`, :ghuser:`Danstr5544`, :ghuser:`Dav-Git`, :ghuser:`Elysweyr`, :ghuser:`Fabian-Evolved`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`Injabie3`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`kreusada`, :ghuser:`leblancg`, :ghuser:`maxbooiii`, :ghuser:`NeuroAssassin`, :ghuser:`phenom4n4n`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`retke`, :ghuser:`siu3334`, :ghuser:`Strafee`, :ghuser:`TheWyn`, :ghuser:`TrustyJAID`, :ghuser:`Vexed01`, :ghuser:`yamikaitou`
+
+Read before updating
+--------------------
+
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.6 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+
+End-user changelog
+------------------
+
+Security
+********
+
+- **Cogs - Mutes** - Added more role hierarchy checks to ensure permission escalations cannot occur on servers with a careless configuration (:issue:`4741`)
+
+Additions
+*********
+
+- |cool| **Core - Help** - Help now includes command aliases in the command help (:issue:`3040`)
+
+ - This can be disabled with ``[p]helpset showaliases`` command
+- **Cogs - Mod** - Added two new settings for disabling username and nickname tracking (:issue:`4799`)
+
+ - Added a command ``[p]modset trackallnames`` that disables username tracking and overrides the nickname tracking setting for all guilds
+ - Added a command ``[p]modset tracknicknames`` that disables nickname tracking in a specific guild
+- **Cogs - Mod** - Added a command ``[p]modset deletenames`` that deletes all stored usernames and nicknames (:issue:`4827`)
+- **Cogs - Modlog** - Added a command ``[p]listcases`` that allows you to see multiple cases for a user at once (:issue:`4426`)
+- |cool| **Cogs - Mutes** - A DM can now be sent to the (un)muted user on mute and unmute (:issue:`3752`, :issue:`4563`)
+
+ - Added ``[p]muteset senddm`` to set whether the DM should be sent (function disabled by default)
+ - Added ``[p]muteset showmoderator`` to set whether the DM sent to the user should include the name of the moderator that muted the user (function disabled by default)
+- **Cogs - Trivia - Lists** - Added new Who's That Pokémon - Gen. VI trivia list (:issue:`4785`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - Added a friendly error message to ``[p]load`` that is shown when trying to load a cog with a command name that is already taken by a different cog (:issue:`3870`)
+- |cool| **Core - Command-line Interfaces** - Improvements and fixes for our new (colorful) logging (:issue:`4702`, :issue:`4726`)
+
+ - The colors used have been adjusted to be readable on many more terminal applications
+ - The ``NO_COLOR`` environment variable can now be set to forcefully disable all colors in the console output
+ - Tracebacks will now use the full width of the terminal again
+ - Tracebacks no longer contain multiple lines per stack level (this can now be changed with the flag ``--rich-traceback-extra-lines``)
+ - Disabled syntax highlighting on the log messages
+ - Dev cog no longer captures logging output
+ - Added some cool features for developers
+
+ - Added the flag ``--rich-traceback-extra-lines`` which can be used to set the number of additional lines in tracebacks
+ - Added the flag ``--rich-traceback-show-locals`` which enables showing local variables in tracebacks
+
+ - Improved and fixed a few other minor things
+- **Core - Dependencies** - Red's dependencies have been bumped (:issue:`4572`)
+- **Cogs - Admin** - ``[p]selfrole`` can now be used without a subcommand and passed with a selfrole directly to add/remove it from the user running the command (:issue:`4826`)
+- **Cogs - Audio** - Improved detection of embed players for fallback on age-restricted YT tracks (:issue:`4818`, :issue:`4819`)
+- **Cogs - Audio** - Improved MP4/AAC decoding (:issue:`4818`, :issue:`4819`)
+- **Cogs - Audio** - Requests for YT tracks are now retried if the initial request causes a connection reset (:issue:`4818`, :issue:`4819`)
+- **Cogs - Cleanup** - Renamed the ``[p]cleanup spam`` command to ``[p]cleanup duplicates``, with the old name kept as an alias for the time being (:issue:`4814`)
+- **Cogs - Economy** - ``[p]economyset rolepaydayamount`` can now remove the previously set payday amount (:issue:`4661`, :issue:`4758`)
+- **Cogs - Filter** - Added a case type ``filterhit`` which is used to log filter hits (:issue:`4676`, :issue:`4739`)
+- **Cogs - Mod** - Added usage examples to ``[p]kick``, ``[p]ban``, ``[p]massban``, and ``[p]tempban`` (:issue:`4712`, :issue:`4715`)
+- **Cogs - Mod** - Updated DM on kick/ban to use bot's default embed color (:issue:`4822`)
+- **Cogs - Modlog** - Added typing indicator to ``[p]casesfor`` command (:issue:`4426`)
+- **Cogs - Reports** - Reports now use the default embed color of the bot (:issue:`4800`)
+- **Cogs - Trivia** - Payout for trivia sessions ending in a tie now gets split between all the players with the highest score (:issue:`3931`, :issue:`4649`)
+- **Cogs - Trivia - Lists** - Updated answers regarding some of the hero's health and abilities in the ``overwatch`` trivia list (:issue:`4805`)
+
+Fixes
+*****
+
+- Various grammar fixes (:issue:`4705`, :issue:`4748`, :issue:`4750`, :issue:`4763`, :issue:`4788`, :issue:`4792`, :issue:`4810`)
+- **Core - Bot Commands** - Fixed command usage in the help messages for few commands in Red (:issue:`4599`, :issue:`4733`)
+- **Core - Bot Commands** - Fixed errors in ``[p]command defaultdisablecog`` and ``[p]command defaultenablecog`` commands (:issue:`4767`, :issue:`4768`)
+- **Core - Bot Commands** - ``[p]command listdisabled guild`` can no longer be run in DMs (:issue:`4771`, :issue:`4772`)
+- |cool| **Core - Command-line Interfaces** - Fixed the rotation of Red's logs that could before result in big disk usage (:issue:`4405`, :issue:`4738`)
+- **Core - Command-line Interfaces** - Fixed errors appearing when using Ctrl+C to interrupt ``redbot --edit`` (:issue:`3777`, :issue:`4572`)
+- **Cogs - Cleanup** - Fixed an error from passing an overly large integer as a message ID to ``[p]cleanup after`` and ``[p]cleanup before`` (:issue:`4791`)
+- **Cogs - Mod** - The ``[p]tempban`` command no longer errors out when trying to ban a user in a guild with the vanity url feature that doesn't have a vanity url set (:issue:`4714`)
+- **Cogs - Mod** - Fixed an edge case in role hierarchy checks (:issue:`4740`)
+- **Cogs - Mutes** - Fixed an edge case in role hierarchy checks (:issue:`4740`)
+- **Cogs - Mutes** - The modlog reason no longer contains leading whitespace when it's passed *after* the mute time (:issue:`4749`)
+- **Cogs - Mutes** - Help descriptions of the cog and its commands now get translated properly (:issue:`4815`)
+- **Cogs - Streams** - Fixed incorrect timezone offsets for some YouTube stream schedules (:issue:`4693`, :issue:`4694`)
+- **Cogs - Streams** - Fixed meaningless errors happening when the YouTube API key becomes invalid or when the YouTube quota is exceeded (:issue:`4745`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Bot Class** - Added an event ``on_red_before_identify`` that is dispatched before IDENTIFYing a session (:issue:`4647`)
+- **Core - Utils Package** - Added a function `redbot.core.utils.chat_formatting.spoiler()` that wraps the given text in a spoiler (:issue:`4754`)
+- |cool| **Cogs - Dev** - Cogs can now add their own variables to the environment of ``[p]debug``, ``[p]eval``, and ``[p]repl`` commands (:issue:`4667`)
+
+ - Variables can be added and removed from the environment of Dev cog using two new methods:
+
+ - `bot.add_dev_env_value() `
+ - `bot.remove_dev_env_value() `
+
+Changes
+*******
+
+- **Core - Dependencies** - Updated versions of the libraries used in Red: discord.py to 1.6.0, aiohttp to 3.7.3 (:issue:`4728`)
+
+Fixes
+*****
+
+- **Cogs - Dev** - Help descriptions of the cog and its commands now get translated properly (:issue:`4815`)
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added `cog guide for Filter cog ` (:issue:`4579`)
+
+Changes
+*******
+
+- Added information about the Red Index to `guide_publish_cogs` (:issue:`4778`)
+- Restructured the host list (:issue:`4710`)
+- Clarified how to use pm2 with ``pyenv virtualenv`` (:issue:`4709`)
+- Updated Python version in ``pyenv`` and Windows instructions (:issue:`4770`)
+
+Fixes
+*****
+
+- Updated the pip command for Red with the postgres extra in Linux/macOS install guide to work on zsh shell (:issue:`4697`)
+
+----
+
+Redbot 3.4.5 (2020-12-24)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`Injabie3`, :ghuser:`NeuroAssassin`
+
+This is a hotfix release fixing an issue with Streams cog failing to load.
+
+End-user changelog
+------------------
+
+Fixes
+*****
+
+- **Cogs - Streams** - Fixed Streams failing to load and work properly (:issue:`4687`, :issue:`4688`)
+
+----
+
+Redbot 3.4.4 (2020-12-24)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`bobloy`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`kreus7`, :ghuser:`NeuroAssassin`, :ghuser:`npc203`, :ghuser:`palmtree5`, :ghuser:`phenom4n4n`, :ghuser:`Predeactor`, :ghuser:`retke`, :ghuser:`siu3334`, :ghuser:`Vexed01`, :ghuser:`yamikaitou`
+
+Read before updating
+--------------------
+
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.4 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+#. Ubuntu 16.04 is no longer supported as it will soon reach its end of life and it is no longer viable for us to maintain support for it.
+
+ While you might still be able to run Red on it, we will no longer put any resources into supporting it. If you're using Ubuntu 16.04, we highly recommend that you upgrade to the latest LTS version of Ubuntu.
+
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- |cool| **Core - Command-line Interfaces** - Red's logging will now shine in your terminal more than ever (:issue:`4577`)
+- |cool| **Cogs - Streams** - YouTube stream schedules are now announced before the stream (:issue:`4615`)
+
+ - Alerts about YouTube stream schedules can be disabled with a new ``[p]streamset ignoreschedule`` command (:issue:`4615`)
+- **Cogs - Trivia - Lists** - Added ``whosthatpokemon5`` trivia list containing Pokémon from the 5th generation (:issue:`4646`)
+- **Cogs - Trivia - Lists** - Added ``geography`` trivia list (:issue:`4618`)
+
+Changes
+*******
+
+- **Core** - Added a friendly error when the duration provided to commands that use the ``commands.TimedeltaConverter`` converter is out of the maximum bounds allowed by Python interpreter (:issue:`4019`, :issue:`4628`, :issue:`4630`)
+- **Core - Bot Commands** - Improved consistency of command usage in the help messages within all commands in Core Red (:issue:`4589`)
+- **Cogs - Audio** - Added more friendly messages for 429 errors to let users know they have been temporarily banned from accessing the service instead of a generic Lavalink error (:issue:`4683`)
+- **Cogs - Audio** - Environment information will now be appended to Lavalink tracebacks in the spring.log (:issue:`4683`)
+- **Cogs - Cleanup** - ``[p]cleanup self`` will now delete the command message when the bot has permissions to do so (:issue:`4640`)
+- **Cogs - Economy** - ``[p]economyset slotmin`` and ``[p]economyset slotmax`` now warn when the new value will cause the slots command to not work (:issue:`4583`)
+- **Cogs - General** - Updated features list in ``[p]serverinfo`` with the latest changes from Discord (:issue:`4678`)
+- **Cogs - Streams** - Improved error logging (:issue:`4680`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed an error when removing path from a different operating system than the bot is currently running on with ``[p]removepath`` (:issue:`2609`, :issue:`4662`, :issue:`4466`)
+- **Cogs - Audio** - Fixed ``[p]llset java`` failing to set the Java executable path (:issue:`4621`, :issue:`4624`)
+- |cool| **Cogs - Audio** - Fixed SoundCloud playback (:issue:`4683`)
+- |cool| **Cogs - Audio** - Fixed YouTube age-restricted track playback (:issue:`4683`)
+- **Cogs - Mod** - ``[p]ban`` command will no longer error out when the given reason is too long (:issue:`4187`, :issue:`4189`)
+- |cool| **Cogs - Streams** - Scheduled YouTube streams now work properly with the cog (:issue:`3691`, :issue:`4615`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Utils Package** - `get_audit_reason()` can now be passed a ``shorten`` keyword argument which will automatically shorten the returned audit reason to fit the max length allowed by Discord audit logs (:issue:`4189`)
+- |cool| **Cogs - Dev** - Added new ``[p]bypasscooldown`` command that allows owners to bypass command cooldowns (:issue:`4440`)
+
+Changes
+*******
+
+- **Core - Bot Class** - ``bot.remove_command()`` now returns the command object of the removed command as does the equivalent method from `discord.ext.commands.Bot` class (:issue:`4636`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added `cog guide for Downloader cog ` (:issue:`4511`)
+- |cool| Added `cog guide for Economy cog ` (:issue:`4519`)
+- |cool| Added `cog guide for Streams cog ` (:issue:`4521`)
+- Added `guide_cog_creators` document (:issue:`4637`)
+
+Removals
+********
+
+- Removed install instructions for Ubuntu 16.04 (:issue:`4650`)
+
+----
+
+Redbot 3.4.3 (2020-11-16)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`bobloy`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`KianBral`, :ghuser:`maxbooiii`, :ghuser:`phenom4n4n`, :ghuser:`Predeactor`, :ghuser:`retke`
+
+Read before updating
+--------------------
+
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.3 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core - Bot Commands** - Added ``[p]set competing`` command that allows users to set the bot's competing status (:issue:`4607`, :issue:`4609`)
+- |cool| **Cogs - Audio** - Added support for SoundCloud HLS streams (:issue:`4608`)
+
+Changes
+*******
+
+- **Cogs - Audio** - Improved AAC audio handling (:issue:`4608`)
+- **Cogs - Trivia** - ``[p]triviaset custom upload`` now ensures that the filename is lowercase when uploading (:issue:`4594`)
+
+Fixes
+*****
+
+- **Cogs - Audio** - Volume changes on ARM systems running a 64 bit OS will now work again (:issue:`4608`)
+- |cool| **Cogs - Audio** - Fixed only 100 results being returned on a Youtube playlist (:issue:`4608`)
+- |cool| **Cogs - Audio** - Fixed YouTube VOD duration being set to unknown (:issue:`3885`, :issue:`4608`)
+- |cool| **Cogs - Audio** - Fixed some YouTube livestreams getting stuck (:issue:`4608`)
+- **Cogs - Audio** - Fixed internal Lavalink manager failing for Java with untypical version formats (:issue:`4608`)
+- **Cogs - Economy** - The ``[p]leaderboard`` command no longer fails in DMs when a global bank is used (:issue:`4569`)
+- **Cogs - Mod** - The ban reason is now properly set in the audit log and modlog when using the ``[p]massban`` command (:issue:`4575`)
+- **Cogs - Mod** - The ``[p]userinfo`` command now shows the new Competing activity (:issue:`4610`, :issue:`4611`)
+- **Cogs - Modlog** - The ``[p]case`` and ``[p]casesfor`` commands no longer fail when the bot doesn't have Read Message History permission in the modlog channel (:issue:`4587`, :issue:`4588`)
+- **Cogs - Mutes** - Fixed automatic remuting on member join for indefinite mutes (:issue:`4568`)
+
+
+Developer changelog
+-------------------
+
+Fixes
+*****
+
+- **Core - Modlog** - ``modlog.get_case()`` and methods using it no longer raise when the bot doesn't have Read Message History permission in the modlog channel (:issue:`4587`, :issue:`4588`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added `guide for Cog Manager UI ` (:issue:`4152`)
+- |cool| Added `cog guide for CustomCommands cog ` (:issue:`4490`)
+
+----
+
+Redbot 3.4.2 (2020-10-28)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Drapersniper`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`PredaaA`, :ghuser:`Stonedestroyer`
+
+Read before updating
+--------------------
+
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ Red 3.4.2 uses a new Lavalink jar that you will need to manually update from `our GitHub `__.
+
+End-user changelog
+------------------
+
+Changes
+*******
+
+- **Core - Command-line Interfaces** - Added info about the metadata file to ``redbot --debuginfo`` (:issue:`4557`)
+- **Cogs - Audio** - Commands in ``[p]llset`` group can now be used in DMs (:issue:`4562`)
+- **Cogs - Streams** - Added error messages when exceeding the YouTube quota in the Streams cog (:issue:`4552`)
+- **Cogs - Streams** - Improved logging for unexpected errors in the Streams cog (:issue:`4552`)
+
+Fixes
+*****
+
+- **Cogs - Audio** - Fixed the ``[p]local search`` command (:issue:`4553`)
+- |cool| **Cogs - Audio** - Fixed random "Something broke when playing the track." errors for YouTube tracks (:issue:`4559`)
+- **Cogs - Mod** - Fixed ``[p]massban`` not working for banning members that are in the server (:issue:`4556`, :issue:`4555`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added `cog guide for Cleanup cog ` (:issue:`4488`)
+
+Changes
+*******
+
+- Removed multi-line commands from Linux install guides to avoid confusing readers (:issue:`4550`)
+
+----
+
+Redbot 3.4.1 (2020-10-27)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`absj30`, :ghuser:`aikaterna`, :ghuser:`bobloy`, :ghuser:`chloecormier`, :ghuser:`Dav-Git`, :ghuser:`Drapersniper`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`Generaleoley`, :ghuser:`hisztendahl`, :ghuser:`jack1142`, :ghuser:`KaiGucci`, :ghuser:`Kowlin`, :ghuser:`maxbooiii`, :ghuser:`MeatyChunks`, :ghuser:`NeuroAssassin`, :ghuser:`nfitzen`, :ghuser:`palmtree5`, :ghuser:`phenom4n4n`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`PythonTryHard`, :ghuser:`SharkyTheKing`, :ghuser:`Stonedestroyer`, :ghuser:`thisisjvgrace`, :ghuser:`TrustyJAID`, :ghuser:`TurnrDev`, :ghuser:`Vexed01`, :ghuser:`Vuks69`, :ghuser:`xBlynd`, :ghuser:`zephyrkul`
+
+Read before updating
+--------------------
+
+#. This release fixes a security issue in Mod cog. See `Security changelog below ` for more information.
+#. This Red update bumps discord.py to version 1.5.1, which explicitly requests Discord intents. Red requires all Privileged Intents to be enabled. More information can be found at :ref:`enabling-privileged-intents`.
+#. Mutes functionality has been moved from the Mod cog to a new separate cog (Mutes) featuring timed and role-based mutes. If you were using it (or want to start now), you can load the new cog with ``[p]load mutes``. You can see the full `Removals changelog below `.
+#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
+
+ We've updated our `application.yml file `__ and you should update your instance's ``application.yml`` appropriately.
+ Please ensure that the WS port in Audio's settings (``[p]llset wsport``) is set to the port from the ``application.yml``.
+
+End-user changelog
+------------------
+
+.. _important-341-2:
+
+Security
+********
+
+**NOTE:** If you can't update immediately, we recommend globally disabling the affected command until you can.
+
+- **Cogs - Mod** - Fixed unauthorized privilege escalation exploit in ``[p]massban`` (also called ``[p]hackban``) command. Full security advisory `can be found on our GitHub `__.
+
+Additions
+*********
+
+- **Core - Bot Commands** - Added ``[p]set api list`` to list all currently set API services, without tokens (:issue:`4370`)
+- **Core - Bot Commands** - Added ``[p]set api remove`` to remove API services, including tokens (:issue:`4370`)
+- **Core - Bot Commands** - Added ``[p]helpset usetick``, toggling command message being ticked when help is sent to DM (:issue:`4467`, :issue:`4075`)
+- |cool| **Core - i18n** - Locales and regional formats can now be set in individual guilds using ``[p]set locale`` and ``[p]set regionalformat`` (:issue:`3896`, :issue:`1970`)
+
+ - Global locale and regional format setters have been renamed to ``[p]set globallocale`` and ``[p]set globalregionalformat``
+- **Cogs - Audio** - Added the Global Audio API, to cut down on Youtube 429 errors and allow Spotify playback past user's quota. (:issue:`4446`)
+- |cool| **Cogs - Audio** - Added persistent queues, allowing for queues to be restored on a bot restart or cog reload (:issue:`4446`)
+- **Cogs - Audio** - Added ``[p]audioset restart``, allowing for Lavalink connection to be restarted (:issue:`4446`)
+- |cool| **Cogs - Audio** - Added ``[p]audioset autodeafen``, allowing for bot to auto-deafen itself when entering voice channel (:issue:`4446`)
+- **Cogs - Audio** - Added ``[p]audioset mycountrycode``, allowing Spotify search locale per user (:issue:`4446`)
+- **Cogs - Audio** - Added ``[p]llset java``, allowing for a custom Java executable path (:issue:`4446`)
+- **Cogs - Audio** - Added ``[p]llset info`` to show Lavalink settings (:issue:`4527`)
+- **Cogs - Audio** - Added ``[p]audioset logs`` to download Lavalink logs if the Lavalink server is set to internal (:issue:`4527`)
+- **Cogs - Mod** - Added ``[p]modset mentionspam strict`` allowing for duplicated mentions to count towards the mention spam cap (:issue:`4359`)
+- |cool| **Cogs - Mod** - Added a default tempban duration for ``[p]tempban`` (:issue:`4473`, :issue:`3992`)
+- |cool| **Cogs - Mutes** - Added ``[p]muteset forcerole`` to make mutes role based, instead of permission based (:issue:`3634`)
+- |cool| **Cogs - Mutes** - Added an optional time argument to all mutes, to specify when the user should be unmuted (:issue:`3634`)
+- **Cogs - Trivia - Lists** - Added new MLB trivia list (:issue:`4455`)
+- **Cogs - Trivia - Lists** - Added new Who's That Pokémon - Gen. IV trivia list (:issue:`4434`)
+- **Cogs - Trivia - Lists** - Added new Hockey trivia list (:issue:`4384`)
+
+Changes
+*******
+
+- Replaced a few instances of Red with the bot name in command docstrings (:issue:`4470`)
+- **Core - Bot Commands** - Added a default color field to ``[p]set showsettings`` (:issue:`4498`, :issue:`4497`)
+- **Core - Bot Commands** - Added the datapath and metadata file to ``[p]debuginfo`` (:issue:`4524`)
+- **Core - Bot Commands** - Added a list of disabled intents to ``[p]debuginfo`` (:issue:`4423`)
+- **Core - Dependencies** - Bumped discord.py dependency to version 1.5.1 (:issue:`4423`)
+- **Cogs - Audio** - Removed lavalink logs from being added to backup (:issue:`4453`, :issue:`4452`)
+- **Cogs - Audio** - Removed stream durations from being in queue duration (:issue:`4513`)
+- **Cogs - Cleanup** - Allowed ``[p]cleanup self`` to work in DMs for all users (:issue:`4481`)
+- **Cogs - Economy** - Added an embed option for ``[p]leaderboard`` (:issue:`4184`, :issue:`4104`)
+- |cool| **Cogs - Mod** - Added an option to ban users not in the guild to ``[p]ban`` (:issue:`4422`, :issue:`4419`)
+- **Cogs - Mod** - Renamed ``[p]hackban`` to ``[p]massban``, keeping ``[p]hackban`` as an alias, allowing for multiple users to be banned at once (:issue:`4422`, :issue:`4419`)
+- **Cogs - Mutes** - Changed ``[p]mute`` to only handle serverwide muting, ``[p]mute voice`` and ``[p]mute channel`` have been moved to separate commands called ``[p]mutechannel`` and ``[p]mutevoice`` (:issue:`3634`)
+- |cool| **Cogs - Mutes** - Mute commands can now take multiple user arguments, to mute multiple users at a time (:issue:`3634`)
+- **Cogs - Warnings** - Added bool arguments to toggle commands to improve consistency (:issue:`4409`)
+
+.. _important-341-1:
+
+Removals
+********
+
+- **Cogs - Mod** - Moved mutes to a separate, individual cog (:issue:`3634`)
+
+Fixes
+*****
+
+- Fixed grammar in places scattered throughout bot (:issue:`4500`)
+- **Core** - Fixed an ungraceful error being raised when a bot left a guild while a menu was open (:issue:`3902`)
+- **Core - Bot Commands** - Fixed an incorrect error being reported on ``[p]set name`` when the passed name was longer than 32 characters (:issue:`4364`, :issue:`4363`)
+- **Core - Bot Commands** - Fixed ``[p]set nickname`` erroring when the passed name was longer than 32 characters (:issue:`4364`, :issue:`4363`)
+- **Core - Bot Commands** - Fixed an ungraceful error being raised when running ``[p]traceback`` with closed DMs (:issue:`4329`)
+- **Core - Bot Commands** - Fixed errors that could arise from invalid URLs in ``[p]set avatar`` (:issue:`4437`)
+- **Core - Bot Commands** - Fixed an error being raised with ``[p]set nickname`` when no nickname was provided (:issue:`4451`)
+- **Core - Bot Commands** - Fixed and clarified errors being raised with ``[p]set username`` (:issue:`4463`)
+- **Core - Bot Commands** - Fixed an ungraceful error being raised when the output of ``[p]unload`` is larger than 2k characters (:issue:`4469`)
+- **Core - Bot Commands** - Fixed an ungraceful error being raised when running ``[p]choose`` with empty options (:issue:`4499`)
+- **Core - Bot Commands** - Fixed info missing on the non-embed version of ``[p]debuginfo`` (:issue:`4524`)
+- **Core - Dependencies** - Properly define supported Python versions to be lower than 3.9 (:issue:`4538`)
+- **Cogs - Audio** - Scattered grammar and typo fixes (:issue:`4446`)
+- |cool| **Cogs - Audio** - Fixed Bandcamp playback (:issue:`4504`)
+- |cool| **Cogs - Audio** - Fixed YouTube playlist playback (:issue:`4504`)
+- |cool| **Cogs - Audio** - Fixed YouTube searching issues (:issue:`4504`)
+- |cool| **Cogs - Audio** - Fixed YouTube age restricted track playback (:issue:`4504`)
+- **Cogs - Audio** - Fixed the Audio cog not being translated when setting locale (:issue:`4492`, :issue:`4495`)
+- |cool| **Cogs - Audio** - Fixed tracks getting stuck at 0:00 after long player sessions (:issue:`4529`)
+- **Cogs - CustomCommands** - Fixed an ungraceful error being thrown on ``[p]cc edit`` (:issue:`4325`)
+- **Cogs - General** - Fixed issues with text not being properly URL encoded (:issue:`4024`)
+- **Cogs - General** - Fixed an ungraceful error occurring when a title is longer than 256 characters in ``[p]urban`` (:issue:`4474`)
+- **Cogs - General** - Changed "boosters" to "boosts" in ``[p]serverinfo`` to clarify what the number represents (:issue:`4507`)
+- **Cogs - Mod** - Fixed nicknames not being properly stored and logged (:issue:`4131`)
+- **Cogs - Mod** - Fixed plural typos in ``[p]userinfo`` (:issue:`4397`, :issue:`4379`)
+- **Cogs - Modlog** - Fixed an error being raised when running ``[p]casesfor`` and ``[p]case`` (:issue:`4415`)
+- **Cogs - Modlog** - Long reasons in Modlog are now properly shortened in message content (:issue:`4541`)
+- **Cogs - Trivia - Lists** - Fixed incorrect order of Machamp and Machoke questions (:issue:`4424`)
+- **Cogs - Warnings** - Fixed users being able to warn users above them in hierarchy (:issue:`4100`)
+
+
+Developer changelog
+-------------------
+
+| **Important:**
+| 1. Red now allows users to set locale per guild, which requires 3rd-party cogs to set contextual locale manually in code ran outside of command's context. See the `Additions changelog below ` for more information.
+
+.. _important-dev-341-1:
+
+Additions
+*********
+
+- **Core - Bot Class** - Added `bot.get_or_fetch_user() ` and `bot.get_or_fetch_member() ` methods (:issue:`4403`, :issue:`4402`)
+- **Core - Bot Class** - Added `bot.remove_shared_api_services() ` to remove all keys and tokens associated with an API service (:issue:`4370`)
+- **Core - Bot Class** - Added an option to return all tokens for an API service if ``service_name`` is not specified in `bot.get_shared_api_tokens() ` (:issue:`4370`)
+- **Core - Dependencies** - Added ``[all]`` and ``[dev]`` extras to the ``Red-DiscordBot`` package (:issue:`4443`)
+- |cool| **Core - i18n** - Added API for setting contextual locales (:issue:`3896`, :issue:`1970`)
+
+ - New function added: `redbot.core.i18n.set_contextual_locales_from_guild()`
+ - Contextual locale is automatically set for commands and only needs to be done manually for things like event listeners; see `recommendations-for-cog-creators` for more information
+- **Core - Modlog** - Added ``last_known_username`` parameter to `modlog.create_case()` function (:issue:`4326`)
+- |cool| **Core - Utils Package** - Added `redbot.core.utils.get_end_user_data_statement()` and `redbot.core.utils.get_end_user_data_statement_or_raise()` to attempt to fetch a cog's End User Data Statement (:issue:`4404`)
+- **Core - Utils Package** - Added `redbot.core.utils.chat_formatting.quote()` to quote text in a message (:issue:`4425`)
+- |cool| **Cogs - Dev** - Added ``[p]repl pause`` to pause/resume the REPL session in the current channel (:issue:`4366`)
+- |cool| **Cogs - Downloader** - Added JSON schema files for ``info.json`` files (:issue:`4375`)
+
+Changes
+*******
+
+- **Core - Bank** - Bank API methods now consistently throw TypeError if a non-integer amount is supplied (:issue:`4376`)
+- **Core - Commands Package** - Moved ``redbot.core.checks.bot_in_a_guild()`` to `redbot.core.commands.bot_in_a_guild()` (old name has been left as an alias) (:issue:`4515`, :issue:`4510`)
+- |cool| **Core - Modlog** - Added an option to accept a ``discord.Object`` in `modlog.create_case()` (:issue:`4326`)
+
+Deprecations
+************
+
+- **Core - Utils Package** - Deprecated ``redbot.core.utils.mod.is_allowed_by_hierarchy()`` (:issue:`4435`)
+
+Fixes
+*****
+
+- **Core - Modlog** - Fixed an error being raised with a deleted channel in `Case.message_content()` (:issue:`4415`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Added custom group documentation and tutorial (:issue:`4416`, :issue:`2896`)
+- Added guide to creating a Bot Application in Discord Developer Portal, with enabling intents (:issue:`4502`)
+
+Changes
+*******
+
+- Clarified that naive ``datetime`` objects will be treated as local times for parameters ``created_at`` and ``until`` in `modlog.create_case()` (:issue:`4389`)
+- Replaced the link to the approved repository list on CogBoard and references to ``cogs.red`` with a link to new Red Index (:issue:`4439`)
+- Improved documentation about arguments in command syntax (:issue:`4058`)
+
+----
+
+Redbot 3.4.0 (2020-08-17)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`Dav-Git`, :ghuser:`DevilXD`, :ghuser:`douglas-cpp`, :ghuser:`Drapersniper`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`kablekompany`, :ghuser:`Kowlin`, :ghuser:`maxbooiii`, :ghuser:`MeatyChunks`, :ghuser:`mikeshardmind`, :ghuser:`NeuroAssassin`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`retke`, :ghuser:`SharkyTheKing`, :ghuser:`thisisjvgrace`, :ghuser:`Tinonb`, :ghuser:`TrustyJAID`, :ghuser:`Twentysix26`, :ghuser:`Vexed01`, :ghuser:`zephyrkul`
+
+Read before updating
+--------------------
+
+#. Red 3.4 comes with support for data deletion requests. Bot owners should read `red_core_data_statement` to ensure they know what information about their users is stored by the bot.
+#. Debian Stretch, Fedora 30 and lower, and OpenSUSE Leap 15.0 and lower are no longer supported as they have already reached end of life.
+#. There's been a change in behavior of ``[p]tempban``. Look at `Changes changelog for Mod cog ` for full details.
+#. There's been a change in behavior of announcements in Admin cog. Look at `Changes changelog for Admin cog ` for full details.
+#. Red 3.4 comes with breaking changes for cog developers. Look at `Developer changelog ` for full details.
+
+End-user changelog
+------------------
+
+Security
+********
+
+- **Cogs - Streams** - Fixed critical vulnerability that could allow remote code execution (CVE-2020-15147), see `security advisory GHSA-7257-96vg-qf6x `__ for more information (:issue:`4183`)
+
+Additions
+*********
+
+- |cool| **Core** - Added per-guild cog disabling (:issue:`4043`, :issue:`3945`)
+
+ - Bot owners can set the default state for a cog using ``[p]command defaultdisablecog`` and ``[p]command defaultenablecog`` commands
+ - Guild owners can enable/disable cogs for their guild using ``[p]command disablecog`` and ``[p]command enablecog`` commands
+ - Cogs disabled in the guild can be listed with ``[p]command listdisabledcogs``
+- |cool| **Core** - Added support for data deletion requests; see `red_core_data_statement` for more information (:issue:`4045`)
+- **Core - Bot Commands** - Added ``[p]helpset showsettings`` command (:issue:`4013`, :issue:`4022`)
+- |cool| **Cogs - Mod** - Users can now set mention spam triggers which will warn or kick the user. See ``[p]modset mentionspam`` for more information (:issue:`3786`, :issue:`4038`)
+- **Cogs - Trivia - Lists** - Added ``whosthatpokemon2`` trivia containing Pokémons from 2nd generation (:issue:`4102`)
+- **Cogs - Trivia - Lists** - Added ``whosthatpokemon3`` trivia containing Pokémons from 3rd generation (:issue:`4141`)
+
+.. _important-340-1:
+
+Changes
+*******
+
+- ``[p]set nickname``, ``[p]set serverprefix``, ``[p]streamalert``, and ``[p]streamset`` commands now can be run by users with permissions related to the actions they're making (:issue:`4109`)
+- Updated Red's emoji usage to ensure consistent rendering accross different devices (:issue:`4106`, :issue:`4105`, :issue:`4127`)
+- **Core - Bot Commands** - ``[p]licenseinfo`` now has a 3 minute cooldown to prevent a single user from spamming channel by using it (:issue:`4110`)
+- **Core - Bot Commands** - Whitelist and blacklist are now called allowlist and blocklist. Old names have been left as aliases (:issue:`4138`)
+- **Core - Command-line Interfaces** - Red now logs clearer error if it can't find package to load in any cog path during bot startup (:issue:`4079`)
+- |cool| **Cogs - Admin** - ``[p]announce`` will now only send announcements to guilds that have explicitly configured text channel to send announcements to using ``[p]announceset channel`` command (:issue:`4088`, :issue:`4089`)
+- |cool| **Cogs - Downloader** - ``[p]cog info`` command now shows end user data statement made by the cog creator (:issue:`4169`)
+- |cool| **Cogs - Downloader** - ``[p]cog update`` command will now notify the user if cog's end user data statement has changed since last update (:issue:`4169`)
+- **Cogs - General** - Updated features list in ``[p]serverinfo`` with the latest changes from Discord (:issue:`4116`)
+- **Cogs - General** - Simple version of ``[p]serverinfo`` now shows info about more detailed ``[p]serverinfo 1`` (:issue:`4121`)
+- **Cogs - Mod** - ``[p]tempban`` now respects default days setting (``[p]modset defaultdays``) (:issue:`3993`)
+- |cool| **Cogs - Mod** - ``[p]mute voice`` and ``[p]unmute voice`` now take action instantly if bot has Move Members permission (:issue:`4064`)
+- **Cogs - Mod** - Added typing to ``[p](un)mute guild`` to indicate that mute is being processed (:issue:`4066`, :issue:`4172`)
+- **Cogs - Modlog** - Added timestamp to text version of ``[p]casesfor`` and ``[p]case`` commands (:issue:`4118`, :issue:`4137`)
+- **Cogs - Streams** - Stream alerts will no longer make roles temporarily mentionable if bot has "Mention @everyone, @here, and All Roles" permission in the channel (:issue:`4182`)
+- **Cogs - Streams** - Hitbox commands have been renamed to smashcast (:issue:`4161`)
+- **Cogs - Streams** - Improve error messages for invalid channel names/IDs (:issue:`4147`, :issue:`4148`)
+
+Removals
+********
+
+- **Cogs - Streams** - Mixer service has been closed and for that reason we've removed support for it from the cog (:issue:`4072`)
+
+Fixes
+*****
+
+- Fixed timestamp storage in few places in Red (:issue:`4017`)
+
+
+.. _important-340-3:
+
+Developer changelog
+-------------------
+
+| **Important:**
+| 1. Red now offers cog disabling API, which should be respected by 3rd-party cogs in guild-related actions happening outside of command's context. See the `Additions changelog below ` for more information.
+| 2. Red now provides data request API, which should be supported by all 3rd-party cogs. See the changelog entries in the `Additions changelog below ` for more information.
+
+Breaking Changes
+****************
+
+- |cool| By default, none of the ``.send()`` methods mention roles or ``@everyone/@here`` (:issue:`3845`)
+
+ - see `discord.AllowedMentions` and ``allowed_mentions`` kwarg of ``.send()`` methods, if your cog requires to mention roles or ``@everyone/@here``
+- Method/attribute names starting with ``red_`` or being in the form of ``__red_*__`` are now reserved. See `version_guarantees` for more information (:issue:`4085`)
+- Removed things past deprecation time: (:issue:`4163`)
+
+ - ``redbot.core.commands.APIToken``
+ - ``loop`` kwarg from `bounded_gather_iter()`, `bounded_gather()`, and `start_adding_reactions()`
+- **Core** - Cog package names (i.e. name of the folder the cog is in and the name used when loading the cog) now have to be `valid Python identifiers `__ (:issue:`3605`, :issue:`3679`)
+- **Core - Commands Package** - `Context.maybe_send_embed()` now supresses all mentions, including user mentions (:issue:`4192`)
+- **Core - Commands Package** - The default value of the ``filter`` keyword argument in `Context.send()` has been changed to ``None`` (:issue:`3845`)
+- **Core - Utils Package** - `humanize_list()` no longer raises `IndexError` for empty sequences (:issue:`2982`)
+
+.. _important-dev-340-1:
+
+Additions
+*********
+
+- |cool| **Core** - Added cog disabling API (:issue:`4043`, :issue:`3945`)
+
+ - New methods added: `bot.cog_disabled_in_guild() `, `bot.cog_disabled_in_guild_raw() `
+ - Cog disabling is automatically applied for commands and only needs to be done manually for things like event listeners; see `recommendations-for-cog-creators` for more information
+- |cool| **Core** - Added data request API (:issue:`4045`, :issue:`4169`)
+
+ - New special methods added to `redbot.core.commands.Cog`: `red_get_data_for_user()` (documented provisionally), `red_delete_data_for_user()`
+ - New special module level variable added: ``__red_end_user_data_statement__``
+ - These methods and variables should be added by all cogs according to their documentation; see `recommendations-for-cog-creators` for more information
+ - New ``info.json`` key added: ``end_user_data_statement``; see `Info.json format documentation ` for more information
+- **Core - Bot Class** - Added `bot.message_eligible_as_command() ` utility method which can be used to determine if a message may be responded to as a command (:issue:`4077`)
+- |cool| **Core - Commands Package** - Added a provisional API for replacing the help formatter. See `documentation ` for more details (:issue:`4011`)
+- **Core - Commands Package** - `commands.NoParseOptional ` is no longer provisional and is now fully supported part of API (:issue:`4142`)
+
+Changes
+*******
+
+- **Core - Bot Class** - `bot.ignored_channel_or_guild() ` now accepts `discord.Message` objects (:issue:`4077`)
+- |cool| **Core - Commands Package** - Autohelp in group commands is now sent *after* invoking the group, which allows before invoke hooks to prevent autohelp from getting triggered (:issue:`4129`)
+- **Core - Utils Package** - `humanize_list()` now accepts ``locale`` and ``style`` keyword arguments. See its documentation for more information (:issue:`2982`)
+- |cool| **Core - Utils Package** - `humanize_list()` is now properly localized (:issue:`2906`, :issue:`2982`)
+- **Core - Utils Package** - `humanize_list()` now accepts empty sequences (:issue:`2982`)
+- **Core - Utils Package** - ``bordered()`` now uses ``+`` for corners if keyword argument ``ascii_border`` is set to `True` (:issue:`4097`)
+- **Vendored Packages** - Updated ``discord.ext.menus`` vendor (:issue:`4167`)
+
+Fixes
+*****
+
+- **Core - Commands Package** - Red no longer fails to run subcommands of a command group allowed or denied by permission hook (:issue:`3956`)
+- **Core - RPC** - RPC functionality no longer makes Red hang for a minute on shutdown (:issue:`4134`, :issue:`4143`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- |cool| Added admin user guide (:issue:`3081`)
+- |cool| Added alias user guide (:issue:`3084`)
+- |cool| Added bank user guide (:issue:`4149`)
+
+Removals
+********
+
+- Removed install instructions for Debian Stretch (:issue:`4099`)
+
+----
+
+Redbot 3.3.12 (2020-08-18)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`Dav-Git`, :ghuser:`douglas-cpp`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`MeatyChunks`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`thisisjvgrace`, :ghuser:`Vexed01`, :ghuser:`zephyrkul`
+
+End-user changelog
+------------------
+
+Security
+********
+
+- **Cogs - Streams** - Fixed critical vulnerability that could allow remote code execution (CVE-2020-15147), see `security advisory GHSA-7257-96vg-qf6x `__ for more information (:issue:`4183`)
+
+Additions
+*********
+
+- **Cogs - Trivia - Lists** - Added ``whosthatpokemon2`` trivia containing Pokémons from 2nd generation (:issue:`4102`)
+- **Cogs - Trivia - Lists** - Added ``whosthatpokemon3`` trivia containing Pokémons from 3rd generation (:issue:`4141`)
+
+Changes
+*******
+
+- **Core - Command-line Interfaces** - Red now logs clearer error if it can't find package to load in any cog path during bot startup (:issue:`4079`)
+- **Cogs - General** - Updated features list in ``[p]serverinfo`` with the latest changes from Discord (:issue:`4116`)
+- **Cogs - General** - Simple version of ``[p]serverinfo`` now shows info about more detailed ``[p]serverinfo 1`` (:issue:`4121`)
+- **Cogs - Mod** - ``[p]mute voice`` and ``[p]unmute voice`` now take action instantly if bot has Move Members permission (:issue:`4064`)
+- **Cogs - Mod** - Added typing to ``[p](un)mute guild`` to indicate that mute is being processed (:issue:`4066`, :issue:`4172`)
+- **Cogs - Streams** - Improve error messages for invalid channel names/IDs (:issue:`4147`, :issue:`4148`)
+
+----
+
+Redbot 3.3.11 (2020-08-10)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`douglas-cpp`, :ghuser:`Drapersniper`, :ghuser:`Flame`, :ghuser:`jack1142`, :ghuser:`MeatyChunks`, :ghuser:`Vexed01`, :ghuser:`yamikaitou`
+
+End-user changelog
+------------------
+
+Security
+********
+
+- **Cogs - Trivia** - Fixed critical vulnerability that could allow remote code execution (CVE-2020-15140), see `security advisory GHSA-7257-96vg-qf6x `__ for more information (:issue:`4175`)
+
+Fixes
+*****
+
+- **Cogs - Audio** - Audio should now work again on all voice regions (:issue:`4162`, :issue:`4168`)
+- **Cogs - Audio** - Removed an edge case where an unfriendly error message was sent in Audio cog (:issue:`3879`)
+- **Cogs - Cleanup** - Fixed a bug causing ``[p]cleanup`` commands to clear all messages within last 2 weeks when ``0`` is passed as the amount of messages to delete (:issue:`4114`, :issue:`4115`)
+- **Cogs - CustomCommands** - ``[p]cc show`` now sends an error message when command with the provided name couldn't be found (:issue:`4108`)
+- **Cogs - Downloader** - ``[p]findcog`` no longer fails for 3rd-party cogs without any author (:issue:`4032`, :issue:`4042`)
+- **Cogs - Downloader** - Update commands no longer crash when a different repo is added under a repo name that was once used (:issue:`4086`)
+- **Cogs - Permissions** - ``[p]permissions removeserverrule`` and ``[p]permissions removeglobalrule`` no longer error when trying to remove a rule that doesn't exist (:issue:`4028`, :issue:`4036`)
+- **Cogs - Warnings** - ``[p]warn`` now sends an error message (instead of no feedback) when an unregistered reason is used by someone who doesn't have Administrator permission (:issue:`3839`, :issue:`3840`)
+
+----
+
+Redbot 3.3.10 (2020-07-09)
+==========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`bobloy`, :ghuser:`Dav-Git`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`Injabie3`, :ghuser:`jack1142`, :ghuser:`mikeshardmind`, :ghuser:`MiniJennJenn`, :ghuser:`NeuroAssassin`, :ghuser:`thisisjvgrace`, :ghuser:`Vexed01`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Cogs - Downloader** - Added ``[p]cog listpinned`` subcommand to see currently pinned cogs (:issue:`3974`)
+- **Cogs - Filter** - Added ``[p]filter list`` to show filtered words, and removed DMs when no subcommand was passed (:issue:`3973`)
+- **Cogs - Trivia - Lists** - Added new ``lotr`` trivia list (:issue:`3980`)
+- **Cogs - Trivia - Lists** - Added new ``r6seige`` trivia list (:issue:`4026`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - Added settings view commands for nearly all cogs. (:issue:`4041`)
+- **Core - Bot Commands** - Added more strings to be fully translatable by i18n. (:issue:`4044`)
+- **Core - Bot Commands** - Clarified that ``[p]embedset user`` only affects commands executed in DMs (:issue:`3972`, :issue:`3953`)
+- **Core - Command-line Interfaces** - Red now prints a link to Getting Started guide if the bot isn't in any server (:issue:`3906`)
+- **Core - Command-line Interfaces** - Added the option of using dots in the instance name when creating your instances (:issue:`3920`)
+- **Core - Command-line Interfaces** - Added a confirmation when using hyphens in instance names to discourage the use of them (:issue:`3920`)
+- **Core - Dependencies** - Bumped the Discord.py requirement from 1.3.3 to 1.3.4 (:issue:`4053`)
+- **Cogs - Audio** - Added information about internally managed jar to ``[p]audioset info`` (:issue:`3915`)
+- **Cogs - Downloader** - Added embed version of ``[p]findcog`` (:issue:`3965`, :issue:`3944`)
+- **Cogs - Mod** - Added option to delete messages within the passed amount of days with ``[p]tempban`` (:issue:`3958`)
+- **Cogs - Mod** - Reduced the number of API calls made to the storage APIs (:issue:`3910`)
+- **Cogs - Mod** - Prevented an issue whereby the author may lock themself out of using the bot via whitelists (:issue:`3903`)
+- **Cogs - Mod** - Improved error response in ``[p]modset banmentionspam`` (:issue:`3951`, :issue:`3949`)
+- **Cogs - Modlog** - Improved error response in ``[p]modlogset modlog`` (:issue:`3951`, :issue:`3949`)
+- **Cogs - Permissions** - Uploaded YAML files now accept integer commands without quotes (:issue:`3987`, :issue:`3185`)
+- **Cogs - Permissions** - Uploaded YAML files now accept command rules with empty dictionaries (:issue:`3987`, :issue:`3961`)
+- **Cogs - Trivia - Lists** - Updated ``greekmyth`` to include more answer variations (:issue:`3970`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed delayed help when ``[p]set deletedelay`` is enabled (:issue:`3884`, :issue:`3883`)
+- **Core - Bot Commands** - Fixed grammar errors and added full stops in various core commands (:issue:`4023`)
+- **Cogs - Audio** - Twitch playback and YouTube searching should be functioning again. (:issue:`4055`)
+- **Cogs - Downloader** - Fixed unnecessary typing when running downloader commands (:issue:`3964`, :issue:`3948`)
+- **Cogs - Downloader** - Fixed ``[p]findcog`` not differentiating between core cogs and local cogs(:issue:`3969`, :issue:`3966`)
+- **Cogs - Image** - Updated instructions for obtaining and setting the GIPHY API key (:issue:`3994`)
+- **Cogs - Mod** - Added the ability to permanently ban a temporarily banned user with ``[p]hackban`` (:issue:`4025`)
+- **Cogs - Mod** - Fixed the passed reason not being used when using ``[p]tempban`` (:issue:`3958`)
+- **Cogs - Mod** - Fixed invite being sent with ``[p]tempban`` even when no invite was set (:issue:`3991`)
+- **Cogs - Mod** - Fixed exceptions being ignored or not sent to log files in special cases (:issue:`3895`)
+- **Cogs - Mod** - Fixed migration owner notifications being sent even when migration was not necessary (:issue:`3911`. :issue:`3909`)
+- **Cogs - Streams** - Fixed Streams cog sending multiple owner notifications about twitch secret not set (:issue:`3901`, :issue:`3587`)
+- **Cogs - Streams** - Fixed old bearer tokens not being invalidated when the API key is updated (:issue:`3990`, :issue:`3917`)
+- **Cogs - Streams** - Fixed commands being translated where they should not be (:issue:`3938`, :issue:`3919`)
+- **Cogs - Trivia - Lists** - Fixed URLs in ``whosthatpokemon`` (:issue:`3975`, :issue:`3023`)
+- **Cogs - Trivia - Lists** - Fixed trivia files ``leagueults`` and ``sports`` (:issue:`4026`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Utils Package** - Added the methods `map() `, `find() `, and `next() ` to `AsyncIter` (:issue:`3921`, :issue:`3887`)
+- **Vendored Packages** - Vendored the ``discord.ext.menus`` module (:issue:`4039`)
+
+Changes
+*******
+
+- **Core - Utils Package** - Added new ``discord.com`` domain to ``INVITE_URL_RE`` common filter (:issue:`4012`)
+
+Deprecations
+************
+
+- **Core - Commands Package** - Updated deprecation times for ``APIToken``, and loops being passed to various functions to the first minor release (represented by ``X`` in ``3.X.0``) after 2020-08-05 (:issue:`3608`)
+- **Cogs - Downloader** - Updated deprecation warnings for shared libs to reflect that they have been moved for an undefined time (:issue:`3608`)
+
+Fixes
+*****
+
+- **Core - Utils Package** - Fixed incorrect role mention regex in `MessagePredicate` (:issue:`4030`)
+
+----
+
+Redbot 3.3.9 (2020-06-12)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Dav-Git`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`mikeshardmind`, :ghuser:`NeuroAssassin`, :ghuser:`Predeactor`, :ghuser:`Vexed01`
+
+Read before updating
+--------------------
+
+#. Bot owners can no longer restrict access to some commands in Permissions cog using global permissions rules. Look at `Security changelog ` for full details.
+#. There's been a change in behavior of warning messages. Look at `Additions changelog ` for full details.
+
+
+End-user changelog
+------------------
+
+.. _important-339-2:
+
+Security
+********
+
+- **Cogs - Mod** - ``[p]tempban`` now properly respects Discord's hierarchy rules (:issue:`3957`)
+
+ **NOTE**: If you can't update immediately, we recommend disabling the affected command until you can.
+- **Cogs - Permissions** - **Both global and server rules** can no longer prevent guild owners from accessing commands for changing server rules. Bot owners can still use ``[p]command disable`` if they wish to completely disable any command in Permissions cog (:issue:`3955`, :issue:`3107`)
+
+ Full list of affected commands:
+
+ - ``[p]permissions acl getserver``
+ - ``[p]permissions acl setserver``
+ - ``[p]permissions acl updateserver``
+ - ``[p]permissions addserverrule``
+ - ``[p]permissions removeserverrule``
+ - ``[p]permissions setdefaultserverrule``
+ - ``[p]permissions clearserverrules``
+ - ``[p]permissions canrun``
+ - ``[p]permissions explain``
+
+.. _important-339-1:
+
+Additions
+*********
+
+- **Cogs - Warnings** - Warnings sent to users don't show the moderator who warned the user by default now. Newly added ``[p]warningset showmoderators`` command can be used to switch this behaviour (:issue:`3781`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - ``[p]info`` command can now be used when bot doesn't have Embed Links permission (:issue:`3907`, :issue:`3102`)
+- **Core - Bot Commands** - Improved instructions on obtaining user ID in help of ``[p]dm`` command (:issue:`3946`)
+- **Core - Command-line Interfaces** - Red's start up message now shows storage type (:issue:`3935`)
+- **Cogs - Alias** - ``[p]alias global`` group, ``[p]alias help``, and ``[p]alias show`` commands can now be used in DMs (:issue:`3941`, :issue:`3940`)
+- **Cogs - Bank** - ``[p]bankset`` now displays bank's scope (:issue:`3954`)
+
+Fixes
+*****
+
+- Added missing help message for Downloader, Reports and Streams cogs (:issue:`3892`)
+- **Core - Bot Commands** - Fixed ungraceful error that happened in ``[p]set custominfo`` when provided text was too long (:issue:`3923`)
+- **Core - Bot Commands** - Cooldown in ``[p]contact`` no longer applies when it's used without any arguments (:issue:`3942`)
+- **Cogs - Audio** - Audio now properly ignores streams when max length is enabled (:issue:`3878`, :issue:`3877`)
+- **Cogs - Audio** - Commands that should work in DMs no longer error (:issue:`3880`)
+- **Cogs - Audio** - Fixed ``[p]audioset autoplay`` being available in DMs (:issue:`3899`)
+- **Cogs - Audio** - Typo fix (:issue:`3889`, :issue:`3900`)
+- **Cogs - Filter** - Fixed behavior of detecting quotes in commands for adding/removing filtered words (:issue:`3925`)
+- **Cogs - Mod** - Preemptive fix for d.py 1.4 (:issue:`3891`)
+- **Cogs - Warnings** - Warn channel functionality has been fixed (:issue:`3781`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Bot Class** - Added `bot.set_prefixes() ` method that allows developers to set global/server prefixes (:issue:`3890`)
+
+
+Documentation changes
+---------------------
+
+Changes
+*******
+
+- Added Oracle Cloud to free hosting section in :ref:`host-list` (:issue:`3916`)
+
+----
+
+Redbot 3.3.8 (2020-05-29)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Bakersbakebread`, :ghuser:`DariusStClair`, :ghuser:`Dav-Git`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`mikeshardmind`, :ghuser:`NeuroAssassin`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`qaisjp`, :ghuser:`Tobotimus`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Cogs - Audio** - Added new option (settable with ``[p]audioset lyrics``) that makes Audio cog prefer (prioritize) tracks with lyrics (:issue:`3519`)
+- **Cogs - Audio** - Added global daily (historical) queues (:issue:`3518`)
+- **Cogs - Audio** - Added ``[p]audioset countrycode`` that allows to set the country code for spotify searches (:issue:`3528`)
+
+Changes
+*******
+
+- Few clarifications and typo fixes in few command help docstrings (:issue:`3817`, :issue:`3823`, :issue:`3837`, :issue:`3851`, :issue:`3861`)
+- **Core** - Red now includes information on how to update when sending information about being out of date (:issue:`3744`)
+- **Cogs - Alias** - ``[p]alias help`` should now work more reliably (:issue:`3864`)
+- **Cogs - Audio** - ``[p]local play`` no longer enqueues tracks from nested folders (:issue:`3528`)
+- **Cogs - Audio** - ``[p]disconnect`` now allows to disconnect if both DJ mode and voteskip aren't enabled (:issue:`3502`, :issue:`3485`)
+- **Cogs - Audio** - Many UX improvements and fixes, including, among other things:
+
+ - Creating playlists without explicitly passing ``-scope`` no longer causes errors (:issue:`3500`)
+ - ``[p]playlist list`` now shows all accessible playlists if ``--scope`` flag isn't used (:issue:`3518`)
+ - ``[p]remove`` now also accepts a track URL in addition to queue index (:issue:`3201`)
+ - ``[p]playlist upload`` now accepts a playlist file uploaded in the message with a command (:issue:`3251`)
+ - Commands now send friendly error messages for common errors like lost Lavalink connection or bot not connected to voice channel (:issue:`3503`, :issue:`3528`, :issue:`3353`, :issue:`3712`)
+- **Cogs - Mod** - ``[p]userinfo`` now shows default avatar when no avatar is set (:issue:`3819`)
+
+Fixes
+*****
+
+- **Core** - Made important fixes to how PostgreSQL data backend saves data in bulks (:issue:`3829`)
+- **Core** - Using backslashes in bot's username/nickname no longer causes issues (:issue:`3826`, :issue:`3825`)
+- **Core - Bot Commands** - Fixed ``[p]localwhitelist`` and ``[p]localblacklist`` commands (:issue:`3857`)
+- **Cogs - Admin** - Fixed server lock (:issue:`3815`, :issue:`3814`)
+- **Cogs - Alias** - Added pagination to ``[p]alias list`` and ``[p]alias global list`` to avoid errors for users with a lot of aliases (:issue:`3844`, :issue:`3834`)
+- **Cogs - Audio** - Twitch playback is functional once again (:issue:`3873`)
+- **Cogs - Audio** - Recent errors with YouTube playback should be resolved (:issue:`3873`)
+- **Cogs - Audio** - Fixed ``[p]local search`` (:issue:`3528`, :issue:`3501`)
+- **Cogs - Audio** - Local folders with special characters should work properly now (:issue:`3528`, :issue:`3467`)
+- **Cogs - Audio** - Audio no longer fails to take the last spot in the voice channel with user limit (:issue:`3528`)
+- **Cogs - Audio** - Fixed ``[p]playlist dedupe`` not removing tracks (:issue:`3518`)
+- **Cogs - CustomCommands** - ``[p]customcom create`` no longer allows spaces in custom command names (:issue:`3816`)
+- **Cogs - Modlog** - Fixed (again) ``AttributeError`` for cases whose moderator doesn't share the server with the bot (:issue:`3805`, :issue:`3784`, :issue:`3778`)
+- **Cogs - Permissions** - Commands for settings ACL using yaml files now properly works on PostgreSQL data backend (:issue:`3829`, :issue:`3796`)
+- **Cogs - Warnings** - Warnings cog no longer allows to warn bot users (:issue:`3855`, :issue:`3854`)
+
+
+Developer changelog
+-------------------
+
+| **Important:**
+| If you're using RPC, please see the full annoucement about current state of RPC in main Red server
+ `by clicking here `__.
+
+Changes
+*******
+
+- **Core - Bot Class** - Red now inherits from `discord.ext.commands.AutoShardedBot` for better compatibility with code expecting d.py bot (:issue:`3822`)
+- **Core - Bot Class** - All bot owner IDs can now be found under ``bot.owner_ids`` attribute (:issue:`3793`)
+
+ - Note: If you want to use this on bot startup (e.g. in cog's initialisation), you need to await ``bot.wait_until_red_ready()`` first
+
+Fixes
+*****
+
+- Libraries using ``pkg_resources`` (like ``humanize`` or ``google-api-python-client``) that were installed through Downloader should now work properly (:issue:`3843`)
+- **Cogs - Downloader** - Downloader no longer removes the repo when it fails to load it (:issue:`3867`)
+
+
+Documentation changes
+---------------------
+
+Changes
+*******
+
+- Added information about provisional status of RPC (:issue:`3862`)
+- Revised install instructions (:issue:`3847`)
+- Improved navigation in `document about updating Red ` (:issue:`3856`, :issue:`3849`)
+
+----
+
+Redbot 3.3.7 (2020-04-28)
+=========================
+
+This is a hotfix release fixing issue with generating messages for new cases in Modlog.
+
+----
+
+Redbot 3.3.6 (2020-04-27)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Drapersniper`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`MiniJennJenn`, :ghuser:`NeuroAssassin`, :ghuser:`PredaaA`, :ghuser:`TrustyJAID`, :ghuser:`yamikaitou`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core - Bot Commands** - Added ``[p]set avatar remove`` subcommand for removing bot's avatar (:issue:`3757`)
+- **Cogs - CustomCommands** - Added ``[p]cc raw`` command that gives you the raw response of a custom command for ease of copy pasting (:issue:`3795`)
+
+Changes
+*******
+
+- **Core** - Various optimizations
+
+ - Reduced calls to data backend when loading bot's commands (:issue:`3764`)
+ - Reduced calls to data backend when showing help for cogs/commands (:issue:`3766`)
+ - Improved performance for bots with big amount of guilds (:issue:`3767`)
+ - Mod cog no longer fetches guild's bans every 60 seconds when handling unbanning for tempbans (:issue:`3783`)
+ - Reduced the bot load for messages starting with a prefix when fuzzy search is disabled (:issue:`3718`)
+ - Aliases in Alias cog are now cached for better performance (:issue:`3788`)
+- **Core - Bot Commands** - ``[p]set avatar`` now supports setting avatar using attachment (:issue:`3747`)
+- **Core - Bot Commands** - ``[p]debuginfo`` now shows used storage type (:issue:`3794`)
+- **Cogs - Trivia - Lists** - Updated ``leagueoflegends`` list with new changes to League of Legends (`b8ac70e `__)
+
+Fixes
+*****
+
+- **Core** - Fixed big delays in commands that happened when the bot was owner-less (or if it only used co-owners feature) and command caller wasn't the owner (:issue:`3782`)
+- **Core - Bot Commands** - Fixed list of ignored channels that is shown in ``[p]ignore``/``[p]unignore`` (:issue:`3746`)
+- **Core - Command-line Interfaces** - Converting from and to Postgres driver with ``redbot-setup convert`` have been fixed (:issue:`3714`, :issue:`3115`)
+- **Cogs - Audio** - Age-restricted tracks, live streams, and mix playlists from YouTube should work in Audio again (:issue:`3791`)
+- **Cogs - Audio** - SoundCloud sets and playlists with more than 50 tracks should work in Audio again (:issue:`3791`)
+- **Cogs - Modlog** - Fixed ``AttributeError`` for cases whose moderator doesn't share the server with the bot (:issue:`3784`, :issue:`3778`)
+- **Cogs - Streams** - Fixed incorrect stream URLs for Twitch channels that have localised display name (:issue:`3773`, :issue:`3772`)
+- **Cogs - Trivia** - Fixed the error in ``[p]trivia stop`` that happened when there was no ongoing trivia session in the channel (:issue:`3774`)
+- **Cogs - Trivia - Lists** - Corrected spelling of Compact Disc in ``games`` list (:issue:`3759`, :issue:`3758`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Utils Package** - Added `redbot.core.utils.AsyncIter` utility class which allows you to wrap regular iterable into async iterator yielding items and sleeping for ``delay`` seconds every ``steps`` items (:issue:`3767`, :issue:`3776`)
+
+Changes
+*******
+
+- **Core - Utils Package** - `bold()`, `italics()`, `strikethrough()`, and `underline()` now accept ``escape_formatting`` argument that can be used to disable escaping of markdown formatting in passed text (:issue:`3742`)
+
+Fixes
+*****
+
+- **Core - Config** - JSON driver will now properly have only one lock per cog name (:issue:`3780`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Added `document about updating Red ` (:issue:`3790`)
+- Updated install docs to include Ubuntu 20.04 (:issue:`3792`)
+
+Changes
+*******
+
+- ``pyenv`` instructions will now update ``pyenv`` if it's already installed (:issue:`3740`)
+- Updated Python version in ``pyenv`` instructions (:issue:`3740`)
+
+----
+
+Redbot 3.3.5 (2020-04-09)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`jack1142`, :ghuser:`Kowlin`
+
+End-user changelog
+------------------
+
+Changes
+*******
+
+- **Core - Bot Commands** - "Outdated" field no longer shows in ``[p]info`` when Red is up-to-date (:issue:`3730`)
+
+Fixes
+*****
+
+- **Cogs - Alias** - Fixed regression in ``[p]alias add`` that caused it to reject commands containing arguments (:issue:`3734`)
+
+----
+
+Redbot 3.3.4 (2020-04-05)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`jack1142`, :ghuser:`kennnyshiwa`
+
+End-user changelog
+------------------
+
+Changes
+*******
+
+- **Cogs - Alias** - ``[p]alias add`` now sends an error when command user tries to alias doesn't exist (:issue:`3710`, :issue:`3545`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed checks related to bank's global state that were used in commands in Bank, Economy and Trivia cogs (:issue:`3707`)
+
+
+Developer changelog
+-------------------
+
+Changes
+*******
+
+- **Core - Dependencies** - Bump dependencies, including update to discord.py 1.3.3 (:issue:`3723`)
+- **Core - Utils Package** - `redbot.core.utils.common_filters.filter_invites` now filters ``discord.io/discord.li`` invites links (:issue:`3717`)
+
+Fixes
+*****
+
+- **Core - Utils Package** - Fixed false-positives in `redbot.core.utils.common_filters.filter_invites` (:issue:`3717`)
+
+
+Documentation changes
+---------------------
+
+Changes
+*******
+
+- Versions of pre-requirements are now included in Windows install guide (:issue:`3708`)
+
+----
+
+Redbot 3.3.3 (2020-03-28)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`AnonGuy`, :ghuser:`Dav-Git`, :ghuser:`FancyJesse`, :ghuser:`Ianardo-DiCaprio`, :ghuser:`jack1142`, :ghuser:`kennnyshiwa`, :ghuser:`Kowlin`, :ghuser:`NeuroAssassin`, :ghuser:`PredaaA`, :ghuser:`Stonedestroyer`, :ghuser:`TrustyJAID`
+
+End-user changelog
+------------------
+
+Security
+********
+
+- **Cogs - Cleanup** - Removed regex support in ``[p]cleanup self`` (:issue:`3704`)
+
+Additions
+*********
+
+- **Core - i18n** - Added ``[p]set regionalformat`` command that allows users to set regional formatting that is different from bot's locale (:issue:`3677`, :issue:`3588`)
+- **Cogs - Cleanup** - Added ``[p]cleanup spam`` command that deletes duplicate messages from the last X messages and keeps only one copy (:issue:`3688`)
+- **Cogs - CustomCommands** - Added ``[p]cc search`` command that allows users to search through created custom commands (:issue:`2573`)
+- **Cogs - Trivia** - Added ``[p]triviaset custom upload/delete/list`` commands for managing custom trivia lists from Discord (:issue:`3420`, :issue:`3307`)
+- **Cogs - Warnings** - Sending warnings to warned user can now be disabled with ``[p]warnset toggledm`` command (:issue:`2929`, :issue:`2800`)
+- **Cogs - Warnings** - Added ``[p]warnset warnchannel`` command that allows to set a channel where warnings should be sent to instead of the channel command was called in (:issue:`2929`, :issue:`2800`)
+- **Cogs - Warnings** - Added ``[p]warnset togglechannel`` command that allows to disable sending warn message in guild channel (:issue:`2929`, :issue:`2800`)
+
+Changes
+*******
+
+- **Core** - Delete delay for command messages has been moved from Mod cog to Core (:issue:`3638`, :issue:`3636`)
+- **Core** - Command errors (i.e. command on cooldown, dm-only and guild-only commands, etc) can now be translated (:issue:`3665`, :issue:`2988`)
+- **Core - Bot Commands** - ``[p]set locale`` allows any valid locale now, not just locales for which Red has translations (:issue:`3676`, :issue:`3596`)
+- **Core - Bot Commands** - Permissions for commands in Bank, Economy and Trivia cogs can now be overridden by Permissions cog (:issue:`3672`, :issue:`3233`)
+- **Core - Bot Commands** - Added ``[p]set playing`` and ``[p]set streaming`` aliases for respectively ``[p]set game`` and ``[p]set stream`` (:issue:`3646`, :issue:`3590`)
+- **Core - Command-line Interfaces** - ``redbot-setup`` now prints link to Getting started guide at the end of the setup (:issue:`3027`)
+- **Cogs - Downloader** - ``[p]cog checkforupdates`` now includes information about cogs that can't be installed due to Red/Python version requirements (:issue:`3678`, :issue:`3448`)
+- **Cogs - Downloader** - Improved error messages for unexpected errors in ``[p]repo add`` (:issue:`3656`)
+- **Cogs - General** - Added more detailed mode to ``[p]serverinfo`` command that can be accessed with ``[p]serverinfo 1`` (:issue:`2382`, :issue:`3659`)
+- **Cogs - Image** - Users can now specify how many images should be returned in ``[p]imgur search`` and ``[p]imgur subreddit`` using ``[count]`` argument (:issue:`3667`, :issue:`3044`)
+- **Cogs - Image** - ``[p]imgur search`` and ``[p]imgur subreddit`` now return one image by default (:issue:`3667`, :issue:`3044`)
+- **Cogs - Mod** - ``[p]userinfo`` now shows user's activities (:issue:`3669`)
+- **Cogs - Mod** - ``[p]userinfo`` now shows status icon near the username (:issue:`3669`)
+- **Cogs - Modlog** - Modlog's cases now keep last known username to prevent losing that information from case's message on edit (:issue:`3674`, :issue:`3443`)
+- **Cogs - Permissions** - Commands for setting default rules now error when user tries to deny access to command designated as being always available (:issue:`3504`, :issue:`3465`)
+- **Cogs - Streams** - Preview picture for YouTube stream alerts is now bigger (:issue:`3689`, :issue:`3685`)
+- **Cogs - Streams** - Failures in Twitch API authentication are now logged (:issue:`3657`)
+- **Cogs - Warnings** - ``[p]warn`` now tells the moderator when bot wasn't able to send the warning to the user (:issue:`3653`, :issue:`3633`)
+
+Fixes
+*****
+
+- All owner notifications in core cogs now use proper prefixes in messages (:issue:`3632`)
+- **Core** - Fixed various bugs with blacklist and whitelist (:issue:`3643`, :issue:`3642`)
+- **Core** - Outages of ``pypi.org`` no longer prevent the bot from starting (:issue:`3663`)
+- **Core** - Fixed formatting of help strings in fuzzy search results (:issue:`3673`, :issue:`3507`)
+- **Core** - Fixed few deprecation warnings related to menus and uvloop (:issue:`3644`, :issue:`3700`)
+- **Core - Bot Commands** - ``[p]set game`` no longer errors when trying to clear the status (:issue:`3630`, :issue:`3628`)
+- **Core - Bot Commands** - Whitelist and blacklist commands now properly require passing at least one user (or role in case of local whitelist/blacklist) (:issue:`3652`, :issue:`3645`)
+- **Cogs - Downloader** - Fix misleading error appearing when repo name is already taken in ``[p]repo add`` (:issue:`3695`)
+- **Cogs - Downloader** - Prevent encoding errors from crashing ``[p]cog update`` (:issue:`3639`, :issue:`3637`)
+- **Cogs - Mod** - Muting no longer fails if user leaves while applying overwrite (:issue:`3627`)
+- **Cogs - Mod** - Fixed error that happened when Mod cog was loaded for the first time during bot startup (:issue:`3632`, :issue:`3626`)
+- **Cogs - Streams** - Fixed an error that happened when no game was set on Twitch stream (:issue:`3631`)
+- **Cogs - Streams** - YouTube channels with a livestream that doesn't have any current viewer are now properly showing as streaming (:issue:`3690`)
+- **Cogs - Trivia** - Trivia sessions no longer error on payout when winner's balance would exceed max balance (:issue:`3666`, :issue:`3584`)
+- **Cogs - Trivia** - Non-finite numbers can no longer be passed to ``[p]triviaset timelimit``, ``[p]triviaset stopafter`` and ``[p]triviaset payout`` (:issue:`3668`, :issue:`3583`)
+
+
+Developer changelog
+-------------------
+
+Fixes
+*****
+
+- Deprecation warnings issued by Red now use correct stack level so that the cog developers can find the cause of them (:issue:`3644`)
+- **Core - Utils Package** - `redbot.core.utils.menus.menu()` now checks permissions *before* trying to clear reactions (:issue:`3589`, :issue:`3145`)
+- **Cogs - Dev** - Added ``__name__`` to environment's globals (:issue:`3649`, :issue:`3648`)
+
+
+Documentation changes
+---------------------
+
+Changes
+*******
+
+- Windows install instructions now use ``choco upgrade`` commands instead of ``choco install`` to ensure up-to-date packages (:issue:`3684`)
+
+Fixes
+*****
+
+- Fixed install instructions for Mac (:issue:`3675`, :issue:`3436`)
+
+----
+
+Redbot 3.3.2 (2020-02-28)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`chasehult`, :ghuser:`Dav-Git`, :ghuser:`DiscordLiz`, :ghuser:`Drapersniper`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`Hedlund01`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`mikeshardmind`, :ghuser:`PredaaA`, :ghuser:`Stonedestroyer`, :ghuser:`trundler-dev`, :ghuser:`TrustyJAID`, :ghuser:`zephyrkul`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Cogs - Streams** - Added ``[p]streamset timer`` command which can be used to control how often the cog checks for live streams (:issue:`3237`)
+
+Changes
+*******
+
+- **Core** - Ignored guilds/channels and whitelist/blacklist are now cached for performance (:issue:`3472`)
+- **Core** - Ignored guilds/channels have been moved from Mod cog to Core (:issue:`3472`)
+- **Core - Bot Commands** - ``[p]ignore channel`` command can now also ignore channel categories (:issue:`3472`)
+- **Core - Bot Commands** - Improved user experience of ``[p]set game/listening/watching/`` commands (:issue:`3562`)
+- **Core - Bot Commands** - Added ``[p]licenceinfo`` alias for ``[p]licenseinfo`` command to conform with non-American English (:issue:`3460`)
+- **Cogs - Downloader** - Added better logging of errors when Downloader fails to add a repo (:issue:`3558`)
+- **Cogs - Mod** - ``[p]hackban`` and ``[p]unban`` commands support user mentions now (:issue:`3524`)
+- **Cogs - Streams** - Significantly reduce the quota usage for YouTube stream alerts (:issue:`3237`)
+- **Cogs - Warnings** - Users can now pass a reason to ``[p]unwarn`` command (:issue:`3490`, :issue:`3093`)
+- **Cogs - Warnings** - Use more reliant way of checking if command is bot owner only in ``[p]warnaction`` (Warnings cog) (:issue:`3516`, :issue:`3515`)
+
+Fixes
+*****
+
+- Core cogs will now send bot mention prefix properly in places where discord doesn't render mentions (:issue:`3579`, :issue:`3591`, :issue:`3499`)
+- **Core** - Stop using deprecated code in Core (:issue:`3610`)
+- **Core - Bot Commands** - Fixed a bug with ``[p]blacklist add`` that made it impossible to blacklist users that bot doesn't share a server with (:issue:`3472`, :issue:`3220`)
+- **Core - Bot Commands** - Update PyPI domain in ``[p]info`` and update checker (:issue:`3607`)
+- **Cogs - Admin** - ``[p]announce`` will now only send error message if an actual errors occurs (:issue:`3514`, :issue:`3513`)
+- **Cogs - Alias** - ``[p]alias help`` will now properly work in non-English locales (:issue:`3546`)
+- **Cogs - Audio** - Users should be able to play age-restricted tracks from YouTube again (:issue:`3620`)
+- **Cogs - Downloader** - Downloader will no longer fail because of invalid ``info.json`` files (:issue:`3533`, :issue:`3456`)
+- **Cogs - Economy** - Next payday time will now be adjusted for users when payday time is changed (:issue:`3496`, :issue:`3438`)
+- **Cogs - Image** - Fixed load error for users that updated Red from version lower than 3.1 to version 3.2 or newer (:issue:`3617`)
+- **Cogs - Streams** - Fixed stream alerts for Twitch (:issue:`3487`)
+- **Cogs - Trivia** - Added better handling for errors in trivia session (:issue:`3606`)
+- **Cogs - Trivia - Lists** - Removed empty answers in trivia lists (:issue:`3581`)
+
+
+Developer changelog
+-------------------
+
+Security
+********
+
+- **Core - Commands Package** - Subcommands of command group with ``invoke_without_command=True`` will again inherit this group's checks (:issue:`3614`)
+
+Additions
+*********
+
+- **Cogs - Dev** - Allow for top-level `await`, `async for` and `async with` in ``[p]debug`` and ``[p]repl`` commands (:issue:`3508`)
+
+Changes
+*******
+
+- **Core - Command-line Interfaces** - Added traceback logging to task exception handling (:issue:`3517`)
+- **Core - Command-line Interfaces** - Bot will now show deprecation warnings in logs (:issue:`3527`, :issue:`3615`)
+- **Core - Commands Package** - Developers can now create a command from an async function wrapped in `functools.partial` (:issue:`3542`)
+- **Core - Dependencies** - Updated all our dependencies - we're using discord.py 1.3.2 now (:issue:`3609`)
+- **Core - Utils Package** - Added clearer error when page is of a wrong type in `redbot.core.utils.menus.menu()` (:issue:`3571`)
+- **Cogs - Downloader** - Downloader will now replace ``[p]`` with clean prefix same as it does in help command (:issue:`3592`)
+- **Cogs - Downloader** - Added schema validation to ``info.json`` file processing - it should now be easier to notice any issues with those files (:issue:`3533`, :issue:`3442`)
+
+Fixes
+*****
+
+- **Core - Config** - Fixed Config's singletons (:issue:`3137`, :issue:`3136`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Added guidelines for Cog Creators in `guide_cog_creation` document (:issue:`3568`)
+
+Changes
+*******
+
+- Restructured virtual environment instructions to improve user experience (:issue:`3495`, :issue:`3411`, :issue:`3412`)
+- Getting started guide now explains use of quotes for arguments with spaces (:issue:`3555`, :issue:`3111`)
+- ``latest`` version of docs now displays a warning about possible differences from current stable release (:issue:`3570`)
+- Made systemd guide clearer on obtaining username and python path (:issue:`3537`, :issue:`3462`)
+- Improved indication of instructions for different venv types in systemd guide (:issue:`3538`)
+- Service file in `autostart_systemd` now also waits for network connection to be ready (:issue:`3549`)
+- Hid alias of ``randomize_colour`` in docs (:issue:`3491`)
+- Added separate headers for each event predicate class for better navigation (:issue:`3595`, :issue:`3164`)
+- Improved wording of explanation for ``required_cogs`` key in `guide_publish_cogs` (:issue:`3520`)
+
+----
+
+Redbot 3.3.1 (2020-02-05)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Flame442`, :ghuser:`flyingmongoose`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`mikeshardmind`, :ghuser:`palmtree5`, :ghuser:`PredaaA`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core - Command-line Interfaces** - Added a cli flag (``--message-cache-size``) for setting a max size of message cache (:issue:`3473`, :issue:`3474`)
+
+Changes
+*******
+
+- Some functions have been changed to no longer use deprecated asyncio functions (:issue:`3509`)
+- **Core - Command-line Interfaces** - Prefix can now be edited from command line using ``redbot --edit`` (:issue:`3481`, :issue:`3486`)
+- **Cogs - Mod** - The short help text for ``[p]modset dm`` has been made more useful (:issue:`3488`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - ``[p]dm`` no longer allows owners to have the bot attempt to DM itself (:issue:`3477`, :issue:`3478`)
+- **Cogs - Mod** - Hackban now works properly without being provided a number of days (:issue:`3476`, :issue:`3475`)
+
+
+Developer changelog
+-------------------
+
+Deprecations
+************
+
+- **Core - Utils Package** - Passing the event loop explicitly in `bounded_gather()`, `bounded_gather_iter()`, and `start_adding_reactions()` is deprecated and will be removed in 3.4 (:issue:`3509`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Added section to install docs for CentOS 8 (:issue:`3461`, :issue:`3463`)
+
+Changes
+*******
+
+- Added ``-e`` flag to ``journalctl`` command in systemd guide so that it takes the user to the end of logs automatically (:issue:`3483`)
+- Improved usage of apt update in docs (:issue:`3464`)
+
+----
+
+Redbot 3.3.0 (2020-01-26)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`DevilXD`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`Ianardo-DiCaprio`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`mikeshardmind`, :ghuser:`Stonedestroyer`, :ghuser:`zephyrkul`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core** - Team applications are now supported (:issue:`2781`, :issue:`3445`)
+
+ - Added new ``--team-members-are-owners`` flag that will make Red treat owners of the team application as bot owners
+- **Core - Bot Commands** - Embed use can now be configured per channel with new ``[p]embedset channel`` command (:issue:`3152`, :issue:`3418`)
+- **Cogs - Mod** - You can set a default amount of days to clean up when banning with ``[p]ban`` and ``[p]tempban`` (:issue:`2441`, :issue:`2930`, :issue:`3437`)
+- **Cogs - Mod** - Users can now optionally be DMed their ban reason (:issue:`2649`, :issue:2990`)
+
+Changes
+*******
+
+- **Core - Help** - Help is now self consistent in the extra formatting used (:issue:`3451`)
+- **Cogs - Admin** - Role granting/removing commands will now notify when the user already has/doesn't have a role when attempting to add/remove it (:issue:`3010`, :issue:`3408`)
+- **Cogs - Audio** - Playlist searching is now more intuitive (:issue:`3430`)
+- **Cogs - Downloader** - Some user facing messages were improved (:issue:`3409`)
+- **Cogs - Mod** - ``[p]slowmode`` should no longer error on nonsensical time quantities (:issue:`3453`)
+
+Fixes
+*****
+
+- **Cogs - Audio** - ``[p]audioset dc`` and ``[p]repeat`` commands no longer interfere with each other (:issue:`3425`, :issue:`3426`)
+- **Cogs - Cleanup** - Fixed a rare edge case involving messages that were deleted during cleanup (:issue:`3414`)
+- **Cogs - CustomCommands** - ``[p]cc create random`` no longer errors when exiting an interactive menu (:issue:`3416`, :issue:`3417`)
+- **Cogs - Downloader** - Downloader's initialization can no longer time out at startup (:issue:`3415`, :issue:`3440`, :issue:`3444`)
+- **Cogs - General** - ``[p]roll`` command will no longer attempt to roll obscenely large amounts (:issue:`3284`, :issue:`3395`)
+- **Cogs - Permissions** - Now has stronger enforcement of prioritizing botwide settings
+
+
+Developer changelog
+-------------------
+
+Breaking Changes
+****************
+
+- **Core - Commands Package** - Importing submodules of ``discord.ext.commands`` from ``redbot.core.commands`` will no longer work (:issue:`3410`)
+- **Core - Commands Package** - ``PermState.ALLOWED_STATES`` from ``redbot.core.commands.requires`` has been moved to a global variable called ``PermStateAllowedStates`` in the same module (:issue:`3410`)
+- **Core - Commands Package** - ``PermState.TRANSITIONS`` from ``redbot.core.commands.requires`` has been moved to a global variable called ``PermStateAllowedStates`` in the same module (:issue:`3410`)
+- **Core - Commands Package** - Use of ``@asyncio.coroutine`` is no longer supported. Use ``async def`` instead (:issue:`3410`)
+
+Changes
+*******
+
+- **Core - Commands Package** - The commands module has been slightly restructured to provide more useful data to developers (:issue:`3410`)
+- **Core - Dependencies** - We now use discord.py 1.3.1 (:issue:`3445`)
+
+Deprecations
+************
+
+- **Cogs - Downloader** - Updated deprecation warnings for shared libs to reflect that they will instead be removed in 3.4 (:issue:`3449`)
+
+Fixes
+*****
+
+- **Core - Commands Package** - Fixed an issue with default units in `TimedeltaConverter` (:issue:`3453`)
+
+
+Documentation changes
+---------------------
+
+Fixes
+*****
+
+- We've made some small fixes to inaccurate instructions about installing with pyenv (:issue:`3434`)
+
+----
+
+Redbot 3.2.3 (2020-01-17)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`Dav-Git`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`mikeshardmind`, :ghuser:`Redjumpman`, :ghuser:`Stonedestroyer`, :ghuser:`TrustyJAID`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core** - The bot's description is now configurable through ``[p]set description`` (:issue:`3340`)
+
+Changes
+*******
+
+- **Core** - Further improvements have been made to bot startup and shutdown (:issue:`3358`, :issue:`3392`)
+- **Core** - Prefixes are now cached for performance (:issue:`3148`, :issue:`3150`)
+- **Core** - The bot now ensures it has at least the bare neccessary permissions before running commands (:issue:`3304`, :issue:`3305`, :issue:`3361`)
+- **Core - Bot Commands** - The ``[p]servers`` command now also shows the ids (:issue:`3224`, :issue:`3393`)
+- **Cogs - Audio** - Reduced cooldowns for some of the playlist commands (:issue:`3342`)
+- **Cogs - Downloader** - Improved a few user facing messages (:issue:`3343`)
+- **Cogs - Downloader** - Added logging of failures (:issue:`3372`)
+
+Fixes
+*****
+
+- **Core** - Embed settings (``[p]embedset``) for ``[p]help`` now work the same as for other commands (:issue:`3382`)
+- **Core - Command-line Interfaces** - Deleting instances works as intended again (:issue:`3338`, :issue:`3384`)
+- **Cogs - Admin** - The selfrole command now has reasonable expectations about hierarchy (:issue:`3331`)
+- **Cogs - Audio** - Audio now properly disconnects the bot when ``[p]audioset dc`` is turned on, even if ``[p]audioset notify`` is being used (:issue:`3349`, :issue:`3350`)
+- **Cogs - Audio** - Symbolic links now work as intended for local tracks (:issue:`3332`, :issue:`3376`)
+- **Cogs - Audio** - ``[p]bumpplay`` now shows the correct remaining time until the bumped track is played (:issue:`3373`, :issue:`3375`)
+- **Cogs - Audio** - Multiple user facing messages have been made more correct (:issue:`3347`, :issue:`3348`, :issue:`3374`)
+- **Cogs - Downloader** - Added pagination of output on cog update when it's too long for single message (:issue:`3385`, :issue:`3388`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core** - Added the means for cog creators to use a global preinvoke hook (:issue:`3369`)
+- **Core - Commands Package** - New features added for cog creators to further customize help behavior (:issue:`3339`)
+
+ - Check out our command reference for details on new ``format_help_for_context`` method
+- **Core - Commands Package** - ``[botname]`` is now replaced with the bot's display name in help text (:issue:`3339`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Added proper support for Ubuntu non-LTS (:issue:`3330`, :issue:`3336`)
+- Added link to our GitHub in the documentation (:issue:`3306`)
+
+Changes
+*******
+
+- Added a note about how to update Red to the install guides (:issue:`3400`)
+- Clarified some information about breaking changes in Red 3.2.0 changelog (:issue:`3367`)
+- Improved the structure of the Linux/Mac install guide to make it more clear to the user which sections they should be following (:issue:`3365`)
+- Added more details to the API key reference (:issue:`3400`)
+- Updated the documentation to **require** the usage of virtual environment for installing and running Red (:issue:`3351`)
+- Updated auto-restart guides to use Python's ``-O`` flag to enable assert optimizations (:issue:`3354`)
+
+Fixes
+*****
+
+- Updated the documentation with the minimum supported git version (:issue:`3371`)
+- Fixed install instructions for Debian to also work with Debian Stretch (:issue:`3352`)
+
+----
+
+Redbot 3.2.2 (2020-01-10)
+=========================
+
+End-user changelog
+------------------
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed pagination issue in ``[p]help`` command (:issue:`3323`, :issue:`3324`)
+
+
+Documentation changes
+---------------------
+
+Fixes
+*****
+
+- Corrected venv docs to use the actually supported Python version (:issue:`3325`, :issue:`3324`)
+
+----
+
+Redbot 3.2.1 (2020-01-10)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`mikeshardmind`, :ghuser:`palmtree5`
+
+End-user changelog
+------------------
+
+Changes
+*******
+
+- **Cogs - Modlog** - Modlog will now log an error with unexpected case type key (and any other keys) rather than crash (:issue:`3318`)
+
+Fixes
+*****
+
+- **Core - Command-line Interfaces** - Fixed Mongo conversion from being incorrectly blocked (:issue:`3316`, :issue:`3319`)
+- **Cogs - Admin** - Fixed announcer not creating a message for success feedback (:issue:`3320`)
+
+----
+
+Redbot 3.2.0 (2020-01-09)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Aurorum`, :ghuser:`Bakersbakebread`, :ghuser:`DevilXD`, :ghuser:`DiscordLiz`, :ghuser:`DJtheRedstoner`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`Ianardo-DiCaprio`, :ghuser:`jack1142`, :ghuser:`jerbob`, :ghuser:`jonasbohmann`, :ghuser:`kennnyshiwa`, :ghuser:`Kowlin`, :ghuser:`mikeshardmind`, :ghuser:`palmtree5`, :ghuser:`PredaaA`, :ghuser:`RealFriesi`, :ghuser:`retke`, :ghuser:`Tobotimus`, :ghuser:`Vexed01`, :ghuser:`wereii`, :ghuser:`yamikaitou`, :ghuser:`ZeLarpMaster`, :ghuser:`zephyrkul`
+
+Read before updating
+--------------------
+
+#. Red 3.2 dropped support for the MongoDB driver. When updating your instance from an older version, be sure to use instructions for **your current version** from the `document about updating Red ` to be able to still start your instance after the update.
+#. Red 3.2 requires Python 3.8.1 or newer. In order to be able to update, you'll first have to install appropriate versions of your dependencies so be sure to use instructions for **your current version** from the `document about updating Red `.
+
+ .. note::
+
+ You may get a notification from the downloader cog about needing to refetch dependencies.
+ This is expected and it will walk you through everything and do as much as it can for you.
+
+#. Red 3.2 comes with improvements which required breaking changes for 3rd party cogs. When you update to 3.2, your cogs may not be compatible if the author has not handled
+ the changes yet. If you're a cog creator, you can look at `Developer changelog ` for full details.
+
+
+End-user changelog
+------------------
+
+Breaking Changes
+****************
+
+- **Core** - Removed the mongo driver (:issue:`3099`, :issue:`3108`)
+- **Core - Dependencies** - Updated the required minimum Python version to 3.8.1, and the required minimum JRE version to Java 11 (:issue:`3245`)
+
+Additions
+*********
+
+- **Core** - Added a config driver for PostgreSQL (:issue:`2723`)
+- **Core - Bot Commands** - Added ``[p]licenseinfo`` (:issue:`3090`)
+- **Core - Bot Commands** - Added a command to list disabled commands globally or per guild (:issue:`3118`)
+- **Core - Command-line Interfaces** - Added the cli flag ``redbot --edit`` which is used to edit the instance name, token, owner, and datapath (:issue:`3060`)
+- **Core - Command-line Interfaces** - Added ``redbot-setup backup`` (:issue:`3235`)
+- **Core - Command-line Interfaces** - Added ``redbot --debuginfo`` flag which shows useful information for debugging (:issue:`3183`)
+- **Cogs - Audio** - Added support for nested folders in the localtrack folder (:issue:`270`)
+- **Cogs - Audio** - Audio now auto pauses the queue when the voice channel is empty (:issue:`721`)
+- **Cogs - Audio** - All playlist commands now accept optional arguments, use ``[p]help playlist `` for more details (:issue:`2861`)
+- **Cogs - Audio** - ``[p]playlist rename`` will now allow users to rename existing playlists (:issue:`2861`)
+- **Cogs - Audio** - ``[p]playlist update`` will now allow users to update non-custom Playlists to the latest available tracks (:issue:`2861`)
+- **Cogs - Audio** - There are now 3 different scopes of playlist. To define them, use the ``--scope`` argument
+
+ ``Global Playlist``
+
+ - These playlists will be available in all servers the bot is in.
+ - These can be managed by the Bot Owner only.
+
+ ``Server Playlist``
+
+ - These playlists will only be available in the server they were created in.
+ - These can be managed by the Bot Owner, Guild Owner, Mods, Admins, DJs, and the Creator (if the DJ role is disabled).
+
+ ``User Playlist``
+
+ - These playlists will be available in all servers both the bot and the creator are in.
+ - These can be managed by the Bot Owner and Creator only. (:issue:`2861`)
+- **Cogs - Audio** - ``[p]audioset cache`` can now be used to set the cache level. **It's off by default** (:issue:`2904`)
+- **Cogs - Audio** - ``[p]genre`` can now be used to play spotify playlists (:issue:`2904`)
+- **Cogs - Audio** - ``[p]audioset cacheage`` can now be used to set the maximum age of an entry in the cache. **Default is 365 days** (:issue:`2904`)
+- **Cogs - Audio** - ``[p]audioset autoplay`` can now be used to enable auto play once the queue runs out (:issue:`2904`)
+- **Cogs - Audio** - ``[p]queue shuffle`` can now be used to shuffle the queue manually (:issue:`2904`)
+- **Cogs - Audio** - ``[p]queue clean self`` can now be used to remove all songs you requested from the queue (:issue:`2904`)
+- **Cogs - Audio** - ``[p]audioset restrictions`` can now be used to add or remove keywords which songs must have or are not allowed to have (:issue:`2904`)
+- **Cogs - Audio** - ``[p]playlist dedupe`` can now be used to remove duplicated tracks from a playlist (:issue:`2904`)
+- **Cogs - Audio** - ``[p]autoplay`` can now be used to play a random song (:issue:`2904`)
+- **Cogs - Audio** - ``[p]bumpplay`` can now be used to add a song to the front of the queue (:issue:`2940`)
+- **Cogs - Audio** - ``[p]shuffle`` now has an additional argument to tell the bot whether it should shuffle bumped tracks (:issue:`2940`)
+- **Cogs - Audio** - Added global whitelist/blacklist commands (:issue:`3047`)
+- **Cogs - Audio** - Added self-managed daily playlists in the GUILD scope, these are called "Daily playlist - YYYY-MM-DD" and auto delete after 7 days (:issue:`3199`)
+- **Cogs - Bank** - Added ``[p]bankset maxbal`` to set the maximum bank balance (:issue:`2926`)
+- **Cogs - Economy** - Added new commands for pruning bank accounts (:issue:`2845`)
+
+ - ``[p]bank prune user`` - This will delete a user's bank account.
+ - ``[p]bank prune local`` - This will prune the bank of accounts for users who are no longer in the server.
+ - ``[p]bank prune global`` - This will prune the global bank of accounts for users who do not share any servers with the bot.
+- **Cogs - Downloader** - Added ``[p]repo update [repos]`` which updates repos without updating the cogs from them (:issue:`2527`)
+- **Cogs - Downloader** - Added ``[p]cog installversion `` which installs cogs from a specified revision (commit, tag) of the given repo. When using this command, the cog will automatically be pinned (:issue:`2527`)
+- **Cogs - Downloader** - Added ``[p]cog pin `` and ``[p]cog unpin `` for pinning cogs. Cogs that are pinned will not be updated when using update commands (:issue:`2527`)
+- **Cogs - Downloader** - Added ``[p]cog checkforupdates`` that lists which cogs can be updated (including pinned cog) without updating them (:issue:`2527`)
+- **Cogs - Downloader** - Added ``[p]cog updateallfromrepos `` that updates all cogs from the given repos (:issue:`2527`)
+- **Cogs - Downloader** - Added ``[p]cog updatetoversion [cogs]`` that updates all cogs or ones of user's choosing to chosen revision of the given repo (:issue:`2527`)
+- **Cogs - Downloader** - Added ``[p]cog reinstallreqs`` that reinstalls cog requirements and shared libraries for all installed cogs (:issue:`3167`)
+- **Cogs - Trivia - Lists** - Added trivia lists for Prince and Michael Jackson lyrics (:issue:`12`)
+
+Changes
+*******
+
+- Red now takes less time to fetch cases, unban members, and list warnings (:issue:`2964`)
+- **Core** - JSON config files are now stored without indentation, this is to reduce the file size and increase the performance of write operations (:issue:`2921`)
+- **Core** - Red now handles more things prior to connecting to discord to reduce issues during the initial load (:issue:`3045`)
+- **Core** - Red will now send a message when the invoked command is DM-only (:issue:`3057`)
+- **Core** - The lib folder is now cleared on minor Python version changes. ``[p]cog reinstallreqs`` in Downloader can be used to regenerate the lib folder for a new Python version (:issue:`3274`)
+- **Core** - If Red detects operating system or architecture change, it will now warn the owner about possible problems with the lib folder (:issue:`3274`)
+- **Core - Bot Commands** - Changed ``[p]info`` to say "This bot is an..." instead of "This is an..." for clarity (:issue:`3121`)
+- **Core - Bot Commands** - Added the Python executable field to ``[p]debuginfo`` (:issue:`3184`)
+- **Core - Command-line Interfaces** - Added the option to modify the RPC port with the ``--rpc-port`` flag (:issue:`2429`)
+- **Core - Command-line Interfaces** - ``--[no-]backup``, ``--[no-]drop-db`` and ``--[no-]remove-datapath`` in the ``redbot-setup delete`` command are now on/off flags (:issue:`2958`)
+- **Core - Command-line Interfaces** - The confirmation prompts in ``redbot-setup`` now have default values for user convenience (:issue:`2958`)
+- **Core - Command-line Interfaces** - ``redbot-setup delete`` now has the option to leave Red's data untouched on database backends (:issue:`2962`)
+- **Core - Command-line Interfaces** - All ``y/n`` confirmations in cli commands are now unified (:issue:`3060`)
+- **Core - Command-line Interfaces** - ``redbot-setup`` will now use the instance name in default data paths to avoid creating a second instance with the same data path (:issue:`3171`)
+- **Core - Command-line Interfaces** - Instance names can now only include characters A-z, numbers, underscores, and hyphens. Old instances are unaffected by this change (:issue:`3171`)
+- **Core - Command-line Interfaces** - When Red prompts for a token, it will now print a link to the guide explaining how to obtain a token (:issue:`3204`)
+- **Core - Command-line Interfaces** - ``redbot-setup`` will no longer log to disk (:issue:`3269`)
+- **Core - Dependencies** - Bumped dependency versions (:issue:`3288`)
+- **Core - Dependencies** - Bumped Red-Lavalink version (:issue:`3290`)
+- **Core - Modlog** - Modlog no longer generates cases without being told to for actions the bot did (:issue:`2897`)
+- **Core - Modlog** - Modlog is now much faster at creating cases, especially in large servers (:issue:`2908`)
+- **Cogs - Admin** - Changed ``[p]announce ignore`` and ``[p]announce channel`` to ``[p]announceset ignore`` and ``[p]announceset channel`` (:issue:`3250`)
+- **Cogs - Admin** - Changed ``[p]selfrole `` to ``[p]selfrole add ``, changed ``[p]selfrole add`` to ``[p]selfroleset add`` , and changed ``[p]selfrole delete`` to ``[p]selfroleset remove`` (:issue:`3250`)
+- **Cogs - Admin** - Added custom issue messages for adding and removing roles, this makes it easier to create translations (:issue:`3016`)
+- **Cogs - Audio** - ``[p]playlist download`` will now compress playlists larger than the server attachment limit and attempt to send that (:issue:`3279`)
+- **Cogs - Audio** - ``[p]playlist upload`` will now load playlists generated via ``[p]playlist download`` much faster if the playlist uses the new scheme (:issue:`2861`)
+- **Cogs - Audio** - ``[p]playlist`` commands now can be used by everyone regardless of DJ settings, however it will respect DJ settings when creating/modifying playlists in the server scope (:issue:`2861`)
+- **Cogs - Audio** - Spotify, Youtube Data, and Lavalink API calls can now be cached to avoid repeated calls in the future, see ``[p]audioset cache`` (:issue:`2890`)
+- **Cogs - Audio** - Playlists will now start playing as soon as first track is loaded (:issue:`2890`)
+- **Cogs - Audio** - ``[p]audioset localpath`` can set a path anywhere in your machine now. Note: This path needs to be visible by ``Lavalink.jar`` (:issue:`2904`)
+- **Cogs - Audio** - ``[p]queue`` now works when there are no tracks in the queue, showing the track currently playing (:issue:`2904`)
+- **Cogs - Audio** - ``[p]audioset settings`` now reports Red Lavalink version (:issue:`2904`)
+- **Cogs - Audio** - Adding and removing reactions in Audio is no longer a blocking action (:issue:`2904`)
+- **Cogs - Audio** - When shuffle is on, queue now shows the correct play order (:issue:`2904`)
+- **Cogs - Audio** - ``[p]seek`` and ``[p]skip`` can now be used by user if they are the song requester while DJ mode is enabled and votes are disabled (:issue:`2904`)
+- **Cogs - Audio** - Adding a playlist and an album to a saved playlist now skips tracks already in the playlist (:issue:`2904`)
+- **Cogs - Audio** - DJ mode is now turned off if the DJ role is deleted (:issue:`2904`)
+- **Cogs - Audio** - When playing a localtrack, ``[p]play`` and ``[p]bumpplay`` no longer require the use of the prefix "localtracks\\" (:issue:`2904`)
+
+ Before: ``[p]bumpplay localtracks\ENM\501 - Inside The Machine.mp3``
+ Now: ``[p]bumpplay ENM\501 - Inside The Machine.mp3``
+ Now nested folders: ``[p]bumpplay Parent Folder\Nested Folder\track.mp3``
+- **Cogs - Audio** - Removed commas in explanations about how to set API keys (:issue:`2905`)
+- **Cogs - Audio** - Expanded local track support to all file formats (m3u, m4a, mp4, etc) (:issue:`2940`)
+- **Cogs - Audio** - Cooldowns are now reset upon failure of commands that have a cooldown timer (:issue:`2940`)
+- **Cogs - Audio** - Improved the explanation in the help string for ``[p]audioset emptydisconnect`` (:issue:`3051`)
+- **Cogs - Audio** - Added a typing indicator to playlist dedupe (:issue:`3058`)
+- **Cogs - Audio** - Exposed clearer errors to users in the play commands (:issue:`3085`)
+- **Cogs - Audio** - Improved error handling when the player is unable to play multiple tracks in the sequence (:issue:`3165`)
+- **Cogs - CustomCommands** - The group command ``[p]cc create`` can now be used to create simple CCs without specifying "simple" (:issue:`1767`)
+- **Cogs - CustomCommands** - Added a query option for CC typehints for URL-based CCs (:issue:`3228`)
+- **Cogs - CustomCommands** - Now uses the ``humanize_list()`` utility for iterable parameter results, e.g. ``{#:Role.members}`` (:issue:`3277`)
+- **Cogs - Downloader** - During cog update, Downloader will now check if the Python and bot versions match requirements provided by the cog author(s) in ``info.json`` (:issue:`1866`)
+- **Cogs - Downloader** - ``[p]cog install`` now accepts multiple cog names (:issue:`2527`)
+- **Cogs - Downloader** - When passing cogs to ``[p]cog update``, it will now only update those cogs, not all cogs from the repo those cogs are from (:issue:`2527`)
+- **Cogs - Downloader** - Added error messages for failures when installing/reinstalling requirements and copying cogs and shared libraries (:issue:`2571`)
+- **Cogs - Downloader** - ``[p]findcog`` now uses sanitized urls (without HTTP Basic Auth fragments) (:issue:`3129`)
+- **Cogs - Downloader** - ``[p]repo info`` will now show the repo's url, branch, and authors (:issue:`3225`)
+- **Cogs - Downloader** - ``[p]cog info`` will now show cog authors (:issue:`3225`)
+- **Cogs - Downloader** - ``[p]findcog`` will now show the repo's branch (:issue:`3225`)
+- **Cogs - Economy** - Slots now has a 62.5% expected payout and will not inflate economy when spammed (:issue:`2875`)
+- **Cogs - Image** - Updated the ``[p]giphycreds`` command to match the formatting of the other API commands (:issue:`2905`)
+- **Cogs - Image** - Removed commas from explanations about how to set API keys (:issue:`2905`)
+- **Cogs - Mod** - ``[p]slowmode`` now accepts integer-only inputs as seconds (:issue:`2884`)
+- **Cogs - Permissions** - Better explained the usage of commands with the ```` argument (:issue:`2991`)
+- **Cogs - Streams** - Removed commas from explanations about how to set API keys (:issue:`2905`)
+
+Removals
+********
+
+- **Core - Bot Commands** - ``[p]set owner`` and ``[p]set token`` have been removed in favor of ``redbot --edit`` (:issue:`2928`)
+- **Core - Bot Commands** - Removed ``[p]backup``. Use the cli command ``redbot-setup backup`` instead (:issue:`3235`)
+- **Core - Command-line Interfaces** - Removed a lot of the functionality of ``redbot-launcher`` and deprecated what's left (:issue:`3289`)
+- **Cogs - Downloader** - Shared libraries are marked for removal in Red 3.4 (:issue:`3106`)
+
+Fixes
+*****
+
+- **Core** - Red no longer types infinitely when a command with a cooldown is called within the last second of a cooldown. (:issue:`2985`)
+- **Core** - Added a 3rd-party lib folder to ``sys.path`` before loading cogs. This prevents issues with 3rd-party cogs failing to load when Downloader is not loaded to install requirements (:issue:`3036`)
+- **Core** - Red will now properly send an error message when the invoked command is guild-only (:issue:`3057`)
+- **Core** - Red now always appends the 3rd-party lib folder to the end of ``sys.path`` to avoid shadowing Red's dependencies (:issue:`3062`)
+- **Core** - Guild owners are no longer affected by the local whitelist and blacklist (:issue:`3221`)
+- **Core - Bot Commands** - The ``[p]invite`` command no longer errors when a user has the bot blocked or DMs disabled in the server (:issue:`2948`)
+- **Core - Bot Commands** - Cleaned up the ``[p]inviteset public`` and ``[p]inviteset perms`` help strings (:issue:`2963`)
+- **Core - Bot Commands** - ```[p]embedset user`` now only affects DM's (:issue:`2966`)
+- **Core - Bot Commands** - Fixed the help text and response of ``[p]set usebotcolor`` to accurately reflect what the command is doing (:issue:`2974`)
+- **Core - Bot Commands** - Fixed an error in ``[p]uptime`` when the uptime is under a second (:issue:`3009`)
+- **Core - Bot Commands** - Added quotation marks to the response of ``[p]helpset tagline`` so that two consecutive full stops do not appear (:issue:`3010`)
+- **Core - Bot Commands** - Red will now prevent users from locking themselves out with ``[p]localblacklist`` (:issue:`3207`)
+- **Core - Bot Commands** - Fixed formatting issues in commands that list whitelisted/blacklisted users/roles when the list is empty (:issue:`3219`)
+- **Core - Bot Commands** - Red will now prevent users from locking the guild owner out with ``[p]localblacklist`` (unless the command caller is bot owner) (:issue:`3221`)
+- **Core - Command-line Interfaces** - Stopped using the ``:`` character in backup's filename - Windows doesn't accept it (:issue:`2954`)
+- **Core - Command-line Interfaces** - ``redbot-setup delete`` no longer errors with "unexpected keyword argument" (:issue:`2955`)
+- **Core - Command-line Interfaces** - ``redbot-setup delete`` no longer prompts about backup when the user passes the option ``--no-prompt`` (:issue:`2956`)
+- **Core - Command-line Interfaces** - Fixed an unfriendly error when the provided instance name doesn't exist (:issue:`2968`)
+- **Core - Command-line Interfaces** - Removed f-string usage in the launcher to prevent our error handling from causing an error (:issue:`3002`)
+- **Core - Command-line Interfaces** - Arguments ``--co-owner`` and ``--load-cogs`` now properly require at least one argument to be passed (:issue:`3060`)
+- **Core - Command-line Interfaces** - Fixed the generation of the ``repos.json`` file in the backup process (:issue:`3114`)
+- **Core - Command-line Interfaces** - Added handling for invalid folder names in the data path gracefully in ``redbot-setup`` and ``redbot --edit`` (:issue:`3171`)
+- **Core - Command-line Interfaces** - ``--owner`` and ``-p`` cli flags now work when added from launcher (:issue:`3174`)
+- **Core - Help** - Help now properly hides disabled commands (:issue:`2863`)
+- **Core - Help** - Fixed help ending up a little too large for Discord embed limits (:issue:`3208`)
+- **Core - Modlog** - Modlog entries now show up properly without the mod cog loaded (:issue:`2897`)
+- **Core - Modlog** - Removed potential for additional bad API calls per ban/unban (:issue:`2945`)
+- **Cogs - Admin** - Fixed ``[p]announce`` failing after encountering an error attempting to message the bot owner (:issue:`3166`)
+- **Cogs - Admin** - Improved the clarity of user facing messages when the user is not allowed to do something due to Discord hierarchy rules (:issue:`3250`)
+- **Cogs - Admin** - Fixed some role managing commands not properly checking if Red had Manage Roles permission before attempting to manage roles (:issue:`3250`)
+- **Cogs - Admin** - Fixed commands from ``[p]editrole`` command group not checking if roles to be edited are higher than Red's highest role before trying to edit them (:issue:`3250`)
+- **Cogs - Admin** - Fixed ``[p]announce ignore`` and ``[p]announce channel`` not being able to be used by guild owners and administrators (:issue:`3250`)
+- **Cogs - Audio** - ``[p]playlist remove`` now removes the playlist url if the playlist was created through ``[p]playlist save`` (:issue:`2861`)
+- **Cogs - Audio** - Users are no longer able to accidentally overwrite existing playlist if a new one with the same name is created/renamed (:issue:`2861`)
+- **Cogs - Audio** - ``[p]audioset settings`` no longer shows lavalink JAR version (:issue:`2904`)
+- **Cogs - Audio** - Fixed a ``KeyError: loadType`` when trying to play tracks (:issue:`2904`)
+- **Cogs - Audio** - ``[p]audioset settings`` now properly considers co-owners as owners (:issue:`2904`)
+- **Cogs - Audio** - Fixed track indexes being off by 1 in ``[p]search`` (:issue:`2940`)
+- **Cogs - Audio** - Fixed an issue where updating your Spotify and YouTube Data API tokens did not refresh them (:issue:`3047`)
+- **Cogs - Audio** - Fixed an issue where the blacklist was not being applied correctly (:issue:`3047`)
+- **Cogs - Audio** - Fixed an issue in ``[p]audioset restrictions blacklist list`` where it would call the list a ``Whitelist`` (:issue:`3047`)
+- **Cogs - Audio** - Red's status is now properly cleared on emptydisconnect (:issue:`3050`)
+- **Cogs - Audio** - Fixed a console spam caused sometimes when auto disconnect and auto pause are used (:issue:`3123`)
+- **Cogs - Audio** - Fixed an error that was thrown when running ``[p]audioset dj`` (:issue:`3165`)
+- **Cogs - Audio** - Fixed a crash that could happen when the bot can't connect to the Lavalink node (:issue:`3238`)
+- **Cogs - Audio** - Restricted the number of songs shown in the queue to first 500 to avoid heartbeats (:issue:`3279`)
+- **Cogs - Audio** - Added more cooldowns to playlist commands and restricted the queue and playlists to 10k songs to avoid bot errors (:issue:`3286`)
+- **Cogs - Audio** - Lavalink will now be restarted after an unexpected shutdown (:issue:`3033`)
+- **Cogs - Audio** - Track descriptions are now escaped so that they do not break markdown (:issue:`3047`)
+- **Cogs - Audio** - Fixed an issue where calling Audio commands when not in a voice channel could result in a crash (:issue:`3120`)
+- **Cogs - Audio** - Fixed an issue where some YouTube playlists were being recognised as single tracks (:issue:`3104`)
+- **Cogs - Downloader** - Made the regex for repo names use raw strings to stop causing a ``DeprecationWarning`` for invalid escape sequences (:issue:`2571`)
+- **Cogs - Downloader** - Downloader will no longer attempt to install cogs that are already installed (:issue:`2571`)
+- **Cogs - Downloader** - Repo names can now only contain the characters listed in the help text (A-Z, 0-9, underscores, and hyphens) (:issue:`2827`)
+- **Cogs - Downloader** - ``[p]findcog`` no longer attempts to find a cog for commands without a cog (:issue:`2902`)
+- **Cogs - Downloader** - Downloader will no longer attempt to install a cog with same name as another cog that is already installed (:issue:`2927`)
+- **Cogs - Downloader** - Added error handling for when a remote repository or branch is deleted; now it notifies which repository failed and continues to update the others (:issue:`2936`)
+- **Cogs - Downloader** - ``[p]cog install`` will no longer error if a cog has an empty install message (:issue:`3024`)
+- **Cogs - Downloader** - Fixed an error on ``[p]repo add`` from empty string values for the ``install_msg`` info.json field (:issue:`3153`)
+- **Cogs - Downloader** - Disabled all git auth prompts when adding/updating a repo with Downloader (:issue:`3159`)
+- **Cogs - Downloader** - ``[p]findcog`` now properly works for cogs with less typical folder structure (:issue:`3177`)
+- **Cogs - Downloader** - ``[p]cog uninstall`` now fully unloads cog - the bot will not try to load it on next startup (:issue:`3179`)
+- **Cogs - Economy** - Fixed a crash seen when calling economy commands in DM with a global bank (:issue:`2997`)
+- **Cogs - Mod** - ``[p]userinfo`` no longer breaks when a user has an absurd number of roles (:issue:`2910`)
+- **Cogs - Mod** - Fixed Mod cog not recording username changes for ``[p]names`` and ``[p]userinfo`` commands (:issue:`2918`)
+- **Cogs - Mod** - Fixed ``[p]modset deletedelay`` deleting non-command messages (:issue:`2924`)
+- **Cogs - Mod** - Fixed an error when reloading Mod (:issue:`2932`)
+- **Cogs - Modlog** - Fixed an error in ``[p]reason`` when setting the reason for a case without a moderator (:issue:`2908`)
+- **Cogs - Permissions** - Defaults are now cleared properly when clearing all rules (:issue:`3037`)
+- **Cogs - Permissions** - Fixed an issue with clearing rules in permissions (:issue:`3014`)
+- **Cogs - Streams** - Fixed a ``TypeError`` in the ``TwitchStream`` class when calling Twitch client_id from Red shared APIs tokens (:issue:`3042`)
+- **Cogs - Streams** - Changed the ``stream_alert`` function for Twitch alerts to make it work with how the ``TwitchStream`` class works now (:issue:`3042`)
+- **Cogs - Trivia** - Fixed a bug where ``[p]trivia leaderboard`` failed to run (:issue:`2911`)
+- **Cogs - Trivia - Lists** - Fixed a typo in Ahsoka Tano's name in the Starwars trivia list (:issue:`2909`)
+- **Cogs - Trivia - Lists** - Fixed a typo in the Greek mythology trivia list regarding Hermes' staff (:issue:`2994`)
+- **Cogs - Trivia - Lists** - Fixed a question in the Overwatch trivia list that accepted blank responses (:issue:`2996`)
+- **Cogs - Trivia - Lists** - Fixed questions and answers that were incorrect in the Clash Royale trivia list (:issue:`3236`)
+
+
+.. _important-320-1:
+
+Developer changelog
+-------------------
+
+Breaking Changes
+****************
+
+- **Core** - Extension's ``setup()`` function should no longer assume that we are, or even will be connected to Discord (:issue:`3073`)
+
+ This also means that cog creators should no longer use ``bot.wait_until_ready()`` inside it
+- **Core - Bank** - Removed ``bank.MAX_BALANCE``, use `redbot.core.bank.get_max_balance()` from now on (:issue:`2926`)
+- **Core - Commands Package** - Reserved some command names for internal Red use. These are available programatically as ``redbot.core.commands.RESERVED_COMMAND_NAMES`` (:issue:`2973`)
+- **Core - Commands Package** - Qualified command names are limited to a maximum of 60 characters (:issue:`3223`)
+- **Core - Bot Class** - The main bot config is no longer directly accessible to cogs. New methods have been added for use where this is concerned (:issue:`2967`)
+
+ New methods for this include:
+
+ - `Red.get_shared_api_tokens()`
+ - `Red.set_shared_api_tokens()`
+ - `Red.get_embed_colour()` (and its alias - ``get_embed_color()``)
+ - `Red.get_admin_roles()`
+ - `Red.get_admin_role_ids()`
+ - `Red.get_mod_roles()`
+ - `Red.get_mod_role_ids()`
+- **Core - Bot Class** - Removed ``bot._counter``, Made a few more attributes private (``cog_mgr``, ``main_dir``) (:issue:`2976`)
+- **Core - Modlog** - Modlog casetypes no longer have an attribute for auditlog action type (:issue:`2897`)
+- **Core - Modlog** - Removed ``redbot.core.modlog.get_next_case_number()`` (:issue:`2908`)
+
+Additions
+*********
+
+- Added a few methods and classes replacing direct config access (which is no longer supported) (:issue:`2976`)
+
+ - `Red.allowed_by_whitelist_blacklist()`
+ - `Red.get_valid_prefixes()`
+ - `Red.remove_shared_api_tokens()`
+ - `redbot.core.commands.help.HelpSettings`
+- **Core - Bot Class** - Added the method `Red.wait_until_red_ready()` that waits until Red's post connection startup is done (:issue:`3273`)
+- **Core - Bot Class** - New event ``on_red_api_tokens_update`` is now dispatched when shared api keys for a service are updated (:issue:`3134`)
+- **Core - Config** - Added functions to acquire locks on Config groups and values. These locks are acquired by default when calling a value as a context manager. See `Value.get_lock()` for details (:issue:`2654`)
+- **Core - Config** - Added methods to Config for accessing things by id without mocked objects (:issue:`2804`)
+
+ - `Config.guild_from_id()`
+ - `Config.user_from_id()`
+ - `Config.role_from_id()`
+ - `Config.channel_from_id()`
+ - `Config.member_from_ids()`
+ - This one requires multiple ids, one for the guild, one for the user
+ - Consequence of discord's object model
+- **Core - Modlog** - Added ``redbot.core.modlog.get_latest_case()`` to fetch the case object for the most recent Modlog case (:issue:`2908`)
+- **Core - Utils Package** - Added `redbot.core.utils.chat_formatting.humanize_number()` function to convert numbers into text that respects the current locale (:issue:`2836`)
+- **Core - Utils Package** - Added the function `redbot.core.utils.chat_formatting.text_to_file()` to prepare a long text to be sent as a file (:issue:`2849`)
+- **Core - Utils Package** - Added ``use_cached`` and ``images_only`` kwargs to `redbot.core.utils.tunnel.Tunnel.files_from_attach()` (:issue:`2885`)
+- **Cogs - Audio** - New events dispatched by Audio (:issue:`2904`)
+
+ - ``on_red_audio_track_start(guild: discord.Guild, track: lavalink.Track, requester: discord.Member)``
+ - ``on_red_audio_track_end(guild: discord.Guild, track: lavalink.Track, requester: discord.Member)``
+ - ``on_red_audio_track_enqueue(guild: discord.Guild, track: lavalink.Track, requester: discord.Member)``
+ - ``on_red_audio_track_auto_play(guild: discord.Guild, track: lavalink.Track, requester: discord.Member)``
+ - ``on_red_audio_queue_end(guild: discord.Guild, track: lavalink.Track, requester: discord.Member)``
+ - ``on_red_audio_audio_disconnect(guild: discord.Guild)``
+ - ``on_red_audio_skip_track(guild: discord.Guild, track: lavalink.Track, requester: discord.Member)``
+
+Changes
+*******
+
+- **Core - Bot Class** - `Red.send_filtered()` now returns the message that is sent (:issue:`3052`)
+- **Core - Bot Class** - `Red.send_to_owners()` and `Red.get_owner_notification_destinations()` now log when they are not able to find the owner notification destination (:issue:`3273`)
+- **Core - Commands Package** - Allowed passing ``cls`` in the `redbot.core.commands.group()` decorator (:issue:`2881`)
+- **Core - Modlog** - Some generic modlog casetypes are now pre-registered for cog creator use (:issue:`2897`)
+
+Removals
+********
+
+- **Core - Utils Package** - Removed the functions ``safe_delete``, ``fuzzy_command_search``, ``format_fuzzy_results`` and ``create_backup`` from ``redbot.core.utils`` (:issue:`3240`)
+
+Fixes
+*****
+
+- **Core - Bank** - Bank functions now check the recipient balance before transferring and stop the transfer if the recipient's balance will go above the maximum allowed balance (:issue:`2923`)
+- **Core - Bot Class** - Fixed `Red.remove_command()` throwing an error when trying to remove a non-existent command (:issue:`2888`)
+- **Core - Bot Class** - Fixed ``is_automod_immune``'s handling of the guild check and added support for checking webhooks (:issue:`3100`)
+- **Core - Bot Class** - ``Red.owner_id`` is now set in the post connection startup (:issue:`3273`)
+- **Core - Bot Class** - `Red.send_to_owners()` and `Red.get_owner_notification_destinations()` now wait until Red is done with post connection startup to ensure owner ID is available (:issue:`3273`)
+- **Core - Commands Package** - `Command.can_see()` now works as intended for disabled commands (:issue:`2892`)
+- **Core - Commands Package** - Fixed ``Context.clean_prefix`` issues resulting from undocumented changes from discord (:issue:`3249`)
+- **Core - Utils Package** - Fixed `MessagePredicate.greater()` and `MessagePredicate.less()` allowing any valid int instead of only valid ints/floats that are greater/less than the given value (:issue:`3004`)
+- **Core - Utils Package** - Fixed an attribute error that can be raised in `redbot.core.utils.chat_formatting.humanize_timedelta()` if ``seconds = 0`` (:issue:`3231`)
+
+
+Documentation changes
+---------------------
+
+Additions
+*********
+
+- Started the user guides covering cogs and the user interface of the bot. This includes, for now, a "Getting started" guide (:issue:`1734`)
+- Added documentation for PM2 support (:issue:`2105`)
+- Updated linux install docs, adding sections for Fedora Linux, Debian/Raspbian Buster, and openSUSE (:issue:`2558`)
+- Created documentation covering what we consider a developer facing breaking change and the guarantees regarding them (:issue:`2882`)
+- Added notes explaining the best practices with config (:issue:`3149`)
+- Added a "Publishing cogs for V3" document explaining how to make user's cogs work with Downloader (:issue:`3234`)
+
+Changes
+*******
+
+- Reworded the virtual environment guide to make it sound less scary (:issue:`2920`)
+- Added more information about `redbot.core.utils.chat_formatting.humanize_timedelta()` into the docs (:issue:`2986`)
+- Added a direct link to the "Installing Red" section in "Installing using powershell and chocolatey" (:issue:`2995`)
+- Updated Git PATH install (Windows), capitalized some words, stopped mentioning the launcher (:issue:`2998`)
+- Added autostart documentation for Red users who installed Red inside of a virtual environment (:issue:`3005`)
+- Updated the Cog Creation guide with a note regarding the Develop version as well as the folder layout for local cogs (:issue:`3021`)
+- Added links to the getting started guide at the end of installation guides (:issue:`3025`)
+- Added proper docstrings to enums that show in drivers docs (:issue:`3035`)
+- Discord.py doc links will now always use the docs for the currently used version of discord.py (:issue:`3053`)
+- Added ``|DPY_VERSION|`` substitution that will automatically get replaced by the current discord.py version (:issue:`3053`, :issue:`3082`)
+- Added MS Azure to the host list (:issue:`3083`)
+- Added information about ``info.json``'s ``min_python_version`` key in Downloader Framework docs (:issue:`3124`)
+- Documented additional attributes in Context (:issue:`3151`)
+- Updated Windows docs with up to date dependency instructions (:issue:`3188`)
+- Added a line about setuptools and wheel (:issue:`3262`)
+- Ensured development builds are not advertised to the wrong audience (:issue:`3292`)
+- Clarified the usage intent of some of the chat formatting functions (:issue:`3292`)
+
+Removals
+********
+
+- Removed API References for Downloader (:issue:`3234`)
+
+Fixes
+*****
+
+- Fixed the user parameter being labeled as ``discord.TextChannel`` instead of ``discord.abc.User`` in ``redbot.core.utils.predicates`` (:issue:`2914`)
+- Driver docs no longer show twice (:issue:`2972`)
+- Added missing descriptions for function returns (:issue:`3054`)
+- Fixed broken docs for ``redbot.core.commands.Context.react_quietly`` (:issue:`3257`)
+- Updated the docs footer copyright to 2018-2019 (:issue:`3105`)
+- Updated copyright notices on License and RTD config to 2020 (:issue:`3259`)
+
+----
+
+Redbot 3.1.9 (2020-01-08)
+=========================
+
+This is a maintenance release patching a denial of service issue with Audio.
+
+----
+
+Redbot 3.1.8 (2019-11-19)
+=========================
+
+This is a hotfix release updating discord.py to fix a full bot crash when emoji reaction is added/removed.
+This was caused by Discord API changes.
+
+----
+
+Redbot 3.1.7 (2019-11-05)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`mikeshardmind`
+
+End-user changelog
+------------------
+
+Changes
+*******
+
+- **Cogs - Audio** - Improved handling of user facing errors (`989e16b `__)
+
+Fixes
+*****
+
+- **Core - Dependencies** - Added partial mitigation for issues with running Red on Python 3.8 (`1c64abe `__)
+- **Cogs - Audio** - Fixed issues with SoundCloud playback (`989e16b `__)
+
+----
+
+Redbot 3.1.6 (2019-10-18)
+=========================
+
+This is a hotfix release updating discord.py for a critical issue related to voice connections.
+
+----
+
+Redbot 3.1.5 (2019-07-31)
+=========================
+
+This is a maintenance release fixing issues with playback of YouTube tracks.
+
+----
+
+Redbot 3.1.4 (2019-07-16)
+=========================
+
+This is a hotfix release fixing issues with broken custom commands and modlog cases.
+
+----
+
+Redbot 3.1.3 (2019-07-14)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`Bakersbakebread`, :ghuser:`DevilXD`, :ghuser:`DiscordLiz`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`kennnyshiwa`, :ghuser:`Kowlin`, :ghuser:`lizzyd710`, :ghuser:`MeatyChunks`, :ghuser:`mikeshardmind`, :ghuser:`NeuroAssassin`, :ghuser:`PredaaA`, :ghuser:`retke`, :ghuser:`Tobotimus`, :ghuser:`yamikaitou`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core - Bot Commands** - Added new settings for the invite returned by ``[p]invite`` command (:issue:`1847`)
+
+ - ``[p]inviteset public`` - Defines if the command should be accessible for users that aren't bot owners.
+ - ``[p]inviteset perms`` - Sets permissions for bot's managed role that can get created automatically when bot is invited.
+
+ For more information, see help of each of the listed commands.
+- **Cogs - Audio** - Added a ``[p]eq`` command group that allows to manage the Audio equalizer (:issue:`2787`, :issue:`2813`)
+- **Cogs - Audio** - Added a ``[p]summon`` command that summons the bot to the voice channel (:issue:`2786`)
+
+Changes
+*******
+
+- **Core** - A server can now have multiple admin and mod roles (:issue:`2783`)
+- **Core - Dependencies** - Improved overall performance on Linux and Mac systems by swapping asyncio loop implementation to uvloop (:issue:`2819`)
+- **Cogs - Audio** - Added support for armv6l, aarch32, and aarch64 architectures (:issue:`2755`)
+- **Cogs - Audio** - Improved error handling and added retrying to jar download and Lavalink connection (:issue:`2764`)
+- **Cogs - Audio** - Internal Lavalink manager now accepts any jar with a build number greater than or equal to our release build (:issue:`2656`, :issue:`2785`)
+- **Cogs - Audio** - Increased Lavalink connection timeout to 50 seconds to ensure Lavalink manages to start before the time runs out on lower-end devices (:issue:`2784`)
+- **Cogs - Filter** - Updated name filtering to be consistent with message content filtering (:issue:`2740`, :issue:`2794`)
+- **Cogs - Mod** - ``[p]userinfo`` command now mentions the roles the user has (:issue:`2759`)
+- **Cogs - Modlog** - Improved efficiency of case storage (:issue:`2766`)
+
+Fixes
+*****
+
+- **Core** - Fixed broken fuzzy help (:issue:`2768`)
+- **Core** - Fixed a race condition that could allow a user to run commands they are denied to run by Permissions cog for a short moment before the cog is loaded (:issue:`2857`)
+- **Core - Bot Commands** - ``[p]command disable`` and its subcommands now ensure that the command to disable is not ``[p]command`` or any of its subcommands to prevent lockout (:issue:`2770`)
+- **Core - Bot Commands** - Fixed an issue with error message being sent multiple times when help command was unable to DM the user (:issue:`2790`)
+- **Core - Bot Commands** - Fixed broken link in help of ``[p]set color`` (:issue:`2715`, :issue:`2803`)
+- **Core - Bot Commands** - Fixed user output and exception handling on cog load/reload (:issue:`2767`)
+- **Core - Help** - Fixed substitution of ``[p]`` in command descriptions in non-embedded help output (:issue:`2846`)
+- **Cogs - Audio** - Added missing bot permission checks to commands in Audio cog (:issue:`2756`)
+- **Cogs - Audio** - Fixed an issue with jar downloading on mixed-filesystem environments (:issue:`2682`, :issue:`2765`)
+- **Cogs - Audio** - Fixed an issue with ``[p]playlist copy`` and ``[p]playlist queue`` failing when the prefix contains certain characters (:issue:`2788`, :issue:`2789`)
+- **Cogs - Audio** - Fixed an issue that caused ``[p]shuffle`` and ``[p]repeat`` to send an error message when the user is not in the voice channel (:issue:`2811`, :issue:`2812`, :issue:`2842`)
+- **Cogs - Filter** - Fixed caching issue that caused filter to use an old list of words to filter (:issue:`2810`)
+- **Cogs - Permissions** - Commands for adding/removing rules in ``[p]permissions`` command group now no longer ignore invalid arguments (:issue:`2851`, :issue:`2865`)
+- **Cogs - Trivia - Lists** - Fixed answers for Beethoven-related questions in ``entertainment`` trivia list (:issue:`2318`, :issue:`2823`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core** - Added ``UserFeedbackCheckFailure`` (:issue:`2761`)
+- **Core - Bank** - Added `redbot.core.bank.cost()` (:issue:`2761`)
+- **Core - Commands Package** - Added (optional) ``default_unit`` keyword argument to `TimedeltaConverter` (:issue:`2753`)
+- **Core - Commands Package** - Added `Context.react_quietly()` (:issue:`2834`)
+
+Fixes
+*****
+
+- **Core - Config** - Fixed cache issues with Config when the developer accidentally tries to set an object that isn't JSON serializable (:issue:`2793`, :issue:`2796`)
+- **Core - Config** - Fixed an issue with identifiers that contain ``$`` or ``.`` which has caused a KeyError exception regardless of whether such key existed in the data (:issue:`2832`)
+
+
+Documentation changes
+---------------------
+
+Changes
+*******
+
+- Added a warning about the PATH changes to Windows install guide (:issue:`2791`)
+
+Fixes
+*****
+
+- Fixed code examples in Bank, Config, and ModLog API documentation (:issue:`2775`, :issue:`2780`, :issue:`2860`)
+- Fixed the code example for the documentation of `Command.error` decorator and added a note with clarifications (:issue:`2760`)
+
+----
+
+Redbot 3.1.2 (2019-05-31)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`bren0xa`, :ghuser:`DevilXD`, :ghuser:`DiscordLiz`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`mikeshardmind`, :ghuser:`NeuroAssassin`, :ghuser:`palmtree5`, :ghuser:`PredaaA`, :ghuser:`retke`, :ghuser:`Stonedestroyer`, :ghuser:`Tobotimus`, :ghuser:`yamikaitou`, :ghuser:`zephyrkul`
+
+End-user changelog
+------------------
+
+Additions
+*********
+
+- **Core** - Added a generic system that can be used by cog creators to send notifications meant for bot owners (:issue:`2665`, :issue:`2738`, :issue:`2745`)
+- **Core - Bot Commands** - Added ``[p]debuginfo`` command (:issue:`2728`)
+
+ This comes with some commands that allow to manage the destinations for the owner notifications.
+ See the help of commands in ``[p]set ownernotifications`` command group for more information.
+- **Core - Help** - Added a few new settings for bot's help (:issue:`2667`, :issue:`2681`, :issue:`2676`)
+
+ - ``[p]helpset usemenus`` - Allows the help command to be sent as a paginated menu.
+ - ``[p]helpset showhidden`` - Allows the help command to show hidden commands.
+ - ``[p]helpset verifychecks`` - Sets if commands which can't be run in the current context should be filtered from help.
+ - ``[p]helpset verifyexists`` - Allows the bot to respond indicating the existence of a specific help topic even if the user can't use it.
+
+ For more information, see help of each of the listed commands.
+- **Cogs - Mod** - Added ``[p]slowmode`` command (:issue:`2734`)
+
+Changes
+*******
+
+- **Core - Bot Commands** - ``[p]load``, ``[p]unload``, and ``[p]reload`` commands now strip commas from the passed cogs to aid with copy-pasting (:issue:`2693`)
+- **Core - Bot Commands** - Improved naming consistency of subcommands that *delete* something (:issue:`2731`)
+- **Core - Bot Commands** - ``[p]set api`` command now allows the user to separate their keys and values with space in addition to commas and semicolons (:issue:`2692`)
+- **Cogs - Downloader** - ``[p]pipinstall`` now indicates that it's doing something (:issue:`2700`)
+- **Cogs - Mod** - ``[p]names`` command no longer requires quoting usernames that contain spaces (:issue:`2675`)
+- **Cogs - Mod** - ``[p]userinfo`` command now mentions the voice channel the user is in (:issue:`2680`)
+
+Fixes
+*****
+
+- **Core** - Fixed update notification for bots that have co-owners (:issue:`2677`)
+- **Core** - Fixed an issue where bad user input didn't result in the bot sending help for the command (:issue:`2707`)
+- **Core - Help** - Fixed an issue with incorrect subcommand descriptions being shown in non-embed help (:issue:`2678`)
+- **Core - Help** - Fixed help for commands with no docstring (:issue:`2415`, :issue:`2722`)
+- **Core - Help** - Help menu no longer blocks settings preview in command groups like ``[p]set`` (:issue:`2712`, :issue:`2725`)
+- **Core - Bot Commands** - Fixed few more issues with help command (:issue:`2676`)
+- **Core - Bot Commands** - Fixed error handling in ``[p]load`` command (:issue:`2686`, :issue:`2688`)
+- **Core - Bot Commands** - Fixed an issue with long cog descriptions in help command (:issue:`2730`)
+- **Core - Command-line Interfaces** - Fixed ``redbot-setup delete`` command failing to delete data path (:issue:`2709`)
+- **Cogs - Downloader** - Fixed problems with installing a cog again after uninstalling (:issue:`2685`, :issue:`2690`)
+- **Cogs - General** - Fixed ``[p]urban`` command failure for very long phrase definitions (:issue:`2683`, :issue:`2684`)
+- **Cogs - General** - Fixed issues with ``[p]gif`` and ``[p]gifr`` commands. The bot owner now needs to provide an API key in order to use these commands (:issue:`2653`)
+- **Cogs - Streams** - Fixed an issue with stream commands not properly dealing with stream reruns (:issue:`2679`)
+- **Cogs - Streams** - Fixed a regression that caused stream alerts for non-Twitch users to not work anymore (:issue:`2724`, :issue:`2699`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Bot Class** - Added `Red.send_to_owners()` and `Red.get_owner_notification_destinations()` (:issue:`2665`, :issue:`2738`)
+- **Core - Commands Package** - Added `DictConverter` (:issue:`2692`)
+- **Core - Commands Package** - Added `TimedeltaConverter` and `parse_timedelta()` (:issue:`2736`)
+- **Core - Commands Package** - Added ``assume_yes`` attribute to `redbot.core.commands.Context` (:issue:`2746`)
+
+Changes
+*******
+
+- **Core - Utils Package** - `menu()` now accepts `functools.partial` (:issue:`2718`, :issue:`2720`)
+
+----
+
+Redbot 3.1.1 (2019-05-15)
+=========================
+
+This is a hotfix release fixing issues related to fuzzy command search that were happening with the new help formatter.
+
+----
+
+Redbot 3.1.0 (2019-05-15)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`aikaterna`, :ghuser:`bobloy`, :ghuser:`calebj`, :ghuser:`DiscordLiz`, :ghuser:`EgonSpengler`, :ghuser:`entchen66`, :ghuser:`FixedThink`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`kennnyshiwa`, :ghuser:`Kowlin`, :ghuser:`lionirdeadman`, :ghuser:`mikeshardmind`, :ghuser:`NeuroAssassin`, :ghuser:`NIXC`, :ghuser:`palmtree5`, :ghuser:`PredaaA`, :ghuser:`retke`, :ghuser:`Seputaes`, :ghuser:`Sitryk`, :ghuser:`tekulvw`, :ghuser:`Tobotimus`, :ghuser:`TrustyJAID`, :ghuser:`Twentysix26`, :ghuser:`zephyrkul`
+
+End-user changelog
+------------------
+
+Known Issues
+************
+
+- **Core - Bot Commands** - Backup support for Mongo is currently broken (:issue:`2579`)
+
+Additions
+*********
+
+- **Core - Bot Commands** - Added new ``[p]datapath`` command that prints the bot's data path (:issue:`2652`)
+- **Core - Command-line Interfaces** - Added ``redbot-setup convert`` command which can be used to convert between data backends (:issue:`2579`)
+- **Cogs - Audio** - Added Spotify support (:issue:`2328`)
+- **Cogs - Audio** - ``[p]local folder`` now accepts folder name as (optional) argument (:issue:`2457`)
+- **Cogs - Audio** - Added track length restriction (:issue:`2465`)
+- **Cogs - Audio** - Added option for disconnection at queue end, see ``[p]audioset dc`` (:issue:`2472`)
+- **Cogs - Audio** - Added ``[p]queue clean`` and ``[p]queue clear`` (:issue:`2476`)
+- **Cogs - Audio** - Added ``[p]playlist download`` (:issue:`2482`)
+- **Cogs - Mod** - Added the command ``[p]voicekick`` to kick members from a voice channel with optional modlog case (:issue:`2639`)
+- **Cogs - Streams** - Added support for setting custom stream alert messages per server (:issue:`2600`)
+- **Cogs - Streams** - Added ability to exclude Twitch stream reruns (:issue:`2620`)
+
+Changes
+*******
+
+- **Core** - Error messages about cooldowns will now show more friendly representation of cooldown's expiration time (:issue:`2412`)
+- **Core** - Cooldown messages are now auto-deleted after cooldown expiration expired (:issue:`2469`)
+- **Core** - Updated Mongo driver to support large guilds (:issue:`2536`)
+- **Core - Command-line Interfaces** - ``redbot --version`` will now give you current version of Red (:issue:`2567`)
+- **Core - Help** - Redesigned help and its formatter (:issue:`2628`)
+- **Cogs - Audio** - Changed ``[p]pause`` to a toggle (:issue:`2461`)
+- **Cogs - Audio** - Removed command aliases (``dc``, ``np``, ``n``, ``song``, ``track``, ``q``, ``forceskip``, ``fs``, ``s``) (:issue:`2462`)
+- **Cogs - Audio** - ``[p]seek`` command can now seek to position (:issue:`2470`)
+- **Cogs - Audio** - Audio now matches Red V2 behavior for changing voice channels (:issue:`2521`)
+- **Cogs - Downloader** - The ``[p]cog install`` command will not allow to install cogs which aren't suitable for installed version of Red anymore (:issue:`2605`)
+- **Cogs - Downloader** - The ``[p]cog install`` command will now tell the user that cog has to be loaded after the install (:issue:`2523`)
+- **Cogs - Downloader** - The ``[p]cog uninstall`` command allows to uninstall multiple cogs now (:issue:`2592`)
+- **Cogs - Filter** - Significantly improved performance of Filter cog on large servers (:issue:`2509`)
+- **Cogs - Mod** - Admins can now decide how many times message has to be repeated before cog's ``deleterepeats`` functionality removes it (:issue:`2437`)
+- **Cogs - Permissions** - Removed ``[p]p`` alias for ``[p]permissions`` command (:issue:`2467`)
+- **Cogs - Streams** - Twitch stream reruns are now marked as reruns in embed title (:issue:`2620`)
+
+Removals
+********
+
+- **Cogs - DataConverter** - DataConverter has been completely removed from Red (:issue:`2554`)
+
+Fixes
+*****
+
+- **Core - Bot Commands** - Fixed local blacklist/whitelist management commands (:issue:`2531`)
+- **Core - Bot Commands** - ``[p]set locale`` now only accepts actual locales (:issue:`2553`)
+- **Core - Bot Commands** - ``[p]listlocales`` now includes ``en-US`` locale (:issue:`2553`)
+- **Core - Command-line Interfaces** - Fixed the list of available extras in the ``redbot-launcher`` (:issue:`2588`)
+- **Core - i18n** - Changed default locale from ``en`` to ``en-US`` (:issue:`2642`)
+- **Cogs - Audio** - Fixed ``[p]audioset status`` (:issue:`2481`)
+- **Cogs - Audio** - Fixed an issue where queuing song from ``[p]search`` command did not do anything (:issue:`2513`)
+- **Cogs - Audio** - Bot will no longer complain about permissions when trying to connect to user-limited channel, if it has "Move Members" permission (:issue:`2525`)
+- **Cogs - Audio** - Fixed an issue on ``[p]audiostats`` command that occurred when there were more than 20 servers to display (:issue:`2533`)
+- **Cogs - Audio** - Fixed the link shown by ``[p]prev`` command (:issue:`2556`)
+- **Cogs - Audio** - Fixed an issue with ``[p]playlist queue`` that occurred when the bot was connected but wasn't playing anything (:issue:`2586`)
+- **Cogs - Audio** - Fixed an issue with setting DJ role in ``[p]audioset dj`` command (:issue:`2606`)
+- **Cogs - Downloader** - Fixed a bug that caused Downloader to include submodules on cog list (:issue:`2590`)
+- **Cogs - Downloader** - The error message sent by ``[p]cog install`` when required libraries fail to install is now properly formatted (:issue:`2576`)
+- **Cogs - Downloader** - The ``[p]cog uninstall`` command will now remove cog from installed cogs list even if it can't find the cog in install path anymore (:issue:`2595`)
+- **Cogs - Mod** - Fixed ``[p]ban`` not allowing to omit ``days`` argument (:issue:`2602`)
+- **Cogs - Trivia - Lists** - Fixed dead image link for Sao Tome and Principe flag in ``worldflags`` trivia (:issue:`2540`)
+
+
+Developer changelog
+-------------------
+
+Breaking Changes
+****************
+
+- **Core - Config** - We now record custom group primary key lengths in the core config object (:issue:`2550`)
+- **Cogs - Downloader** - Cog Developers now have to use ``min_bot_version`` key instead of ``bot_version`` to specify minimum version of Red supported by the cog in ``info.json``, see more information in :ref:`info-json-format` (:issue:`2605`)
+
+Additions
+*********
+
+- **Core** - Added a ``on_message_without_command`` event that is dispatched when bot gets an event for a message that doesn't contain a command (:issue:`2338`)
+- **Core - Config** - Introduced `Config.init_custom()` method (:issue:`2545`)
+- **Core - Utils Package** - Added `chat_formatting.humanize_timedelta()` (:issue:`2412`)
+- **Cogs - Downloader** - Added ``max_bot_version`` key to ``info.json`` that allows to specify maximum supported version of Red supported by the cog in ``info.json``, see more information in :ref:`info-json-format`. (:issue:`2605`)
+
+Changes
+*******
+
+- **Core** - Usage of ``yaml.load`` will now warn about its security issues (:issue:`2326`)
+- **Core - Config** - Migrated internal UUIDs to maintain cross platform consistency (:issue:`2604`)
+- **Core - Utils Package** - Improved error handling of empty lists in `chat_formatting.humanize_list()` (:issue:`2597`)
+- **Core - Dependencies** - Red is now no longer vendoring discord.py and installs it from PyPI (:issue:`2587`)
+- **Core - Dependencies** - Upgraded discord.py dependency to version 1.0.1 (:issue:`2587`)
+
+Fixes
+*****
+
+- **Core - Utils Package** - Fixed spelling of the `Tunnel`'s method from ``files_from_attatch()`` to `files_from_attach() `; old name was left for backwards compatibility (:issue:`2496`)
+- **Core - Utils Package** - Fixed behavior of ``Tunnel.react_close()`` - now when tunnel closes, the message will be sent to the other end (:issue:`2507`)
+
+----
+
+Redbot 3.0.2 (2019-02-24)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`Tobotimus`, :ghuser:`ZeLarpMaster`
+
+End-user changelog
+------------------
+
+Fixes
+*****
+
+- **Cogs - Permissions** - Fixed rules loading for cogs (`431cdf1 `__)
+- **Cogs - Trivia - Lists** - Fixed a typo in ``cars`` trivia (:issue:`2475`)
+
+----
+
+Redbot 3.0.1 (2019-02-17)
+=========================
+
+| Thanks to all these amazing people that contributed to this release:
+| :ghuser:`calebj`, :ghuser:`DiscordLiz`, :ghuser:`mikeshardmind`, :ghuser:`PredaaA`, :ghuser:`Redjumpman`, :ghuser:`Tobotimus`, :ghuser:`Twentysix26`, :ghuser:`ZeLarpMaster`, :ghuser:`zephyrkul`
+
+End-user changelog
+------------------
+
+Changes
+*******
+
+- **Core - Bot Commands** - Improve some of the core commands to not require double quotes for arguments with spaces, if they're the last argument required by the command (:issue:`2407`)
+- **Core - Bot Commands** - Using ``[p]load`` command now sends help message when it's used without arguments (:issue:`2432`)
+- **Cogs - Downloader** - The ``[p]pipinstall`` command now sends help message when it's used without arguments (`eebed27 `__)
+- **Cogs - Mod** - Usernames and nicknames listed in ``[p]names`` and ``[p]userinfo`` commands now have the spoiler markdown escaped (:issue:`2401`)
+- **Cogs - Modlog** - Usernames listed in modlog cases now have the spoiler markdown escaped (:issue:`2401`)
+- **Cogs - Warnings** - Members can now also be passed with username, nickname, or user mention to ``[p]warnings`` and ``[p]unwarn`` commands (:issue:`2403`, :issue:`2404`)
+
+Fixes
+*****
+
+- **Core** - Messages sent interactively (i.e. prompting user whether they would like to view the next message) now no longer cause errors if bot's prompt message gets removed by other means (:issue:`2380`, :issue:`2447`)
+- **Core - Bot Commands** - Fixed error in ``[p]servers`` command that was happening when bot's prompt message was deleted before the prompt time was over (:issue:`2400`)
+- **Core - Command-line Interfaces** - Fixed behavior of CLI arguments in ``redbot-launcher`` (:issue:`2432`)
+- **Cogs - Audio** - Fixed issues with setting external Lavalink (:issue:`2306`, :issue:`2460`)
+- **Cogs - Audio** - Audio now cleans up zombie players from guilds it's no longer in (:issue:`2414`)
+- **Cogs - Downloader** - Fixed issues with cloning that happened if instance's data path had spaces (:issue:`2421`)
+- **Cogs - Mod** - ``[p]userinfo`` now accounts for guild's lurkers (:issue:`2406`, :issue:`2426`)
+- **Cogs - Permissions** - Fixed rule precedence issues for default rules (:issue:`2313`, :issue:`2422`)
+
+
+Developer changelog
+-------------------
+
+Additions
+*********
+
+- **Core - Utils Package** - Added `escape_spoilers()` and `escape_spoilers_and_mass_mentions()` methods for escaping strings with spoiler markdown (:issue:`2401`)
+
+Fixes
+*****
+
+- **Core - Utils Package** - ``MessagePredicate.lower_contained_in()`` now actually lowers the message content before trying to match (:issue:`2399`)
+
+----
+
+Redbot 3.0.0 (2019-01-28)
+=========================
+
+First stable release of Red V3.
+Changelogs for this and previous versions can be found on `our GitHub releases page `__.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/CONTRIBUTING.md b/testbed/Cog-Creators__Red-DiscordBot/CONTRIBUTING.md
new file mode 100644
index 0000000000000000000000000000000000000000..a0682cafd90c2914224d436369e927dabd17c038
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/CONTRIBUTING.md
@@ -0,0 +1,159 @@
+# Contents
+* [1. Introduction](#1-introduction)
+ * [1.1 Why do these guidelines exist?](#11-why-do-these-guidelines-exist)
+ * [1.2 What kinds of contributions are we looking for?](#12-what-kinds-of-contributions-are-we-looking-for)
+* [2. Ground Rules](#2-ground-rules)
+* [3. Your First Contribution](#3-your-first-contribution)
+* [4. Getting Started](#4-getting-started)
+ * [4.1 Setting up your development environment](#41-setting-up-your-development-environment)
+ * [4.2 Testing](#42-testing)
+ * [4.3 Style](#43-style)
+ * [4.4 Make](#44-make)
+ * [4.5 Keeping your dependencies up to date](#45-keeping-your-dependencies-up-to-date)
+ * [4.6 To contribute changes](#46-to-contribute-changes)
+ * [4.7 How To Report A Bug](#47-how-to-report-a-bug)
+ * [4.8 How To Suggest A Feature Or Enhancement](#48-how-to-suggest-a-feature-or-enhancement)
+* [5. Code Review Process](#5-code-review-process)
+ * [5.1 Issues](#51-issues)
+ * [5.2 Pull Requests](#52-pull-requests)
+ * [5.3 Differences between "new features" and "improvements"](#53-differences-between-new-features-and-improvements)
+* [6. Community](#6-community)
+
+# 1. Introduction
+**Welcome!** First off, thank you for contributing to the further development of Red. We're always looking for new ways to improve our project and we appreciate any help you can give us.
+
+### 1.1 Why do these guidelines exist?
+Red is an open source project. This means that each and every one of the developers and contributors who have helped make Red what it is today have done so by volunteering their time and effort. It takes a lot of time to coordinate and organize issues and new features and to review and test pull requests. By following these guidelines you will help the developers streamline the contribution process and save them time. In doing so we hope to get back to each and every issue and pull request in a timely manner.
+
+### 1.2 What kinds of contributions are we looking for?
+We love receiving contributions from our community. Any assistance you can provide with regards to bug fixes, feature enhancements, and documentation is more than welcome.
+
+# 2. Ground Rules
+1. Ensure cross compatibility for Windows, Mac OS and Linux.
+2. Ensure all Python features used in contributions exist and work in Python 3.8.1 and above.
+3. Create new tests for code you add or bugs you fix. It helps us help you by making sure we don't accidentally break anything :grinning:
+4. Create any issues for new features you'd like to implement and explain why this feature is useful to everyone and not just you personally.
+5. Don't add new cogs unless specifically given approval in an issue discussing said cog idea.
+6. Be welcoming to newcomers and encourage diverse new contributors from all backgrounds. See [Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/).
+
+# 3. Your First Contribution
+Unsure of how to get started contributing to Red? Please take a look at the Issues section of this repo and sort by the following labels:
+
+* beginner - issues that can normally be fixed in just a few lines of code and maybe a test or two.
+* help-wanted - issues that are currently unassigned to anyone and may be a bit more involved/complex than issues tagged with beginner.
+
+**Working on your first Pull Request?** You can learn how from this *free* series [How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github)
+
+At this point you're ready to start making changes. Feel free to ask for help; everyone was a beginner at some point!
+
+# 4. Getting Started
+
+Red's repository is configured to follow a particular development workflow, using various reputable tools. We kindly ask that you stick to this workflow when contributing to Red, by following the guides below. This will help you to easily produce quality code, identify errors early, and streamline the code review process.
+
+### 4.1 Setting up your development environment
+The following requirements must be installed prior to setting up:
+ - Python 3.8.1 or greater
+ - git
+ - pip
+
+If you're not on Windows, you should also have GNU make installed, and you can optionally install [pyenv](https://github.com/pyenv/pyenv), which can help you run tests for different python versions.
+
+1. Fork and clone the repository to a directory on your local machine.
+2. Open a command line in that directory and execute the following command:
+ ```bash
+ make newenv
+ ```
+ Red, its dependencies, and all required development tools, are now installed to a virtual environment located in the `.venv` subdirectory. Red is installed in editable mode, meaning that edits you make to the source code in the repository will be reflected when you run Red.
+3. Activate the new virtual environment with one of the following commands:
+ - Posix:
+ ```bash
+ source .venv/bin/activate
+ ```
+ - Windows:
+ ```powershell
+ .venv\Scripts\activate
+ ```
+ Each time you open a new command line, you should execute this command first. From here onwards, we will assume you are executing commands from within this activated virtual environment.
+
+**Note:** If you're comfortable with setting up virtual environments yourself and would rather do it manually, just run `pip install -Ur tools/dev-requirements.txt` after setting it up.
+
+### 4.2 Testing
+We're using [tox](https://github.com/tox-dev/tox) to run all of our tests. It's extremely simple to use, and if you followed the previous section correctly, it is already installed to your virtual environment.
+
+Currently, tox does the following, creating its own virtual environments for each stage:
+- Runs all of our unit tests with [pytest](https://github.com/pytest-dev/pytest) on python 3.8 (test environment `py38`)
+- Ensures documentation builds without warnings, and all hyperlinks have a valid destination (test environment `docs`)
+- Ensures that the code meets our style guide with [black](https://github.com/psf/black) (test environment `style`)
+
+To run all of these tests, just run the command `tox` in the project directory.
+
+To run a subset of these tests, use the command `tox -e `, where `` is the test environment you want tox to run. The test environments are noted in the dot points above.
+
+Your PR will not be merged until all of these tests pass.
+
+### 4.3 Style
+Our style checker of choice, [black](https://github.com/psf/black), actually happens to be an auto-formatter. The checking functionality simply detects whether or not it would try to reformat something in your code, should you run the formatter on it. For this reason, we recommend using this tool as a formatter, regardless of any disagreements you might have with the style it enforces.
+
+Use the command `black --help` to see how to use this tool. The full style guide is explained in detail on [black's GitHub repository](https://github.com/psf/black). **There is one exception to this**, however, which is that we set the line length to 99, instead of black's default 88. This is already set in `pyproject.toml` configuration file in the repo so you can simply format code with Black like so: `black `.
+
+### 4.4 Make
+You may have noticed we have a `Makefile` and a `make.bat` in the top-level directory. For now, you can do a few things with them:
+1. `make reformat`: Reformat all python files in the project with Black
+2. `make stylecheck`: Check if any `.py` files in the project need reformatting
+3. `make newenv`: Set up a new virtual environment in the `.venv` subdirectory, and install Red and its dependencies. If one already exists, it is cleared out and replaced.
+4. `make syncenv`: Sync your environment with Red's latest dependencies.
+
+The other make recipes are most likely for project maintainers rather than contributors.
+
+You can specify the Python executable used in the make recipes with the `PYTHON` environment variable, e.g. `make PYTHON=/usr/bin/python3.8 newenv`.
+
+### 4.5 Keeping your dependencies up to date
+Whenever you pull from upstream (V3/develop on the main repository) and you notice either of the files `setup.cfg` or `tools/dev-requirements.txt` have been changed, it can often mean some package dependencies have been updated, added or removed. To make sure you're testing and formatting with the most up-to-date versions of our dependencies, run `make syncenv`. You could also simply do `make newenv` to install them to a clean new virtual environment.
+
+### 4.6 To contribute changes
+
+1. Create a new branch on your fork
+2. Make the changes
+3. If you like the changes and think the main Red project could use it:
+ * Run tests with `tox` to ensure your code is up to scratch
+ * Create a Pull Request on GitHub with your changes
+ - If you are contributing a behavior change, please keep in mind that behavior changes
+ are conditional on them being appropriate for the project's current goals.
+ If you would like to reduce the risk of putting in effort for something we aren't
+ going to use, open an issue discussing it first.
+
+### 4.7 How To Report A Bug
+Please see our **ISSUES.MD** for more information.
+
+### 4.8 How To Suggest A Feature Or Enhancement
+The goal of Red is to be as useful to as many people as possible, this means that all features must be useful to anyone and any server that uses Red.
+
+If you find yourself wanting a feature that Red does not already have, you're probably not alone. There's bound to be a great number of users out there needing the same thing and a lot of the features that Red has today have been added because of the needs of our users. Open an issue on our issues list and describe the feature you would like to see, how you would use it, how it should work, and why it would be useful to the Red community as a whole.
+
+# 5. Code Review Process
+
+We have a core team working tirelessly to implement new features and fix bugs for the Red community. This core team looks at and evaluates new issues and PRs on a daily basis.
+
+The decisions we make are based on a simple majority of that team or by decree of the project owner.
+
+### 5.1 Issues
+Any new issues will be looked at and evaluated for validity of a bug or for the usefulness of a suggested feature. If we have questions about your issue we will get back as soon as we can (usually in a day or two) and will try to make a decision within a week.
+
+### 5.2 Pull Requests
+Pull requests are evaluated by their quality and how effectively they solve their corresponding issue. The process for reviewing pull requests is as follows:
+
+1. A pull request is submitted
+2. Core team members will review and test the pull request (usually within a week)
+3. After a member of the core team approves your pull request:
+ * If your pull request is considered an improvement or enhancement the project owner will have 1 day to veto or approve your pull request.
+ * If your pull request is considered a new feature the project owner will have 1 week to veto or approve your pull request.
+4. If any feedback is given we expect a response within 1 week or we may decide to close the PR.
+5. If your pull request is not vetoed and no core member requests changes then it will be approved and merged into the project.
+
+### 5.3 Differences between "new features" and "improvements"
+The difference between a new feature and improvement can be quite fuzzy and the project owner reserves all rights to decide under which category your PR falls.
+
+At a very basic level a PR is a new feature if it changes the intended way any part of the Red project currently works or if it modifies the user experience (UX) in any significant way. Otherwise, it is likely to be considered an improvement.
+
+# 6. Community
+You can chat with the core team and other community members about issues or pull requests in the #coding channel of the Red support server located [here](https://discord.gg/red).
diff --git a/testbed/Cog-Creators__Red-DiscordBot/LICENSE b/testbed/Cog-Creators__Red-DiscordBot/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..ab11b148487fcf8e60534b07fda9103c1174d6b0
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/LICENSE
@@ -0,0 +1,707 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ Red - A fully customizable Discord bot
+ Copyright (C) 2017-present Cog Creators
+ Copyright (C) 2015-2017 Twentysix
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Red-DiscordBot Copyright (C) 2017-present Cog Creators
+ Red-DiscordBot Copyright (C) 2015-2017 Twentysix
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
+
+The Red-DiscordBot project contains subcomponents in audio.py that have a
+separate copyright notice and license terms. Your use of the source code for
+these subcomponents is subject to the terms and conditions of the following
+licenses.
+
+This product bundles methods from https://github.com/Just-Some-Bots/MusicBot/
+blob/master/musicbot/spotify.py which are available under an MIT license.
+
+Copyright (c) 2015-2018 Just-Some-Bots (https://github.com/Just-Some-Bots)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+This project vendors discord.ext.menus package (https://github.com/Rapptz/discord-ext-menus) made by Danny Y. (Rapptz) which is distributed under MIT License.
+Copy of this license can be found in discord-ext-menus.LICENSE file in redbot/vendored folder of this repository.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/MANIFEST.in b/testbed/Cog-Creators__Red-DiscordBot/MANIFEST.in
new file mode 100644
index 0000000000000000000000000000000000000000..10bddfaa1c443dee8b2924b6bfc9fbbe7fe75ad4
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/MANIFEST.in
@@ -0,0 +1,33 @@
+# include license files
+include LICENSE
+recursive-include redbot *.LICENSE
+
+# include requirements files
+include requirements/base.in
+include requirements/base.txt
+include requirements/extra-*.in
+include requirements/extra-*.txt
+
+# include locale files
+recursive-include redbot locales/*.po
+
+# include data folders for cogs
+recursive-include redbot/**/data *
+
+# include *.export files from the test fixtures
+recursive-include redbot *.export
+
+# include the py.typed file informing about Red being typed
+recursive-include redbot py.typed
+
+# include *.sql files from postgres driver
+recursive-include redbot/core/drivers/postgres *.sql
+
+# include tests
+graft tests
+
+# include tox configuration
+include tox.ini
+
+# exclude files containing byte-code and compiled libs
+global-exclude *.py[cod]
diff --git a/testbed/Cog-Creators__Red-DiscordBot/Makefile b/testbed/Cog-Creators__Red-DiscordBot/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..0f92df923e4533aaa0453b0cfa679c9762b9ec22
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/Makefile
@@ -0,0 +1,62 @@
+.DEFAULT_GOAL := help
+
+PYTHON ?= python3.8
+
+ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
+
+ifneq ($(wildcard $(ROOT_DIR)/.venv/.),)
+ VENV_PYTHON = $(ROOT_DIR)/.venv/bin/python
+else
+ VENV_PYTHON = $(PYTHON)
+endif
+
+define HELP_BODY
+Usage:
+ make
+
+Commands:
+ reformat Reformat all .py files being tracked by git.
+ stylecheck Check which tracked .py files need reformatting.
+ stylediff Show the post-reformat diff of the tracked .py files
+ without modifying them.
+ gettext Generate pot files.
+ upload_translations Upload pot files to Crowdin.
+ download_translations Download translations from Crowdin.
+ bumpdeps Run script bumping dependencies.
+ newenv Create or replace this project's virtual environment.
+ syncenv Sync this project's virtual environment to Red's latest
+ dependencies.
+endef
+export HELP_BODY
+
+# Python Code Style
+reformat:
+ $(VENV_PYTHON) -m black $(ROOT_DIR)
+stylecheck:
+ $(VENV_PYTHON) -m black --check $(ROOT_DIR)
+stylediff:
+ $(VENV_PYTHON) -m black --check --diff $(ROOT_DIR)
+
+# Translations
+gettext:
+ $(PYTHON) -m redgettext --command-docstrings --verbose --recursive redbot --exclude-files "redbot/pytest/**/*"
+upload_translations:
+ crowdin upload sources
+download_translations:
+ crowdin download
+
+# Dependencies
+bumpdeps:
+ $(PYTHON) tools/bumpdeps.py
+
+# Development environment
+newenv:
+ $(PYTHON) -m venv --clear .venv
+ .venv/bin/pip install -U pip wheel
+ $(MAKE) syncenv
+syncenv:
+ .venv/bin/pip install -Ur ./tools/dev-requirements.txt
+
+# Help
+help:
+ @echo "$$HELP_BODY"
diff --git a/testbed/Cog-Creators__Red-DiscordBot/README.md b/testbed/Cog-Creators__Red-DiscordBot/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..05f2c65778a06c39c6bf0214df852696f7c6d6c0
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/README.md
@@ -0,0 +1,134 @@
+
+
+
+
+ Red Discord Bot
+
+
+
+Music, Moderation, Trivia, Stream Alerts and Fully Modular.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview
+ •
+ Installation
+ •
+ Documentation
+ •
+ Plugins
+ •
+ Community
+ •
+ License
+
+
+# Overview
+
+Red is a fully modular bot – meaning all features and commands can be enabled/disabled to your
+liking, making it completely customizable. This is a *self-hosted bot* – meaning you will need
+to host and maintain your own instance. You can turn Red into an admin bot, music bot, trivia bot,
+new best friend or all of these together!
+
+[Installation](#installation) is easy, and you do **NOT** need to know anything about coding! Aside
+from installing and updating, every part of the bot can be controlled from within Discord.
+
+**The default set of modules includes and is not limited to:**
+
+- Moderation features (kick/ban/softban/hackban, mod-log, filter, chat cleanup)
+- Trivia (lists are included and can be easily added)
+- Music features (YouTube, SoundCloud, local files, playlists, queues)
+- Stream alerts (Twitch, Youtube, Picarto)
+- Bank (slot machine, user credits)
+- Custom commands
+- Imgur/gif search
+- Admin automation (self-role assignment, cross-server announcements, mod-mail reports)
+- Customisable command permissions
+
+**Additionally, other [plugins](#plugins) (cogs) can be easily found and added from our growing
+community of cog repositories.**
+
+# Installation
+
+**The following platforms are officially supported:**
+
+- [Windows](https://docs.discord.red/en/stable/install_guides/windows.html)
+- [MacOS](https://docs.discord.red/en/stable/install_guides/mac.html)
+- [Most major linux distributions](https://docs.discord.red/en/stable/install_guides/index.html)
+
+If after reading the guide you are still experiencing issues, feel free to join the
+[Official Discord Server](https://discord.gg/red) and ask in the **#support** channel for help.
+
+# Plugins
+
+Red is fully modular, allowing you to load and unload plugins of your choice, and install 3rd party
+plugins directly from Discord! A few examples are:
+
+- Cleverbot integration (talk to Red and she talks back)
+- Ban sync
+- Welcome messages
+- Casino
+- Reaction roles
+- Slow Mode
+- AniList
+- And much, much more!
+
+Feel free to take a [peek](https://index.discord.red) at a list of
+available 3rd party cogs!
+
+# Join the community!
+
+**Red** is in continuous development, and it’s supported by an active community which produces new
+content (cogs/plugins) for everyone to enjoy. New features are constantly added. If you can’t
+[find](https://index.discord.red) the cog you’re looking for,
+consult our [guide](https://docs.discord.red/en/stable/guide_cog_creation.html) on
+building your own cogs!
+
+Join us on our [Official Discord Server](https://discord.gg/red)!
+
+# License
+
+Released under the [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.en.html) license.
+
+Red is named after the main character of "Transistor", a video game by
+[Super Giant Games](https://www.supergiantgames.com/games/transistor/).
+
+Artwork created by [Sinlaire](https://sinlaire.deviantart.com/) on Deviant Art for the Red Discord
+Bot Project.
+
+This project vendors [discord.ext.menus](https://github.com/Rapptz/discord-ext-menus) package made by Danny Y. (Rapptz) which is distributed under MIT License.
+A copy of this license can be found in the [discord-ext-menus.LICENSE](redbot/vendored/discord-ext-menus.LICENSE) file in the [redbot/vendored](redbot/vendored) folder of this repository.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/SECURITY.md b/testbed/Cog-Creators__Red-DiscordBot/SECURITY.md
new file mode 100644
index 0000000000000000000000000000000000000000..eb11217f1ecfb86704c22bb963a9f1fe79551d34
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/SECURITY.md
@@ -0,0 +1,38 @@
+# Security Policy
+
+## Supported Versions
+
+The table below explains the current state of our versions. Currently, only version
+3.4 and higher are supported and receive security updates. Versions lower than 3.4
+are considered End of Life and will not receive any security updates.
+
+| Version | Branch | Security Updates | End of Life |
+|---------------|------------|--------------------|--------------------|
+| < 2.0 | master | :x: | :white_check_mark: |
+| >= 2.0, < 3.0 | develop | :x: | :white_check_mark: |
+| >= 3.0, < 3.4 | V3/develop | :x: | :white_check_mark: |
+| >= 3.4 | V3/develop | :white_check_mark: | :x: |
+
+
+## Reporting a Vulnerability
+
+For reporting vulnerabilities within Red-DiscordBot we make use of GitHub's
+private vulnerability reporting feature (More information can be found
+[here](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability)).
+This ensures that all maintainers and key members have access to the reported
+vulnerability.
+
+### Opening a Vulnerability Report
+
+To open a vulnerability report please fill out [this form](https://github.com/Cog-Creators/Red-DiscordBot/security/advisories/new)
+
+You will be asked to provide a summary, details and proof of concept for your vulnerability report.
+We ask that you fill out this form to the best of your ability, with as many details as possible.
+Furthermore, you'll be asked to provide affected products and severity.
+These fields are optional and will be filled appropriately by the maintainers if not provided.
+
+### Timeline
+
+We will try to answer your report within 7 days. If you haven't received an answer by then, we suggest you reach
+out to us privately. This can best be done via our [Discord server](https://discord.gg/red), and contacting
+a member who has the Staff role.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/crowdin.yml b/testbed/Cog-Creators__Red-DiscordBot/crowdin.yml
new file mode 100644
index 0000000000000000000000000000000000000000..fb1b9d42006e96d9fffa06a471c76b9d41ba1723
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/crowdin.yml
@@ -0,0 +1,9 @@
+api_key_env: CROWDIN_API_KEY
+project_identifier_env: CROWDIN_PROJECT_ID
+base_path: ./redbot/
+preserve_hierarchy: true
+files:
+ - source: cogs/**/messages.pot
+ translation: /%original_path%/%locale%.po
+ - source: core/**/messages.pot
+ translation: /%original_path%/%locale%.po
diff --git a/testbed/Cog-Creators__Red-DiscordBot/make.bat b/testbed/Cog-Creators__Red-DiscordBot/make.bat
new file mode 100644
index 0000000000000000000000000000000000000000..7f3d046b516fb672a49017b1b8961f40cbda2458
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/make.bat
@@ -0,0 +1,50 @@
+@echo off
+
+if [%1] == [] goto help
+
+if exist "%~dp0.venv\" (
+ set "VENV_PYTHON=%~dp0.venv\Scripts\python"
+) else (
+ set VENV_PYTHON=python
+)
+
+goto %1
+
+:reformat
+"%VENV_PYTHON%" -m black "%~dp0."
+goto:eof
+
+:stylecheck
+"%VENV_PYTHON%" -m black --check "%~dp0."
+goto:eof
+
+:stylediff
+"%VENV_PYTHON%" -m black --check --diff "%~dp0."
+goto:eof
+
+:newenv
+py -3.8 -m venv --clear .venv
+"%~dp0.venv\Scripts\python" -m pip install -U pip wheel
+goto syncenv
+
+:syncenv
+"%~dp0.venv\Scripts\python" -m pip install -Ur .\tools\dev-requirements.txt
+goto:eof
+
+:activateenv
+CALL "%~dp0.venv\Scripts\activate.bat"
+goto:eof
+
+:help
+echo Usage:
+echo make ^
+echo.
+echo Commands:
+echo reformat Reformat all .py files being tracked by git.
+echo stylecheck Check which tracked .py files need reformatting.
+echo stylediff Show the post-reformat diff of the tracked .py files
+echo without modifying them.
+echo newenv Create or replace this project's virtual environment.
+echo syncenv Sync this project's virtual environment to Red's latest
+echo dependencies.
+echo activateenv Activates project's virtual environment.
diff --git a/testbed/Cog-Creators__Red-DiscordBot/make.ps1 b/testbed/Cog-Creators__Red-DiscordBot/make.ps1
new file mode 100644
index 0000000000000000000000000000000000000000..370a21837f1bb9128c6a40395df2c0b5c4691865
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/make.ps1
@@ -0,0 +1,97 @@
+<#
+.Synopsis
+Makefile script in PowerShell that contains commands useful during development for Red.
+
+.Description
+Available commands:
+ reformat Reformat all .py files being tracked by git.
+ stylecheck Check which tracked .py files need reformatting.
+ stylediff Show the post-reformat diff of the tracked .py files
+ without modifying them.
+ newenv Create or replace this project's virtual environment.
+ syncenv Sync this project's virtual environment to Red's latest
+ dependencies.
+ activateenv Activates project's virtual environment.
+
+.Parameter Command
+Command to execute. See Cmdlet's description for more information.
+
+#>
+
+# I'm too dumb for PowerShell, so $script:availableCommands needs to be defined in 2 places // Jack
+
+[CmdletBinding()]
+param (
+ [Parameter(Mandatory=$false)]
+ [ArgumentCompleter({
+ param (
+ $commandName,
+ $parameterName,
+ $wordToComplete,
+ $commandAst,
+ $fakeBoundParameters
+ )
+ $script:availableCommands = @("reformat", "stylecheck", "stylediff", "newenv", "syncenv", "activateenv")
+ return $script:availableCommands | Where-Object { $_ -like "$wordToComplete*" }
+ })]
+ [String]
+ $command,
+ [switch]
+ $help = $false
+)
+
+function reformat() {
+ & $script:venvPython -m black $PSScriptRoot
+}
+
+function stylecheck() {
+ & $script:venvPython -m black --check $PSScriptRoot
+ Exit $LASTEXITCODE
+}
+
+function stylediff() {
+ & $script:venvPython -m black --check --diff $PSScriptRoot
+ Exit $LASTEXITCODE
+}
+
+function newenv() {
+ py -3.8 -m venv --clear .venv
+ & $PSScriptRoot\.venv\Scripts\python.exe -m pip install -U pip wheel
+ syncenv
+}
+
+function syncenv() {
+ & $PSScriptRoot\.venv\Scripts\python.exe -m pip install -Ur .\tools\dev-requirements.txt
+}
+
+function activateenv() {
+ & $PSScriptRoot\.venv\Scripts\Activate.ps1
+}
+
+$script:availableCommands = @("reformat", "stylecheck", "stylediff", "newenv", "syncenv", "activateenv")
+
+if (Test-Path -LiteralPath "$PSScriptRoot\.venv" -PathType Container) {
+ $script:venvPython = "$PSScriptRoot\.venv\Scripts\python.exe"
+} else {
+ $script:venvPython = "python"
+}
+
+if ($help -or !$command) {
+ Get-Help $MyInvocation.InvocationName
+ exit
+}
+
+switch ($command) {
+ {$script:availableCommands -contains $_} {
+ & $command
+ break
+ }
+ default {
+ Write-Host (
+ """$command"" is not a valid command.",
+ "To see available commands, type: ""$($MyInvocation.InvocationName) -help"""
+ )
+ break
+ }
+}
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/pyproject.toml b/testbed/Cog-Creators__Red-DiscordBot/pyproject.toml
new file mode 100644
index 0000000000000000000000000000000000000000..eaa4f28fa1289c01c522d44cef869ea0c94d21ee
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/pyproject.toml
@@ -0,0 +1,56 @@
+[build-system]
+requires = ["setuptools>=64", "wheel"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "Red-DiscordBot"
+description = "A highly customisable Discord bot"
+readme = "README.md"
+authors = [{ name = "Cog Creators" }]
+classifiers = [
+ "Development Status :: 5 - Production/Stable",
+ "Framework :: AsyncIO",
+ "Intended Audience :: Developers",
+ "Intended Audience :: End Users/Desktop",
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
+ "Natural Language :: English",
+ "Operating System :: MacOS :: MacOS X",
+ "Operating System :: Microsoft :: Windows",
+ "Operating System :: POSIX :: Linux",
+ "Programming Language :: Python :: 3 :: Only",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Topic :: Communications :: Chat",
+]
+dynamic = ["version", "requires-python", "dependencies", "optional-dependencies"]
+
+[project.urls]
+"Homepage" = "https://github.com/Cog-Creators/Red-DiscordBot"
+"Discord Server" = "https://discord.gg/red"
+"Documentation" = "https://docs.discord.red"
+"Donate on Patreon" = "https://www.patreon.com/Red_Devs"
+"Issue Tracker" = "https://github.com/Cog-Creators/Red-DiscordBot/issues"
+"Source Code" = "https://github.com/Cog-Creators/Red-DiscordBot"
+
+[project.scripts]
+redbot = "redbot.__main__:main"
+redbot-setup = "redbot.setup:run_cli"
+
+[project.entry-points.pytest11]
+red-discordbot = "redbot.pytest"
+
+[tool.black]
+line-length = 99
+required-version = '22'
+target-version = ['py38']
+include = '\.py$'
+force-exclude = '''
+/(
+ redbot\/vendored
+)/
+'''
+
+[tool.pytest.ini_options]
+asyncio_mode = 'auto'
diff --git a/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/ar-SA.po b/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/ar-SA.po
new file mode 100644
index 0000000000000000000000000000000000000000..d745d33521c7490c9de1fa6b2959c365f9a9aabc
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/ar-SA.po
@@ -0,0 +1,3452 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: red-discordbot\n"
+"POT-Creation-Date: 2021-06-12 15:52+0000\n"
+"Last-Translator: \n"
+"Language-Team: Arabic\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: redgettext 3.3\n"
+"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
+"X-Crowdin-Project: red-discordbot\n"
+"X-Crowdin-Project-ID: 289505\n"
+"X-Crowdin-Language: ar\n"
+"X-Crowdin-File-ID: 4\n"
+"Language: ar_SA\n"
+
+#: redbot/core/bank.py:1019
+msgid "Can't pay for this command in DM without a global bank."
+msgstr "لا يمكن دفع ثمن هذا الأمر في DM بدون بنك عالمي."
+
+#: redbot/core/bank.py:1026
+msgid "You need at least {cost} {currency} to use this command."
+msgstr "تحتاج على الأقل إلى {cost} {currency} لاستخدام هذا الأمر."
+
+#: redbot/core/cog_manager.py:316
+#, docstring
+msgid "Commands to interface with Red's cog manager."
+msgstr "أوامر للتفاعل مع ادارة الترس الأحمر."
+
+#: redbot/core/cog_manager.py:325
+#, docstring
+msgid "\n"
+" Lists current cog paths in order of priority.\n"
+" "
+msgstr "\n"
+" يسرد مسارات الكود الحالية ترتيبا للأولوية.\n"
+" "
+
+#: redbot/core/cog_manager.py:333
+msgid "Install Path: {install_path}\n"
+"Core Path: {core_path}\n\n"
+msgstr "مسار التثبيت: {install_path}\n"
+"المسار الأساسي: {core_path}\n\n"
+
+#: redbot/core/cog_manager.py:347
+#, docstring
+msgid "\n"
+" Add a path to the list of available cog paths.\n"
+" "
+msgstr "\n"
+" إضافة مسار إلى قائمة مسارات الكود المتاحة.\n"
+" "
+
+#: redbot/core/cog_manager.py:351
+msgid "That path does not exist or does not point to a valid directory."
+msgstr "هذا المسار غير موجود أو لا يشير إلى دليل صالح."
+
+#: redbot/core/cog_manager.py:359
+msgid "Path successfully added."
+msgstr "تم اضافة الاعلان"
+
+#: redbot/core/cog_manager.py:364
+#, docstring
+msgid "\n"
+" Removes a path from the available cog paths given the `path_number` from `[p]paths`.\n"
+" "
+msgstr "\n"
+" يزيل مسارا من مسارات الكود المتاحة مع إعطاء `path_number' من `[p]مسار.\n"
+" "
+
+#: redbot/core/cog_manager.py:369 redbot/core/cog_manager.py:392
+msgid "Path numbers must be positive."
+msgstr "يجب أن يكون الرقم إيجابي"
+
+#: redbot/core/cog_manager.py:376
+msgid "That is an invalid path number."
+msgstr "{0} قيمة رقمية خاطئة."
+
+#: redbot/core/cog_manager.py:380
+msgid "Path successfully removed."
+msgstr "{0} قيمة رقمية خاطئة."
+
+#: redbot/core/cog_manager.py:385
+#, docstring
+msgid "\n"
+" Reorders paths internally to allow discovery of different cogs.\n"
+" "
+msgstr "\n"
+" اصلاح المسارات داخليا للسماح باكتشاف قوانين مختلفة.\n"
+" "
+
+#: redbot/core/cog_manager.py:399
+msgid "Invalid 'from' index."
+msgstr "تاريخ \"من\" خاطيء"
+
+#: redbot/core/cog_manager.py:405
+msgid "Invalid 'to' index."
+msgstr "تاريخ \"من\" خاطيء"
+
+#: redbot/core/cog_manager.py:409
+msgid "Paths reordered."
+msgstr "تم إعادة ترتيب المسارات"
+
+#: redbot/core/cog_manager.py:414
+#, docstring
+msgid "\n"
+" Returns the current install path or sets it if one is provided.\n"
+" The provided path must be absolute or relative to the bot's\n"
+" directory and it must already exist.\n\n"
+" No installed cogs will be transferred in the process.\n"
+" "
+msgstr "\n"
+" يرجع مسار التثبيت الحالي أو يضعه إذا تم توفير واحد منها.\n"
+" يجب أن يكون المسار المقدم مطلقاً أو نسبياً إلى دليل البوت\n"
+" ويجب أن يكون موجوداً بالفعل.\n\n"
+" لن يتم نقل أي رموز مثبتة في هذه العملية.\n"
+" "
+
+#: redbot/core/cog_manager.py:427
+msgid "That path does not exist."
+msgstr "هذه الصفحة غير موجودة!"
+
+#: redbot/core/cog_manager.py:432
+msgid "The bot will install new cogs to the `{}` directory."
+msgstr "سيقوم البوت بتثبيت رموز جديدة إلى دليل '{}'."
+
+#: redbot/core/cog_manager.py:438
+#, docstring
+msgid "\n"
+" Lists all loaded and available cogs.\n"
+" "
+msgstr "\n"
+" يسرد جميع القوانين المحملة والمتوفرة.\n"
+" "
+
+#: redbot/core/cog_manager.py:451 redbot/core/cog_manager.py:466
+msgid "**{} loaded:**\n"
+msgstr "**{} تم تحميل:**\n"
+
+#: redbot/core/cog_manager.py:452 redbot/core/cog_manager.py:468
+msgid "**{} unloaded:**\n"
+msgstr "**{} تم تحميل:**\n"
+
+#: redbot/core/core_commands.py:181
+msgid "Alias {alias_name} is already an existing command or alias in one of the loaded cogs."
+msgstr ""
+
+#: redbot/core/core_commands.py:186
+msgid "Command {command_name} is already an existing command or alias in one of the loaded cogs."
+msgstr ""
+
+#: redbot/core/core_commands.py:398
+#, docstring
+msgid "\n"
+" The Core cog has many commands related to core functions.\n\n"
+" These commands come loaded with every Red bot, and cover some of the most basic usage of the bot.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:410
+#, docstring
+msgid "Pong."
+msgstr "البوت يعمل!"
+
+#: redbot/core/core_commands.py:415
+#, docstring
+msgid "Shows info about [botname].\n\n"
+" See `[p]set custominfo` to customize.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:445
+msgid "This bot is an instance of [Red, an open source Discord bot]({}) created by [Twentysix]({}) and [improved by many]({}).\n\n"
+"Red is backed by a passionate community who contributes and creates content for everyone to enjoy. [Join us today]({}) and help us improve!\n\n"
+"(c) Cog Creators"
+msgstr ""
+
+#: redbot/core/core_commands.py:456
+msgid "Instance owned by team"
+msgstr ""
+
+#: redbot/core/core_commands.py:456
+msgid "Instance owned by"
+msgstr "مالك البوت"
+
+#: redbot/core/core_commands.py:461
+msgid "Red version"
+msgstr "discord Bot by Lord_X\n"
+"#1770"
+
+#: redbot/core/core_commands.py:464 redbot/core/core_commands.py:520
+msgid "Yes, {version} is available."
+msgstr ""
+
+#: redbot/core/core_commands.py:468 redbot/core/core_commands.py:524
+msgid "Checking for updates failed."
+msgstr "فشل التحقق من وجود تحديث."
+
+#: redbot/core/core_commands.py:469
+msgid "Outdated"
+msgstr "عفا عليها الزمن!"
+
+#: redbot/core/core_commands.py:471
+msgid "About this instance"
+msgstr "عن مثيل الخادوم هذا"
+
+#: redbot/core/core_commands.py:472
+msgid "About Red"
+msgstr "حول discord bot by Lord_X\n"
+"#1770"
+
+#: redbot/core/core_commands.py:475 redbot/core/core_commands.py:533
+msgid "Bringing joy since 02 Jan 2016 (over {} days ago!)"
+msgstr "جلب الفرحة منذ 02 يان 2016 (أكثر من {} أيام مضت!)"
+
+#: redbot/core/core_commands.py:483
+msgid "This bot is an instance of Red, an open source Discord bot (1) created by Twentysix (2) and improved by many (3).\n\n"
+"Red is backed by a passionate community who contributes and creates content for everyone to enjoy. Join us today (4) and help us improve!\n\n"
+"(c) Cog Creators"
+msgstr ""
+
+#: redbot/core/core_commands.py:494
+msgid "Instance owned by team: [{owner}]\n"
+"Python: [{python_version}] (5)\n"
+"discord.py: [{dpy_version}] (6)\n"
+"Red version: [{red_version}] (7)\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:506
+msgid "Instance owned by: [{owner}]\n"
+"Python: [{python_version}] (5)\n"
+"discord.py: [{dpy_version}] (6)\n"
+"Red version: [{red_version}] (7)\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:525
+msgid "Outdated: [{state}]\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:528
+msgid "**About Red**\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:539
+msgid "**About this instance**\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:541
+msgid "**References**\n"
+"1. <{}>\n"
+"2. <{}>\n"
+"3. <{}>\n"
+"4. <{}>\n"
+"5. <{}>\n"
+"6. <{}>\n"
+"7. <{}>\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:557
+#, docstring
+msgid "Shows [botname]'s uptime."
+msgstr ""
+
+#: redbot/core/core_commands.py:560
+msgid "Less than one second"
+msgstr "أقل من ثانية واحدة"
+
+#: redbot/core/core_commands.py:562
+msgid "Been up for: **{time_quantity}** (since {timestamp} UTC)"
+msgstr "تم إنشاؤه: **{time_quantity}** (منذ {timestamp} UTC)"
+
+#: redbot/core/core_commands.py:569
+#, docstring
+msgid "\n"
+" Commands which interact with the data [botname] has about you.\n\n"
+" More information can be found in the [End User Data Documentation.](https://docs.discord.red/en/stable/red_core_data_statement.html)\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:580
+#, docstring
+msgid "\n"
+" Find out what type of data [botname] stores and why.\n\n"
+" **Example:**\n"
+" - `[p]mydata whatdata`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:590
+msgid "This bot stores some data about users as necessary to function. This is mostly the ID your user is assigned by Discord, linked to a handful of things depending on what you interact with in the bot. There are a few commands which store it to keep track of who created something. (such as playlists) For full details about this as well as more in depth details of what is stored and why, see {link}.\n\n"
+"Additionally, 3rd party addons loaded by the bot's owner may or may not store additional things. You can use `{prefix}mydata 3rdparty` to view the statements provided by each 3rd-party addition."
+msgstr ""
+
+#: redbot/core/core_commands.py:609
+#, docstring
+msgid "View the End User Data statements of each 3rd-party module.\n\n"
+" This will send an attachment with the End User Data statements of all loaded 3rd party cogs.\n\n"
+" **Example:**\n"
+" - `[p]mydata 3rdparty`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:620
+msgid "I need to be able to attach files (try in DMs?)."
+msgstr ""
+
+#: redbot/core/core_commands.py:630
+msgid "This instance does not appear to have any 3rd-party extensions loaded."
+msgstr ""
+
+#: redbot/core/core_commands.py:650
+msgid "3rd party End User Data statements"
+msgstr ""
+
+#: redbot/core/core_commands.py:652
+msgid "The following are statements provided by 3rd-party extensions."
+msgstr ""
+
+#: redbot/core/core_commands.py:657
+msgid "3rd-party extensions without statements\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:668
+msgid "Here's a generated page with the statements provided by 3rd-party extensions."
+msgstr ""
+
+#: redbot/core/core_commands.py:684
+msgid "Did not get confirmation, cancelling."
+msgstr ""
+
+#: redbot/core/core_commands.py:689
+msgid "Did not get a matching confirmation, cancelling."
+msgstr ""
+
+#: redbot/core/core_commands.py:700
+#, docstring
+msgid "\n"
+" Have [botname] forget what it knows about you.\n\n"
+" This may not remove all data about you, data needed for operation,\n"
+" such as command cooldowns will be kept until no longer necessary.\n\n"
+" Further interactions with [botname] may cause it to learn about you again.\n\n"
+" **Example:**\n"
+" - `[p]mydata forgetme`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:715
+msgid "This command ({command}) does not support non-interactive usage."
+msgstr ""
+
+#: redbot/core/core_commands.py:722
+msgid "This will cause the bot to get rid of and/or disassociate data from you. It will not get rid of operational data such as modlog entries, warnings, or mutes. If you are sure this is what you want, please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:732
+msgid "This may take some time."
+msgstr ""
+
+#: redbot/core/core_commands.py:745
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:760
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following cogs errored: {cogs}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:770
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following modules errored: {modules}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:780
+msgid "I've deleted any non-operational data about you (that I know how to delete) {mention}"
+msgstr ""
+
+#: redbot/core/core_commands.py:788 redbot/core/core_commands.py:955
+#: redbot/core/core_commands.py:1041 redbot/core/core_commands.py:1112
+msgid "{mention} The following cogs did not handle deletion:\n"
+"{cogs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:798
+#, docstring
+msgid "[Coming Soon] Get what data [botname] has about you."
+msgstr ""
+
+#: redbot/core/core_commands.py:800
+msgid "This command doesn't do anything yet, but we're working on adding support for this."
+msgstr ""
+
+#: redbot/core/core_commands.py:809
+#, docstring
+msgid "\n"
+" Commands for more complete data handling.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:815
+#, docstring
+msgid "\n"
+" Set the bot to allow users to request a data deletion.\n\n"
+" This is on by default.\n"
+" Opposite of `[p]mydata ownermanagement disallowuserdeletions`\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement allowuserdeletions`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:826
+msgid "User can delete their own data. This will not include operational data such as blocked users."
+msgstr ""
+
+#: redbot/core/core_commands.py:834
+#, docstring
+msgid "\n"
+" Set the bot to not allow users to request a data deletion.\n\n"
+" Opposite of `[p]mydata ownermanagement allowuserdeletions`\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement disallowuserdeletions`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:843
+msgid "User can not delete their own data."
+msgstr ""
+
+#: redbot/core/core_commands.py:847
+#, docstring
+msgid "\n"
+" Sets how user deletions are treated.\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement setuserdeletionlevel 1`\n\n"
+" **Arguments:**\n"
+" - `` - The strictness level for user deletion. See Level guide below.\n\n"
+" Level:\n"
+" - `0`: What users can delete is left entirely up to each cog.\n"
+" - `1`: Cogs should delete anything the cog doesn't need about the user.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:864
+msgid "Cogs will be instructed to remove all non operational data upon a user request."
+msgstr ""
+
+#: redbot/core/core_commands.py:872
+msgid "Cogs will be informed a user has made a data deletion request, and the details of what to delete will be left to the discretion of the cog author."
+msgstr ""
+
+#: redbot/core/core_commands.py:883
+#, docstring
+msgid "\n"
+" Handle a deletion request from Discord.\n\n"
+" This will cause the bot to get rid of or disassociate all data from the specified user ID.\n"
+" You should not use this unless Discord has specifically requested this with regard to a deleted user.\n"
+" This will remove the user from various anti-abuse measures.\n"
+" If you are processing a manual request from a user, you may want `[p]mydata ownermanagement deleteforuser` instead.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:897
+msgid "This will cause the bot to get rid of or disassociate all data from the specified user ID. You should not use this unless Discord has specifically requested this with regard to a deleted user. This will remove the user from various anti-abuse measures. If you are processing a manual request from a user, you may want `{prefix}{command_name}` instead.\n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:915 redbot/core/core_commands.py:1072
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:930 redbot/core/core_commands.py:1087
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following cogs errored: {cogs}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:941 redbot/core/core_commands.py:1098
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following modules errored: {modules}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:951 redbot/core/core_commands.py:1108
+msgid "I've deleted all data about that user that I know how to delete."
+msgstr ""
+
+#: redbot/core/core_commands.py:962
+#, docstring
+msgid "Delete data [botname] has about a user for a user.\n\n"
+" This will cause the bot to get rid of or disassociate a lot of non-operational data from the specified user.\n"
+" Users have access to a different command for this unless they can't interact with the bot at all.\n"
+" This is a mostly safe operation, but you should not use it unless processing a request from this user as it may impact their usage of the bot.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:973
+msgid "This will cause the bot to get rid of or disassociate a lot of non-operational data from the specified user. Users have access to different command for this unless they can't interact with the bot at all. This is a mostly safe operation, but you should not use it unless processing a request from this user as it may impact their usage of the bot. \n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:996
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1011
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following cogs errored: {cogs}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1022
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following modules errored: {modules}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1033
+msgid "I've deleted all non-operational data about that user that I know how to delete."
+msgstr ""
+
+#: redbot/core/core_commands.py:1048
+#, docstring
+msgid "Delete data [botname] has about a user.\n\n"
+" This will cause the bot to get rid of or disassociate a lot of data about the specified user.\n"
+" This may include more than just end user data, including anti abuse records.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1058
+msgid "This will cause the bot to get rid of or disassociate a lot of data about the specified user. This may include more than just end user data, including anti abuse records.\n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:1119
+#, docstring
+msgid "\n"
+" Commands for toggling embeds on or off.\n\n"
+" This setting determines whether or not to use embeds as a response to a command (for commands that support it).\n"
+" The default is to use embeds.\n\n"
+" The embed settings are checked until the first True/False in this order:\n"
+" - In guild context:\n"
+" 1. Channel override - `[p]embedset channel`\n"
+" 2. Server command override - `[p]embedset command server`\n"
+" 3. Server override - `[p]embedset server`\n"
+" 4. Global command override - `[p]embedset command global`\n"
+" 5. Global setting -`[p]embedset global`\n\n"
+" - In DM context:\n"
+" 1. User override - `[p]embedset user`\n"
+" 2. Global command override - `[p]embedset command global`\n"
+" 3. Global setting - `[p]embedset global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1141
+#, docstring
+msgid "\n"
+" Show the current embed settings.\n\n"
+" Provide a command name to check for command specific embed settings.\n\n"
+" **Examples:**\n"
+" - `[p]embedset showsettings` - Shows embed settings.\n"
+" - `[p]embedset showsettings info` - Also shows embed settings for the 'info' command.\n"
+" - `[p]embedset showsettings \"ignore list\"` - Checking subcommands requires quotes.\n\n"
+" **Arguments:**\n"
+" - `[command_name]` - Checks this command for command specific embed settings.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1158 redbot/core/core_commands.py:1314
+#: redbot/core/core_commands.py:1365 redbot/core/core_commands.py:4282
+#: redbot/core/core_commands.py:4325 redbot/core/core_commands.py:4391
+#: redbot/core/core_commands.py:4422
+msgid "I couldn't find that command. Please note that it is case sensitive."
+msgstr "لم أستطع العثور على هذا الأمر. يرجى ملاحظة أنه حساس لحالة الأحرف."
+
+#: redbot/core/core_commands.py:1164
+msgid "Embed settings:\n\n"
+msgstr "تضمين الإعدادات:\n\n"
+
+#: redbot/core/core_commands.py:1166
+msgid "Global default: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1171
+msgid "Global command setting for {command} command: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1177
+msgid "Guild setting: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1182
+msgid "Server command setting for {command} command: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1188
+msgid "Channel setting: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1191
+msgid "User setting: {value}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1197
+#, docstring
+msgid "\n"
+" Toggle the global embed setting.\n\n"
+" This is used as a fallback if the user or guild hasn't set a preference.\n"
+" The default is to use embeds.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Example:**\n"
+" - `[p]embedset global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1211
+msgid "Embeds are now disabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:1214
+msgid "Embeds are now enabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:1220
+#, docstring
+msgid "\n"
+" Set the server's embed setting.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n"
+" This is used for all commands done in a server.\n\n"
+" If enabled is left blank, the setting will be unset and the global default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset server False` - Disables embeds on this server.\n"
+" - `[p]embedset server` - Resets value to use global default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds on this server. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1239 redbot/core/core_commands.py:1323
+#: redbot/core/core_commands.py:1414 redbot/core/core_commands.py:1445
+msgid "Embeds will now fall back to the global setting."
+msgstr "وستعود المداخن الآن إلى الوضع العالمي."
+
+#: redbot/core/core_commands.py:1244
+msgid "Embeds are now enabled for this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:1246
+msgid "Embeds are now disabled for this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:1254
+#, docstring
+msgid "\n"
+" Sets a command's embed setting.\n\n"
+" If you're the bot owner, this will try to change the command's embed setting globally by default.\n"
+" Otherwise, this will try to change embed settings on the current server.\n\n"
+" If enabled is left blank, the setting will be unset.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1283
+msgid "The passed command requires Embed Links permission and therefore cannot be set to not use embeds."
+msgstr ""
+
+#: redbot/core/core_commands.py:1294
+#, docstring
+msgid "\n"
+" Sets a command's embed setting globally.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n\n"
+" If enabled is left blank, the setting will be unset.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command global info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command global info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command global \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1329 redbot/core/core_commands.py:1380
+msgid "Embeds are now enabled for {command_name} command."
+msgstr ""
+
+#: redbot/core/core_commands.py:1335 redbot/core/core_commands.py:1386
+msgid "Embeds are now disabled for {command_name} command."
+msgstr ""
+
+#: redbot/core/core_commands.py:1345
+#, docstring
+msgid "\n"
+" Sets a commmand's embed setting for the current server.\n\n"
+" If set, this is used instead of the server default to determine whether or not to use embeds.\n\n"
+" If enabled is left blank, the setting will be unset and the server default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command server info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command server info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command server \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1374
+msgid "Embeds will now fall back to the server setting."
+msgstr ""
+
+#: redbot/core/core_commands.py:1395
+#, docstring
+msgid "\n"
+" Set's a channel's embed setting.\n\n"
+" If set, this is used instead of the guild and command defaults to determine whether or not to use embeds.\n"
+" This is used for all commands done in a channel.\n\n"
+" If enabled is left blank, the setting will be unset and the guild default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset channel False` - Disables embeds in this channel.\n"
+" - `[p]embedset channel` - Resets value to use guild default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds in this channel. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1419
+msgid "Embeds are now {} for this channel."
+msgstr "مضمن الآن {} لهذه القناة."
+
+#: redbot/core/core_commands.py:1420 redbot/core/core_commands.py:2273
+#: redbot/core/core_commands.py:2294
+msgid "enabled"
+msgstr "مفعّل"
+
+#: redbot/core/core_commands.py:1420 redbot/core/core_commands.py:2273
+#: redbot/core/core_commands.py:2294
+msgid "disabled"
+msgstr "معطل"
+
+#: redbot/core/core_commands.py:1426
+#, docstring
+msgid "\n"
+" Sets personal embed setting for DMs.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n"
+" This is used for all commands executed in a DM with the bot.\n\n"
+" If enabled is left blank, the setting will be unset and the global default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset user False` - Disables embeds in your DMs.\n"
+" - `[p]embedset user` - Resets value to use global default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds in your DMs. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1450
+msgid "Embeds are now enabled for you in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:1452
+msgid "Embeds are now disabled for you in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:1458
+#, docstring
+msgid "Sends to the owner the last command exception that has occurred.\n\n"
+" If public (yes is specified), it will be sent to the chat instead.\n\n"
+" Warning: Sending the traceback publicly can accidentally reveal sensitive information about your computer or configuration.\n\n"
+" **Examples:**\n"
+" - `[p]traceback` - Sends the traceback to your DMs.\n"
+" - `[p]traceback True` - Sends the last traceback in the current context.\n\n"
+" **Arguments:**\n"
+" - `[public]` - Whether to send the traceback to the current context. Leave blank to send to your DMs.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1487
+msgid "No exception has occurred yet."
+msgstr ""
+
+#: redbot/core/core_commands.py:1492
+#, docstring
+msgid "Shows [botname]'s invite url.\n\n"
+" This will always send the invite to DMs to keep it private.\n\n"
+" This command is locked to the owner unless `[p]inviteset public` is set to True.\n\n"
+" **Example:**\n"
+" - `[p]invite`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1512
+#, docstring
+msgid "Commands to setup [botname]'s invite settings."
+msgstr ""
+
+#: redbot/core/core_commands.py:1517
+#, docstring
+msgid "\n"
+" Toggles if `[p]invite` should be accessible for the average user.\n\n"
+" The bot must be made into a `Public bot` in the developer dashboard for public invites to work.\n\n"
+" **Example:**\n"
+" - `[p]inviteset public yes` - Toggles the public invite setting.\n\n"
+" **Arguments:**\n"
+" - `[confirm]` - Required to set to public. Not required to toggle back to private.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1554
+#, docstring
+msgid "\n"
+" Make the bot create its own role with permissions on join.\n\n"
+" The bot will create its own role with the desired permissions when it joins a new server. This is a special role that can't be deleted or removed from the bot.\n\n"
+" For that, you need to provide a valid permissions level.\n"
+" You can generate one here: https://discordapi.com/permissions.html\n\n"
+" Please note that you might need two factor authentication for some permissions.\n\n"
+" **Example:**\n"
+" - `[p]inviteset perms 134217728` - Adds a \"Manage Nicknames\" permission requirement to the invite.\n\n"
+" **Arguments:**\n"
+" - `` - The permission level to require for the bot in the generated invite.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1575
+#, docstring
+msgid "\n"
+" Add the `applications.commands` scope to your invite URL.\n\n"
+" This allows the usage of slash commands on the servers that invited your bot with that scope.\n\n"
+" Note that previous servers that invited the bot without the scope cannot have slash commands, they will have to invite the bot a second time.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1586
+msgid "The `applications.commands` scope has been added to the invite URL."
+msgstr ""
+
+#: redbot/core/core_commands.py:1590
+msgid "The `applications.commands` scope has been removed from the invite URL."
+msgstr ""
+
+#: redbot/core/core_commands.py:1596
+#, docstring
+msgid "\n"
+" Leaves servers.\n\n"
+" If no server IDs are passed the local server will be left instead.\n\n"
+" Note: This command is interactive.\n\n"
+" **Examples:**\n"
+" - `[p]leave` - Leave the current server.\n"
+" - `[p]leave \"Red - Discord Bot\"` - Quotes are necessary when there are spaces in the name.\n"
+" - `[p]leave 133049272517001216 240154543684321280` - Leaves multiple servers, using IDs.\n\n"
+" **Arguments:**\n"
+" - `[servers...]` - The servers to leave. When blank, attempts to leave the current server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1613
+msgid "You need to specify at least one server ID."
+msgstr ""
+
+#: redbot/core/core_commands.py:1620
+msgid "You haven't passed any server ID. Do you want me to leave this server?"
+msgstr ""
+
+#: redbot/core/core_commands.py:1625
+msgid "Are you sure you want me to leave these servers?"
+msgstr ""
+
+#: redbot/core/core_commands.py:1633
+msgid "I cannot leave the server `{server_name}`: I am the owner of it."
+msgstr ""
+
+#: redbot/core/core_commands.py:1644 redbot/core/core_commands.py:2711
+msgid "Response timed out."
+msgstr "انتهت مهلة الرد."
+
+#: redbot/core/core_commands.py:1649
+msgid "Alright. Bye :wave:"
+msgstr "حسناً. باي :wave:"
+
+#: redbot/core/core_commands.py:1652
+msgid "Alright. Leaving {number} servers..."
+msgstr ""
+
+#: redbot/core/core_commands.py:1659
+msgid "Alright, I'll stay then. :)"
+msgstr ""
+
+#: redbot/core/core_commands.py:1661
+msgid "Alright, I'm not leaving those servers."
+msgstr ""
+
+#: redbot/core/core_commands.py:1666
+#, docstring
+msgid "\n"
+" Lists the servers [botname] is currently in.\n\n"
+" Note: This command is interactive.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1684
+#, docstring
+msgid "Loads cog packages from the local paths and installed cogs.\n\n"
+" See packages available to load with `[p]cogs`.\n\n"
+" Additional cogs can be added using Downloader, or from local paths using `[p]addpath`.\n\n"
+" **Examples:**\n"
+" - `[p]load general` - Loads the `general` cog.\n"
+" - `[p]load admin mod mutes` - Loads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to load.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1713
+msgid "Loaded {packs}."
+msgstr "تم تحميل {packs}."
+
+#: redbot/core/core_commands.py:1718
+msgid "The following package is already loaded: {pack}"
+msgstr "تم تحميل الحزمة التالية مسبقاً: {pack}"
+
+#: redbot/core/core_commands.py:1722
+msgid "The following packages are already loaded: {packs}"
+msgstr "الحزم التالية تم تحميلها بالفعل: {packs}"
+
+#: redbot/core/core_commands.py:1729
+msgid "Failed to load the following package: {pack}.\n"
+"Check your console or logs for details."
+msgstr "فشل تحميل الحزمة التالية: {pack}.\n"
+"تحقق من وحدة التحكم الخاصة بك أو سجلات للحصول على التفاصيل."
+
+#: redbot/core/core_commands.py:1734
+msgid "Failed to load the following packages: {packs}\n"
+"Check your console or logs for details."
+msgstr "فشل تحميل الحزم التالية: {packs}\n"
+"تحقق من وحدة التحكم الخاصة بك أو سجلات للحصول على التفاصيل."
+
+#: redbot/core/core_commands.py:1742 redbot/core/core_commands.py:1898
+msgid "The following name is not a valid package name: {pack}\n"
+"Package names cannot start with a number and can only contain ascii numbers, letters, and underscores."
+msgstr ""
+
+#: redbot/core/core_commands.py:1748 redbot/core/core_commands.py:1904
+msgid "The following names are not valid package names: {packs}\n"
+"Package names cannot start with a number and can only contain ascii numbers, letters, and underscores."
+msgstr ""
+
+#: redbot/core/core_commands.py:1757 redbot/core/core_commands.py:1913
+msgid "The following package was not found in any cog path: {pack}."
+msgstr "لم يتم العثور على الحزمة التالية في أي مسار الكود: {pack}."
+
+#: redbot/core/core_commands.py:1761 redbot/core/core_commands.py:1917
+msgid "The following packages were not found in any cog path: {packs}"
+msgstr "لم يتم العثور على الحزم التالية في أي مسار الكود: {packs}"
+
+#: redbot/core/core_commands.py:1769
+msgid "This package could not be loaded for the following reason:\n\n"
+"{reason}"
+msgstr "تعذر تحميل هذه الحزمة للسبب التالي:\n\n"
+"{reason}"
+
+#: redbot/core/core_commands.py:1773
+msgid "These packages could not be loaded for the following reasons:\n\n"
+"{reasons}"
+msgstr "لا يمكن تحميل هذه الحزم للأسباب التالية:\n\n"
+"{reasons}"
+
+#: redbot/core/core_commands.py:1780
+msgid "**WARNING**: The following repo is using shared libs which are marked for removal in the future: {repo}.\n"
+"You should inform maintainer of the repo about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1786 redbot/core/core_commands.py:1942
+msgid "**WARNING**: The following repos are using shared libs which are marked for removal in the future: {repos}.\n"
+"You should inform maintainers of these repos about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1805
+#, docstring
+msgid "Unloads previously loaded cog packages.\n\n"
+" See packages available to unload with `[p]cogs`.\n\n"
+" **Examples:**\n"
+" - `[p]unload general` - Unloads the `general` cog.\n"
+" - `[p]unload admin mod mutes` - Unloads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to unload.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1823
+msgid "The following package was unloaded: {pack}."
+msgstr "الحزم التالية تم تحميلها بالفعل: {pack}."
+
+#: redbot/core/core_commands.py:1827
+msgid "The following packages were unloaded: {packs}."
+msgstr "تم تحميل الحزمة التالية مسبقاً: {packs}."
+
+#: redbot/core/core_commands.py:1834
+msgid "The following package was not loaded: {pack}."
+msgstr "تم تحميل الحزمة التالية مسبقاً: {pack}."
+
+#: redbot/core/core_commands.py:1838
+msgid "The following packages were not loaded: {packs}."
+msgstr "تم تحميل الحزمة التالية مسبقاً: {packs}."
+
+#: redbot/core/core_commands.py:1851
+#, docstring
+msgid "Reloads cog packages.\n\n"
+" This will unload and then load the specified cogs.\n\n"
+" Cogs that were not loaded will only be loaded.\n\n"
+" **Examples:**\n"
+" - `[p]reload general` - Unloads then loads the `general` cog.\n"
+" - `[p]reload admin mod mutes` - Unloads then loads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to reload.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1880
+msgid "Reloaded {packs}."
+msgstr "تم تحميله {packs}."
+
+#: redbot/core/core_commands.py:1885
+msgid "Failed to reload the following package: {pack}.\n"
+"Check your console or logs for details."
+msgstr "فشل في إعادة تحميل الحزمة التالية: {pack}.\n"
+"تحقق من وحدة التحكم الخاصة بك أو سجلات للحصول على التفاصيل."
+
+#: redbot/core/core_commands.py:1890
+msgid "Failed to reload the following packages: {packs}\n"
+"Check your console or logs for details."
+msgstr "فشل في إعادة تحميل الحزم التالية: {packs}\n"
+"تحقق من وحدة التحكم الخاصة بك أو سجلات للحصول على التفاصيل."
+
+#: redbot/core/core_commands.py:1925
+msgid "This package could not be reloaded for the following reason:\n\n"
+"{reason}"
+msgstr "تعذر إعادة تحميل هذه الحزمة للسبب التالي:\n\n"
+"{reason}"
+
+#: redbot/core/core_commands.py:1929
+msgid "These packages could not be reloaded for the following reasons:\n\n"
+"{reasons}"
+msgstr "لا يمكن إعادة تحميل هذه الحزم للأسباب التالية:\n\n"
+"{reasons}"
+
+#: redbot/core/core_commands.py:1936
+msgid "**WARNING**: The following repo is using shared libs which are marked for removal in the future: {repo}.\n"
+"You should inform maintainers of these repos about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1957
+#, docstring
+msgid "Shuts down the bot.\n\n"
+" Allows [botname] to shut down gracefully.\n\n"
+" This is the recommended method for shutting down the bot.\n\n"
+" **Examples:**\n"
+" - `[p]shutdown`\n"
+" - `[p]shutdown True` - Shutdowns silently.\n\n"
+" **Arguments:**\n"
+" - `[silently]` - Whether to skip sending the shutdown message. Defaults to False.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1974
+msgid "Shutting down... "
+msgstr "إيقاف التشغيل... "
+
+#: redbot/core/core_commands.py:1980
+#, docstring
+msgid "Attempts to restart [botname].\n\n"
+" Makes [botname] quit with exit code 26.\n"
+" The restart is not guaranteed: it must be dealt with by the process manager in use.\n\n"
+" **Examples:**\n"
+" - `[p]restart`\n"
+" - `[p]restart True` - Restarts silently.\n\n"
+" **Arguments:**\n"
+" - `[silently]` - Whether to skip sending the restart message. Defaults to False.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1994
+msgid "Restarting..."
+msgstr "جاري إعادة التشغيل..."
+
+#: redbot/core/core_commands.py:1999
+#, docstring
+msgid "Commands for changing [botname]'s settings."
+msgstr ""
+
+#: redbot/core/core_commands.py:2003
+#, docstring
+msgid "\n"
+" Show the current settings for [botname].\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2021
+msgid "Admin roles: {admin}\n"
+"Mod roles: {mod}\n"
+"Locale: {guild_locale}\n"
+"Regional format: {guild_regional_format}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:2042
+msgid "{bot_name} Settings:\n\n"
+"Prefixes: {prefixes}\n"
+"{guild_settings}Global locale: {locale}\n"
+"Global regional format: {regional_format}\n"
+"Default embed colour: {colour}"
+msgstr ""
+
+#: redbot/core/core_commands.py:2064
+#, docstring
+msgid "Set the delay until the bot removes the command message.\n\n"
+" Must be between -1 and 60.\n\n"
+" Set to -1 to disable this feature.\n\n"
+" This is only applied to the current server and not globally.\n\n"
+" **Examples:**\n"
+" - `[p]set deletedelay` - Shows the current delete delay setting.\n"
+" - `[p]set deletedelay 60` - Sets the delete delay to the max of 60 seconds.\n"
+" - `[p]set deletedelay -1` - Disables deleting command messages.\n\n"
+" **Arguments:**\n"
+" - `[time]` - The seconds to wait before deleting the command message. Use -1 to disable.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2085
+msgid "Command deleting disabled."
+msgstr "تم تعطيل حذف الأمر."
+
+#: redbot/core/core_commands.py:2087
+msgid "Delete delay set to {num} seconds."
+msgstr "حذف تعيين التأخير إلى {num} ثانية."
+
+#: redbot/core/core_commands.py:2092
+msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages"
+msgstr "بوت سيقوم بحذف رسائل الأوامر بعد {num} ثانية. قم بتعيين هذه القيمة إلى -1 لإيقاف حذف الرسائل"
+
+#: redbot/core/core_commands.py:2099
+msgid "I will not delete command messages."
+msgstr "لن أحذف رسائل الأوامر."
+
+#: redbot/core/core_commands.py:2104
+#, docstring
+msgid "\n"
+" Sets the bot's description.\n\n"
+" Use without a description to reset.\n"
+" This is shown in a few locations, including the help menu.\n\n"
+" The maximum description length is 250 characters to ensure it displays properly.\n\n"
+" The default is \"Red V3\".\n\n"
+" **Examples:**\n"
+" - `[p]set description` - Resets the description to the default setting.\n"
+" - `[p]set description MyBot: A Red V3 Bot`\n\n"
+" **Arguments:**\n"
+" - `[description]` - The description to use for this bot. Leave blank to reset to the default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2124
+msgid "Description reset."
+msgstr "إعادة تعيين الوصف."
+
+#: redbot/core/core_commands.py:2127
+msgid "This description is too long to properly display. Please try again with below 250 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2141
+#, docstring
+msgid "\n"
+" Adds an admin role for this guild.\n\n"
+" Admins have the same access as Mods, plus additional admin level commands like:\n"
+" - `[p]set serverprefix`\n"
+" - `[p]addrole`\n"
+" - `[p]ban`\n"
+" - `[p]ignore guild`\n\n"
+" And more.\n\n"
+" **Examples:**\n"
+" - `[p]set addadminrole @Admins`\n"
+" - `[p]set addadminrole Super Admins`\n\n"
+" **Arguments:**\n"
+" - `` - The role to add as an admin.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2161
+msgid "This role is already an admin role."
+msgstr "وهذا الدور هو بالفعل دور المدير."
+
+#: redbot/core/core_commands.py:2163
+msgid "That role is now considered an admin role."
+msgstr "وهذا الدور يعتبر الآن دور admin."
+
+#: redbot/core/core_commands.py:2169
+#, docstring
+msgid "\n"
+" Adds a moderator role for this guild.\n\n"
+" This grants access to moderator level commands like:\n"
+" - `[p]mute`\n"
+" - `[p]cleanup`\n"
+" - `[p]customcommand create`\n\n"
+" And more.\n\n"
+" **Examples:**\n"
+" - `[p]set addmodrole @Mods`\n"
+" - `[p]set addmodrole Loyal Helpers`\n\n"
+" **Arguments:**\n"
+" - `` - The role to add as a moderator.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2188
+msgid "This role is already a mod role."
+msgstr "وهذا الرتبة هى بالفعل دور admin."
+
+#: redbot/core/core_commands.py:2190
+msgid "That role is now considered a mod role."
+msgstr "وهذا الدور يعتبر الآن دور mod."
+
+#: redbot/core/core_commands.py:2196
+#, docstring
+msgid "\n"
+" Removes an admin role for this guild.\n\n"
+" **Examples:**\n"
+" - `[p]set removeadminrole @Admins`\n"
+" - `[p]set removeadminrole Super Admins`\n\n"
+" **Arguments:**\n"
+" - `` - The role to remove from being an admin.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2208
+msgid "That role was not an admin role to begin with."
+msgstr "وهذا الدور ليس رتبة admin في البداية."
+
+#: redbot/core/core_commands.py:2210
+msgid "That role is no longer considered an admin role."
+msgstr "وهذا الرتبة يعتبر الآن دور admin."
+
+#: redbot/core/core_commands.py:2216
+#, docstring
+msgid "\n"
+" Removes a mod role for this guild.\n\n"
+" **Examples:**\n"
+" - `[p]set removemodrole @Mods`\n"
+" - `[p]set removemodrole Loyal Helpers`\n\n"
+" **Arguments:**\n"
+" - `` - The role to remove from being a moderator.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2228
+msgid "That role was not a mod role to begin with."
+msgstr "وهذا الدور ليس رتبة admin في البداية."
+
+#: redbot/core/core_commands.py:2230
+msgid "That role is no longer considered a mod role."
+msgstr "وهذا الرتبة يعتبر الآن دور mod."
+
+#: redbot/core/core_commands.py:2236
+#, docstring
+msgid "\n"
+" Toggle whether to use the bot owner-configured colour for embeds.\n\n"
+" Default is to use the bot's configured colour.\n"
+" Otherwise, the colour used will be the colour of the bot's top role.\n\n"
+" **Example:**\n"
+" - `[p]set usebotcolour`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2248
+msgid "The bot {} use its configured color for embeds."
+msgstr "يستخدم البوت {} لون التكوين الخاص به للتضمينات."
+
+#: redbot/core/core_commands.py:2249
+msgid "will not"
+msgstr "لن"
+
+#: redbot/core/core_commands.py:2249
+msgid "will"
+msgstr "سوف"
+
+#: redbot/core/core_commands.py:2257
+#, docstring
+msgid "\n"
+" Toggle whether to enable fuzzy command search for the server.\n\n"
+" This allows the bot to identify potential misspelled commands and offer corrections.\n\n"
+" Note: This can be processor intensive and may be unsuitable for larger servers.\n\n"
+" Default is for fuzzy command search to be disabled.\n\n"
+" **Example:**\n"
+" - `[p]set serverfuzzy`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2272
+msgid "Fuzzy command search has been {} for this server."
+msgstr "تم البحث عن أمر غامض {} لهذا الخادم."
+
+#: redbot/core/core_commands.py:2280
+#, docstring
+msgid "\n"
+" Toggle whether to enable fuzzy command search in DMs.\n\n"
+" This allows the bot to identify potential misspelled commands and offer corrections.\n\n"
+" Default is for fuzzy command search to be disabled.\n\n"
+" **Example:**\n"
+" - `[p]set fuzzy`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2293
+msgid "Fuzzy command search has been {} in DMs."
+msgstr "تم البحث عن أمر غامض {} لهذا الخادم."
+
+#: redbot/core/core_commands.py:2301
+#, docstring
+msgid "\n"
+" Sets a default colour to be used for the bot's embeds.\n\n"
+" Acceptable values for the colour parameter can be found at:\n\n"
+" https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.ColourConverter\n\n"
+" **Examples:**\n"
+" - `[p]set colour dark red`\n"
+" - `[p]set colour blurple`\n"
+" - `[p]set colour 0x5DADE2`\n"
+" - `[p]set color 0x#FDFEFE`\n"
+" - `[p]set color #7F8C8D`\n\n"
+" **Arguments:**\n"
+" - `[colour]` - The colour to use for embeds. Leave blank to set to the default value (red).\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2321
+msgid "The color has been reset."
+msgstr "تم إعادة تعيين اللون."
+
+#: redbot/core/core_commands.py:2324
+msgid "The color has been set."
+msgstr "تم تعيين اللون."
+
+#: redbot/core/core_commands.py:2329
+#, docstring
+msgid "Sets [botname]'s avatar\n\n"
+" Supports either an attachment or an image URL.\n\n"
+" **Examples:**\n"
+" - `[p]set avatar` - With an image attachment, this will set the avatar.\n"
+" - `[p]set avatar` - Without an attachment, this will show the command help.\n"
+" - `[p]set avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n"
+" **Arguments:**\n"
+" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2352
+msgid "That URL is invalid."
+msgstr ""
+
+#: redbot/core/core_commands.py:2354
+msgid "Something went wrong while trying to get the image."
+msgstr ""
+
+#: redbot/core/core_commands.py:2364
+msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG or PNG format."
+msgstr ""
+
+#: redbot/core/core_commands.py:2371
+msgid "JPG / PNG format only."
+msgstr "صيغة JPG / PNG فقط."
+
+#: redbot/core/core_commands.py:2373 redbot/core/core_commands.py:2600
+#: redbot/core/core_commands.py:2656 redbot/core/core_commands.py:2680
+msgid "Done."
+msgstr "تم."
+
+#: redbot/core/core_commands.py:2378
+#, docstring
+msgid "\n"
+" Removes [botname]'s avatar.\n\n"
+" **Example:**\n"
+" - `[p]set avatar remove`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2386
+msgid "Avatar removed."
+msgstr ""
+
+#: redbot/core/core_commands.py:2392
+#, docstring
+msgid "Sets [botname]'s playing status.\n\n"
+" This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n"
+" Maximum length for a playing status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set playing` - Clears the activity status.\n"
+" - `[p]set playing the keyboard`\n\n"
+" **Arguments:**\n"
+" - `[game]` - The text to follow `Playing`. Leave blank to clear the current activity status.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2408
+msgid "The maximum length of game descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2416
+msgid "Status set to ``Playing {game.name}``."
+msgstr "تم تعيين الحالة إلى ``تشغيل {game.name}``."
+
+#: redbot/core/core_commands.py:2418
+msgid "Game cleared."
+msgstr "تم مسح اللعبة."
+
+#: redbot/core/core_commands.py:2424
+#, docstring
+msgid "Sets [botname]'s listening status.\n\n"
+" This will appear as `Listening to `.\n\n"
+" Maximum length for a listening status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set listening` - Clears the activity status.\n"
+" - `[p]set listening jams`\n\n"
+" **Arguments:**\n"
+" - `[listening]` - The text to follow `Listening to`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2441
+msgid "The maximum length of listening descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2450
+msgid "Status set to ``Listening to {listening}``."
+msgstr "تم تعيين الحالة إلى ``الاستماع إلى {listening}``."
+
+#: redbot/core/core_commands.py:2453
+msgid "Listening cleared."
+msgstr "تم مسح الإستماع."
+
+#: redbot/core/core_commands.py:2459
+#, docstring
+msgid "Sets [botname]'s watching status.\n\n"
+" This will appear as `Watching `.\n\n"
+" Maximum length for a watching status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set watching` - Clears the activity status.\n"
+" - `[p]set watching [p]help`\n\n"
+" **Arguments:**\n"
+" - `[watching]` - The text to follow `Watching`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2475
+msgid "The maximum length of watching descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2482
+msgid "Status set to ``Watching {watching}``."
+msgstr "تم تعيين الحالة إلى ``تشغيل {watching}``."
+
+#: redbot/core/core_commands.py:2484
+msgid "Watching cleared."
+msgstr "تم مسح المشاهدة."
+
+#: redbot/core/core_commands.py:2490
+#, docstring
+msgid "Sets [botname]'s competing status.\n\n"
+" This will appear as `Competing in `.\n\n"
+" Maximum length for a competing status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set competing` - Clears the activity status.\n"
+" - `[p]set competing London 2012 Olympic Games`\n\n"
+" **Arguments:**\n"
+" - `[competing]` - The text to follow `Competing in`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2507
+msgid "The maximum length of competing descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2516
+msgid "Status set to ``Competing in {competing}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2519
+msgid "Competing cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2525
+#, docstring
+msgid "Sets [botname]'s status.\n\n"
+" Available statuses:\n"
+" - `online`\n"
+" - `idle`\n"
+" - `dnd`\n"
+" - `invisible`\n\n"
+" **Examples:**\n"
+" - `[p]set status online` - Clears the status.\n"
+" - `[p]set status invisible`\n\n"
+" **Arguments:**\n"
+" - `` - One of the available statuses.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2555
+msgid "Status changed to {}."
+msgstr "تغيرت الحالة إلى {}."
+
+#: redbot/core/core_commands.py:2563
+#, docstring
+msgid "Sets [botname]'s streaming status to a twitch stream.\n\n"
+" This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n"
+" It will also include a `Watch` button with a twitch.tv url for the provided streamer.\n\n"
+" Maximum length for a stream title is 128 characters.\n\n"
+" Leaving both streamer and stream_title empty will clear it.\n\n"
+" **Examples:**\n"
+" - `[p]set stream` - Clears the activity status.\n"
+" - `[p]set stream 26 Twentysix is streaming` - Sets the stream to `https://www.twitch.tv/26`.\n"
+" - `[p]set stream https://twitch.tv/26 Twentysix is streaming` - Sets the URL manually.\n\n"
+" **Arguments:**\n"
+" - `` - The twitch streamer to provide a link to. This can be their twitch name or the entire URL.\n"
+" - `` - The text to follow `Streaming` in the status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2588
+msgid "The maximum length of the streamer url is 511 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2591
+msgid "The maximum length of the stream title is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2605
+#, docstring
+msgid "Sets [botname]'s username.\n\n"
+" Maximum length for a username is 32 characters.\n\n"
+" Note: The username of a verified bot cannot be manually changed.\n"
+" Please contact Discord support to change it.\n\n"
+" **Example:**\n"
+" - `[p]set username BaguetteBot`\n\n"
+" **Arguments:**\n"
+" - `` - The username to give the bot.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2621
+msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it."
+msgstr ""
+
+#: redbot/core/core_commands.py:2628
+msgid "Failed to change name. Must be 32 characters or fewer."
+msgstr ""
+
+#: redbot/core/core_commands.py:2634
+msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}"
+msgstr ""
+
+#: redbot/core/core_commands.py:2644
+msgid "Failed to change the username. Discord returned the following error:\n"
+"{error_message}"
+msgstr ""
+
+#: redbot/core/core_commands.py:2654
+msgid "Unexpected error occurred when trying to change the username."
+msgstr ""
+
+#: redbot/core/core_commands.py:2662
+#, docstring
+msgid "Sets [botname]'s nickname for the current server.\n\n"
+" Maximum length for a nickname is 32 characters.\n\n"
+" **Example:**\n"
+" - `[p]set nickname 🎃 SpookyBot 🎃`\n\n"
+" **Arguments:**\n"
+" - `[nickname]` - The nickname to give the bot. Leave blank to clear the current nickname.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2674
+msgid "Failed to change nickname. Must be 32 characters or fewer."
+msgstr ""
+
+#: redbot/core/core_commands.py:2678
+msgid "I lack the permissions to change my own nickname."
+msgstr "أنت تفتقر إلى الصلاحيات لتغيير اسمي المستعار."
+
+#: redbot/core/core_commands.py:2685
+#, docstring
+msgid "Sets [botname]'s global prefix(es).\n\n"
+" Warning: This is not additive. It will replace all current prefixes.\n\n"
+" See also the `--mentionable` flag to enable mentioning the bot as the prefix.\n\n"
+" **Examples:**\n"
+" - `[p]set prefix !`\n"
+" - `[p]set prefix \"! \"` - Quotes are needed to use spaces in prefixes.\n"
+" - `[p]set prefix \"@[botname] \"` - This uses a mention as the prefix. See also the `--mentionable` flag.\n"
+" - `[p]set prefix ! ? .` - Sets multiple prefixes.\n\n"
+" **Arguments:**\n"
+" - `` - The prefixes the bot will respond to globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2702
+msgid "Warning: A prefix is above the recommended length (20 characters).\n"
+"Do you want to continue? (y/n)"
+msgstr ""
+
+#: redbot/core/core_commands.py:2715
+msgid "Cancelled."
+msgstr "تم الإلغاء."
+
+#: redbot/core/core_commands.py:2719
+msgid "Prefix set."
+msgstr "تم تعيين prefix."
+
+#: redbot/core/core_commands.py:2721
+msgid "Prefixes set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2727
+#, docstring
+msgid "\n"
+" Sets [botname]'s server prefix(es).\n\n"
+" Warning: This will override global prefixes, the bot will not respond to any global prefixes in this server.\n"
+" This is not additive. It will replace all current server prefixes.\n"
+" A prefix cannot have more than 20 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set serverprefix !`\n"
+" - `[p]set serverprefix \"! \"` - Quotes are needed to use spaces in prefixes.\n"
+" - `[p]set serverprefix \"@[botname] \"` - This uses a mention as the prefix.\n"
+" - `[p]set serverprefix ! ? .` - Sets multiple prefixes.\n\n"
+" **Arguments:**\n"
+" - `[prefixes...]` - The prefixes the bot will respond to on this server. Leave blank to clear server prefixes.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2745
+msgid "Server prefixes have been reset."
+msgstr ""
+
+#: redbot/core/core_commands.py:2748
+msgid "You cannot have a prefix longer than 20 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2753
+msgid "Server prefix set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2755
+msgid "Server prefixes set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2760
+#, docstring
+msgid "\n"
+" Changes the bot's default locale.\n\n"
+" This will be used when a server has not set a locale, or in DMs.\n\n"
+" Go to [Red's Crowdin page](https://translate.discord.red) to see locales that are available with translations.\n\n"
+" To reset to English, use \"en-US\".\n\n"
+" **Examples:**\n"
+" - `[p]set locale en-US`\n"
+" - `[p]set locale de-DE`\n"
+" - `[p]set locale fr-FR`\n"
+" - `[p]set locale pl-PL`\n\n"
+" **Arguments:**\n"
+" - `` - The default locale to use for the bot. This can be any language code with country code included.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2781 redbot/core/core_commands.py:2825
+#: redbot/core/core_commands.py:2864 redbot/core/core_commands.py:2908
+msgid "Invalid language code. Use format: `en-US`"
+msgstr ""
+
+#: redbot/core/core_commands.py:2785 redbot/core/core_commands.py:2829
+#: redbot/core/core_commands.py:2868 redbot/core/core_commands.py:2912
+msgid "Invalid format - language code has to include country code, e.g. `en-US`"
+msgstr ""
+
+#: redbot/core/core_commands.py:2792
+msgid "Global locale has been set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2798
+#, docstring
+msgid "\n"
+" Changes the bot's locale in this server.\n\n"
+" Go to [Red's Crowdin page](https://translate.discord.red) to see locales that are available with translations.\n\n"
+" Use \"default\" to return to the bot's default set language.\n"
+" To reset to English, use \"en-US\".\n\n"
+" **Examples:**\n"
+" - `[p]set locale en-US`\n"
+" - `[p]set locale de-DE`\n"
+" - `[p]set locale fr-FR`\n"
+" - `[p]set locale pl-PL`\n"
+" - `[p]set locale default` - Resets to the global default locale.\n\n"
+" **Arguments:**\n"
+" - `` - The default locale to use for the bot. This can be any language code with country code included.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2820
+msgid "Locale has been set to the default."
+msgstr ""
+
+#: redbot/core/core_commands.py:2835
+msgid "Locale has been set."
+msgstr "تم تعيين الان."
+
+#: redbot/core/core_commands.py:2841
+#, docstring
+msgid "\n"
+" Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n"
+" `language_code` can be any language code with country code included, e.g. `en-US`, `de-DE`, `fr-FR`, `pl-PL`, etc.\n"
+" Leave `language_code` empty to base regional formatting on bot's locale.\n\n"
+" **Examples:**\n"
+" - `[p]set globalregionalformat en-US`\n"
+" - `[p]set globalregion de-DE`\n"
+" - `[p]set globalregionalformat` - Resets to the locale.\n\n"
+" **Arguments:**\n"
+" - `[language_code]` - The default region format to use for the bot.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2858
+msgid "Global regional formatting will now be based on bot's locale."
+msgstr ""
+
+#: redbot/core/core_commands.py:2875
+msgid "Global regional formatting will now be based on `{language_code}` locale."
+msgstr ""
+
+#: redbot/core/core_commands.py:2883
+#, docstring
+msgid "\n"
+" Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n"
+" `language_code` can be any language code with country code included, e.g. `en-US`, `de-DE`, `fr-FR`, `pl-PL`, etc.\n"
+" Leave `language_code` empty to base regional formatting on bot's locale in this server.\n\n"
+" **Examples:**\n"
+" - `[p]set regionalformat en-US`\n"
+" - `[p]set region de-DE`\n"
+" - `[p]set regionalformat` - Resets to the locale.\n\n"
+" **Arguments:**\n"
+" - `[language_code]` - The region format to use for the bot in this server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2901
+msgid "Regional formatting will now be based on bot's locale in this server."
+msgstr ""
+
+#: redbot/core/core_commands.py:2919
+msgid "Regional formatting will now be based on `{language_code}` locale."
+msgstr ""
+
+#: redbot/core/core_commands.py:2927
+#, docstring
+msgid "Customizes a section of `[p]info`.\n\n"
+" The maximum amount of allowed characters is 1024.\n"
+" Supports markdown, links and \"mentions\".\n\n"
+" Link example: `[My link](https://example.com)`\n\n"
+" **Examples:**\n"
+" - `[p]set custominfo >>> I can use **markdown** such as quotes, ||spoilers|| and multiple lines.`\n"
+" - `[p]set custominfo Join my [support server](discord.gg/discord)!`\n"
+" - `[p]set custominfo` - Removes custom info text.\n\n"
+" **Arguments:**\n"
+" - `[text]` - The custom info text.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2944
+msgid "The custom text has been cleared."
+msgstr "تم مسح سجل النظام."
+
+#: redbot/core/core_commands.py:2948
+msgid "The custom text has been set."
+msgstr "تم تعيين النص المخصص."
+
+#: redbot/core/core_commands.py:2951
+msgid "Text must be fewer than 1024 characters long."
+msgstr ""
+
+#: redbot/core/core_commands.py:2956
+#, docstring
+msgid "\n"
+" Commands to set, list or remove various external API tokens.\n\n"
+" This setting will be asked for by some 3rd party cogs and some core cogs.\n\n"
+" To add the keys provide the service name and the tokens as a comma separated\n"
+" list of key,values as described by the cog requesting this command.\n\n"
+" Note: API tokens are sensitive, so this command should only be used in a private channel or in DM with the bot.\n\n"
+" **Examples:**\n"
+" - `[p]set api Spotify redirect_uri localhost`\n"
+" - `[p]set api github client_id,whoops client_secret,whoops`\n\n"
+" **Arguments:**\n"
+" - `` - The service you're adding tokens to.\n"
+" - `` - Pairs of token keys and values. The key and value should be separated by one of ` `, `,`, or `;`.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2977
+msgid "`{service}` API tokens have been set."
+msgstr "تم تعيين رمز API{service}."
+
+#: redbot/core/core_commands.py:2981
+#, docstring
+msgid "\n"
+" Show all external API services along with their keys that have been set.\n\n"
+" Secrets are not shown.\n\n"
+" **Example:**\n"
+" - `[p]set api list``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2992
+msgid "No API services have been set yet."
+msgstr ""
+
+#: redbot/core/core_commands.py:2997
+msgid "Set API services:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:2997
+msgid "Set API service:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:3007
+#, docstring
+msgid "\n"
+" Remove the given services with all their keys and tokens.\n\n"
+" **Examples:**\n"
+" - `[p]set api remove Spotify`\n"
+" - `[p]set api remove github audiodb`\n\n"
+" **Arguments:**\n"
+" - `` - The services to remove."
+msgstr ""
+
+#: redbot/core/core_commands.py:3022
+msgid "Services deleted successfully:\n"
+"{services_list}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3026
+msgid "Service deleted successfully: {service_name}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3031
+msgid "None of the services you provided had any keys set."
+msgstr ""
+
+#: redbot/core/core_commands.py:3036
+#, docstring
+msgid "\n"
+" Commands to manage settings for the help command.\n\n"
+" All help settings are applied globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3045
+#, docstring
+msgid "\n"
+" Show the current help settings.\n\n"
+" Warning: These settings may not be accurate if the default formatter is not in use.\n\n"
+" **Example:**\n"
+" - `[p]helpset showsettings``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3059
+msgid "Warning: The default formatter is not in use, these settings may not apply."
+msgstr ""
+
+#: redbot/core/core_commands.py:3069
+#, docstring
+msgid "\n"
+" This resets [botname]'s help formatter to the default formatter.\n\n"
+" **Example:**\n"
+" - `[p]helpset resetformatter``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3078
+msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue."
+msgstr ""
+
+#: redbot/core/core_commands.py:3087
+#, docstring
+msgid "\n"
+" This resets [botname]'s help settings to their defaults.\n\n"
+" This may not have an impact when using custom formatters from 3rd party cogs\n\n"
+" **Example:**\n"
+" - `[p]helpset resetsettings``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3097
+msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters."
+msgstr ""
+
+#: redbot/core/core_commands.py:3105
+#, docstring
+msgid "\n"
+" Allows the help command to be sent as a paginated menu instead of separate\n"
+" messages.\n\n"
+" When enabled, `[p]help` will only show one page at a time and will use reactions to navigate between pages.\n\n"
+" This defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset usemenus True` - Enables using menus.\n"
+" - `[p]helpset usemenus` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[use_menus]` - Whether to use menus. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3125
+msgid "Help will use menus."
+msgstr "المساعدة سوف تستخدم القوائم."
+
+#: redbot/core/core_commands.py:3127
+msgid "Help will not use menus."
+msgstr "المساعدة لن تستخدم القوائم."
+
+#: redbot/core/core_commands.py:3131
+#, docstring
+msgid "\n"
+" This allows the help command to show hidden commands.\n\n"
+" This defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset showhidden True` - Enables showing hidden commands.\n"
+" - `[p]helpset showhidden` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[show_hidden]` - Whether to use show hidden commands in help. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3148
+msgid "Help will not filter hidden commands."
+msgstr ""
+
+#: redbot/core/core_commands.py:3150
+msgid "Help will filter hidden commands."
+msgstr "المساعدة ستقوم بتصفية الأوامر المخفية."
+
+#: redbot/core/core_commands.py:3154
+#, docstring
+msgid "\n"
+" This allows the help command to show existing commands aliases if there is any.\n\n"
+" This defaults to True.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset showaliases False` - Disables showing aliases on this server.\n"
+" - `[p]helpset showaliases` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[show_aliases]` - Whether to include aliases in help. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3171
+msgid "Help will show commands aliases."
+msgstr ""
+
+#: redbot/core/core_commands.py:3173
+msgid "Help will not show commands aliases."
+msgstr ""
+
+#: redbot/core/core_commands.py:3177
+#, docstring
+msgid "\n"
+" This allows the help command message to be ticked if help is sent to a DM.\n\n"
+" Ticking is reacting to the help message with a ✅.\n\n"
+" Defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" Note: This is only used when the bot is not using menus.\n\n"
+" **Examples:**\n"
+" - `[p]helpset usetick False` - Disables ticking when help is sent to DMs.\n"
+" - `[p]helpset usetick` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[use_tick]` - Whether to tick the help command when help is sent to DMs. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3198
+msgid "Help will now tick the command when sent in a DM."
+msgstr ""
+
+#: redbot/core/core_commands.py:3200
+msgid "Help will not tick the command when sent in a DM."
+msgstr ""
+
+#: redbot/core/core_commands.py:3204
+#, docstring
+msgid "\n"
+" Sets if commands which can't be run in the current context should be filtered from help.\n\n"
+" Defaults to True.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset verifychecks False` - Enables showing unusable commands in help.\n"
+" - `[p]helpset verifychecks` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[verify]` - Whether to hide unusable commands in help. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3221
+msgid "Help will only show for commands which can be run."
+msgstr "المساعدة سوف تظهر فقط للأوامر التي يمكن تشغيلها."
+
+#: redbot/core/core_commands.py:3223
+msgid "Help will show up without checking if the commands can be run."
+msgstr "سوف تظهر المساعدة دون التحقق مما إذا كان يمكن تشغيل الأوامر."
+
+#: redbot/core/core_commands.py:3227
+#, docstring
+msgid "\n"
+" Sets whether the bot should respond to help commands for nonexistent topics.\n\n"
+" When enabled, this will indicate the existence of help topics, even if the user can't use it.\n\n"
+" Note: This setting on its own does not fully prevent command enumeration.\n\n"
+" Defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset verifyexists True` - Enables sending help for nonexistent topics.\n"
+" - `[p]helpset verifyexists` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[verify]` - Whether to respond to help for nonexistent topics. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3248
+msgid "Help will verify the existence of help topics."
+msgstr "المساعدة سوف تتحقق من وجود مواضيع المساعدة."
+
+#: redbot/core/core_commands.py:3251
+msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)."
+msgstr "المساعدة سوف تتحقق فقط من وجود مواضيع المساعدة عبر مساعدة غامضة (إذا تم تفعيلها)."
+
+#: redbot/core/core_commands.py:3259
+#, docstring
+msgid "Set the character limit for each page in the help message.\n\n"
+" Note: This setting only applies to embedded help.\n\n"
+" The default value is 1000 characters. The minimum value is 500.\n"
+" The maximum is based on the lower of what you provide and what discord allows.\n\n"
+" Please note that setting a relatively small character limit may\n"
+" mean some pages will exceed this limit.\n\n"
+" **Example:**\n"
+" - `[p]helpset pagecharlimit 1500`\n\n"
+" **Arguments:**\n"
+" - `` - The max amount of characters to show per page in the help message.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3276
+msgid "You must give a value of at least 500 characters."
+msgstr "يجب عليك إعطاء قيمة لا تقل عن 500 حرف."
+
+#: redbot/core/core_commands.py:3280
+msgid "Done. The character limit per page has been set to {}."
+msgstr "تم. تم تعيين حد الحرف لكل صفحة إلى {}."
+
+#: redbot/core/core_commands.py:3284
+#, docstring
+msgid "Set the maximum number of help pages sent in a server channel.\n\n"
+" Note: This setting does not apply to menu help.\n\n"
+" If a help message contains more pages than this value, the help message will\n"
+" be sent to the command author via DM. This is to help reduce spam in server\n"
+" text channels.\n\n"
+" The default value is 2 pages.\n\n"
+" **Examples:**\n"
+" - `[p]helpset maxpages 50` - Basically never send help to DMs.\n"
+" - `[p]helpset maxpages 0` - Always send help to DMs.\n\n"
+" **Arguments:**\n"
+" - `` - The max pages allowed to send per help in a server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3302 redbot/core/core_commands.py:3329
+msgid "You must give a value of zero or greater!"
+msgstr "يجب أن تعطي قيمة صفر أو أكثر!"
+
+#: redbot/core/core_commands.py:3306
+msgid "Done. The page limit has been set to {}."
+msgstr "تم. تم تعيين الحد الأقصى للصفحة إلى {}."
+
+#: redbot/core/core_commands.py:3311
+#, docstring
+msgid "Set the delay after which help pages will be deleted.\n\n"
+" The setting is disabled by default, and only applies to non-menu help,\n"
+" sent in server text channels.\n"
+" Setting the delay to 0 disables this feature.\n\n"
+" The bot has to have MANAGE_MESSAGES permission for this to work.\n\n"
+" **Examples:**\n"
+" - `[p]helpset deletedelay 60` - Delete the help pages after a minute.\n"
+" - `[p]helpset deletedelay 1` - Delete the help pages as quickly as possible.\n"
+" - `[p]helpset deletedelay 1209600` - Max time to wait before deleting (14 days).\n"
+" - `[p]helpset deletedelay 0` - Disable deleting help pages.\n\n"
+" **Arguments:**\n"
+" - `` - The seconds to wait before deleting help pages.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3332
+msgid "The delay cannot be longer than 14 days!"
+msgstr "لا يمكن أن يكون التأخير أطول من 14 يوماً!"
+
+#: redbot/core/core_commands.py:3337
+msgid "Done. Help messages will not be deleted now."
+msgstr "تم. لن يتم حذف رسائل المساعدة الآن."
+
+#: redbot/core/core_commands.py:3339
+msgid "Done. The delete delay has been set to {} seconds."
+msgstr "تم. تم تعيين تأخير الحذف إلى {} ثانية."
+
+#: redbot/core/core_commands.py:3343
+#, docstring
+msgid "\n"
+" Set the tagline to be used.\n\n"
+" The maximum tagline length is 2048 characters.\n"
+" This setting only applies to embedded help. If no tagline is specified, the default will be used instead.\n\n"
+" **Examples:**\n"
+" - `[p]helpset tagline Thanks for using the bot!`\n"
+" - `[p]helpset tagline` - Resets the tagline to the default.\n\n"
+" **Arguments:**\n"
+" - `[tagline]` - The tagline to appear at the bottom of help embeds. Leave blank to reset.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3358
+msgid "The tagline has been reset."
+msgstr "تم إعادة تعيين العلامة."
+
+#: redbot/core/core_commands.py:3362
+msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long."
+msgstr "العلامة الخاصة بك طويلة جداً! الرجاء اختصارها بحيث لا يتجاوز طولها 2048 حرفاً."
+
+#: redbot/core/core_commands.py:3370
+msgid "The tagline has been set."
+msgstr "تم إعادة تعيين العلامة."
+
+#: redbot/core/core_commands.py:3375
+#, docstring
+msgid "Sends a message to the owner.\n\n"
+" This is limited to one message every 60 seconds per person.\n\n"
+" **Example:**\n"
+" - `[p]contact Help! The bot has become sentient!`\n\n"
+" **Arguments:**\n"
+" - `[message]` - The message to send to the owner.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3387
+msgid "User ID: {}"
+msgstr "معرف المستخدم: {}"
+
+#: redbot/core/core_commands.py:3390
+msgid "through DM"
+msgstr "عبر DM"
+
+#: redbot/core/core_commands.py:3392
+msgid "from {}"
+msgstr "من {}"
+
+#: redbot/core/core_commands.py:3393
+msgid " | Server ID: {}"
+msgstr " مُعرّف الخادم: {}"
+
+#: redbot/core/core_commands.py:3398
+msgid "Use `{}dm {} ` to reply to this user"
+msgstr "استخدم `{}dm {} للرد على هذا المستخدم"
+
+#: redbot/core/core_commands.py:3400
+msgid "Sent by {} {}"
+msgstr "أرسلت من {} {}"
+
+#: redbot/core/core_commands.py:3405
+msgid "I've been configured not to send this anywhere."
+msgstr "لقد تم تكويني لعدم إرسال هذا في أي مكان."
+
+#: redbot/core/core_commands.py:3476
+msgid "Your message has been sent."
+msgstr "تم إرسال رسالتك."
+
+#: redbot/core/core_commands.py:3478
+msgid "I'm unable to deliver your message. Sorry."
+msgstr "أنا غير قادر على تسليم رسالتك. عذراً."
+
+#: redbot/core/core_commands.py:3483
+#, docstring
+msgid "Sends a DM to a user.\n\n"
+" This command needs a user ID to work.\n\n"
+" To get a user ID, go to Discord's settings and open the 'Appearance' tab.\n"
+" Enable 'Developer Mode', then right click a user and click on 'Copy ID'.\n\n"
+" **Example:**\n"
+" - `[p]dm 262626262626262626 Do you like me? Yes / No`\n\n"
+" **Arguments:**\n"
+" - `[message]` - The message to dm to the user.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3499
+msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with."
+msgstr "معرف غير صالح، المستخدم غير موجود، أو المستخدم هو بوت. يمكنك فقط إرسال رسائل إلى الأشخاص الذين أشاركهم الخادم معهم."
+
+#: redbot/core/core_commands.py:3509
+msgid "Owner of {}"
+msgstr "مالك هو {}"
+
+#: redbot/core/core_commands.py:3510
+msgid "You can reply to this message with {}contact"
+msgstr "يمكنك الرد على هذه الرسالة باستخدام {}جهة اتصال"
+
+#: redbot/core/core_commands.py:3524 redbot/core/core_commands.py:3534
+msgid "Sorry, I couldn't deliver your message to {}"
+msgstr "عذراً، لم أستطع تسليم رسالتك إلى {}"
+
+#: redbot/core/core_commands.py:3527 redbot/core/core_commands.py:3537
+msgid "Message delivered to {}"
+msgstr "تم ارسال الرسالة إلى {}"
+
+#: redbot/core/core_commands.py:3542
+#, docstring
+msgid "Prints the bot's data path."
+msgstr "يطبع مسار بيانات البوت."
+
+#: redbot/core/core_commands.py:3546
+msgid "Data path: {path}"
+msgstr "مسار البيانات: {path}"
+
+#: redbot/core/core_commands.py:3552
+#, docstring
+msgid "Shows debug information useful for debugging."
+msgstr ""
+
+#: redbot/core/core_commands.py:3639
+#, docstring
+msgid "\n"
+" Commands to manage the allowlist.\n\n"
+" Warning: When the allowlist is in use, the bot will ignore commands from everyone not on the list.\n\n"
+" Use `[p]allowlist clear` to disable the allowlist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3650
+#, docstring
+msgid "\n"
+" Adds users to the allowlist.\n\n"
+" **Examples:**\n"
+" - `[p]allowlist add @26 @Will` - Adds two users to the allowlist.\n"
+" - `[p]allowlist add 262626262626262626` - Adds a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to add to the allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3663
+msgid "Users have been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3665
+msgid "User has been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3669
+#, docstring
+msgid "\n"
+" Lists users on the allowlist.\n\n"
+" **Example:**\n"
+" - `[p]allowlist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3681
+msgid "Users on the allowlist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3683
+msgid "User on the allowlist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3687 redbot/core/core_commands.py:3785
+#: redbot/core/modlog.py:428 redbot/core/modlog.py:450
+#: redbot/core/modlog.py:466
+msgid "Unknown or Deleted User"
+msgstr ""
+
+#: redbot/core/core_commands.py:3695
+#, docstring
+msgid "\n"
+" Removes users from the allowlist.\n\n"
+" The allowlist will be disabled if all users are removed.\n\n"
+" **Examples:**\n"
+" - `[p]allowlist remove @26 @Will` - Removes two users from the allowlist.\n"
+" - `[p]allowlist remove 262626262626262626` - Removes a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to remove from the allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3710
+msgid "Users have been removed from the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3712
+msgid "User has been removed from the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3716
+#, docstring
+msgid "\n"
+" Clears the allowlist.\n\n"
+" This disables the allowlist.\n\n"
+" **Example:**\n"
+" - `[p]allowlist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3725
+msgid "Allowlist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:3730
+#, docstring
+msgid "\n"
+" Commands to manage the blocklist.\n\n"
+" Use `[p]blocklist clear` to disable the blocklist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3739
+#, docstring
+msgid "\n"
+" Adds users to the blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]blocklist add @26 @Will` - Adds two users to the blocklist.\n"
+" - `[p]blocklist add 262626262626262626` - Blocks a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to add to the blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3755
+msgid "You cannot add an owner to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3761
+msgid "Users have been added to the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3763
+msgid "User has been added to the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3767
+#, docstring
+msgid "\n"
+" Lists users on the blocklist.\n\n"
+" **Example:**\n"
+" - `[p]blocklist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3779
+msgid "Users on the blocklist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3781
+msgid "User on the blocklist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3793
+#, docstring
+msgid "\n"
+" Removes users from the blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]blocklist remove @26 @Will` - Removes two users from the blocklist.\n"
+" - `[p]blocklist remove 262626262626262626` - Removes a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to remove from the blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3806
+msgid "Users have been removed from the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3808
+msgid "User has been removed from the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3812
+#, docstring
+msgid "\n"
+" Clears the blocklist.\n\n"
+" **Example:**\n"
+" - `[p]blocklist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3819
+msgid "Blocklist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:3825
+#, docstring
+msgid "\n"
+" Commands to manage the server specific allowlist.\n\n"
+" Warning: When the allowlist is in use, the bot will ignore commands from everyone not on the list in the server.\n\n"
+" Use `[p]localallowlist clear` to disable the allowlist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3838
+#, docstring
+msgid "\n"
+" Adds a user or role to the server allowlist.\n\n"
+" **Examples:**\n"
+" - `[p]localallowlist add @26 @Will` - Adds two users to the local allowlist.\n"
+" - `[p]localallowlist add 262626262626262626` - Allows a user by ID.\n"
+" - `[p]localallowlist add \"Super Admins\"` - Allows a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to remove from the local allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3857
+msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first."
+msgstr ""
+
+#: redbot/core/core_commands.py:3866
+msgid "Users and/or roles have been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3868
+msgid "User or role has been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3872
+#, docstring
+msgid "\n"
+" Lists users and roles on the server allowlist.\n\n"
+" **Example:**\n"
+" - `[p]localallowlist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3884
+msgid "Allowed users and/or roles:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3886
+msgid "Allowed user or role:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3890 redbot/core/core_commands.py:4012
+msgid "Unknown or Deleted User/Role"
+msgstr ""
+
+#: redbot/core/core_commands.py:3900
+#, docstring
+msgid "\n"
+" Removes user or role from the allowlist.\n\n"
+" The local allowlist will be disabled if all users are removed.\n\n"
+" **Examples:**\n"
+" - `[p]localallowlist remove @26 @Will` - Removes two users from the local allowlist.\n"
+" - `[p]localallowlist remove 262626262626262626` - Removes a user by ID.\n"
+" - `[p]localallowlist remove \"Super Admins\"` - Removes a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to remove from the local allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3921
+msgid "I cannot allow you to do this, as it would remove your ability to run commands."
+msgstr ""
+
+#: redbot/core/core_commands.py:3929
+msgid "Users and/or roles have been removed from the server allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3931
+msgid "User or role has been removed from the server allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3935
+#, docstring
+msgid "\n"
+" Clears the allowlist.\n\n"
+" This disables the local allowlist and clears all entries.\n\n"
+" **Example:**\n"
+" - `[p]localallowlist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3944
+msgid "Server allowlist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:3950
+#, docstring
+msgid "\n"
+" Commands to manage the server specific blocklist.\n\n"
+" Use `[p]localblocklist clear` to disable the blocklist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3961
+#, docstring
+msgid "\n"
+" Adds a user or role to the local blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]localblocklist add @26 @Will` - Adds two users to the local blocklist.\n"
+" - `[p]localblocklist add 262626262626262626` - Blocks a user by ID.\n"
+" - `[p]localblocklist add \"Bad Apples\"` - Blocks a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to add to the local blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3975
+msgid "You cannot add yourself to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3978
+msgid "You cannot add the guild owner to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3981
+msgid "You cannot add a bot owner to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3988
+msgid "Users and/or roles have been added from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3990
+msgid "User or role has been added from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3994
+#, docstring
+msgid "\n"
+" Lists users and roles on the server blocklist.\n\n"
+" **Example:**\n"
+" - `[p]localblocklist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4006
+msgid "Blocked users and/or roles:"
+msgstr ""
+
+#: redbot/core/core_commands.py:4008
+msgid "Blocked user or role:"
+msgstr ""
+
+#: redbot/core/core_commands.py:4022
+#, docstring
+msgid "\n"
+" Removes user or role from local blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]localblocklist remove @26 @Will` - Removes two users from the local blocklist.\n"
+" - `[p]localblocklist remove 262626262626262626` - Unblocks a user by ID.\n"
+" - `[p]localblocklist remove \"Bad Apples\"` - Unblocks a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to remove from the local blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4038
+msgid "Users and/or roles have been removed from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:4040
+msgid "User or role has been removed from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:4044
+#, docstring
+msgid "\n"
+" Clears the server blocklist.\n\n"
+" This disables the server blocklist and clears all entries.\n\n"
+" **Example:**\n"
+" - `[p]blocklist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4053
+msgid "Server blocklist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:4058
+#, docstring
+msgid "Commands to enable and disable commands and cogs."
+msgstr ""
+
+#: redbot/core/core_commands.py:4064
+#, docstring
+msgid "Set the default state for a cog as disabled.\n\n"
+" This will disable the cog for all servers by default.\n"
+" To override it, use `[p]command enablecog` on the servers you want to allow usage.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command defaultdisablecog Economy`\n"
+" - `[p]command defaultdisablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to make disabled by default. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4080 redbot/core/core_commands.py:4105
+#: redbot/core/core_commands.py:4125 redbot/core/core_commands.py:4155
+msgid "Cog with the given name doesn't exist."
+msgstr ""
+
+#: redbot/core/core_commands.py:4082
+msgid "You can't disable this cog by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:4084
+msgid "{cogname} has been set as disabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:4089
+#, docstring
+msgid "Set the default state for a cog as enabled.\n\n"
+" This will re-enable the cog for all servers by default.\n"
+" To override it, use `[p]command disablecog` on the servers you want to disallow usage.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command defaultenablecog Economy`\n"
+" - `[p]command defaultenablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to make enabled by default. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4107
+msgid "{cogname} has been set as enabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:4112
+#, docstring
+msgid "Disable a cog in this server.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command disablecog Economy`\n"
+" - `[p]command disablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to disable on this server. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4127
+msgid "You can't disable this cog as you would lock yourself out."
+msgstr ""
+
+#: redbot/core/core_commands.py:4129
+msgid "{cogname} has been disabled in this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:4132
+msgid "{cogname} was already disabled (nothing to do)."
+msgstr ""
+
+#: redbot/core/core_commands.py:4138
+#, docstring
+msgid "Enable a cog in this server.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command enablecog Economy`\n"
+" - `[p]command enablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to enable on this server. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4150
+msgid "{cogname} has been enabled in this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:4158
+msgid "{cogname} was not disabled (nothing to do)."
+msgstr ""
+
+#: redbot/core/core_commands.py:4164
+#, docstring
+msgid "List the cogs which are disabled in this server.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabledcogs`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4177
+msgid "The following cogs are disabled in this guild:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4183
+msgid "There are no disabled cogs in this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:4187
+#, docstring
+msgid "\n"
+" List disabled commands.\n\n"
+" If you're the bot owner, this will show global disabled commands by default.\n"
+" Otherwise, this will show disabled commands on the current server.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabled`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4204
+#, docstring
+msgid "List disabled commands globally.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabled global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4211
+msgid "There aren't any globally disabled commands."
+msgstr "ليس هناك أي أوامر معطلة عالميا."
+
+#: redbot/core/core_commands.py:4214
+msgid "{} commands are disabled globally.\n"
+msgstr "ليس هناك أي أوامر معطلة عالميا."
+
+#: redbot/core/core_commands.py:4218
+msgid "1 command is disabled globally.\n"
+msgstr "أمر واحد معطل عالمياً.\n"
+
+#: redbot/core/core_commands.py:4226
+#, docstring
+msgid "List disabled commands in this server.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabled guild`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4233
+msgid "There aren't any disabled commands in {}."
+msgstr "ليس هناك أي أوامر معطلة في {}."
+
+#: redbot/core/core_commands.py:4236
+msgid "{} commands are disabled in {}.\n"
+msgstr "{} الأوامر معطلة في {}.\n"
+
+#: redbot/core/core_commands.py:4240
+msgid "1 command is disabled in {}.\n"
+msgstr "تم تعطيل أمر واحد في {}.\n"
+
+#: redbot/core/core_commands.py:4247
+#, docstring
+msgid "\n"
+" Disable a command.\n\n"
+" If you're the bot owner, this will disable commands globally by default.\n"
+" Otherwise, this will disable commands on the current server.\n\n"
+" **Examples:**\n"
+" - `[p]command disable userinfo` - Disables the `userinfo` command in the Mod cog.\n"
+" - `[p]command disable urban` - Disables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to disable.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4269
+#, docstring
+msgid "\n"
+" Disable a command globally.\n\n"
+" **Examples:**\n"
+" - `[p]command disable global userinfo` - Disables the `userinfo` command in the Mod cog.\n"
+" - `[p]command disable global urban` - Disables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to disable globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4288 redbot/core/core_commands.py:4331
+msgid "The command to disable cannot be `command` or any of its subcommands."
+msgstr "الأمر لتعطيل لا يمكن أن يكون \"أمر\" أو أي من الأوامر الفرعية الخاصة به."
+
+#: redbot/core/core_commands.py:4294 redbot/core/core_commands.py:4337
+msgid "This command is designated as being always available and cannot be disabled."
+msgstr "يتم تعيين هذا الأمر على أنه متاح دائمًا ولا يمكن تعطيله."
+
+#: redbot/core/core_commands.py:4303
+msgid "That command is already disabled globally."
+msgstr "وهذا الأمر معطل بالفعل على الصعيد العالمي."
+
+#: redbot/core/core_commands.py:4312
+#, docstring
+msgid "\n"
+" Disable a command in this server only.\n\n"
+" **Examples:**\n"
+" - `[p]command disable server userinfo` - Disables the `userinfo` command in the Mod cog.\n"
+" - `[p]command disable server urban` - Disables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to disable for the current server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4342
+msgid "You are not allowed to disable that command."
+msgstr "غير مسموح لك بتعطيل هذا الأمر."
+
+#: redbot/core/core_commands.py:4352
+msgid "That command is already disabled in this server."
+msgstr "هذا الأمر معطل بالفعل في هذا الخادم."
+
+#: redbot/core/core_commands.py:4358
+#, docstring
+msgid "Enable a command.\n\n"
+" If you're the bot owner, this will try to enable a globally disabled command by default.\n"
+" Otherwise, this will try to enable a command disabled on the current server.\n\n"
+" **Examples:**\n"
+" - `[p]command enable userinfo` - Enables the `userinfo` command in the Mod cog.\n"
+" - `[p]command enable urban` - Enables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to enable.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4378
+#, docstring
+msgid "\n"
+" Enable a command globally.\n\n"
+" **Examples:**\n"
+" - `[p]command enable global userinfo` - Enables the `userinfo` command in the Mod cog.\n"
+" - `[p]command enable global urban` - Enables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to enable globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4400
+msgid "That command is already enabled globally."
+msgstr "وقد تم بالفعل تمكين هذه القيادة على الصعيد العالمي."
+
+#: redbot/core/core_commands.py:4409
+#, docstring
+msgid "\n"
+" Enable a command in this server.\n\n"
+" **Examples:**\n"
+" - `[p]command enable server userinfo` - Enables the `userinfo` command in the Mod cog.\n"
+" - `[p]command enable server urban` - Enables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to enable for the current server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4427
+msgid "You are not allowed to enable that command."
+msgstr "غير مسموح لك بتمكين هذا الأمر."
+
+#: redbot/core/core_commands.py:4437
+msgid "That command is already enabled in this server."
+msgstr "هذا الأمر مفعل بالفعل في هذا السيرفر."
+
+#: redbot/core/core_commands.py:4444
+#, docstring
+msgid "Set the bot's response to disabled commands.\n\n"
+" Leave blank to send nothing.\n\n"
+" To include the command name in the message, include the `{command}` placeholder.\n\n"
+" **Examples:**\n"
+" - `[p]command disabledmsg This command is disabled`\n"
+" - `[p]command disabledmsg {command} is disabled`\n"
+" - `[p]command disabledmsg` - Sends nothing when a disabled command is attempted.\n\n"
+" **Arguments:**\n"
+" - `[message]` - The message to send when a disabled command is attempted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4465
+#, docstring
+msgid "\n"
+" Commands to manage server settings for immunity from automated actions.\n\n"
+" This includes duplicate message deletion and mention spam from the Mod cog, and filters from the Filter cog.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4474
+#, docstring
+msgid "\n"
+" Gets the current members and roles configured for automatic moderation action immunity.\n\n"
+" **Example:**\n"
+" - `[p]autoimmune list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4487
+msgid "Roles immune from automated moderation actions:\n"
+msgstr "الأدوار المناعية من إجراءات الاعتدال الآلية:\n"
+
+#: redbot/core/core_commands.py:4492
+msgid "Members immune from automated moderation actions:\n"
+msgstr "الأعضاء المناصرين من إجراءات الاعتدال الآلية:\n"
+
+#: redbot/core/core_commands.py:4496
+msgid "No immunity settings here."
+msgstr ""
+
+#: redbot/core/core_commands.py:4505
+#, docstring
+msgid "\n"
+" Makes a user or role immune from automated moderation actions.\n\n"
+" **Examples:**\n"
+" - `[p]autoimmune add @TwentySix` - Adds a user.\n"
+" - `[p]autoimmune add @Mods` - Adds a role.\n\n"
+" **Arguments:**\n"
+" - `` - The user or role to add immunity to.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4517
+msgid "Already added."
+msgstr "تمت الإضافة بالفعل."
+
+#: redbot/core/core_commands.py:4525
+#, docstring
+msgid "\n"
+" Remove a user or role from being immune to automated moderation actions.\n\n"
+" **Examples:**\n"
+" - `[p]autoimmune remove @TwentySix` - Removes a user.\n"
+" - `[p]autoimmune remove @Mods` - Removes a role.\n\n"
+" **Arguments:**\n"
+" - `` - The user or role to remove immunity from.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4537
+msgid "Not in list."
+msgstr "ليس في القائمة."
+
+#: redbot/core/core_commands.py:4545
+#, docstring
+msgid "\n"
+" Checks if a user or role would be considered immune from automated actions.\n\n"
+" **Examples:**\n"
+" - `[p]autoimmune isimmune @TwentySix`\n"
+" - `[p]autoimmune isimmune @Mods`\n\n"
+" **Arguments:**\n"
+" - `` - The user or role to check the immunity of.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4557
+msgid "They are immune."
+msgstr ""
+
+#: redbot/core/core_commands.py:4559
+msgid "They are not immune."
+msgstr ""
+
+#: redbot/core/core_commands.py:4564
+#, docstring
+msgid "\n"
+" Commands for configuring owner notifications.\n\n"
+" Owner notifications include usage of `[p]contact` and available Red updates.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4573
+#, docstring
+msgid "\n"
+" Opt-in on receiving owner notifications.\n\n"
+" This is the default state.\n\n"
+" Note: This will only resume sending owner notifications to your DMs.\n"
+" Additional owners and destinations will not be affected.\n\n"
+" **Example:**\n"
+" - `[p]ownernotifications optin`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4592
+#, docstring
+msgid "\n"
+" Opt-out of receiving owner notifications.\n\n"
+" Note: This will only stop sending owner notifications to your DMs.\n"
+" Additional owners and destinations will still receive notifications.\n\n"
+" **Example:**\n"
+" - `[p]ownernotifications optout`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4611
+#, docstring
+msgid "\n"
+" Adds a destination text channel to receive owner notifications.\n\n"
+" **Examples:**\n"
+" - `[p]ownernotifications adddestination #owner-notifications`\n"
+" - `[p]ownernotifications adddestination 168091848718417920` - Accepts channel IDs.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to send owner notifications to.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4637
+#, docstring
+msgid "\n"
+" Removes a destination text channel from receiving owner notifications.\n\n"
+" **Examples:**\n"
+" - `[p]ownernotifications removedestination #owner-notifications`\n"
+" - `[p]ownernotifications deletedestination 168091848718417920` - Accepts channel IDs.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to stop sending owner notifications to.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4661
+#, docstring
+msgid "\n"
+" Lists the configured extra destinations for owner notifications.\n\n"
+" **Example:**\n"
+" - `[p]ownernotifications listdestinations`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4671
+msgid "There are no extra channels being sent to."
+msgstr "لا توجد قنوات إضافية يتم إرسالها إليها."
+
+#: redbot/core/core_commands.py:4682
+msgid "Unknown channel with id: {id}"
+msgstr "قناة غير معروفة بالمعرفة: {id}"
+
+#: redbot/core/core_commands.py:4713
+#, docstring
+msgid "\n"
+" Commands to add servers or channels to the ignore list.\n\n"
+" The ignore list will prevent the bot from responding to commands in the configured locations.\n\n"
+" Note: Owners and Admins override the ignore list.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4723
+#, docstring
+msgid "\n"
+" List the currently ignored servers and channels.\n\n"
+" **Example:**\n"
+" - `[p]ignore list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4738
+#, docstring
+msgid "\n"
+" Ignore commands in the channel or category.\n\n"
+" Defaults to the current channel.\n\n"
+" Note: Owners, Admins, and those with Manage Channel permissions override ignored channels.\n\n"
+" **Examples:**\n"
+" - `[p]ignore channel #general` - Ignores commands in the #general channel.\n"
+" - `[p]ignore channel` - Ignores commands in the current channel.\n"
+" - `[p]ignore channel \"General Channels\"` - Use quotes for categories with spaces.\n"
+" - `[p]ignore channel 356236713347252226` - Also accepts IDs.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to ignore. Can be a category channel.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4758
+msgid "Channel added to ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4760
+msgid "Channel already in ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4765
+#, docstring
+msgid "\n"
+" Ignore commands in this server.\n\n"
+" Note: Owners, Admins, and those with Manage Server permissions override ignored servers.\n\n"
+" **Example:**\n"
+" - `[p]ignore server` - Ignores the current server\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4776
+msgid "This server has been added to the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4778
+msgid "This server is already being ignored."
+msgstr ""
+
+#: redbot/core/core_commands.py:4784
+#, docstring
+msgid "Commands to remove servers or channels from the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4792
+#, docstring
+msgid "\n"
+" Remove a channel or category from the ignore list.\n\n"
+" Defaults to the current channel.\n\n"
+" **Examples:**\n"
+" - `[p]unignore channel #general` - Unignores commands in the #general channel.\n"
+" - `[p]unignore channel` - Unignores commands in the current channel.\n"
+" - `[p]unignore channel \"General Channels\"` - Use quotes for categories with spaces.\n"
+" - `[p]unignore channel 356236713347252226` - Also accepts IDs. Use this method to unignore categories.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to unignore. This can be a category channel.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4811
+msgid "Channel removed from ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4813
+msgid "That channel is not in the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4818
+#, docstring
+msgid "\n"
+" Remove this server from the ignore list.\n\n"
+" **Example:**\n"
+" - `[p]unignore server` - Stops ignoring the current server\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4827
+msgid "This server has been removed from the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4829
+msgid "This server is not in the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4835
+msgid "This server is currently being ignored."
+msgstr ""
+
+#: redbot/core/core_commands.py:4847
+msgid "Currently ignored categories: {categories}\n"
+"Channels: {channels}"
+msgstr ""
+
+#: redbot/core/core_commands.py:4862
+#, docstring
+msgid "\n"
+" Get info about Red's licenses.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:36
+#, docstring
+msgid "Various development focused utilities."
+msgstr ""
+
+#: redbot/core/dev_commands.py:123
+#, docstring
+msgid "Evaluate a statement of python code.\n\n"
+" The bot will always respond with the return value of the code.\n"
+" If the return value of the code is a coroutine, it will be awaited,\n"
+" and the result of that will be the bot's response.\n\n"
+" Note: Only one statement may be evaluated. Using certain restricted\n"
+" keywords, e.g. yield, will result in a syntax error. For multiple\n"
+" lines or asynchronous code, see [p]repl or [p]eval.\n\n"
+" Environment Variables:\n"
+" ctx - command invocation context\n"
+" bot - bot object\n"
+" channel - the current channel object\n"
+" author - command author's member object\n"
+" message - the command's message object\n"
+" discord - discord.py library\n"
+" commands - redbot.core.commands\n"
+" _ - The result of the last dev command.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:167
+#, docstring
+msgid "Execute asynchronous code.\n\n"
+" This command wraps code into the body of an async function and then\n"
+" calls and awaits it. The bot will respond with anything printed to\n"
+" stdout, as well as the return value of the function.\n\n"
+" The code can be within a codeblock, inline code or neither, as long\n"
+" as they are not mixed and they are formatted correctly.\n\n"
+" Environment Variables:\n"
+" ctx - command invocation context\n"
+" bot - bot object\n"
+" channel - the current channel object\n"
+" author - command author's member object\n"
+" message - the command's message object\n"
+" discord - discord.py library\n"
+" commands - redbot.core.commands\n"
+" _ - The result of the last dev command.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:221
+#, docstring
+msgid "Open an interactive REPL.\n\n"
+" The REPL will only recognise code as messages which start with a\n"
+" backtick. This includes codeblocks, and as such multiple lines can be\n"
+" evaluated.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:230
+msgid "Already running a REPL session in this channel. Exit it with `quit`."
+msgstr ""
+
+#: redbot/core/dev_commands.py:234
+msgid "Already running a REPL session in this channel. Resume the REPL with `{}repl resume`."
+msgstr ""
+
+#: redbot/core/dev_commands.py:245
+msgid "Enter code to execute or evaluate. `exit()` or `quit` to exit. `{}repl pause` to pause."
+msgstr ""
+
+#: redbot/core/dev_commands.py:259
+msgid "Exiting."
+msgstr ""
+
+#: redbot/core/dev_commands.py:310
+msgid "Unexpected error: `{}`"
+msgstr ""
+
+#: redbot/core/dev_commands.py:314
+#, docstring
+msgid "Pauses/resumes the REPL running in the current channel"
+msgstr ""
+
+#: redbot/core/dev_commands.py:316
+msgid "There is no currently running REPL session in this channel."
+msgstr ""
+
+#: redbot/core/dev_commands.py:324
+msgid "The REPL session in this channel has been resumed."
+msgstr ""
+
+#: redbot/core/dev_commands.py:326
+msgid "The REPL session in this channel is now paused."
+msgstr ""
+
+#: redbot/core/dev_commands.py:331
+#, docstring
+msgid "Mock another user invoking a command.\n\n"
+" The prefix must not be entered.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:344
+#, docstring
+msgid "Dispatch a message event as if it were sent by a different user.\n\n"
+" Only reads the raw content of the message. Attachments, embeds etc. are\n"
+" ignored.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:365
+#, docstring
+msgid "Give bot owners the ability to bypass cooldowns.\n\n"
+" Does not persist through restarts."
+msgstr ""
+
+#: redbot/core/dev_commands.py:373
+msgid "Bot owners will now bypass all commands with cooldowns."
+msgstr ""
+
+#: redbot/core/dev_commands.py:375
+msgid "Bot owners will no longer bypass all commands with cooldowns."
+msgstr ""
+
+#: redbot/core/errors.py:49
+msgid "{user}'s balance cannot rise above {max} {currency}."
+msgstr ""
+
+#: redbot/core/events.py:112
+msgid "Your Red instance is out of date! {} is the current version, however you are using {}!"
+msgstr ""
+
+#: redbot/core/events.py:122
+msgid "\n\n"
+"While the following command should work in most scenarios as it is based on your current OS, environment, and Python version, **we highly recommend you to read the update docs at <{docs}> and make sure there is nothing else that needs to be done during the update.**"
+msgstr ""
+
+#: redbot/core/events.py:146
+msgid "\n\n"
+"To update your bot, first shutdown your bot then open a window of {console} (Not as admin) and run the following:\n\n"
+msgstr ""
+
+#: redbot/core/events.py:151
+msgid "Command Prompt"
+msgstr ""
+
+#: redbot/core/events.py:153
+msgid "Terminal"
+msgstr ""
+
+#: redbot/core/events.py:160
+msgid "\n"
+"Once you've started up your bot again, if you have any 3rd-party cogs installed we then highly recommend you update them with this command in Discord: `[p]cog update`"
+msgstr ""
+
+#: redbot/core/events.py:167
+msgid "\n\n"
+"You have Python `{py_version}` and this update requires `{req_py}`; you cannot simply run the update command.\n\n"
+"You will need to follow the update instructions in our docs above, if you still need help updating after following the docs go to our #support channel in "
+msgstr ""
+
+#: redbot/core/events.py:232
+msgid "`{user_input}` is not a valid value for `{command}`"
+msgstr ""
+
+#: redbot/core/events.py:257
+msgid "Error in command '{command}'. Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/events.py:282
+msgid "I require the {permission} permission to execute that command."
+msgstr ""
+
+#: redbot/core/events.py:286
+msgid "I require {permission_list} permissions to execute that command."
+msgstr ""
+
+#: redbot/core/events.py:294
+msgid "That command is not available in DMs."
+msgstr ""
+
+#: redbot/core/events.py:296
+msgid "That command is only available in DMs."
+msgstr ""
+
+#: redbot/core/events.py:298
+msgid "That command is only available in NSFW channels."
+msgstr ""
+
+#: redbot/core/events.py:308
+msgid "This command is on cooldown. Try again in {delay}."
+msgstr ""
+
+#: redbot/core/events.py:310
+msgid "This command is on cooldown. Try again in 1 second."
+msgstr ""
+
+#: redbot/core/events.py:315
+msgid "Too many people using this command. It can only be used {number} times concurrently."
+msgstr ""
+
+#: redbot/core/events.py:320
+msgid "Too many people using this command. It can only be used once concurrently."
+msgstr ""
+
+#: redbot/core/events.py:326
+msgid "That command is still completing, it can only be used {number} times per {type} concurrently."
+msgstr ""
+
+#: redbot/core/events.py:331
+msgid "That command is still completing, it can only be used once per {type} concurrently."
+msgstr ""
+
+#: redbot/core/events.py:337
+msgid "Too many people using this command. It can only be used {number} times per {type} concurrently."
+msgstr ""
+
+#: redbot/core/events.py:342
+msgid "Too many people using this command. It can only be used once per {type} concurrently."
+msgstr ""
+
+#: redbot/core/modlog.py:417
+msgid "Case #{} | {} {}"
+msgstr ""
+
+#: redbot/core/modlog.py:419
+msgid "**Reason:** Use the `reason` command to add it"
+msgstr ""
+
+#: redbot/core/modlog.py:422
+msgid "Unknown"
+msgstr "غير معروف"
+
+#: redbot/core/modlog.py:426 redbot/core/modlog.py:448
+#: redbot/core/modlog.py:463
+msgid "Deleted User."
+msgstr ""
+
+#: redbot/core/modlog.py:477 redbot/core/modlog.py:512
+msgid "**Reason:** {}"
+msgstr ""
+
+#: redbot/core/modlog.py:491
+msgid "Moderator"
+msgstr "المشرف"
+
+#: redbot/core/modlog.py:493
+msgid "Until"
+msgstr "حتى"
+
+#: redbot/core/modlog.py:494
+msgid "Duration"
+msgstr "المدة"
+
+#: redbot/core/modlog.py:498 redbot/core/modlog.py:503
+msgid "Channel"
+msgstr "قناة"
+
+#: redbot/core/modlog.py:499
+msgid "{channel} (deleted)"
+msgstr "{channel} (حذف)"
+
+#: redbot/core/modlog.py:505
+msgid "Amended by"
+msgstr "معدلة من قبل"
+
+#: redbot/core/modlog.py:507
+msgid "Last modified at"
+msgstr "آخر تعديل في"
+
+#: redbot/core/modlog.py:527
+msgid "**User:** {}\n"
+msgstr "**المستخدم:** {}\n"
+
+#: redbot/core/modlog.py:528
+msgid "**Moderator:** {}\n"
+msgstr "**المشرف:** {}\n"
+
+#: redbot/core/modlog.py:531
+msgid "**Until:** {}\n"
+"**Duration:** {}\n"
+msgstr "**حتى:** {}\n"
+"**المدة:** {}\n"
+
+#: redbot/core/modlog.py:534
+msgid "**Channel**: {} (Deleted)\n"
+msgstr ""
+
+#: redbot/core/modlog.py:536
+msgid "**Channel**: {}\n"
+msgstr "**القناة**: {}\n"
+
+#: redbot/core/modlog.py:538
+msgid "**Amended by:** {}\n"
+msgstr "**معدلة بواسطة:** {}\n"
+
+#: redbot/core/modlog.py:540
+msgid "**Last modified at:** {}\n"
+msgstr "**آخر تعديل في:** {}\n"
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/bg-BG.po b/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/bg-BG.po
new file mode 100644
index 0000000000000000000000000000000000000000..6a8ca0414b493751ee10bc267aa49515f7459193
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/bg-BG.po
@@ -0,0 +1,3425 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: red-discordbot\n"
+"POT-Creation-Date: 2021-06-12 15:52+0000\n"
+"Last-Translator: \n"
+"Language-Team: Bulgarian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: redgettext 3.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Crowdin-Project: red-discordbot\n"
+"X-Crowdin-Project-ID: 289505\n"
+"X-Crowdin-Language: bg\n"
+"X-Crowdin-File-ID: 4\n"
+"Language: bg_BG\n"
+
+#: redbot/core/bank.py:1019
+msgid "Can't pay for this command in DM without a global bank."
+msgstr ""
+
+#: redbot/core/bank.py:1026
+msgid "You need at least {cost} {currency} to use this command."
+msgstr ""
+
+#: redbot/core/cog_manager.py:316
+#, docstring
+msgid "Commands to interface with Red's cog manager."
+msgstr ""
+
+#: redbot/core/cog_manager.py:325
+#, docstring
+msgid "\n"
+" Lists current cog paths in order of priority.\n"
+" "
+msgstr ""
+
+#: redbot/core/cog_manager.py:333
+msgid "Install Path: {install_path}\n"
+"Core Path: {core_path}\n\n"
+msgstr ""
+
+#: redbot/core/cog_manager.py:347
+#, docstring
+msgid "\n"
+" Add a path to the list of available cog paths.\n"
+" "
+msgstr ""
+
+#: redbot/core/cog_manager.py:351
+msgid "That path does not exist or does not point to a valid directory."
+msgstr ""
+
+#: redbot/core/cog_manager.py:359
+msgid "Path successfully added."
+msgstr "Пътят е добавен успешно."
+
+#: redbot/core/cog_manager.py:364
+#, docstring
+msgid "\n"
+" Removes a path from the available cog paths given the `path_number` from `[p]paths`.\n"
+" "
+msgstr ""
+
+#: redbot/core/cog_manager.py:369 redbot/core/cog_manager.py:392
+msgid "Path numbers must be positive."
+msgstr ""
+
+#: redbot/core/cog_manager.py:376
+msgid "That is an invalid path number."
+msgstr "Това е невалиден номер на пътечката."
+
+#: redbot/core/cog_manager.py:380
+msgid "Path successfully removed."
+msgstr "Пътят е успешно премахнат."
+
+#: redbot/core/cog_manager.py:385
+#, docstring
+msgid "\n"
+" Reorders paths internally to allow discovery of different cogs.\n"
+" "
+msgstr ""
+
+#: redbot/core/cog_manager.py:399
+msgid "Invalid 'from' index."
+msgstr "Невалиден \"от\" индекс."
+
+#: redbot/core/cog_manager.py:405
+msgid "Invalid 'to' index."
+msgstr "Невалиден \"към\" индекс."
+
+#: redbot/core/cog_manager.py:409
+msgid "Paths reordered."
+msgstr "Пътищата са пренаредени."
+
+#: redbot/core/cog_manager.py:414
+#, docstring
+msgid "\n"
+" Returns the current install path or sets it if one is provided.\n"
+" The provided path must be absolute or relative to the bot's\n"
+" directory and it must already exist.\n\n"
+" No installed cogs will be transferred in the process.\n"
+" "
+msgstr ""
+
+#: redbot/core/cog_manager.py:427
+msgid "That path does not exist."
+msgstr "Този път не съществува."
+
+#: redbot/core/cog_manager.py:432
+msgid "The bot will install new cogs to the `{}` directory."
+msgstr "Ботът ще инсталира новите COG-ове в `{}` директория."
+
+#: redbot/core/cog_manager.py:438
+#, docstring
+msgid "\n"
+" Lists all loaded and available cogs.\n"
+" "
+msgstr ""
+
+#: redbot/core/cog_manager.py:451 redbot/core/cog_manager.py:466
+msgid "**{} loaded:**\n"
+msgstr ""
+
+#: redbot/core/cog_manager.py:452 redbot/core/cog_manager.py:468
+msgid "**{} unloaded:**\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:181
+msgid "Alias {alias_name} is already an existing command or alias in one of the loaded cogs."
+msgstr ""
+
+#: redbot/core/core_commands.py:186
+msgid "Command {command_name} is already an existing command or alias in one of the loaded cogs."
+msgstr ""
+
+#: redbot/core/core_commands.py:398
+#, docstring
+msgid "\n"
+" The Core cog has many commands related to core functions.\n\n"
+" These commands come loaded with every Red bot, and cover some of the most basic usage of the bot.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:410
+#, docstring
+msgid "Pong."
+msgstr ""
+
+#: redbot/core/core_commands.py:415
+#, docstring
+msgid "Shows info about [botname].\n\n"
+" See `[p]set custominfo` to customize.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:445
+msgid "This bot is an instance of [Red, an open source Discord bot]({}) created by [Twentysix]({}) and [improved by many]({}).\n\n"
+"Red is backed by a passionate community who contributes and creates content for everyone to enjoy. [Join us today]({}) and help us improve!\n\n"
+"(c) Cog Creators"
+msgstr ""
+
+#: redbot/core/core_commands.py:456
+msgid "Instance owned by team"
+msgstr ""
+
+#: redbot/core/core_commands.py:456
+msgid "Instance owned by"
+msgstr ""
+
+#: redbot/core/core_commands.py:461
+msgid "Red version"
+msgstr ""
+
+#: redbot/core/core_commands.py:464 redbot/core/core_commands.py:520
+msgid "Yes, {version} is available."
+msgstr ""
+
+#: redbot/core/core_commands.py:468 redbot/core/core_commands.py:524
+msgid "Checking for updates failed."
+msgstr ""
+
+#: redbot/core/core_commands.py:469
+msgid "Outdated"
+msgstr ""
+
+#: redbot/core/core_commands.py:471
+msgid "About this instance"
+msgstr ""
+
+#: redbot/core/core_commands.py:472
+msgid "About Red"
+msgstr ""
+
+#: redbot/core/core_commands.py:475 redbot/core/core_commands.py:533
+msgid "Bringing joy since 02 Jan 2016 (over {} days ago!)"
+msgstr ""
+
+#: redbot/core/core_commands.py:483
+msgid "This bot is an instance of Red, an open source Discord bot (1) created by Twentysix (2) and improved by many (3).\n\n"
+"Red is backed by a passionate community who contributes and creates content for everyone to enjoy. Join us today (4) and help us improve!\n\n"
+"(c) Cog Creators"
+msgstr ""
+
+#: redbot/core/core_commands.py:494
+msgid "Instance owned by team: [{owner}]\n"
+"Python: [{python_version}] (5)\n"
+"discord.py: [{dpy_version}] (6)\n"
+"Red version: [{red_version}] (7)\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:506
+msgid "Instance owned by: [{owner}]\n"
+"Python: [{python_version}] (5)\n"
+"discord.py: [{dpy_version}] (6)\n"
+"Red version: [{red_version}] (7)\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:525
+msgid "Outdated: [{state}]\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:528
+msgid "**About Red**\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:539
+msgid "**About this instance**\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:541
+msgid "**References**\n"
+"1. <{}>\n"
+"2. <{}>\n"
+"3. <{}>\n"
+"4. <{}>\n"
+"5. <{}>\n"
+"6. <{}>\n"
+"7. <{}>\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:557
+#, docstring
+msgid "Shows [botname]'s uptime."
+msgstr ""
+
+#: redbot/core/core_commands.py:560
+msgid "Less than one second"
+msgstr ""
+
+#: redbot/core/core_commands.py:562
+msgid "Been up for: **{time_quantity}** (since {timestamp} UTC)"
+msgstr ""
+
+#: redbot/core/core_commands.py:569
+#, docstring
+msgid "\n"
+" Commands which interact with the data [botname] has about you.\n\n"
+" More information can be found in the [End User Data Documentation.](https://docs.discord.red/en/stable/red_core_data_statement.html)\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:580
+#, docstring
+msgid "\n"
+" Find out what type of data [botname] stores and why.\n\n"
+" **Example:**\n"
+" - `[p]mydata whatdata`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:590
+msgid "This bot stores some data about users as necessary to function. This is mostly the ID your user is assigned by Discord, linked to a handful of things depending on what you interact with in the bot. There are a few commands which store it to keep track of who created something. (such as playlists) For full details about this as well as more in depth details of what is stored and why, see {link}.\n\n"
+"Additionally, 3rd party addons loaded by the bot's owner may or may not store additional things. You can use `{prefix}mydata 3rdparty` to view the statements provided by each 3rd-party addition."
+msgstr ""
+
+#: redbot/core/core_commands.py:609
+#, docstring
+msgid "View the End User Data statements of each 3rd-party module.\n\n"
+" This will send an attachment with the End User Data statements of all loaded 3rd party cogs.\n\n"
+" **Example:**\n"
+" - `[p]mydata 3rdparty`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:620
+msgid "I need to be able to attach files (try in DMs?)."
+msgstr ""
+
+#: redbot/core/core_commands.py:630
+msgid "This instance does not appear to have any 3rd-party extensions loaded."
+msgstr ""
+
+#: redbot/core/core_commands.py:650
+msgid "3rd party End User Data statements"
+msgstr ""
+
+#: redbot/core/core_commands.py:652
+msgid "The following are statements provided by 3rd-party extensions."
+msgstr ""
+
+#: redbot/core/core_commands.py:657
+msgid "3rd-party extensions without statements\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:668
+msgid "Here's a generated page with the statements provided by 3rd-party extensions."
+msgstr ""
+
+#: redbot/core/core_commands.py:684
+msgid "Did not get confirmation, cancelling."
+msgstr ""
+
+#: redbot/core/core_commands.py:689
+msgid "Did not get a matching confirmation, cancelling."
+msgstr ""
+
+#: redbot/core/core_commands.py:700
+#, docstring
+msgid "\n"
+" Have [botname] forget what it knows about you.\n\n"
+" This may not remove all data about you, data needed for operation,\n"
+" such as command cooldowns will be kept until no longer necessary.\n\n"
+" Further interactions with [botname] may cause it to learn about you again.\n\n"
+" **Example:**\n"
+" - `[p]mydata forgetme`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:715
+msgid "This command ({command}) does not support non-interactive usage."
+msgstr ""
+
+#: redbot/core/core_commands.py:722
+msgid "This will cause the bot to get rid of and/or disassociate data from you. It will not get rid of operational data such as modlog entries, warnings, or mutes. If you are sure this is what you want, please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:732
+msgid "This may take some time."
+msgstr ""
+
+#: redbot/core/core_commands.py:745
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:760
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following cogs errored: {cogs}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:770
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following modules errored: {modules}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:780
+msgid "I've deleted any non-operational data about you (that I know how to delete) {mention}"
+msgstr ""
+
+#: redbot/core/core_commands.py:788 redbot/core/core_commands.py:955
+#: redbot/core/core_commands.py:1041 redbot/core/core_commands.py:1112
+msgid "{mention} The following cogs did not handle deletion:\n"
+"{cogs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:798
+#, docstring
+msgid "[Coming Soon] Get what data [botname] has about you."
+msgstr ""
+
+#: redbot/core/core_commands.py:800
+msgid "This command doesn't do anything yet, but we're working on adding support for this."
+msgstr ""
+
+#: redbot/core/core_commands.py:809
+#, docstring
+msgid "\n"
+" Commands for more complete data handling.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:815
+#, docstring
+msgid "\n"
+" Set the bot to allow users to request a data deletion.\n\n"
+" This is on by default.\n"
+" Opposite of `[p]mydata ownermanagement disallowuserdeletions`\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement allowuserdeletions`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:826
+msgid "User can delete their own data. This will not include operational data such as blocked users."
+msgstr ""
+
+#: redbot/core/core_commands.py:834
+#, docstring
+msgid "\n"
+" Set the bot to not allow users to request a data deletion.\n\n"
+" Opposite of `[p]mydata ownermanagement allowuserdeletions`\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement disallowuserdeletions`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:843
+msgid "User can not delete their own data."
+msgstr ""
+
+#: redbot/core/core_commands.py:847
+#, docstring
+msgid "\n"
+" Sets how user deletions are treated.\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement setuserdeletionlevel 1`\n\n"
+" **Arguments:**\n"
+" - `` - The strictness level for user deletion. See Level guide below.\n\n"
+" Level:\n"
+" - `0`: What users can delete is left entirely up to each cog.\n"
+" - `1`: Cogs should delete anything the cog doesn't need about the user.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:864
+msgid "Cogs will be instructed to remove all non operational data upon a user request."
+msgstr ""
+
+#: redbot/core/core_commands.py:872
+msgid "Cogs will be informed a user has made a data deletion request, and the details of what to delete will be left to the discretion of the cog author."
+msgstr ""
+
+#: redbot/core/core_commands.py:883
+#, docstring
+msgid "\n"
+" Handle a deletion request from Discord.\n\n"
+" This will cause the bot to get rid of or disassociate all data from the specified user ID.\n"
+" You should not use this unless Discord has specifically requested this with regard to a deleted user.\n"
+" This will remove the user from various anti-abuse measures.\n"
+" If you are processing a manual request from a user, you may want `[p]mydata ownermanagement deleteforuser` instead.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:897
+msgid "This will cause the bot to get rid of or disassociate all data from the specified user ID. You should not use this unless Discord has specifically requested this with regard to a deleted user. This will remove the user from various anti-abuse measures. If you are processing a manual request from a user, you may want `{prefix}{command_name}` instead.\n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:915 redbot/core/core_commands.py:1072
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:930 redbot/core/core_commands.py:1087
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following cogs errored: {cogs}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:941 redbot/core/core_commands.py:1098
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following modules errored: {modules}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:951 redbot/core/core_commands.py:1108
+msgid "I've deleted all data about that user that I know how to delete."
+msgstr ""
+
+#: redbot/core/core_commands.py:962
+#, docstring
+msgid "Delete data [botname] has about a user for a user.\n\n"
+" This will cause the bot to get rid of or disassociate a lot of non-operational data from the specified user.\n"
+" Users have access to a different command for this unless they can't interact with the bot at all.\n"
+" This is a mostly safe operation, but you should not use it unless processing a request from this user as it may impact their usage of the bot.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:973
+msgid "This will cause the bot to get rid of or disassociate a lot of non-operational data from the specified user. Users have access to different command for this unless they can't interact with the bot at all. This is a mostly safe operation, but you should not use it unless processing a request from this user as it may impact their usage of the bot. \n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:996
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1011
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following cogs errored: {cogs}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1022
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following modules errored: {modules}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1033
+msgid "I've deleted all non-operational data about that user that I know how to delete."
+msgstr ""
+
+#: redbot/core/core_commands.py:1048
+#, docstring
+msgid "Delete data [botname] has about a user.\n\n"
+" This will cause the bot to get rid of or disassociate a lot of data about the specified user.\n"
+" This may include more than just end user data, including anti abuse records.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1058
+msgid "This will cause the bot to get rid of or disassociate a lot of data about the specified user. This may include more than just end user data, including anti abuse records.\n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:1119
+#, docstring
+msgid "\n"
+" Commands for toggling embeds on or off.\n\n"
+" This setting determines whether or not to use embeds as a response to a command (for commands that support it).\n"
+" The default is to use embeds.\n\n"
+" The embed settings are checked until the first True/False in this order:\n"
+" - In guild context:\n"
+" 1. Channel override - `[p]embedset channel`\n"
+" 2. Server command override - `[p]embedset command server`\n"
+" 3. Server override - `[p]embedset server`\n"
+" 4. Global command override - `[p]embedset command global`\n"
+" 5. Global setting -`[p]embedset global`\n\n"
+" - In DM context:\n"
+" 1. User override - `[p]embedset user`\n"
+" 2. Global command override - `[p]embedset command global`\n"
+" 3. Global setting - `[p]embedset global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1141
+#, docstring
+msgid "\n"
+" Show the current embed settings.\n\n"
+" Provide a command name to check for command specific embed settings.\n\n"
+" **Examples:**\n"
+" - `[p]embedset showsettings` - Shows embed settings.\n"
+" - `[p]embedset showsettings info` - Also shows embed settings for the 'info' command.\n"
+" - `[p]embedset showsettings \"ignore list\"` - Checking subcommands requires quotes.\n\n"
+" **Arguments:**\n"
+" - `[command_name]` - Checks this command for command specific embed settings.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1158 redbot/core/core_commands.py:1314
+#: redbot/core/core_commands.py:1365 redbot/core/core_commands.py:4282
+#: redbot/core/core_commands.py:4325 redbot/core/core_commands.py:4391
+#: redbot/core/core_commands.py:4422
+msgid "I couldn't find that command. Please note that it is case sensitive."
+msgstr ""
+
+#: redbot/core/core_commands.py:1164
+msgid "Embed settings:\n\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1166
+msgid "Global default: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1171
+msgid "Global command setting for {command} command: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1177
+msgid "Guild setting: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1182
+msgid "Server command setting for {command} command: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1188
+msgid "Channel setting: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1191
+msgid "User setting: {value}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1197
+#, docstring
+msgid "\n"
+" Toggle the global embed setting.\n\n"
+" This is used as a fallback if the user or guild hasn't set a preference.\n"
+" The default is to use embeds.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Example:**\n"
+" - `[p]embedset global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1211
+msgid "Embeds are now disabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:1214
+msgid "Embeds are now enabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:1220
+#, docstring
+msgid "\n"
+" Set the server's embed setting.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n"
+" This is used for all commands done in a server.\n\n"
+" If enabled is left blank, the setting will be unset and the global default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset server False` - Disables embeds on this server.\n"
+" - `[p]embedset server` - Resets value to use global default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds on this server. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1239 redbot/core/core_commands.py:1323
+#: redbot/core/core_commands.py:1414 redbot/core/core_commands.py:1445
+msgid "Embeds will now fall back to the global setting."
+msgstr ""
+
+#: redbot/core/core_commands.py:1244
+msgid "Embeds are now enabled for this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:1246
+msgid "Embeds are now disabled for this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:1254
+#, docstring
+msgid "\n"
+" Sets a command's embed setting.\n\n"
+" If you're the bot owner, this will try to change the command's embed setting globally by default.\n"
+" Otherwise, this will try to change embed settings on the current server.\n\n"
+" If enabled is left blank, the setting will be unset.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1283
+msgid "The passed command requires Embed Links permission and therefore cannot be set to not use embeds."
+msgstr ""
+
+#: redbot/core/core_commands.py:1294
+#, docstring
+msgid "\n"
+" Sets a command's embed setting globally.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n\n"
+" If enabled is left blank, the setting will be unset.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command global info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command global info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command global \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1329 redbot/core/core_commands.py:1380
+msgid "Embeds are now enabled for {command_name} command."
+msgstr ""
+
+#: redbot/core/core_commands.py:1335 redbot/core/core_commands.py:1386
+msgid "Embeds are now disabled for {command_name} command."
+msgstr ""
+
+#: redbot/core/core_commands.py:1345
+#, docstring
+msgid "\n"
+" Sets a commmand's embed setting for the current server.\n\n"
+" If set, this is used instead of the server default to determine whether or not to use embeds.\n\n"
+" If enabled is left blank, the setting will be unset and the server default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command server info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command server info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command server \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1374
+msgid "Embeds will now fall back to the server setting."
+msgstr ""
+
+#: redbot/core/core_commands.py:1395
+#, docstring
+msgid "\n"
+" Set's a channel's embed setting.\n\n"
+" If set, this is used instead of the guild and command defaults to determine whether or not to use embeds.\n"
+" This is used for all commands done in a channel.\n\n"
+" If enabled is left blank, the setting will be unset and the guild default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset channel False` - Disables embeds in this channel.\n"
+" - `[p]embedset channel` - Resets value to use guild default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds in this channel. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1419
+msgid "Embeds are now {} for this channel."
+msgstr ""
+
+#: redbot/core/core_commands.py:1420 redbot/core/core_commands.py:2273
+#: redbot/core/core_commands.py:2294
+msgid "enabled"
+msgstr ""
+
+#: redbot/core/core_commands.py:1420 redbot/core/core_commands.py:2273
+#: redbot/core/core_commands.py:2294
+msgid "disabled"
+msgstr ""
+
+#: redbot/core/core_commands.py:1426
+#, docstring
+msgid "\n"
+" Sets personal embed setting for DMs.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n"
+" This is used for all commands executed in a DM with the bot.\n\n"
+" If enabled is left blank, the setting will be unset and the global default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset user False` - Disables embeds in your DMs.\n"
+" - `[p]embedset user` - Resets value to use global default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds in your DMs. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1450
+msgid "Embeds are now enabled for you in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:1452
+msgid "Embeds are now disabled for you in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:1458
+#, docstring
+msgid "Sends to the owner the last command exception that has occurred.\n\n"
+" If public (yes is specified), it will be sent to the chat instead.\n\n"
+" Warning: Sending the traceback publicly can accidentally reveal sensitive information about your computer or configuration.\n\n"
+" **Examples:**\n"
+" - `[p]traceback` - Sends the traceback to your DMs.\n"
+" - `[p]traceback True` - Sends the last traceback in the current context.\n\n"
+" **Arguments:**\n"
+" - `[public]` - Whether to send the traceback to the current context. Leave blank to send to your DMs.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1487
+msgid "No exception has occurred yet."
+msgstr ""
+
+#: redbot/core/core_commands.py:1492
+#, docstring
+msgid "Shows [botname]'s invite url.\n\n"
+" This will always send the invite to DMs to keep it private.\n\n"
+" This command is locked to the owner unless `[p]inviteset public` is set to True.\n\n"
+" **Example:**\n"
+" - `[p]invite`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1512
+#, docstring
+msgid "Commands to setup [botname]'s invite settings."
+msgstr ""
+
+#: redbot/core/core_commands.py:1517
+#, docstring
+msgid "\n"
+" Toggles if `[p]invite` should be accessible for the average user.\n\n"
+" The bot must be made into a `Public bot` in the developer dashboard for public invites to work.\n\n"
+" **Example:**\n"
+" - `[p]inviteset public yes` - Toggles the public invite setting.\n\n"
+" **Arguments:**\n"
+" - `[confirm]` - Required to set to public. Not required to toggle back to private.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1554
+#, docstring
+msgid "\n"
+" Make the bot create its own role with permissions on join.\n\n"
+" The bot will create its own role with the desired permissions when it joins a new server. This is a special role that can't be deleted or removed from the bot.\n\n"
+" For that, you need to provide a valid permissions level.\n"
+" You can generate one here: https://discordapi.com/permissions.html\n\n"
+" Please note that you might need two factor authentication for some permissions.\n\n"
+" **Example:**\n"
+" - `[p]inviteset perms 134217728` - Adds a \"Manage Nicknames\" permission requirement to the invite.\n\n"
+" **Arguments:**\n"
+" - `` - The permission level to require for the bot in the generated invite.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1575
+#, docstring
+msgid "\n"
+" Add the `applications.commands` scope to your invite URL.\n\n"
+" This allows the usage of slash commands on the servers that invited your bot with that scope.\n\n"
+" Note that previous servers that invited the bot without the scope cannot have slash commands, they will have to invite the bot a second time.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1586
+msgid "The `applications.commands` scope has been added to the invite URL."
+msgstr ""
+
+#: redbot/core/core_commands.py:1590
+msgid "The `applications.commands` scope has been removed from the invite URL."
+msgstr ""
+
+#: redbot/core/core_commands.py:1596
+#, docstring
+msgid "\n"
+" Leaves servers.\n\n"
+" If no server IDs are passed the local server will be left instead.\n\n"
+" Note: This command is interactive.\n\n"
+" **Examples:**\n"
+" - `[p]leave` - Leave the current server.\n"
+" - `[p]leave \"Red - Discord Bot\"` - Quotes are necessary when there are spaces in the name.\n"
+" - `[p]leave 133049272517001216 240154543684321280` - Leaves multiple servers, using IDs.\n\n"
+" **Arguments:**\n"
+" - `[servers...]` - The servers to leave. When blank, attempts to leave the current server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1613
+msgid "You need to specify at least one server ID."
+msgstr ""
+
+#: redbot/core/core_commands.py:1620
+msgid "You haven't passed any server ID. Do you want me to leave this server?"
+msgstr ""
+
+#: redbot/core/core_commands.py:1625
+msgid "Are you sure you want me to leave these servers?"
+msgstr ""
+
+#: redbot/core/core_commands.py:1633
+msgid "I cannot leave the server `{server_name}`: I am the owner of it."
+msgstr ""
+
+#: redbot/core/core_commands.py:1644 redbot/core/core_commands.py:2711
+msgid "Response timed out."
+msgstr ""
+
+#: redbot/core/core_commands.py:1649
+msgid "Alright. Bye :wave:"
+msgstr ""
+
+#: redbot/core/core_commands.py:1652
+msgid "Alright. Leaving {number} servers..."
+msgstr ""
+
+#: redbot/core/core_commands.py:1659
+msgid "Alright, I'll stay then. :)"
+msgstr ""
+
+#: redbot/core/core_commands.py:1661
+msgid "Alright, I'm not leaving those servers."
+msgstr ""
+
+#: redbot/core/core_commands.py:1666
+#, docstring
+msgid "\n"
+" Lists the servers [botname] is currently in.\n\n"
+" Note: This command is interactive.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1684
+#, docstring
+msgid "Loads cog packages from the local paths and installed cogs.\n\n"
+" See packages available to load with `[p]cogs`.\n\n"
+" Additional cogs can be added using Downloader, or from local paths using `[p]addpath`.\n\n"
+" **Examples:**\n"
+" - `[p]load general` - Loads the `general` cog.\n"
+" - `[p]load admin mod mutes` - Loads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to load.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1713
+msgid "Loaded {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1718
+msgid "The following package is already loaded: {pack}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1722
+msgid "The following packages are already loaded: {packs}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1729
+msgid "Failed to load the following package: {pack}.\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1734
+msgid "Failed to load the following packages: {packs}\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1742 redbot/core/core_commands.py:1898
+msgid "The following name is not a valid package name: {pack}\n"
+"Package names cannot start with a number and can only contain ascii numbers, letters, and underscores."
+msgstr ""
+
+#: redbot/core/core_commands.py:1748 redbot/core/core_commands.py:1904
+msgid "The following names are not valid package names: {packs}\n"
+"Package names cannot start with a number and can only contain ascii numbers, letters, and underscores."
+msgstr ""
+
+#: redbot/core/core_commands.py:1757 redbot/core/core_commands.py:1913
+msgid "The following package was not found in any cog path: {pack}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1761 redbot/core/core_commands.py:1917
+msgid "The following packages were not found in any cog path: {packs}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1769
+msgid "This package could not be loaded for the following reason:\n\n"
+"{reason}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1773
+msgid "These packages could not be loaded for the following reasons:\n\n"
+"{reasons}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1780
+msgid "**WARNING**: The following repo is using shared libs which are marked for removal in the future: {repo}.\n"
+"You should inform maintainer of the repo about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1786 redbot/core/core_commands.py:1942
+msgid "**WARNING**: The following repos are using shared libs which are marked for removal in the future: {repos}.\n"
+"You should inform maintainers of these repos about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1805
+#, docstring
+msgid "Unloads previously loaded cog packages.\n\n"
+" See packages available to unload with `[p]cogs`.\n\n"
+" **Examples:**\n"
+" - `[p]unload general` - Unloads the `general` cog.\n"
+" - `[p]unload admin mod mutes` - Unloads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to unload.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1823
+msgid "The following package was unloaded: {pack}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1827
+msgid "The following packages were unloaded: {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1834
+msgid "The following package was not loaded: {pack}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1838
+msgid "The following packages were not loaded: {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1851
+#, docstring
+msgid "Reloads cog packages.\n\n"
+" This will unload and then load the specified cogs.\n\n"
+" Cogs that were not loaded will only be loaded.\n\n"
+" **Examples:**\n"
+" - `[p]reload general` - Unloads then loads the `general` cog.\n"
+" - `[p]reload admin mod mutes` - Unloads then loads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to reload.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1880
+msgid "Reloaded {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1885
+msgid "Failed to reload the following package: {pack}.\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1890
+msgid "Failed to reload the following packages: {packs}\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1925
+msgid "This package could not be reloaded for the following reason:\n\n"
+"{reason}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1929
+msgid "These packages could not be reloaded for the following reasons:\n\n"
+"{reasons}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1936
+msgid "**WARNING**: The following repo is using shared libs which are marked for removal in the future: {repo}.\n"
+"You should inform maintainers of these repos about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1957
+#, docstring
+msgid "Shuts down the bot.\n\n"
+" Allows [botname] to shut down gracefully.\n\n"
+" This is the recommended method for shutting down the bot.\n\n"
+" **Examples:**\n"
+" - `[p]shutdown`\n"
+" - `[p]shutdown True` - Shutdowns silently.\n\n"
+" **Arguments:**\n"
+" - `[silently]` - Whether to skip sending the shutdown message. Defaults to False.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1974
+msgid "Shutting down... "
+msgstr "Изключване... "
+
+#: redbot/core/core_commands.py:1980
+#, docstring
+msgid "Attempts to restart [botname].\n\n"
+" Makes [botname] quit with exit code 26.\n"
+" The restart is not guaranteed: it must be dealt with by the process manager in use.\n\n"
+" **Examples:**\n"
+" - `[p]restart`\n"
+" - `[p]restart True` - Restarts silently.\n\n"
+" **Arguments:**\n"
+" - `[silently]` - Whether to skip sending the restart message. Defaults to False.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1994
+msgid "Restarting..."
+msgstr ""
+
+#: redbot/core/core_commands.py:1999
+#, docstring
+msgid "Commands for changing [botname]'s settings."
+msgstr ""
+
+#: redbot/core/core_commands.py:2003
+#, docstring
+msgid "\n"
+" Show the current settings for [botname].\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2021
+msgid "Admin roles: {admin}\n"
+"Mod roles: {mod}\n"
+"Locale: {guild_locale}\n"
+"Regional format: {guild_regional_format}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:2042
+msgid "{bot_name} Settings:\n\n"
+"Prefixes: {prefixes}\n"
+"{guild_settings}Global locale: {locale}\n"
+"Global regional format: {regional_format}\n"
+"Default embed colour: {colour}"
+msgstr ""
+
+#: redbot/core/core_commands.py:2064
+#, docstring
+msgid "Set the delay until the bot removes the command message.\n\n"
+" Must be between -1 and 60.\n\n"
+" Set to -1 to disable this feature.\n\n"
+" This is only applied to the current server and not globally.\n\n"
+" **Examples:**\n"
+" - `[p]set deletedelay` - Shows the current delete delay setting.\n"
+" - `[p]set deletedelay 60` - Sets the delete delay to the max of 60 seconds.\n"
+" - `[p]set deletedelay -1` - Disables deleting command messages.\n\n"
+" **Arguments:**\n"
+" - `[time]` - The seconds to wait before deleting the command message. Use -1 to disable.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2085
+msgid "Command deleting disabled."
+msgstr ""
+
+#: redbot/core/core_commands.py:2087
+msgid "Delete delay set to {num} seconds."
+msgstr ""
+
+#: redbot/core/core_commands.py:2092
+msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages"
+msgstr ""
+
+#: redbot/core/core_commands.py:2099
+msgid "I will not delete command messages."
+msgstr ""
+
+#: redbot/core/core_commands.py:2104
+#, docstring
+msgid "\n"
+" Sets the bot's description.\n\n"
+" Use without a description to reset.\n"
+" This is shown in a few locations, including the help menu.\n\n"
+" The maximum description length is 250 characters to ensure it displays properly.\n\n"
+" The default is \"Red V3\".\n\n"
+" **Examples:**\n"
+" - `[p]set description` - Resets the description to the default setting.\n"
+" - `[p]set description MyBot: A Red V3 Bot`\n\n"
+" **Arguments:**\n"
+" - `[description]` - The description to use for this bot. Leave blank to reset to the default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2124
+msgid "Description reset."
+msgstr ""
+
+#: redbot/core/core_commands.py:2127
+msgid "This description is too long to properly display. Please try again with below 250 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2141
+#, docstring
+msgid "\n"
+" Adds an admin role for this guild.\n\n"
+" Admins have the same access as Mods, plus additional admin level commands like:\n"
+" - `[p]set serverprefix`\n"
+" - `[p]addrole`\n"
+" - `[p]ban`\n"
+" - `[p]ignore guild`\n\n"
+" And more.\n\n"
+" **Examples:**\n"
+" - `[p]set addadminrole @Admins`\n"
+" - `[p]set addadminrole Super Admins`\n\n"
+" **Arguments:**\n"
+" - `` - The role to add as an admin.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2161
+msgid "This role is already an admin role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2163
+msgid "That role is now considered an admin role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2169
+#, docstring
+msgid "\n"
+" Adds a moderator role for this guild.\n\n"
+" This grants access to moderator level commands like:\n"
+" - `[p]mute`\n"
+" - `[p]cleanup`\n"
+" - `[p]customcommand create`\n\n"
+" And more.\n\n"
+" **Examples:**\n"
+" - `[p]set addmodrole @Mods`\n"
+" - `[p]set addmodrole Loyal Helpers`\n\n"
+" **Arguments:**\n"
+" - `` - The role to add as a moderator.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2188
+msgid "This role is already a mod role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2190
+msgid "That role is now considered a mod role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2196
+#, docstring
+msgid "\n"
+" Removes an admin role for this guild.\n\n"
+" **Examples:**\n"
+" - `[p]set removeadminrole @Admins`\n"
+" - `[p]set removeadminrole Super Admins`\n\n"
+" **Arguments:**\n"
+" - `` - The role to remove from being an admin.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2208
+msgid "That role was not an admin role to begin with."
+msgstr ""
+
+#: redbot/core/core_commands.py:2210
+msgid "That role is no longer considered an admin role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2216
+#, docstring
+msgid "\n"
+" Removes a mod role for this guild.\n\n"
+" **Examples:**\n"
+" - `[p]set removemodrole @Mods`\n"
+" - `[p]set removemodrole Loyal Helpers`\n\n"
+" **Arguments:**\n"
+" - `` - The role to remove from being a moderator.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2228
+msgid "That role was not a mod role to begin with."
+msgstr ""
+
+#: redbot/core/core_commands.py:2230
+msgid "That role is no longer considered a mod role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2236
+#, docstring
+msgid "\n"
+" Toggle whether to use the bot owner-configured colour for embeds.\n\n"
+" Default is to use the bot's configured colour.\n"
+" Otherwise, the colour used will be the colour of the bot's top role.\n\n"
+" **Example:**\n"
+" - `[p]set usebotcolour`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2248
+msgid "The bot {} use its configured color for embeds."
+msgstr ""
+
+#: redbot/core/core_commands.py:2249
+msgid "will not"
+msgstr ""
+
+#: redbot/core/core_commands.py:2249
+msgid "will"
+msgstr ""
+
+#: redbot/core/core_commands.py:2257
+#, docstring
+msgid "\n"
+" Toggle whether to enable fuzzy command search for the server.\n\n"
+" This allows the bot to identify potential misspelled commands and offer corrections.\n\n"
+" Note: This can be processor intensive and may be unsuitable for larger servers.\n\n"
+" Default is for fuzzy command search to be disabled.\n\n"
+" **Example:**\n"
+" - `[p]set serverfuzzy`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2272
+msgid "Fuzzy command search has been {} for this server."
+msgstr ""
+
+#: redbot/core/core_commands.py:2280
+#, docstring
+msgid "\n"
+" Toggle whether to enable fuzzy command search in DMs.\n\n"
+" This allows the bot to identify potential misspelled commands and offer corrections.\n\n"
+" Default is for fuzzy command search to be disabled.\n\n"
+" **Example:**\n"
+" - `[p]set fuzzy`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2293
+msgid "Fuzzy command search has been {} in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:2301
+#, docstring
+msgid "\n"
+" Sets a default colour to be used for the bot's embeds.\n\n"
+" Acceptable values for the colour parameter can be found at:\n\n"
+" https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.ColourConverter\n\n"
+" **Examples:**\n"
+" - `[p]set colour dark red`\n"
+" - `[p]set colour blurple`\n"
+" - `[p]set colour 0x5DADE2`\n"
+" - `[p]set color 0x#FDFEFE`\n"
+" - `[p]set color #7F8C8D`\n\n"
+" **Arguments:**\n"
+" - `[colour]` - The colour to use for embeds. Leave blank to set to the default value (red).\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2321
+msgid "The color has been reset."
+msgstr ""
+
+#: redbot/core/core_commands.py:2324
+msgid "The color has been set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2329
+#, docstring
+msgid "Sets [botname]'s avatar\n\n"
+" Supports either an attachment or an image URL.\n\n"
+" **Examples:**\n"
+" - `[p]set avatar` - With an image attachment, this will set the avatar.\n"
+" - `[p]set avatar` - Without an attachment, this will show the command help.\n"
+" - `[p]set avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n"
+" **Arguments:**\n"
+" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2352
+msgid "That URL is invalid."
+msgstr ""
+
+#: redbot/core/core_commands.py:2354
+msgid "Something went wrong while trying to get the image."
+msgstr ""
+
+#: redbot/core/core_commands.py:2364
+msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG or PNG format."
+msgstr ""
+
+#: redbot/core/core_commands.py:2371
+msgid "JPG / PNG format only."
+msgstr "Поддържа се JPG / PNG формат само."
+
+#: redbot/core/core_commands.py:2373 redbot/core/core_commands.py:2600
+#: redbot/core/core_commands.py:2656 redbot/core/core_commands.py:2680
+msgid "Done."
+msgstr "Завършено."
+
+#: redbot/core/core_commands.py:2378
+#, docstring
+msgid "\n"
+" Removes [botname]'s avatar.\n\n"
+" **Example:**\n"
+" - `[p]set avatar remove`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2386
+msgid "Avatar removed."
+msgstr ""
+
+#: redbot/core/core_commands.py:2392
+#, docstring
+msgid "Sets [botname]'s playing status.\n\n"
+" This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n"
+" Maximum length for a playing status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set playing` - Clears the activity status.\n"
+" - `[p]set playing the keyboard`\n\n"
+" **Arguments:**\n"
+" - `[game]` - The text to follow `Playing`. Leave blank to clear the current activity status.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2408
+msgid "The maximum length of game descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2416
+msgid "Status set to ``Playing {game.name}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2418
+msgid "Game cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2424
+#, docstring
+msgid "Sets [botname]'s listening status.\n\n"
+" This will appear as `Listening to `.\n\n"
+" Maximum length for a listening status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set listening` - Clears the activity status.\n"
+" - `[p]set listening jams`\n\n"
+" **Arguments:**\n"
+" - `[listening]` - The text to follow `Listening to`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2441
+msgid "The maximum length of listening descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2450
+msgid "Status set to ``Listening to {listening}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2453
+msgid "Listening cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2459
+#, docstring
+msgid "Sets [botname]'s watching status.\n\n"
+" This will appear as `Watching `.\n\n"
+" Maximum length for a watching status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set watching` - Clears the activity status.\n"
+" - `[p]set watching [p]help`\n\n"
+" **Arguments:**\n"
+" - `[watching]` - The text to follow `Watching`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2475
+msgid "The maximum length of watching descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2482
+msgid "Status set to ``Watching {watching}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2484
+msgid "Watching cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2490
+#, docstring
+msgid "Sets [botname]'s competing status.\n\n"
+" This will appear as `Competing in `.\n\n"
+" Maximum length for a competing status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set competing` - Clears the activity status.\n"
+" - `[p]set competing London 2012 Olympic Games`\n\n"
+" **Arguments:**\n"
+" - `[competing]` - The text to follow `Competing in`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2507
+msgid "The maximum length of competing descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2516
+msgid "Status set to ``Competing in {competing}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2519
+msgid "Competing cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2525
+#, docstring
+msgid "Sets [botname]'s status.\n\n"
+" Available statuses:\n"
+" - `online`\n"
+" - `idle`\n"
+" - `dnd`\n"
+" - `invisible`\n\n"
+" **Examples:**\n"
+" - `[p]set status online` - Clears the status.\n"
+" - `[p]set status invisible`\n\n"
+" **Arguments:**\n"
+" - `` - One of the available statuses.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2555
+msgid "Status changed to {}."
+msgstr ""
+
+#: redbot/core/core_commands.py:2563
+#, docstring
+msgid "Sets [botname]'s streaming status to a twitch stream.\n\n"
+" This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n"
+" It will also include a `Watch` button with a twitch.tv url for the provided streamer.\n\n"
+" Maximum length for a stream title is 128 characters.\n\n"
+" Leaving both streamer and stream_title empty will clear it.\n\n"
+" **Examples:**\n"
+" - `[p]set stream` - Clears the activity status.\n"
+" - `[p]set stream 26 Twentysix is streaming` - Sets the stream to `https://www.twitch.tv/26`.\n"
+" - `[p]set stream https://twitch.tv/26 Twentysix is streaming` - Sets the URL manually.\n\n"
+" **Arguments:**\n"
+" - `` - The twitch streamer to provide a link to. This can be their twitch name or the entire URL.\n"
+" - `` - The text to follow `Streaming` in the status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2588
+msgid "The maximum length of the streamer url is 511 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2591
+msgid "The maximum length of the stream title is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2605
+#, docstring
+msgid "Sets [botname]'s username.\n\n"
+" Maximum length for a username is 32 characters.\n\n"
+" Note: The username of a verified bot cannot be manually changed.\n"
+" Please contact Discord support to change it.\n\n"
+" **Example:**\n"
+" - `[p]set username BaguetteBot`\n\n"
+" **Arguments:**\n"
+" - `` - The username to give the bot.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2621
+msgid "The username of a verified bot cannot be manually changed. Please contact Discord support to change it."
+msgstr ""
+
+#: redbot/core/core_commands.py:2628
+msgid "Failed to change name. Must be 32 characters or fewer."
+msgstr ""
+
+#: redbot/core/core_commands.py:2634
+msgid "Changing the username timed out. Remember that you can only do it up to 2 times an hour. Use nicknames if you need frequent changes: {command}"
+msgstr ""
+
+#: redbot/core/core_commands.py:2644
+msgid "Failed to change the username. Discord returned the following error:\n"
+"{error_message}"
+msgstr ""
+
+#: redbot/core/core_commands.py:2654
+msgid "Unexpected error occurred when trying to change the username."
+msgstr ""
+
+#: redbot/core/core_commands.py:2662
+#, docstring
+msgid "Sets [botname]'s nickname for the current server.\n\n"
+" Maximum length for a nickname is 32 characters.\n\n"
+" **Example:**\n"
+" - `[p]set nickname 🎃 SpookyBot 🎃`\n\n"
+" **Arguments:**\n"
+" - `[nickname]` - The nickname to give the bot. Leave blank to clear the current nickname.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2674
+msgid "Failed to change nickname. Must be 32 characters or fewer."
+msgstr ""
+
+#: redbot/core/core_commands.py:2678
+msgid "I lack the permissions to change my own nickname."
+msgstr "Нямам правомощието да променя псевдонима си."
+
+#: redbot/core/core_commands.py:2685
+#, docstring
+msgid "Sets [botname]'s global prefix(es).\n\n"
+" Warning: This is not additive. It will replace all current prefixes.\n\n"
+" See also the `--mentionable` flag to enable mentioning the bot as the prefix.\n\n"
+" **Examples:**\n"
+" - `[p]set prefix !`\n"
+" - `[p]set prefix \"! \"` - Quotes are needed to use spaces in prefixes.\n"
+" - `[p]set prefix \"@[botname] \"` - This uses a mention as the prefix. See also the `--mentionable` flag.\n"
+" - `[p]set prefix ! ? .` - Sets multiple prefixes.\n\n"
+" **Arguments:**\n"
+" - `` - The prefixes the bot will respond to globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2702
+msgid "Warning: A prefix is above the recommended length (20 characters).\n"
+"Do you want to continue? (y/n)"
+msgstr ""
+
+#: redbot/core/core_commands.py:2715
+msgid "Cancelled."
+msgstr ""
+
+#: redbot/core/core_commands.py:2719
+msgid "Prefix set."
+msgstr "Префиксът е зададен."
+
+#: redbot/core/core_commands.py:2721
+msgid "Prefixes set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2727
+#, docstring
+msgid "\n"
+" Sets [botname]'s server prefix(es).\n\n"
+" Warning: This will override global prefixes, the bot will not respond to any global prefixes in this server.\n"
+" This is not additive. It will replace all current server prefixes.\n"
+" A prefix cannot have more than 20 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set serverprefix !`\n"
+" - `[p]set serverprefix \"! \"` - Quotes are needed to use spaces in prefixes.\n"
+" - `[p]set serverprefix \"@[botname] \"` - This uses a mention as the prefix.\n"
+" - `[p]set serverprefix ! ? .` - Sets multiple prefixes.\n\n"
+" **Arguments:**\n"
+" - `[prefixes...]` - The prefixes the bot will respond to on this server. Leave blank to clear server prefixes.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2745
+msgid "Server prefixes have been reset."
+msgstr ""
+
+#: redbot/core/core_commands.py:2748
+msgid "You cannot have a prefix longer than 20 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2753
+msgid "Server prefix set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2755
+msgid "Server prefixes set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2760
+#, docstring
+msgid "\n"
+" Changes the bot's default locale.\n\n"
+" This will be used when a server has not set a locale, or in DMs.\n\n"
+" Go to [Red's Crowdin page](https://translate.discord.red) to see locales that are available with translations.\n\n"
+" To reset to English, use \"en-US\".\n\n"
+" **Examples:**\n"
+" - `[p]set locale en-US`\n"
+" - `[p]set locale de-DE`\n"
+" - `[p]set locale fr-FR`\n"
+" - `[p]set locale pl-PL`\n\n"
+" **Arguments:**\n"
+" - `` - The default locale to use for the bot. This can be any language code with country code included.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2781 redbot/core/core_commands.py:2825
+#: redbot/core/core_commands.py:2864 redbot/core/core_commands.py:2908
+msgid "Invalid language code. Use format: `en-US`"
+msgstr ""
+
+#: redbot/core/core_commands.py:2785 redbot/core/core_commands.py:2829
+#: redbot/core/core_commands.py:2868 redbot/core/core_commands.py:2912
+msgid "Invalid format - language code has to include country code, e.g. `en-US`"
+msgstr ""
+
+#: redbot/core/core_commands.py:2792
+msgid "Global locale has been set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2798
+#, docstring
+msgid "\n"
+" Changes the bot's locale in this server.\n\n"
+" Go to [Red's Crowdin page](https://translate.discord.red) to see locales that are available with translations.\n\n"
+" Use \"default\" to return to the bot's default set language.\n"
+" To reset to English, use \"en-US\".\n\n"
+" **Examples:**\n"
+" - `[p]set locale en-US`\n"
+" - `[p]set locale de-DE`\n"
+" - `[p]set locale fr-FR`\n"
+" - `[p]set locale pl-PL`\n"
+" - `[p]set locale default` - Resets to the global default locale.\n\n"
+" **Arguments:**\n"
+" - `` - The default locale to use for the bot. This can be any language code with country code included.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2820
+msgid "Locale has been set to the default."
+msgstr ""
+
+#: redbot/core/core_commands.py:2835
+msgid "Locale has been set."
+msgstr "Локализирането е настроено."
+
+#: redbot/core/core_commands.py:2841
+#, docstring
+msgid "\n"
+" Changes the bot's regional format. This is used for formatting date, time and numbers.\n\n"
+" `language_code` can be any language code with country code included, e.g. `en-US`, `de-DE`, `fr-FR`, `pl-PL`, etc.\n"
+" Leave `language_code` empty to base regional formatting on bot's locale.\n\n"
+" **Examples:**\n"
+" - `[p]set globalregionalformat en-US`\n"
+" - `[p]set globalregion de-DE`\n"
+" - `[p]set globalregionalformat` - Resets to the locale.\n\n"
+" **Arguments:**\n"
+" - `[language_code]` - The default region format to use for the bot.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2858
+msgid "Global regional formatting will now be based on bot's locale."
+msgstr ""
+
+#: redbot/core/core_commands.py:2875
+msgid "Global regional formatting will now be based on `{language_code}` locale."
+msgstr ""
+
+#: redbot/core/core_commands.py:2883
+#, docstring
+msgid "\n"
+" Changes the bot's regional format in this server. This is used for formatting date, time and numbers.\n\n"
+" `language_code` can be any language code with country code included, e.g. `en-US`, `de-DE`, `fr-FR`, `pl-PL`, etc.\n"
+" Leave `language_code` empty to base regional formatting on bot's locale in this server.\n\n"
+" **Examples:**\n"
+" - `[p]set regionalformat en-US`\n"
+" - `[p]set region de-DE`\n"
+" - `[p]set regionalformat` - Resets to the locale.\n\n"
+" **Arguments:**\n"
+" - `[language_code]` - The region format to use for the bot in this server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2901
+msgid "Regional formatting will now be based on bot's locale in this server."
+msgstr ""
+
+#: redbot/core/core_commands.py:2919
+msgid "Regional formatting will now be based on `{language_code}` locale."
+msgstr ""
+
+#: redbot/core/core_commands.py:2927
+#, docstring
+msgid "Customizes a section of `[p]info`.\n\n"
+" The maximum amount of allowed characters is 1024.\n"
+" Supports markdown, links and \"mentions\".\n\n"
+" Link example: `[My link](https://example.com)`\n\n"
+" **Examples:**\n"
+" - `[p]set custominfo >>> I can use **markdown** such as quotes, ||spoilers|| and multiple lines.`\n"
+" - `[p]set custominfo Join my [support server](discord.gg/discord)!`\n"
+" - `[p]set custominfo` - Removes custom info text.\n\n"
+" **Arguments:**\n"
+" - `[text]` - The custom info text.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2944
+msgid "The custom text has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2948
+msgid "The custom text has been set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2951
+msgid "Text must be fewer than 1024 characters long."
+msgstr ""
+
+#: redbot/core/core_commands.py:2956
+#, docstring
+msgid "\n"
+" Commands to set, list or remove various external API tokens.\n\n"
+" This setting will be asked for by some 3rd party cogs and some core cogs.\n\n"
+" To add the keys provide the service name and the tokens as a comma separated\n"
+" list of key,values as described by the cog requesting this command.\n\n"
+" Note: API tokens are sensitive, so this command should only be used in a private channel or in DM with the bot.\n\n"
+" **Examples:**\n"
+" - `[p]set api Spotify redirect_uri localhost`\n"
+" - `[p]set api github client_id,whoops client_secret,whoops`\n\n"
+" **Arguments:**\n"
+" - `` - The service you're adding tokens to.\n"
+" - `` - Pairs of token keys and values. The key and value should be separated by one of ` `, `,`, or `;`.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2977
+msgid "`{service}` API tokens have been set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2981
+#, docstring
+msgid "\n"
+" Show all external API services along with their keys that have been set.\n\n"
+" Secrets are not shown.\n\n"
+" **Example:**\n"
+" - `[p]set api list``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2992
+msgid "No API services have been set yet."
+msgstr ""
+
+#: redbot/core/core_commands.py:2997
+msgid "Set API services:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:2997
+msgid "Set API service:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:3007
+#, docstring
+msgid "\n"
+" Remove the given services with all their keys and tokens.\n\n"
+" **Examples:**\n"
+" - `[p]set api remove Spotify`\n"
+" - `[p]set api remove github audiodb`\n\n"
+" **Arguments:**\n"
+" - `` - The services to remove."
+msgstr ""
+
+#: redbot/core/core_commands.py:3022
+msgid "Services deleted successfully:\n"
+"{services_list}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3026
+msgid "Service deleted successfully: {service_name}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3031
+msgid "None of the services you provided had any keys set."
+msgstr ""
+
+#: redbot/core/core_commands.py:3036
+#, docstring
+msgid "\n"
+" Commands to manage settings for the help command.\n\n"
+" All help settings are applied globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3045
+#, docstring
+msgid "\n"
+" Show the current help settings.\n\n"
+" Warning: These settings may not be accurate if the default formatter is not in use.\n\n"
+" **Example:**\n"
+" - `[p]helpset showsettings``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3059
+msgid "Warning: The default formatter is not in use, these settings may not apply."
+msgstr ""
+
+#: redbot/core/core_commands.py:3069
+#, docstring
+msgid "\n"
+" This resets [botname]'s help formatter to the default formatter.\n\n"
+" **Example:**\n"
+" - `[p]helpset resetformatter``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3078
+msgid "The help formatter has been reset. This will not prevent cogs from modifying help, you may need to remove a cog if this has been an issue."
+msgstr ""
+
+#: redbot/core/core_commands.py:3087
+#, docstring
+msgid "\n"
+" This resets [botname]'s help settings to their defaults.\n\n"
+" This may not have an impact when using custom formatters from 3rd party cogs\n\n"
+" **Example:**\n"
+" - `[p]helpset resetsettings``\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3097
+msgid "The help settings have been reset to their defaults. This may not have an impact when using 3rd party help formatters."
+msgstr ""
+
+#: redbot/core/core_commands.py:3105
+#, docstring
+msgid "\n"
+" Allows the help command to be sent as a paginated menu instead of separate\n"
+" messages.\n\n"
+" When enabled, `[p]help` will only show one page at a time and will use reactions to navigate between pages.\n\n"
+" This defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset usemenus True` - Enables using menus.\n"
+" - `[p]helpset usemenus` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[use_menus]` - Whether to use menus. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3125
+msgid "Help will use menus."
+msgstr ""
+
+#: redbot/core/core_commands.py:3127
+msgid "Help will not use menus."
+msgstr ""
+
+#: redbot/core/core_commands.py:3131
+#, docstring
+msgid "\n"
+" This allows the help command to show hidden commands.\n\n"
+" This defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset showhidden True` - Enables showing hidden commands.\n"
+" - `[p]helpset showhidden` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[show_hidden]` - Whether to use show hidden commands in help. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3148
+msgid "Help will not filter hidden commands."
+msgstr ""
+
+#: redbot/core/core_commands.py:3150
+msgid "Help will filter hidden commands."
+msgstr ""
+
+#: redbot/core/core_commands.py:3154
+#, docstring
+msgid "\n"
+" This allows the help command to show existing commands aliases if there is any.\n\n"
+" This defaults to True.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset showaliases False` - Disables showing aliases on this server.\n"
+" - `[p]helpset showaliases` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[show_aliases]` - Whether to include aliases in help. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3171
+msgid "Help will show commands aliases."
+msgstr ""
+
+#: redbot/core/core_commands.py:3173
+msgid "Help will not show commands aliases."
+msgstr ""
+
+#: redbot/core/core_commands.py:3177
+#, docstring
+msgid "\n"
+" This allows the help command message to be ticked if help is sent to a DM.\n\n"
+" Ticking is reacting to the help message with a ✅.\n\n"
+" Defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" Note: This is only used when the bot is not using menus.\n\n"
+" **Examples:**\n"
+" - `[p]helpset usetick False` - Disables ticking when help is sent to DMs.\n"
+" - `[p]helpset usetick` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[use_tick]` - Whether to tick the help command when help is sent to DMs. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3198
+msgid "Help will now tick the command when sent in a DM."
+msgstr ""
+
+#: redbot/core/core_commands.py:3200
+msgid "Help will not tick the command when sent in a DM."
+msgstr ""
+
+#: redbot/core/core_commands.py:3204
+#, docstring
+msgid "\n"
+" Sets if commands which can't be run in the current context should be filtered from help.\n\n"
+" Defaults to True.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset verifychecks False` - Enables showing unusable commands in help.\n"
+" - `[p]helpset verifychecks` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[verify]` - Whether to hide unusable commands in help. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3221
+msgid "Help will only show for commands which can be run."
+msgstr ""
+
+#: redbot/core/core_commands.py:3223
+msgid "Help will show up without checking if the commands can be run."
+msgstr ""
+
+#: redbot/core/core_commands.py:3227
+#, docstring
+msgid "\n"
+" Sets whether the bot should respond to help commands for nonexistent topics.\n\n"
+" When enabled, this will indicate the existence of help topics, even if the user can't use it.\n\n"
+" Note: This setting on its own does not fully prevent command enumeration.\n\n"
+" Defaults to False.\n"
+" Using this without a setting will toggle.\n\n"
+" **Examples:**\n"
+" - `[p]helpset verifyexists True` - Enables sending help for nonexistent topics.\n"
+" - `[p]helpset verifyexists` - Toggles the value.\n\n"
+" **Arguments:**\n"
+" - `[verify]` - Whether to respond to help for nonexistent topics. Leave blank to toggle.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3248
+msgid "Help will verify the existence of help topics."
+msgstr ""
+
+#: redbot/core/core_commands.py:3251
+msgid "Help will only verify the existence of help topics via fuzzy help (if enabled)."
+msgstr ""
+
+#: redbot/core/core_commands.py:3259
+#, docstring
+msgid "Set the character limit for each page in the help message.\n\n"
+" Note: This setting only applies to embedded help.\n\n"
+" The default value is 1000 characters. The minimum value is 500.\n"
+" The maximum is based on the lower of what you provide and what discord allows.\n\n"
+" Please note that setting a relatively small character limit may\n"
+" mean some pages will exceed this limit.\n\n"
+" **Example:**\n"
+" - `[p]helpset pagecharlimit 1500`\n\n"
+" **Arguments:**\n"
+" - `` - The max amount of characters to show per page in the help message.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3276
+msgid "You must give a value of at least 500 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:3280
+msgid "Done. The character limit per page has been set to {}."
+msgstr ""
+
+#: redbot/core/core_commands.py:3284
+#, docstring
+msgid "Set the maximum number of help pages sent in a server channel.\n\n"
+" Note: This setting does not apply to menu help.\n\n"
+" If a help message contains more pages than this value, the help message will\n"
+" be sent to the command author via DM. This is to help reduce spam in server\n"
+" text channels.\n\n"
+" The default value is 2 pages.\n\n"
+" **Examples:**\n"
+" - `[p]helpset maxpages 50` - Basically never send help to DMs.\n"
+" - `[p]helpset maxpages 0` - Always send help to DMs.\n\n"
+" **Arguments:**\n"
+" - `` - The max pages allowed to send per help in a server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3302 redbot/core/core_commands.py:3329
+msgid "You must give a value of zero or greater!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3306
+msgid "Done. The page limit has been set to {}."
+msgstr ""
+
+#: redbot/core/core_commands.py:3311
+#, docstring
+msgid "Set the delay after which help pages will be deleted.\n\n"
+" The setting is disabled by default, and only applies to non-menu help,\n"
+" sent in server text channels.\n"
+" Setting the delay to 0 disables this feature.\n\n"
+" The bot has to have MANAGE_MESSAGES permission for this to work.\n\n"
+" **Examples:**\n"
+" - `[p]helpset deletedelay 60` - Delete the help pages after a minute.\n"
+" - `[p]helpset deletedelay 1` - Delete the help pages as quickly as possible.\n"
+" - `[p]helpset deletedelay 1209600` - Max time to wait before deleting (14 days).\n"
+" - `[p]helpset deletedelay 0` - Disable deleting help pages.\n\n"
+" **Arguments:**\n"
+" - `` - The seconds to wait before deleting help pages.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3332
+msgid "The delay cannot be longer than 14 days!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3337
+msgid "Done. Help messages will not be deleted now."
+msgstr ""
+
+#: redbot/core/core_commands.py:3339
+msgid "Done. The delete delay has been set to {} seconds."
+msgstr ""
+
+#: redbot/core/core_commands.py:3343
+#, docstring
+msgid "\n"
+" Set the tagline to be used.\n\n"
+" The maximum tagline length is 2048 characters.\n"
+" This setting only applies to embedded help. If no tagline is specified, the default will be used instead.\n\n"
+" **Examples:**\n"
+" - `[p]helpset tagline Thanks for using the bot!`\n"
+" - `[p]helpset tagline` - Resets the tagline to the default.\n\n"
+" **Arguments:**\n"
+" - `[tagline]` - The tagline to appear at the bottom of help embeds. Leave blank to reset.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3358
+msgid "The tagline has been reset."
+msgstr ""
+
+#: redbot/core/core_commands.py:3362
+msgid "Your tagline is too long! Please shorten it to be no more than 2048 characters long."
+msgstr ""
+
+#: redbot/core/core_commands.py:3370
+msgid "The tagline has been set."
+msgstr ""
+
+#: redbot/core/core_commands.py:3375
+#, docstring
+msgid "Sends a message to the owner.\n\n"
+" This is limited to one message every 60 seconds per person.\n\n"
+" **Example:**\n"
+" - `[p]contact Help! The bot has become sentient!`\n\n"
+" **Arguments:**\n"
+" - `[message]` - The message to send to the owner.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3387
+msgid "User ID: {}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3390
+msgid "through DM"
+msgstr "чрез ЛС"
+
+#: redbot/core/core_commands.py:3392
+msgid "from {}"
+msgstr "от {}"
+
+#: redbot/core/core_commands.py:3393
+msgid " | Server ID: {}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3398
+msgid "Use `{}dm {} ` to reply to this user"
+msgstr "Използвайте `{} dm {} `, за да отговорите на този потребител"
+
+#: redbot/core/core_commands.py:3400
+msgid "Sent by {} {}"
+msgstr "Изпратено от {} {}"
+
+#: redbot/core/core_commands.py:3405
+msgid "I've been configured not to send this anywhere."
+msgstr ""
+
+#: redbot/core/core_commands.py:3476
+msgid "Your message has been sent."
+msgstr "Вашето съобщение е изпратено."
+
+#: redbot/core/core_commands.py:3478
+msgid "I'm unable to deliver your message. Sorry."
+msgstr "Аз не съм в състояние да доставя Вашето съобщение. Съжалявам."
+
+#: redbot/core/core_commands.py:3483
+#, docstring
+msgid "Sends a DM to a user.\n\n"
+" This command needs a user ID to work.\n\n"
+" To get a user ID, go to Discord's settings and open the 'Appearance' tab.\n"
+" Enable 'Developer Mode', then right click a user and click on 'Copy ID'.\n\n"
+" **Example:**\n"
+" - `[p]dm 262626262626262626 Do you like me? Yes / No`\n\n"
+" **Arguments:**\n"
+" - `[message]` - The message to dm to the user.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3499
+msgid "Invalid ID, user not found, or user is a bot. You can only send messages to people I share a server with."
+msgstr ""
+
+#: redbot/core/core_commands.py:3509
+msgid "Owner of {}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3510
+msgid "You can reply to this message with {}contact"
+msgstr ""
+
+#: redbot/core/core_commands.py:3524 redbot/core/core_commands.py:3534
+msgid "Sorry, I couldn't deliver your message to {}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3527 redbot/core/core_commands.py:3537
+msgid "Message delivered to {}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3542
+#, docstring
+msgid "Prints the bot's data path."
+msgstr ""
+
+#: redbot/core/core_commands.py:3546
+msgid "Data path: {path}"
+msgstr ""
+
+#: redbot/core/core_commands.py:3552
+#, docstring
+msgid "Shows debug information useful for debugging."
+msgstr ""
+
+#: redbot/core/core_commands.py:3639
+#, docstring
+msgid "\n"
+" Commands to manage the allowlist.\n\n"
+" Warning: When the allowlist is in use, the bot will ignore commands from everyone not on the list.\n\n"
+" Use `[p]allowlist clear` to disable the allowlist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3650
+#, docstring
+msgid "\n"
+" Adds users to the allowlist.\n\n"
+" **Examples:**\n"
+" - `[p]allowlist add @26 @Will` - Adds two users to the allowlist.\n"
+" - `[p]allowlist add 262626262626262626` - Adds a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to add to the allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3663
+msgid "Users have been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3665
+msgid "User has been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3669
+#, docstring
+msgid "\n"
+" Lists users on the allowlist.\n\n"
+" **Example:**\n"
+" - `[p]allowlist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3681
+msgid "Users on the allowlist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3683
+msgid "User on the allowlist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3687 redbot/core/core_commands.py:3785
+#: redbot/core/modlog.py:428 redbot/core/modlog.py:450
+#: redbot/core/modlog.py:466
+msgid "Unknown or Deleted User"
+msgstr ""
+
+#: redbot/core/core_commands.py:3695
+#, docstring
+msgid "\n"
+" Removes users from the allowlist.\n\n"
+" The allowlist will be disabled if all users are removed.\n\n"
+" **Examples:**\n"
+" - `[p]allowlist remove @26 @Will` - Removes two users from the allowlist.\n"
+" - `[p]allowlist remove 262626262626262626` - Removes a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to remove from the allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3710
+msgid "Users have been removed from the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3712
+msgid "User has been removed from the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3716
+#, docstring
+msgid "\n"
+" Clears the allowlist.\n\n"
+" This disables the allowlist.\n\n"
+" **Example:**\n"
+" - `[p]allowlist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3725
+msgid "Allowlist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:3730
+#, docstring
+msgid "\n"
+" Commands to manage the blocklist.\n\n"
+" Use `[p]blocklist clear` to disable the blocklist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3739
+#, docstring
+msgid "\n"
+" Adds users to the blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]blocklist add @26 @Will` - Adds two users to the blocklist.\n"
+" - `[p]blocklist add 262626262626262626` - Blocks a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to add to the blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3755
+msgid "You cannot add an owner to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3761
+msgid "Users have been added to the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3763
+msgid "User has been added to the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3767
+#, docstring
+msgid "\n"
+" Lists users on the blocklist.\n\n"
+" **Example:**\n"
+" - `[p]blocklist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3779
+msgid "Users on the blocklist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3781
+msgid "User on the blocklist:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3793
+#, docstring
+msgid "\n"
+" Removes users from the blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]blocklist remove @26 @Will` - Removes two users from the blocklist.\n"
+" - `[p]blocklist remove 262626262626262626` - Removes a user by ID.\n\n"
+" **Arguments:**\n"
+" - `` - The user or users to remove from the blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3806
+msgid "Users have been removed from the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3808
+msgid "User has been removed from the blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3812
+#, docstring
+msgid "\n"
+" Clears the blocklist.\n\n"
+" **Example:**\n"
+" - `[p]blocklist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3819
+msgid "Blocklist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:3825
+#, docstring
+msgid "\n"
+" Commands to manage the server specific allowlist.\n\n"
+" Warning: When the allowlist is in use, the bot will ignore commands from everyone not on the list in the server.\n\n"
+" Use `[p]localallowlist clear` to disable the allowlist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3838
+#, docstring
+msgid "\n"
+" Adds a user or role to the server allowlist.\n\n"
+" **Examples:**\n"
+" - `[p]localallowlist add @26 @Will` - Adds two users to the local allowlist.\n"
+" - `[p]localallowlist add 262626262626262626` - Allows a user by ID.\n"
+" - `[p]localallowlist add \"Super Admins\"` - Allows a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to remove from the local allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3857
+msgid "I cannot allow you to do this, as it would remove your ability to run commands, please ensure to add yourself to the allowlist first."
+msgstr ""
+
+#: redbot/core/core_commands.py:3866
+msgid "Users and/or roles have been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3868
+msgid "User or role has been added to the allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3872
+#, docstring
+msgid "\n"
+" Lists users and roles on the server allowlist.\n\n"
+" **Example:**\n"
+" - `[p]localallowlist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3884
+msgid "Allowed users and/or roles:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3886
+msgid "Allowed user or role:"
+msgstr ""
+
+#: redbot/core/core_commands.py:3890 redbot/core/core_commands.py:4012
+msgid "Unknown or Deleted User/Role"
+msgstr ""
+
+#: redbot/core/core_commands.py:3900
+#, docstring
+msgid "\n"
+" Removes user or role from the allowlist.\n\n"
+" The local allowlist will be disabled if all users are removed.\n\n"
+" **Examples:**\n"
+" - `[p]localallowlist remove @26 @Will` - Removes two users from the local allowlist.\n"
+" - `[p]localallowlist remove 262626262626262626` - Removes a user by ID.\n"
+" - `[p]localallowlist remove \"Super Admins\"` - Removes a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to remove from the local allowlist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3921
+msgid "I cannot allow you to do this, as it would remove your ability to run commands."
+msgstr ""
+
+#: redbot/core/core_commands.py:3929
+msgid "Users and/or roles have been removed from the server allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3931
+msgid "User or role has been removed from the server allowlist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3935
+#, docstring
+msgid "\n"
+" Clears the allowlist.\n\n"
+" This disables the local allowlist and clears all entries.\n\n"
+" **Example:**\n"
+" - `[p]localallowlist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3944
+msgid "Server allowlist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:3950
+#, docstring
+msgid "\n"
+" Commands to manage the server specific blocklist.\n\n"
+" Use `[p]localblocklist clear` to disable the blocklist\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3961
+#, docstring
+msgid "\n"
+" Adds a user or role to the local blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]localblocklist add @26 @Will` - Adds two users to the local blocklist.\n"
+" - `[p]localblocklist add 262626262626262626` - Blocks a user by ID.\n"
+" - `[p]localblocklist add \"Bad Apples\"` - Blocks a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to add to the local blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:3975
+msgid "You cannot add yourself to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3978
+msgid "You cannot add the guild owner to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3981
+msgid "You cannot add a bot owner to the blocklist!"
+msgstr ""
+
+#: redbot/core/core_commands.py:3988
+msgid "Users and/or roles have been added from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3990
+msgid "User or role has been added from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:3994
+#, docstring
+msgid "\n"
+" Lists users and roles on the server blocklist.\n\n"
+" **Example:**\n"
+" - `[p]localblocklist list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4006
+msgid "Blocked users and/or roles:"
+msgstr ""
+
+#: redbot/core/core_commands.py:4008
+msgid "Blocked user or role:"
+msgstr ""
+
+#: redbot/core/core_commands.py:4022
+#, docstring
+msgid "\n"
+" Removes user or role from local blocklist.\n\n"
+" **Examples:**\n"
+" - `[p]localblocklist remove @26 @Will` - Removes two users from the local blocklist.\n"
+" - `[p]localblocklist remove 262626262626262626` - Unblocks a user by ID.\n"
+" - `[p]localblocklist remove \"Bad Apples\"` - Unblocks a role with a space in the name without mentioning.\n\n"
+" **Arguments:**\n"
+" - `` - The users or roles to remove from the local blocklist.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4038
+msgid "Users and/or roles have been removed from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:4040
+msgid "User or role has been removed from the server blocklist."
+msgstr ""
+
+#: redbot/core/core_commands.py:4044
+#, docstring
+msgid "\n"
+" Clears the server blocklist.\n\n"
+" This disables the server blocklist and clears all entries.\n\n"
+" **Example:**\n"
+" - `[p]blocklist clear`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4053
+msgid "Server blocklist has been cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:4058
+#, docstring
+msgid "Commands to enable and disable commands and cogs."
+msgstr ""
+
+#: redbot/core/core_commands.py:4064
+#, docstring
+msgid "Set the default state for a cog as disabled.\n\n"
+" This will disable the cog for all servers by default.\n"
+" To override it, use `[p]command enablecog` on the servers you want to allow usage.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command defaultdisablecog Economy`\n"
+" - `[p]command defaultdisablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to make disabled by default. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4080 redbot/core/core_commands.py:4105
+#: redbot/core/core_commands.py:4125 redbot/core/core_commands.py:4155
+msgid "Cog with the given name doesn't exist."
+msgstr ""
+
+#: redbot/core/core_commands.py:4082
+msgid "You can't disable this cog by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:4084
+msgid "{cogname} has been set as disabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:4089
+#, docstring
+msgid "Set the default state for a cog as enabled.\n\n"
+" This will re-enable the cog for all servers by default.\n"
+" To override it, use `[p]command disablecog` on the servers you want to disallow usage.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command defaultenablecog Economy`\n"
+" - `[p]command defaultenablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to make enabled by default. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4107
+msgid "{cogname} has been set as enabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:4112
+#, docstring
+msgid "Disable a cog in this server.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command disablecog Economy`\n"
+" - `[p]command disablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to disable on this server. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4127
+msgid "You can't disable this cog as you would lock yourself out."
+msgstr ""
+
+#: redbot/core/core_commands.py:4129
+msgid "{cogname} has been disabled in this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:4132
+msgid "{cogname} was already disabled (nothing to do)."
+msgstr ""
+
+#: redbot/core/core_commands.py:4138
+#, docstring
+msgid "Enable a cog in this server.\n\n"
+" Note: This will only work on loaded cogs, and must reference the title-case cog name.\n\n"
+" **Examples:**\n"
+" - `[p]command enablecog Economy`\n"
+" - `[p]command enablecog ModLog`\n\n"
+" **Arguments:**\n"
+" - `` - The name of the cog to enable on this server. Must be title-case.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4150
+msgid "{cogname} has been enabled in this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:4158
+msgid "{cogname} was not disabled (nothing to do)."
+msgstr ""
+
+#: redbot/core/core_commands.py:4164
+#, docstring
+msgid "List the cogs which are disabled in this server.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabledcogs`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4177
+msgid "The following cogs are disabled in this guild:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4183
+msgid "There are no disabled cogs in this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:4187
+#, docstring
+msgid "\n"
+" List disabled commands.\n\n"
+" If you're the bot owner, this will show global disabled commands by default.\n"
+" Otherwise, this will show disabled commands on the current server.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabled`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4204
+#, docstring
+msgid "List disabled commands globally.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabled global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4211
+msgid "There aren't any globally disabled commands."
+msgstr ""
+
+#: redbot/core/core_commands.py:4214
+msgid "{} commands are disabled globally.\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4218
+msgid "1 command is disabled globally.\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4226
+#, docstring
+msgid "List disabled commands in this server.\n\n"
+" **Example:**\n"
+" - `[p]command listdisabled guild`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4233
+msgid "There aren't any disabled commands in {}."
+msgstr ""
+
+#: redbot/core/core_commands.py:4236
+msgid "{} commands are disabled in {}.\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4240
+msgid "1 command is disabled in {}.\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4247
+#, docstring
+msgid "\n"
+" Disable a command.\n\n"
+" If you're the bot owner, this will disable commands globally by default.\n"
+" Otherwise, this will disable commands on the current server.\n\n"
+" **Examples:**\n"
+" - `[p]command disable userinfo` - Disables the `userinfo` command in the Mod cog.\n"
+" - `[p]command disable urban` - Disables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to disable.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4269
+#, docstring
+msgid "\n"
+" Disable a command globally.\n\n"
+" **Examples:**\n"
+" - `[p]command disable global userinfo` - Disables the `userinfo` command in the Mod cog.\n"
+" - `[p]command disable global urban` - Disables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to disable globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4288 redbot/core/core_commands.py:4331
+msgid "The command to disable cannot be `command` or any of its subcommands."
+msgstr ""
+
+#: redbot/core/core_commands.py:4294 redbot/core/core_commands.py:4337
+msgid "This command is designated as being always available and cannot be disabled."
+msgstr ""
+
+#: redbot/core/core_commands.py:4303
+msgid "That command is already disabled globally."
+msgstr ""
+
+#: redbot/core/core_commands.py:4312
+#, docstring
+msgid "\n"
+" Disable a command in this server only.\n\n"
+" **Examples:**\n"
+" - `[p]command disable server userinfo` - Disables the `userinfo` command in the Mod cog.\n"
+" - `[p]command disable server urban` - Disables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to disable for the current server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4342
+msgid "You are not allowed to disable that command."
+msgstr ""
+
+#: redbot/core/core_commands.py:4352
+msgid "That command is already disabled in this server."
+msgstr ""
+
+#: redbot/core/core_commands.py:4358
+#, docstring
+msgid "Enable a command.\n\n"
+" If you're the bot owner, this will try to enable a globally disabled command by default.\n"
+" Otherwise, this will try to enable a command disabled on the current server.\n\n"
+" **Examples:**\n"
+" - `[p]command enable userinfo` - Enables the `userinfo` command in the Mod cog.\n"
+" - `[p]command enable urban` - Enables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to enable.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4378
+#, docstring
+msgid "\n"
+" Enable a command globally.\n\n"
+" **Examples:**\n"
+" - `[p]command enable global userinfo` - Enables the `userinfo` command in the Mod cog.\n"
+" - `[p]command enable global urban` - Enables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to enable globally.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4400
+msgid "That command is already enabled globally."
+msgstr ""
+
+#: redbot/core/core_commands.py:4409
+#, docstring
+msgid "\n"
+" Enable a command in this server.\n\n"
+" **Examples:**\n"
+" - `[p]command enable server userinfo` - Enables the `userinfo` command in the Mod cog.\n"
+" - `[p]command enable server urban` - Enables the `urban` command in the General cog.\n\n"
+" **Arguments:**\n"
+" - `` - The command to enable for the current server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4427
+msgid "You are not allowed to enable that command."
+msgstr ""
+
+#: redbot/core/core_commands.py:4437
+msgid "That command is already enabled in this server."
+msgstr ""
+
+#: redbot/core/core_commands.py:4444
+#, docstring
+msgid "Set the bot's response to disabled commands.\n\n"
+" Leave blank to send nothing.\n\n"
+" To include the command name in the message, include the `{command}` placeholder.\n\n"
+" **Examples:**\n"
+" - `[p]command disabledmsg This command is disabled`\n"
+" - `[p]command disabledmsg {command} is disabled`\n"
+" - `[p]command disabledmsg` - Sends nothing when a disabled command is attempted.\n\n"
+" **Arguments:**\n"
+" - `[message]` - The message to send when a disabled command is attempted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4465
+#, docstring
+msgid "\n"
+" Commands to manage server settings for immunity from automated actions.\n\n"
+" This includes duplicate message deletion and mention spam from the Mod cog, and filters from the Filter cog.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4474
+#, docstring
+msgid "\n"
+" Gets the current members and roles configured for automatic moderation action immunity.\n\n"
+" **Example:**\n"
+" - `[p]autoimmune list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4487
+msgid "Roles immune from automated moderation actions:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4492
+msgid "Members immune from automated moderation actions:\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:4496
+msgid "No immunity settings here."
+msgstr ""
+
+#: redbot/core/core_commands.py:4505
+#, docstring
+msgid "\n"
+" Makes a user or role immune from automated moderation actions.\n\n"
+" **Examples:**\n"
+" - `[p]autoimmune add @TwentySix` - Adds a user.\n"
+" - `[p]autoimmune add @Mods` - Adds a role.\n\n"
+" **Arguments:**\n"
+" - `` - The user or role to add immunity to.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4517
+msgid "Already added."
+msgstr ""
+
+#: redbot/core/core_commands.py:4525
+#, docstring
+msgid "\n"
+" Remove a user or role from being immune to automated moderation actions.\n\n"
+" **Examples:**\n"
+" - `[p]autoimmune remove @TwentySix` - Removes a user.\n"
+" - `[p]autoimmune remove @Mods` - Removes a role.\n\n"
+" **Arguments:**\n"
+" - `` - The user or role to remove immunity from.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4537
+msgid "Not in list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4545
+#, docstring
+msgid "\n"
+" Checks if a user or role would be considered immune from automated actions.\n\n"
+" **Examples:**\n"
+" - `[p]autoimmune isimmune @TwentySix`\n"
+" - `[p]autoimmune isimmune @Mods`\n\n"
+" **Arguments:**\n"
+" - `` - The user or role to check the immunity of.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4557
+msgid "They are immune."
+msgstr ""
+
+#: redbot/core/core_commands.py:4559
+msgid "They are not immune."
+msgstr ""
+
+#: redbot/core/core_commands.py:4564
+#, docstring
+msgid "\n"
+" Commands for configuring owner notifications.\n\n"
+" Owner notifications include usage of `[p]contact` and available Red updates.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4573
+#, docstring
+msgid "\n"
+" Opt-in on receiving owner notifications.\n\n"
+" This is the default state.\n\n"
+" Note: This will only resume sending owner notifications to your DMs.\n"
+" Additional owners and destinations will not be affected.\n\n"
+" **Example:**\n"
+" - `[p]ownernotifications optin`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4592
+#, docstring
+msgid "\n"
+" Opt-out of receiving owner notifications.\n\n"
+" Note: This will only stop sending owner notifications to your DMs.\n"
+" Additional owners and destinations will still receive notifications.\n\n"
+" **Example:**\n"
+" - `[p]ownernotifications optout`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4611
+#, docstring
+msgid "\n"
+" Adds a destination text channel to receive owner notifications.\n\n"
+" **Examples:**\n"
+" - `[p]ownernotifications adddestination #owner-notifications`\n"
+" - `[p]ownernotifications adddestination 168091848718417920` - Accepts channel IDs.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to send owner notifications to.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4637
+#, docstring
+msgid "\n"
+" Removes a destination text channel from receiving owner notifications.\n\n"
+" **Examples:**\n"
+" - `[p]ownernotifications removedestination #owner-notifications`\n"
+" - `[p]ownernotifications deletedestination 168091848718417920` - Accepts channel IDs.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to stop sending owner notifications to.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4661
+#, docstring
+msgid "\n"
+" Lists the configured extra destinations for owner notifications.\n\n"
+" **Example:**\n"
+" - `[p]ownernotifications listdestinations`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4671
+msgid "There are no extra channels being sent to."
+msgstr ""
+
+#: redbot/core/core_commands.py:4682
+msgid "Unknown channel with id: {id}"
+msgstr ""
+
+#: redbot/core/core_commands.py:4713
+#, docstring
+msgid "\n"
+" Commands to add servers or channels to the ignore list.\n\n"
+" The ignore list will prevent the bot from responding to commands in the configured locations.\n\n"
+" Note: Owners and Admins override the ignore list.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4723
+#, docstring
+msgid "\n"
+" List the currently ignored servers and channels.\n\n"
+" **Example:**\n"
+" - `[p]ignore list`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4738
+#, docstring
+msgid "\n"
+" Ignore commands in the channel or category.\n\n"
+" Defaults to the current channel.\n\n"
+" Note: Owners, Admins, and those with Manage Channel permissions override ignored channels.\n\n"
+" **Examples:**\n"
+" - `[p]ignore channel #general` - Ignores commands in the #general channel.\n"
+" - `[p]ignore channel` - Ignores commands in the current channel.\n"
+" - `[p]ignore channel \"General Channels\"` - Use quotes for categories with spaces.\n"
+" - `[p]ignore channel 356236713347252226` - Also accepts IDs.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to ignore. Can be a category channel.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4758
+msgid "Channel added to ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4760
+msgid "Channel already in ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4765
+#, docstring
+msgid "\n"
+" Ignore commands in this server.\n\n"
+" Note: Owners, Admins, and those with Manage Server permissions override ignored servers.\n\n"
+" **Example:**\n"
+" - `[p]ignore server` - Ignores the current server\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4776
+msgid "This server has been added to the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4778
+msgid "This server is already being ignored."
+msgstr ""
+
+#: redbot/core/core_commands.py:4784
+#, docstring
+msgid "Commands to remove servers or channels from the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4792
+#, docstring
+msgid "\n"
+" Remove a channel or category from the ignore list.\n\n"
+" Defaults to the current channel.\n\n"
+" **Examples:**\n"
+" - `[p]unignore channel #general` - Unignores commands in the #general channel.\n"
+" - `[p]unignore channel` - Unignores commands in the current channel.\n"
+" - `[p]unignore channel \"General Channels\"` - Use quotes for categories with spaces.\n"
+" - `[p]unignore channel 356236713347252226` - Also accepts IDs. Use this method to unignore categories.\n\n"
+" **Arguments:**\n"
+" - `` - The channel to unignore. This can be a category channel.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4811
+msgid "Channel removed from ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4813
+msgid "That channel is not in the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4818
+#, docstring
+msgid "\n"
+" Remove this server from the ignore list.\n\n"
+" **Example:**\n"
+" - `[p]unignore server` - Stops ignoring the current server\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:4827
+msgid "This server has been removed from the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4829
+msgid "This server is not in the ignore list."
+msgstr ""
+
+#: redbot/core/core_commands.py:4835
+msgid "This server is currently being ignored."
+msgstr ""
+
+#: redbot/core/core_commands.py:4847
+msgid "Currently ignored categories: {categories}\n"
+"Channels: {channels}"
+msgstr ""
+
+#: redbot/core/core_commands.py:4862
+#, docstring
+msgid "\n"
+" Get info about Red's licenses.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:36
+#, docstring
+msgid "Various development focused utilities."
+msgstr ""
+
+#: redbot/core/dev_commands.py:123
+#, docstring
+msgid "Evaluate a statement of python code.\n\n"
+" The bot will always respond with the return value of the code.\n"
+" If the return value of the code is a coroutine, it will be awaited,\n"
+" and the result of that will be the bot's response.\n\n"
+" Note: Only one statement may be evaluated. Using certain restricted\n"
+" keywords, e.g. yield, will result in a syntax error. For multiple\n"
+" lines or asynchronous code, see [p]repl or [p]eval.\n\n"
+" Environment Variables:\n"
+" ctx - command invocation context\n"
+" bot - bot object\n"
+" channel - the current channel object\n"
+" author - command author's member object\n"
+" message - the command's message object\n"
+" discord - discord.py library\n"
+" commands - redbot.core.commands\n"
+" _ - The result of the last dev command.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:167
+#, docstring
+msgid "Execute asynchronous code.\n\n"
+" This command wraps code into the body of an async function and then\n"
+" calls and awaits it. The bot will respond with anything printed to\n"
+" stdout, as well as the return value of the function.\n\n"
+" The code can be within a codeblock, inline code or neither, as long\n"
+" as they are not mixed and they are formatted correctly.\n\n"
+" Environment Variables:\n"
+" ctx - command invocation context\n"
+" bot - bot object\n"
+" channel - the current channel object\n"
+" author - command author's member object\n"
+" message - the command's message object\n"
+" discord - discord.py library\n"
+" commands - redbot.core.commands\n"
+" _ - The result of the last dev command.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:221
+#, docstring
+msgid "Open an interactive REPL.\n\n"
+" The REPL will only recognise code as messages which start with a\n"
+" backtick. This includes codeblocks, and as such multiple lines can be\n"
+" evaluated.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:230
+msgid "Already running a REPL session in this channel. Exit it with `quit`."
+msgstr "Вече се провежда REPL сесия в този канал. Напуснете я с `quit`."
+
+#: redbot/core/dev_commands.py:234
+msgid "Already running a REPL session in this channel. Resume the REPL with `{}repl resume`."
+msgstr ""
+
+#: redbot/core/dev_commands.py:245
+msgid "Enter code to execute or evaluate. `exit()` or `quit` to exit. `{}repl pause` to pause."
+msgstr ""
+
+#: redbot/core/dev_commands.py:259
+msgid "Exiting."
+msgstr ""
+
+#: redbot/core/dev_commands.py:310
+msgid "Unexpected error: `{}`"
+msgstr "Неочаквана грешка: `{}`"
+
+#: redbot/core/dev_commands.py:314
+#, docstring
+msgid "Pauses/resumes the REPL running in the current channel"
+msgstr ""
+
+#: redbot/core/dev_commands.py:316
+msgid "There is no currently running REPL session in this channel."
+msgstr ""
+
+#: redbot/core/dev_commands.py:324
+msgid "The REPL session in this channel has been resumed."
+msgstr ""
+
+#: redbot/core/dev_commands.py:326
+msgid "The REPL session in this channel is now paused."
+msgstr ""
+
+#: redbot/core/dev_commands.py:331
+#, docstring
+msgid "Mock another user invoking a command.\n\n"
+" The prefix must not be entered.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:344
+#, docstring
+msgid "Dispatch a message event as if it were sent by a different user.\n\n"
+" Only reads the raw content of the message. Attachments, embeds etc. are\n"
+" ignored.\n"
+" "
+msgstr ""
+
+#: redbot/core/dev_commands.py:365
+#, docstring
+msgid "Give bot owners the ability to bypass cooldowns.\n\n"
+" Does not persist through restarts."
+msgstr ""
+
+#: redbot/core/dev_commands.py:373
+msgid "Bot owners will now bypass all commands with cooldowns."
+msgstr ""
+
+#: redbot/core/dev_commands.py:375
+msgid "Bot owners will no longer bypass all commands with cooldowns."
+msgstr ""
+
+#: redbot/core/errors.py:49
+msgid "{user}'s balance cannot rise above {max} {currency}."
+msgstr ""
+
+#: redbot/core/events.py:112
+msgid "Your Red instance is out of date! {} is the current version, however you are using {}!"
+msgstr ""
+
+#: redbot/core/events.py:122
+msgid "\n\n"
+"While the following command should work in most scenarios as it is based on your current OS, environment, and Python version, **we highly recommend you to read the update docs at <{docs}> and make sure there is nothing else that needs to be done during the update.**"
+msgstr ""
+
+#: redbot/core/events.py:146
+msgid "\n\n"
+"To update your bot, first shutdown your bot then open a window of {console} (Not as admin) and run the following:\n\n"
+msgstr ""
+
+#: redbot/core/events.py:151
+msgid "Command Prompt"
+msgstr ""
+
+#: redbot/core/events.py:153
+msgid "Terminal"
+msgstr ""
+
+#: redbot/core/events.py:160
+msgid "\n"
+"Once you've started up your bot again, if you have any 3rd-party cogs installed we then highly recommend you update them with this command in Discord: `[p]cog update`"
+msgstr ""
+
+#: redbot/core/events.py:167
+msgid "\n\n"
+"You have Python `{py_version}` and this update requires `{req_py}`; you cannot simply run the update command.\n\n"
+"You will need to follow the update instructions in our docs above, if you still need help updating after following the docs go to our #support channel in "
+msgstr ""
+
+#: redbot/core/events.py:232
+msgid "`{user_input}` is not a valid value for `{command}`"
+msgstr ""
+
+#: redbot/core/events.py:257
+msgid "Error in command '{command}'. Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/events.py:282
+msgid "I require the {permission} permission to execute that command."
+msgstr ""
+
+#: redbot/core/events.py:286
+msgid "I require {permission_list} permissions to execute that command."
+msgstr ""
+
+#: redbot/core/events.py:294
+msgid "That command is not available in DMs."
+msgstr ""
+
+#: redbot/core/events.py:296
+msgid "That command is only available in DMs."
+msgstr ""
+
+#: redbot/core/events.py:298
+msgid "That command is only available in NSFW channels."
+msgstr ""
+
+#: redbot/core/events.py:308
+msgid "This command is on cooldown. Try again in {delay}."
+msgstr ""
+
+#: redbot/core/events.py:310
+msgid "This command is on cooldown. Try again in 1 second."
+msgstr ""
+
+#: redbot/core/events.py:315
+msgid "Too many people using this command. It can only be used {number} times concurrently."
+msgstr ""
+
+#: redbot/core/events.py:320
+msgid "Too many people using this command. It can only be used once concurrently."
+msgstr ""
+
+#: redbot/core/events.py:326
+msgid "That command is still completing, it can only be used {number} times per {type} concurrently."
+msgstr ""
+
+#: redbot/core/events.py:331
+msgid "That command is still completing, it can only be used once per {type} concurrently."
+msgstr ""
+
+#: redbot/core/events.py:337
+msgid "Too many people using this command. It can only be used {number} times per {type} concurrently."
+msgstr ""
+
+#: redbot/core/events.py:342
+msgid "Too many people using this command. It can only be used once per {type} concurrently."
+msgstr ""
+
+#: redbot/core/modlog.py:417
+msgid "Case #{} | {} {}"
+msgstr ""
+
+#: redbot/core/modlog.py:419
+msgid "**Reason:** Use the `reason` command to add it"
+msgstr ""
+
+#: redbot/core/modlog.py:422
+msgid "Unknown"
+msgstr ""
+
+#: redbot/core/modlog.py:426 redbot/core/modlog.py:448
+#: redbot/core/modlog.py:463
+msgid "Deleted User."
+msgstr ""
+
+#: redbot/core/modlog.py:477 redbot/core/modlog.py:512
+msgid "**Reason:** {}"
+msgstr ""
+
+#: redbot/core/modlog.py:491
+msgid "Moderator"
+msgstr ""
+
+#: redbot/core/modlog.py:493
+msgid "Until"
+msgstr ""
+
+#: redbot/core/modlog.py:494
+msgid "Duration"
+msgstr ""
+
+#: redbot/core/modlog.py:498 redbot/core/modlog.py:503
+msgid "Channel"
+msgstr ""
+
+#: redbot/core/modlog.py:499
+msgid "{channel} (deleted)"
+msgstr ""
+
+#: redbot/core/modlog.py:505
+msgid "Amended by"
+msgstr ""
+
+#: redbot/core/modlog.py:507
+msgid "Last modified at"
+msgstr ""
+
+#: redbot/core/modlog.py:527
+msgid "**User:** {}\n"
+msgstr ""
+
+#: redbot/core/modlog.py:528
+msgid "**Moderator:** {}\n"
+msgstr ""
+
+#: redbot/core/modlog.py:531
+msgid "**Until:** {}\n"
+"**Duration:** {}\n"
+msgstr ""
+
+#: redbot/core/modlog.py:534
+msgid "**Channel**: {} (Deleted)\n"
+msgstr ""
+
+#: redbot/core/modlog.py:536
+msgid "**Channel**: {}\n"
+msgstr ""
+
+#: redbot/core/modlog.py:538
+msgid "**Amended by:** {}\n"
+msgstr ""
+
+#: redbot/core/modlog.py:540
+msgid "**Last modified at:** {}\n"
+msgstr ""
+
diff --git a/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/da-DK.po b/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/da-DK.po
new file mode 100644
index 0000000000000000000000000000000000000000..4ee097ff87898da556057170d0c273edc816bd22
--- /dev/null
+++ b/testbed/Cog-Creators__Red-DiscordBot/redbot/core/locales/da-DK.po
@@ -0,0 +1,3443 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: red-discordbot\n"
+"POT-Creation-Date: 2021-06-12 15:52+0000\n"
+"Last-Translator: \n"
+"Language-Team: Danish\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: redgettext 3.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Crowdin-Project: red-discordbot\n"
+"X-Crowdin-Project-ID: 289505\n"
+"X-Crowdin-Language: da\n"
+"X-Crowdin-File-ID: 4\n"
+"Language: da_DK\n"
+
+#: redbot/core/bank.py:1019
+msgid "Can't pay for this command in DM without a global bank."
+msgstr "Kan ikke betale for denne kommando i PB uden en global bank."
+
+#: redbot/core/bank.py:1026
+msgid "You need at least {cost} {currency} to use this command."
+msgstr "Du skal bruge mindst {cost} {currency} for at bruge denne kommando."
+
+#: redbot/core/cog_manager.py:316
+#, docstring
+msgid "Commands to interface with Red's cog manager."
+msgstr "Kommandoer til grænseflade med Red's cog bestyrer."
+
+#: redbot/core/cog_manager.py:325
+#, docstring
+msgid "\n"
+" Lists current cog paths in order of priority.\n"
+" "
+msgstr "\n"
+" Lister aktuelle cog stier i prioriteret rækkefølge.\n"
+" "
+
+#: redbot/core/cog_manager.py:333
+msgid "Install Path: {install_path}\n"
+"Core Path: {core_path}\n\n"
+msgstr "Installer Sti: {install_path}\n"
+"Kerne Sti: {core_path}\n\n"
+
+#: redbot/core/cog_manager.py:347
+#, docstring
+msgid "\n"
+" Add a path to the list of available cog paths.\n"
+" "
+msgstr "\n"
+" Tilføj en sti til listen over tilgængelige cog stier.\n"
+" "
+
+#: redbot/core/cog_manager.py:351
+msgid "That path does not exist or does not point to a valid directory."
+msgstr "Denne sti findes ikke eller peger ikke på en gyldig mappe."
+
+#: redbot/core/cog_manager.py:359
+msgid "Path successfully added."
+msgstr "Stien er tilføjet."
+
+#: redbot/core/cog_manager.py:364
+#, docstring
+msgid "\n"
+" Removes a path from the available cog paths given the `path_number` from `[p]paths`.\n"
+" "
+msgstr "\n"
+" Fjerner en sti fra de tilgængelige cog stier givet `sti_nummeret` fra `[p]stier`.\n"
+" "
+
+#: redbot/core/cog_manager.py:369 redbot/core/cog_manager.py:392
+msgid "Path numbers must be positive."
+msgstr "Sti tal skal være positive."
+
+#: redbot/core/cog_manager.py:376
+msgid "That is an invalid path number."
+msgstr "Det er et ugyldigt stinummer."
+
+#: redbot/core/cog_manager.py:380
+msgid "Path successfully removed."
+msgstr "Sti fjernet."
+
+#: redbot/core/cog_manager.py:385
+#, docstring
+msgid "\n"
+" Reorders paths internally to allow discovery of different cogs.\n"
+" "
+msgstr "\n"
+" Genbestiller stier internt for at tillade opdagelse af forskellige cogs.\n"
+" "
+
+#: redbot/core/cog_manager.py:399
+msgid "Invalid 'from' index."
+msgstr "Ugyldigt 'fra' indeks."
+
+#: redbot/core/cog_manager.py:405
+msgid "Invalid 'to' index."
+msgstr "Ugyldigt 'til' indeks."
+
+#: redbot/core/cog_manager.py:409
+msgid "Paths reordered."
+msgstr "Stier genbestilt."
+
+#: redbot/core/cog_manager.py:414
+#, docstring
+msgid "\n"
+" Returns the current install path or sets it if one is provided.\n"
+" The provided path must be absolute or relative to the bot's\n"
+" directory and it must already exist.\n\n"
+" No installed cogs will be transferred in the process.\n"
+" "
+msgstr "\n"
+" Returnerer den aktuelle installationssti eller indstiller den, hvis en er leveret.\n"
+" Den angivne sti skal være absolut eller relativ til bot'sne\n"
+" og den skal allerede eksistere.\n\n"
+" Ingen installerede cogs vil blive overført i processen.\n"
+" "
+
+#: redbot/core/cog_manager.py:427
+msgid "That path does not exist."
+msgstr "Den sti findes ikke."
+
+#: redbot/core/cog_manager.py:432
+msgid "The bot will install new cogs to the `{}` directory."
+msgstr "Botten vil installere nye cogs til `{}` mappen."
+
+#: redbot/core/cog_manager.py:438
+#, docstring
+msgid "\n"
+" Lists all loaded and available cogs.\n"
+" "
+msgstr "\n"
+" Lister alle indlæste og tilgængelige cogs.\n"
+" "
+
+#: redbot/core/cog_manager.py:451 redbot/core/cog_manager.py:466
+msgid "**{} loaded:**\n"
+msgstr "**{} indlæst:**\n"
+
+#: redbot/core/cog_manager.py:452 redbot/core/cog_manager.py:468
+msgid "**{} unloaded:**\n"
+msgstr "**{} aflæst:**\n"
+
+#: redbot/core/core_commands.py:181
+msgid "Alias {alias_name} is already an existing command or alias in one of the loaded cogs."
+msgstr "Alias {alias_name} er allerede en eksisterende kommando eller alias i en af de indlæste cogs."
+
+#: redbot/core/core_commands.py:186
+msgid "Command {command_name} is already an existing command or alias in one of the loaded cogs."
+msgstr "Kommando {command_name} er allerede en eksisterende kommando eller alias i en af de indlæste cogs."
+
+#: redbot/core/core_commands.py:398
+#, docstring
+msgid "\n"
+" The Core cog has many commands related to core functions.\n\n"
+" These commands come loaded with every Red bot, and cover some of the most basic usage of the bot.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:410
+#, docstring
+msgid "Pong."
+msgstr "Pong."
+
+#: redbot/core/core_commands.py:415
+#, docstring
+msgid "Shows info about [botname].\n\n"
+" See `[p]set custominfo` to customize.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:445
+msgid "This bot is an instance of [Red, an open source Discord bot]({}) created by [Twentysix]({}) and [improved by many]({}).\n\n"
+"Red is backed by a passionate community who contributes and creates content for everyone to enjoy. [Join us today]({}) and help us improve!\n\n"
+"(c) Cog Creators"
+msgstr "Denne bot er et instans af [Red, an open source Discord bot]({}) lavet af [Twentysix]({}) og [forbedret af mange]({}).\n\n"
+"Red bakkes op af et lidenskabeligt fællesskab, der bidrager og skaber indhold, som alle kan nyde. [Tilmeld dig i dag]({}) og hjælp os med at forbedre!\n\n"
+"(c) Cog Creators"
+
+#: redbot/core/core_commands.py:456
+msgid "Instance owned by team"
+msgstr ""
+
+#: redbot/core/core_commands.py:456
+msgid "Instance owned by"
+msgstr "Instans ejet af"
+
+#: redbot/core/core_commands.py:461
+msgid "Red version"
+msgstr ""
+
+#: redbot/core/core_commands.py:464 redbot/core/core_commands.py:520
+msgid "Yes, {version} is available."
+msgstr ""
+
+#: redbot/core/core_commands.py:468 redbot/core/core_commands.py:524
+msgid "Checking for updates failed."
+msgstr ""
+
+#: redbot/core/core_commands.py:469
+msgid "Outdated"
+msgstr ""
+
+#: redbot/core/core_commands.py:471
+msgid "About this instance"
+msgstr ""
+
+#: redbot/core/core_commands.py:472
+msgid "About Red"
+msgstr ""
+
+#: redbot/core/core_commands.py:475 redbot/core/core_commands.py:533
+msgid "Bringing joy since 02 Jan 2016 (over {} days ago!)"
+msgstr ""
+
+#: redbot/core/core_commands.py:483
+msgid "This bot is an instance of Red, an open source Discord bot (1) created by Twentysix (2) and improved by many (3).\n\n"
+"Red is backed by a passionate community who contributes and creates content for everyone to enjoy. Join us today (4) and help us improve!\n\n"
+"(c) Cog Creators"
+msgstr ""
+
+#: redbot/core/core_commands.py:494
+msgid "Instance owned by team: [{owner}]\n"
+"Python: [{python_version}] (5)\n"
+"discord.py: [{dpy_version}] (6)\n"
+"Red version: [{red_version}] (7)\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:506
+msgid "Instance owned by: [{owner}]\n"
+"Python: [{python_version}] (5)\n"
+"discord.py: [{dpy_version}] (6)\n"
+"Red version: [{red_version}] (7)\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:525
+msgid "Outdated: [{state}]\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:528
+msgid "**About Red**\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:539
+msgid "**About this instance**\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:541
+msgid "**References**\n"
+"1. <{}>\n"
+"2. <{}>\n"
+"3. <{}>\n"
+"4. <{}>\n"
+"5. <{}>\n"
+"6. <{}>\n"
+"7. <{}>\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:557
+#, docstring
+msgid "Shows [botname]'s uptime."
+msgstr ""
+
+#: redbot/core/core_commands.py:560
+msgid "Less than one second"
+msgstr ""
+
+#: redbot/core/core_commands.py:562
+msgid "Been up for: **{time_quantity}** (since {timestamp} UTC)"
+msgstr ""
+
+#: redbot/core/core_commands.py:569
+#, docstring
+msgid "\n"
+" Commands which interact with the data [botname] has about you.\n\n"
+" More information can be found in the [End User Data Documentation.](https://docs.discord.red/en/stable/red_core_data_statement.html)\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:580
+#, docstring
+msgid "\n"
+" Find out what type of data [botname] stores and why.\n\n"
+" **Example:**\n"
+" - `[p]mydata whatdata`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:590
+msgid "This bot stores some data about users as necessary to function. This is mostly the ID your user is assigned by Discord, linked to a handful of things depending on what you interact with in the bot. There are a few commands which store it to keep track of who created something. (such as playlists) For full details about this as well as more in depth details of what is stored and why, see {link}.\n\n"
+"Additionally, 3rd party addons loaded by the bot's owner may or may not store additional things. You can use `{prefix}mydata 3rdparty` to view the statements provided by each 3rd-party addition."
+msgstr ""
+
+#: redbot/core/core_commands.py:609
+#, docstring
+msgid "View the End User Data statements of each 3rd-party module.\n\n"
+" This will send an attachment with the End User Data statements of all loaded 3rd party cogs.\n\n"
+" **Example:**\n"
+" - `[p]mydata 3rdparty`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:620
+msgid "I need to be able to attach files (try in DMs?)."
+msgstr ""
+
+#: redbot/core/core_commands.py:630
+msgid "This instance does not appear to have any 3rd-party extensions loaded."
+msgstr ""
+
+#: redbot/core/core_commands.py:650
+msgid "3rd party End User Data statements"
+msgstr ""
+
+#: redbot/core/core_commands.py:652
+msgid "The following are statements provided by 3rd-party extensions."
+msgstr ""
+
+#: redbot/core/core_commands.py:657
+msgid "3rd-party extensions without statements\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:668
+msgid "Here's a generated page with the statements provided by 3rd-party extensions."
+msgstr ""
+
+#: redbot/core/core_commands.py:684
+msgid "Did not get confirmation, cancelling."
+msgstr ""
+
+#: redbot/core/core_commands.py:689
+msgid "Did not get a matching confirmation, cancelling."
+msgstr ""
+
+#: redbot/core/core_commands.py:700
+#, docstring
+msgid "\n"
+" Have [botname] forget what it knows about you.\n\n"
+" This may not remove all data about you, data needed for operation,\n"
+" such as command cooldowns will be kept until no longer necessary.\n\n"
+" Further interactions with [botname] may cause it to learn about you again.\n\n"
+" **Example:**\n"
+" - `[p]mydata forgetme`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:715
+msgid "This command ({command}) does not support non-interactive usage."
+msgstr ""
+
+#: redbot/core/core_commands.py:722
+msgid "This will cause the bot to get rid of and/or disassociate data from you. It will not get rid of operational data such as modlog entries, warnings, or mutes. If you are sure this is what you want, please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:732
+msgid "This may take some time."
+msgstr ""
+
+#: redbot/core/core_commands.py:745
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:760
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following cogs errored: {cogs}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:770
+msgid "I tried to delete all non-operational data about you (that I know how to delete) {mention}, however the following modules errored: {modules}.\n"
+"Please contact the owner of this bot to address this.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:780
+msgid "I've deleted any non-operational data about you (that I know how to delete) {mention}"
+msgstr ""
+
+#: redbot/core/core_commands.py:788 redbot/core/core_commands.py:955
+#: redbot/core/core_commands.py:1041 redbot/core/core_commands.py:1112
+msgid "{mention} The following cogs did not handle deletion:\n"
+"{cogs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:798
+#, docstring
+msgid "[Coming Soon] Get what data [botname] has about you."
+msgstr ""
+
+#: redbot/core/core_commands.py:800
+msgid "This command doesn't do anything yet, but we're working on adding support for this."
+msgstr ""
+
+#: redbot/core/core_commands.py:809
+#, docstring
+msgid "\n"
+" Commands for more complete data handling.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:815
+#, docstring
+msgid "\n"
+" Set the bot to allow users to request a data deletion.\n\n"
+" This is on by default.\n"
+" Opposite of `[p]mydata ownermanagement disallowuserdeletions`\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement allowuserdeletions`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:826
+msgid "User can delete their own data. This will not include operational data such as blocked users."
+msgstr ""
+
+#: redbot/core/core_commands.py:834
+#, docstring
+msgid "\n"
+" Set the bot to not allow users to request a data deletion.\n\n"
+" Opposite of `[p]mydata ownermanagement allowuserdeletions`\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement disallowuserdeletions`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:843
+msgid "User can not delete their own data."
+msgstr ""
+
+#: redbot/core/core_commands.py:847
+#, docstring
+msgid "\n"
+" Sets how user deletions are treated.\n\n"
+" **Example:**\n"
+" - `[p]mydata ownermanagement setuserdeletionlevel 1`\n\n"
+" **Arguments:**\n"
+" - `` - The strictness level for user deletion. See Level guide below.\n\n"
+" Level:\n"
+" - `0`: What users can delete is left entirely up to each cog.\n"
+" - `1`: Cogs should delete anything the cog doesn't need about the user.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:864
+msgid "Cogs will be instructed to remove all non operational data upon a user request."
+msgstr ""
+
+#: redbot/core/core_commands.py:872
+msgid "Cogs will be informed a user has made a data deletion request, and the details of what to delete will be left to the discretion of the cog author."
+msgstr ""
+
+#: redbot/core/core_commands.py:883
+#, docstring
+msgid "\n"
+" Handle a deletion request from Discord.\n\n"
+" This will cause the bot to get rid of or disassociate all data from the specified user ID.\n"
+" You should not use this unless Discord has specifically requested this with regard to a deleted user.\n"
+" This will remove the user from various anti-abuse measures.\n"
+" If you are processing a manual request from a user, you may want `[p]mydata ownermanagement deleteforuser` instead.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:897
+msgid "This will cause the bot to get rid of or disassociate all data from the specified user ID. You should not use this unless Discord has specifically requested this with regard to a deleted user. This will remove the user from various anti-abuse measures. If you are processing a manual request from a user, you may want `{prefix}{command_name}` instead.\n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:915 redbot/core/core_commands.py:1072
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:930 redbot/core/core_commands.py:1087
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following cogs errored: {cogs}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:941 redbot/core/core_commands.py:1098
+msgid "I tried to delete all data about that user, (that I know how to delete) however the following modules errored: {modules}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:951 redbot/core/core_commands.py:1108
+msgid "I've deleted all data about that user that I know how to delete."
+msgstr ""
+
+#: redbot/core/core_commands.py:962
+#, docstring
+msgid "Delete data [botname] has about a user for a user.\n\n"
+" This will cause the bot to get rid of or disassociate a lot of non-operational data from the specified user.\n"
+" Users have access to a different command for this unless they can't interact with the bot at all.\n"
+" This is a mostly safe operation, but you should not use it unless processing a request from this user as it may impact their usage of the bot.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:973
+msgid "This will cause the bot to get rid of or disassociate a lot of non-operational data from the specified user. Users have access to different command for this unless they can't interact with the bot at all. This is a mostly safe operation, but you should not use it unless processing a request from this user as it may impact their usage of the bot. \n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:996
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following modules errored: {modules}. Additionally, the following cogs errored: {cogs}\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1011
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following cogs errored: {cogs}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1022
+msgid "I tried to delete all non-operational data about that user, (that I know how to delete) however the following modules errored: {modules}.\n"
+"Please check your logs and contact the creators of these cogs and modules.\n"
+"Note: Outside of these failures, data should have been deleted."
+msgstr ""
+
+#: redbot/core/core_commands.py:1033
+msgid "I've deleted all non-operational data about that user that I know how to delete."
+msgstr ""
+
+#: redbot/core/core_commands.py:1048
+#, docstring
+msgid "Delete data [botname] has about a user.\n\n"
+" This will cause the bot to get rid of or disassociate a lot of data about the specified user.\n"
+" This may include more than just end user data, including anti abuse records.\n\n"
+" **Arguments:**\n"
+" - `` - The id of the user whose data would be deleted.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1058
+msgid "This will cause the bot to get rid of or disassociate a lot of data about the specified user. This may include more than just end user data, including anti abuse records.\n\n"
+"If you are sure this is what you intend to do please respond with the following:"
+msgstr ""
+
+#: redbot/core/core_commands.py:1119
+#, docstring
+msgid "\n"
+" Commands for toggling embeds on or off.\n\n"
+" This setting determines whether or not to use embeds as a response to a command (for commands that support it).\n"
+" The default is to use embeds.\n\n"
+" The embed settings are checked until the first True/False in this order:\n"
+" - In guild context:\n"
+" 1. Channel override - `[p]embedset channel`\n"
+" 2. Server command override - `[p]embedset command server`\n"
+" 3. Server override - `[p]embedset server`\n"
+" 4. Global command override - `[p]embedset command global`\n"
+" 5. Global setting -`[p]embedset global`\n\n"
+" - In DM context:\n"
+" 1. User override - `[p]embedset user`\n"
+" 2. Global command override - `[p]embedset command global`\n"
+" 3. Global setting - `[p]embedset global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1141
+#, docstring
+msgid "\n"
+" Show the current embed settings.\n\n"
+" Provide a command name to check for command specific embed settings.\n\n"
+" **Examples:**\n"
+" - `[p]embedset showsettings` - Shows embed settings.\n"
+" - `[p]embedset showsettings info` - Also shows embed settings for the 'info' command.\n"
+" - `[p]embedset showsettings \"ignore list\"` - Checking subcommands requires quotes.\n\n"
+" **Arguments:**\n"
+" - `[command_name]` - Checks this command for command specific embed settings.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1158 redbot/core/core_commands.py:1314
+#: redbot/core/core_commands.py:1365 redbot/core/core_commands.py:4282
+#: redbot/core/core_commands.py:4325 redbot/core/core_commands.py:4391
+#: redbot/core/core_commands.py:4422
+msgid "I couldn't find that command. Please note that it is case sensitive."
+msgstr ""
+
+#: redbot/core/core_commands.py:1164
+msgid "Embed settings:\n\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1166
+msgid "Global default: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1171
+msgid "Global command setting for {command} command: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1177
+msgid "Guild setting: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1182
+msgid "Server command setting for {command} command: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1188
+msgid "Channel setting: {value}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:1191
+msgid "User setting: {value}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1197
+#, docstring
+msgid "\n"
+" Toggle the global embed setting.\n\n"
+" This is used as a fallback if the user or guild hasn't set a preference.\n"
+" The default is to use embeds.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Example:**\n"
+" - `[p]embedset global`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1211
+msgid "Embeds are now disabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:1214
+msgid "Embeds are now enabled by default."
+msgstr ""
+
+#: redbot/core/core_commands.py:1220
+#, docstring
+msgid "\n"
+" Set the server's embed setting.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n"
+" This is used for all commands done in a server.\n\n"
+" If enabled is left blank, the setting will be unset and the global default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset server False` - Disables embeds on this server.\n"
+" - `[p]embedset server` - Resets value to use global default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds on this server. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1239 redbot/core/core_commands.py:1323
+#: redbot/core/core_commands.py:1414 redbot/core/core_commands.py:1445
+msgid "Embeds will now fall back to the global setting."
+msgstr ""
+
+#: redbot/core/core_commands.py:1244
+msgid "Embeds are now enabled for this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:1246
+msgid "Embeds are now disabled for this guild."
+msgstr ""
+
+#: redbot/core/core_commands.py:1254
+#, docstring
+msgid "\n"
+" Sets a command's embed setting.\n\n"
+" If you're the bot owner, this will try to change the command's embed setting globally by default.\n"
+" Otherwise, this will try to change embed settings on the current server.\n\n"
+" If enabled is left blank, the setting will be unset.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1283
+msgid "The passed command requires Embed Links permission and therefore cannot be set to not use embeds."
+msgstr ""
+
+#: redbot/core/core_commands.py:1294
+#, docstring
+msgid "\n"
+" Sets a command's embed setting globally.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n\n"
+" If enabled is left blank, the setting will be unset.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command global info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command global info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command global \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1329 redbot/core/core_commands.py:1380
+msgid "Embeds are now enabled for {command_name} command."
+msgstr ""
+
+#: redbot/core/core_commands.py:1335 redbot/core/core_commands.py:1386
+msgid "Embeds are now disabled for {command_name} command."
+msgstr ""
+
+#: redbot/core/core_commands.py:1345
+#, docstring
+msgid "\n"
+" Sets a commmand's embed setting for the current server.\n\n"
+" If set, this is used instead of the server default to determine whether or not to use embeds.\n\n"
+" If enabled is left blank, the setting will be unset and the server default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset command server info` - Clears command specific embed settings for 'info'.\n"
+" - `[p]embedset command server info False` - Disables embeds for 'info'.\n"
+" - `[p]embedset command server \"ignore list\" True` - Quotes are needed for subcommands.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds for this command. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1374
+msgid "Embeds will now fall back to the server setting."
+msgstr ""
+
+#: redbot/core/core_commands.py:1395
+#, docstring
+msgid "\n"
+" Set's a channel's embed setting.\n\n"
+" If set, this is used instead of the guild and command defaults to determine whether or not to use embeds.\n"
+" This is used for all commands done in a channel.\n\n"
+" If enabled is left blank, the setting will be unset and the guild default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset channel False` - Disables embeds in this channel.\n"
+" - `[p]embedset channel` - Resets value to use guild default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds in this channel. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1419
+msgid "Embeds are now {} for this channel."
+msgstr ""
+
+#: redbot/core/core_commands.py:1420 redbot/core/core_commands.py:2273
+#: redbot/core/core_commands.py:2294
+msgid "enabled"
+msgstr "aktiveret"
+
+#: redbot/core/core_commands.py:1420 redbot/core/core_commands.py:2273
+#: redbot/core/core_commands.py:2294
+msgid "disabled"
+msgstr "deaktiveret"
+
+#: redbot/core/core_commands.py:1426
+#, docstring
+msgid "\n"
+" Sets personal embed setting for DMs.\n\n"
+" If set, this is used instead of the global default to determine whether or not to use embeds.\n"
+" This is used for all commands executed in a DM with the bot.\n\n"
+" If enabled is left blank, the setting will be unset and the global default will be used instead.\n\n"
+" To see full evaluation order of embed settings, run `[p]help embedset`.\n\n"
+" **Examples:**\n"
+" - `[p]embedset user False` - Disables embeds in your DMs.\n"
+" - `[p]embedset user` - Resets value to use global default.\n\n"
+" **Arguments:**\n"
+" - `[enabled]` - Whether to use embeds in your DMs. Leave blank to reset to default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1450
+msgid "Embeds are now enabled for you in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:1452
+msgid "Embeds are now disabled for you in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:1458
+#, docstring
+msgid "Sends to the owner the last command exception that has occurred.\n\n"
+" If public (yes is specified), it will be sent to the chat instead.\n\n"
+" Warning: Sending the traceback publicly can accidentally reveal sensitive information about your computer or configuration.\n\n"
+" **Examples:**\n"
+" - `[p]traceback` - Sends the traceback to your DMs.\n"
+" - `[p]traceback True` - Sends the last traceback in the current context.\n\n"
+" **Arguments:**\n"
+" - `[public]` - Whether to send the traceback to the current context. Leave blank to send to your DMs.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1487
+msgid "No exception has occurred yet."
+msgstr ""
+
+#: redbot/core/core_commands.py:1492
+#, docstring
+msgid "Shows [botname]'s invite url.\n\n"
+" This will always send the invite to DMs to keep it private.\n\n"
+" This command is locked to the owner unless `[p]inviteset public` is set to True.\n\n"
+" **Example:**\n"
+" - `[p]invite`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1512
+#, docstring
+msgid "Commands to setup [botname]'s invite settings."
+msgstr ""
+
+#: redbot/core/core_commands.py:1517
+#, docstring
+msgid "\n"
+" Toggles if `[p]invite` should be accessible for the average user.\n\n"
+" The bot must be made into a `Public bot` in the developer dashboard for public invites to work.\n\n"
+" **Example:**\n"
+" - `[p]inviteset public yes` - Toggles the public invite setting.\n\n"
+" **Arguments:**\n"
+" - `[confirm]` - Required to set to public. Not required to toggle back to private.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1554
+#, docstring
+msgid "\n"
+" Make the bot create its own role with permissions on join.\n\n"
+" The bot will create its own role with the desired permissions when it joins a new server. This is a special role that can't be deleted or removed from the bot.\n\n"
+" For that, you need to provide a valid permissions level.\n"
+" You can generate one here: https://discordapi.com/permissions.html\n\n"
+" Please note that you might need two factor authentication for some permissions.\n\n"
+" **Example:**\n"
+" - `[p]inviteset perms 134217728` - Adds a \"Manage Nicknames\" permission requirement to the invite.\n\n"
+" **Arguments:**\n"
+" - `` - The permission level to require for the bot in the generated invite.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1575
+#, docstring
+msgid "\n"
+" Add the `applications.commands` scope to your invite URL.\n\n"
+" This allows the usage of slash commands on the servers that invited your bot with that scope.\n\n"
+" Note that previous servers that invited the bot without the scope cannot have slash commands, they will have to invite the bot a second time.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1586
+msgid "The `applications.commands` scope has been added to the invite URL."
+msgstr ""
+
+#: redbot/core/core_commands.py:1590
+msgid "The `applications.commands` scope has been removed from the invite URL."
+msgstr ""
+
+#: redbot/core/core_commands.py:1596
+#, docstring
+msgid "\n"
+" Leaves servers.\n\n"
+" If no server IDs are passed the local server will be left instead.\n\n"
+" Note: This command is interactive.\n\n"
+" **Examples:**\n"
+" - `[p]leave` - Leave the current server.\n"
+" - `[p]leave \"Red - Discord Bot\"` - Quotes are necessary when there are spaces in the name.\n"
+" - `[p]leave 133049272517001216 240154543684321280` - Leaves multiple servers, using IDs.\n\n"
+" **Arguments:**\n"
+" - `[servers...]` - The servers to leave. When blank, attempts to leave the current server.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1613
+msgid "You need to specify at least one server ID."
+msgstr ""
+
+#: redbot/core/core_commands.py:1620
+msgid "You haven't passed any server ID. Do you want me to leave this server?"
+msgstr ""
+
+#: redbot/core/core_commands.py:1625
+msgid "Are you sure you want me to leave these servers?"
+msgstr ""
+
+#: redbot/core/core_commands.py:1633
+msgid "I cannot leave the server `{server_name}`: I am the owner of it."
+msgstr ""
+
+#: redbot/core/core_commands.py:1644 redbot/core/core_commands.py:2711
+msgid "Response timed out."
+msgstr ""
+
+#: redbot/core/core_commands.py:1649
+msgid "Alright. Bye :wave:"
+msgstr ""
+
+#: redbot/core/core_commands.py:1652
+msgid "Alright. Leaving {number} servers..."
+msgstr ""
+
+#: redbot/core/core_commands.py:1659
+msgid "Alright, I'll stay then. :)"
+msgstr ""
+
+#: redbot/core/core_commands.py:1661
+msgid "Alright, I'm not leaving those servers."
+msgstr ""
+
+#: redbot/core/core_commands.py:1666
+#, docstring
+msgid "\n"
+" Lists the servers [botname] is currently in.\n\n"
+" Note: This command is interactive.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1684
+#, docstring
+msgid "Loads cog packages from the local paths and installed cogs.\n\n"
+" See packages available to load with `[p]cogs`.\n\n"
+" Additional cogs can be added using Downloader, or from local paths using `[p]addpath`.\n\n"
+" **Examples:**\n"
+" - `[p]load general` - Loads the `general` cog.\n"
+" - `[p]load admin mod mutes` - Loads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to load.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1713
+msgid "Loaded {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1718
+msgid "The following package is already loaded: {pack}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1722
+msgid "The following packages are already loaded: {packs}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1729
+msgid "Failed to load the following package: {pack}.\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1734
+msgid "Failed to load the following packages: {packs}\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1742 redbot/core/core_commands.py:1898
+msgid "The following name is not a valid package name: {pack}\n"
+"Package names cannot start with a number and can only contain ascii numbers, letters, and underscores."
+msgstr ""
+
+#: redbot/core/core_commands.py:1748 redbot/core/core_commands.py:1904
+msgid "The following names are not valid package names: {packs}\n"
+"Package names cannot start with a number and can only contain ascii numbers, letters, and underscores."
+msgstr ""
+
+#: redbot/core/core_commands.py:1757 redbot/core/core_commands.py:1913
+msgid "The following package was not found in any cog path: {pack}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1761 redbot/core/core_commands.py:1917
+msgid "The following packages were not found in any cog path: {packs}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1769
+msgid "This package could not be loaded for the following reason:\n\n"
+"{reason}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1773
+msgid "These packages could not be loaded for the following reasons:\n\n"
+"{reasons}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1780
+msgid "**WARNING**: The following repo is using shared libs which are marked for removal in the future: {repo}.\n"
+"You should inform maintainer of the repo about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1786 redbot/core/core_commands.py:1942
+msgid "**WARNING**: The following repos are using shared libs which are marked for removal in the future: {repos}.\n"
+"You should inform maintainers of these repos about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1805
+#, docstring
+msgid "Unloads previously loaded cog packages.\n\n"
+" See packages available to unload with `[p]cogs`.\n\n"
+" **Examples:**\n"
+" - `[p]unload general` - Unloads the `general` cog.\n"
+" - `[p]unload admin mod mutes` - Unloads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to unload.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1823
+msgid "The following package was unloaded: {pack}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1827
+msgid "The following packages were unloaded: {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1834
+msgid "The following package was not loaded: {pack}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1838
+msgid "The following packages were not loaded: {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1851
+#, docstring
+msgid "Reloads cog packages.\n\n"
+" This will unload and then load the specified cogs.\n\n"
+" Cogs that were not loaded will only be loaded.\n\n"
+" **Examples:**\n"
+" - `[p]reload general` - Unloads then loads the `general` cog.\n"
+" - `[p]reload admin mod mutes` - Unloads then loads multiple cogs.\n\n"
+" **Arguments:**\n"
+" - `` - The cog packages to reload.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1880
+msgid "Reloaded {packs}."
+msgstr ""
+
+#: redbot/core/core_commands.py:1885
+msgid "Failed to reload the following package: {pack}.\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1890
+msgid "Failed to reload the following packages: {packs}\n"
+"Check your console or logs for details."
+msgstr ""
+
+#: redbot/core/core_commands.py:1925
+msgid "This package could not be reloaded for the following reason:\n\n"
+"{reason}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1929
+msgid "These packages could not be reloaded for the following reasons:\n\n"
+"{reasons}"
+msgstr ""
+
+#: redbot/core/core_commands.py:1936
+msgid "**WARNING**: The following repo is using shared libs which are marked for removal in the future: {repo}.\n"
+"You should inform maintainers of these repos about this message."
+msgstr ""
+
+#: redbot/core/core_commands.py:1957
+#, docstring
+msgid "Shuts down the bot.\n\n"
+" Allows [botname] to shut down gracefully.\n\n"
+" This is the recommended method for shutting down the bot.\n\n"
+" **Examples:**\n"
+" - `[p]shutdown`\n"
+" - `[p]shutdown True` - Shutdowns silently.\n\n"
+" **Arguments:**\n"
+" - `[silently]` - Whether to skip sending the shutdown message. Defaults to False.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1974
+msgid "Shutting down... "
+msgstr ""
+
+#: redbot/core/core_commands.py:1980
+#, docstring
+msgid "Attempts to restart [botname].\n\n"
+" Makes [botname] quit with exit code 26.\n"
+" The restart is not guaranteed: it must be dealt with by the process manager in use.\n\n"
+" **Examples:**\n"
+" - `[p]restart`\n"
+" - `[p]restart True` - Restarts silently.\n\n"
+" **Arguments:**\n"
+" - `[silently]` - Whether to skip sending the restart message. Defaults to False.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:1994
+msgid "Restarting..."
+msgstr ""
+
+#: redbot/core/core_commands.py:1999
+#, docstring
+msgid "Commands for changing [botname]'s settings."
+msgstr ""
+
+#: redbot/core/core_commands.py:2003
+#, docstring
+msgid "\n"
+" Show the current settings for [botname].\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2021
+msgid "Admin roles: {admin}\n"
+"Mod roles: {mod}\n"
+"Locale: {guild_locale}\n"
+"Regional format: {guild_regional_format}\n"
+msgstr ""
+
+#: redbot/core/core_commands.py:2042
+msgid "{bot_name} Settings:\n\n"
+"Prefixes: {prefixes}\n"
+"{guild_settings}Global locale: {locale}\n"
+"Global regional format: {regional_format}\n"
+"Default embed colour: {colour}"
+msgstr ""
+
+#: redbot/core/core_commands.py:2064
+#, docstring
+msgid "Set the delay until the bot removes the command message.\n\n"
+" Must be between -1 and 60.\n\n"
+" Set to -1 to disable this feature.\n\n"
+" This is only applied to the current server and not globally.\n\n"
+" **Examples:**\n"
+" - `[p]set deletedelay` - Shows the current delete delay setting.\n"
+" - `[p]set deletedelay 60` - Sets the delete delay to the max of 60 seconds.\n"
+" - `[p]set deletedelay -1` - Disables deleting command messages.\n\n"
+" **Arguments:**\n"
+" - `[time]` - The seconds to wait before deleting the command message. Use -1 to disable.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2085
+msgid "Command deleting disabled."
+msgstr ""
+
+#: redbot/core/core_commands.py:2087
+msgid "Delete delay set to {num} seconds."
+msgstr ""
+
+#: redbot/core/core_commands.py:2092
+msgid "Bot will delete command messages after {num} seconds. Set this value to -1 to stop deleting messages"
+msgstr ""
+
+#: redbot/core/core_commands.py:2099
+msgid "I will not delete command messages."
+msgstr ""
+
+#: redbot/core/core_commands.py:2104
+#, docstring
+msgid "\n"
+" Sets the bot's description.\n\n"
+" Use without a description to reset.\n"
+" This is shown in a few locations, including the help menu.\n\n"
+" The maximum description length is 250 characters to ensure it displays properly.\n\n"
+" The default is \"Red V3\".\n\n"
+" **Examples:**\n"
+" - `[p]set description` - Resets the description to the default setting.\n"
+" - `[p]set description MyBot: A Red V3 Bot`\n\n"
+" **Arguments:**\n"
+" - `[description]` - The description to use for this bot. Leave blank to reset to the default.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2124
+msgid "Description reset."
+msgstr ""
+
+#: redbot/core/core_commands.py:2127
+msgid "This description is too long to properly display. Please try again with below 250 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2141
+#, docstring
+msgid "\n"
+" Adds an admin role for this guild.\n\n"
+" Admins have the same access as Mods, plus additional admin level commands like:\n"
+" - `[p]set serverprefix`\n"
+" - `[p]addrole`\n"
+" - `[p]ban`\n"
+" - `[p]ignore guild`\n\n"
+" And more.\n\n"
+" **Examples:**\n"
+" - `[p]set addadminrole @Admins`\n"
+" - `[p]set addadminrole Super Admins`\n\n"
+" **Arguments:**\n"
+" - `` - The role to add as an admin.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2161
+msgid "This role is already an admin role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2163
+msgid "That role is now considered an admin role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2169
+#, docstring
+msgid "\n"
+" Adds a moderator role for this guild.\n\n"
+" This grants access to moderator level commands like:\n"
+" - `[p]mute`\n"
+" - `[p]cleanup`\n"
+" - `[p]customcommand create`\n\n"
+" And more.\n\n"
+" **Examples:**\n"
+" - `[p]set addmodrole @Mods`\n"
+" - `[p]set addmodrole Loyal Helpers`\n\n"
+" **Arguments:**\n"
+" - `` - The role to add as a moderator.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2188
+msgid "This role is already a mod role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2190
+msgid "That role is now considered a mod role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2196
+#, docstring
+msgid "\n"
+" Removes an admin role for this guild.\n\n"
+" **Examples:**\n"
+" - `[p]set removeadminrole @Admins`\n"
+" - `[p]set removeadminrole Super Admins`\n\n"
+" **Arguments:**\n"
+" - `` - The role to remove from being an admin.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2208
+msgid "That role was not an admin role to begin with."
+msgstr ""
+
+#: redbot/core/core_commands.py:2210
+msgid "That role is no longer considered an admin role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2216
+#, docstring
+msgid "\n"
+" Removes a mod role for this guild.\n\n"
+" **Examples:**\n"
+" - `[p]set removemodrole @Mods`\n"
+" - `[p]set removemodrole Loyal Helpers`\n\n"
+" **Arguments:**\n"
+" - `` - The role to remove from being a moderator.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2228
+msgid "That role was not a mod role to begin with."
+msgstr ""
+
+#: redbot/core/core_commands.py:2230
+msgid "That role is no longer considered a mod role."
+msgstr ""
+
+#: redbot/core/core_commands.py:2236
+#, docstring
+msgid "\n"
+" Toggle whether to use the bot owner-configured colour for embeds.\n\n"
+" Default is to use the bot's configured colour.\n"
+" Otherwise, the colour used will be the colour of the bot's top role.\n\n"
+" **Example:**\n"
+" - `[p]set usebotcolour`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2248
+msgid "The bot {} use its configured color for embeds."
+msgstr ""
+
+#: redbot/core/core_commands.py:2249
+msgid "will not"
+msgstr ""
+
+#: redbot/core/core_commands.py:2249
+msgid "will"
+msgstr ""
+
+#: redbot/core/core_commands.py:2257
+#, docstring
+msgid "\n"
+" Toggle whether to enable fuzzy command search for the server.\n\n"
+" This allows the bot to identify potential misspelled commands and offer corrections.\n\n"
+" Note: This can be processor intensive and may be unsuitable for larger servers.\n\n"
+" Default is for fuzzy command search to be disabled.\n\n"
+" **Example:**\n"
+" - `[p]set serverfuzzy`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2272
+msgid "Fuzzy command search has been {} for this server."
+msgstr ""
+
+#: redbot/core/core_commands.py:2280
+#, docstring
+msgid "\n"
+" Toggle whether to enable fuzzy command search in DMs.\n\n"
+" This allows the bot to identify potential misspelled commands and offer corrections.\n\n"
+" Default is for fuzzy command search to be disabled.\n\n"
+" **Example:**\n"
+" - `[p]set fuzzy`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2293
+msgid "Fuzzy command search has been {} in DMs."
+msgstr ""
+
+#: redbot/core/core_commands.py:2301
+#, docstring
+msgid "\n"
+" Sets a default colour to be used for the bot's embeds.\n\n"
+" Acceptable values for the colour parameter can be found at:\n\n"
+" https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.ColourConverter\n\n"
+" **Examples:**\n"
+" - `[p]set colour dark red`\n"
+" - `[p]set colour blurple`\n"
+" - `[p]set colour 0x5DADE2`\n"
+" - `[p]set color 0x#FDFEFE`\n"
+" - `[p]set color #7F8C8D`\n\n"
+" **Arguments:**\n"
+" - `[colour]` - The colour to use for embeds. Leave blank to set to the default value (red).\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2321
+msgid "The color has been reset."
+msgstr ""
+
+#: redbot/core/core_commands.py:2324
+msgid "The color has been set."
+msgstr ""
+
+#: redbot/core/core_commands.py:2329
+#, docstring
+msgid "Sets [botname]'s avatar\n\n"
+" Supports either an attachment or an image URL.\n\n"
+" **Examples:**\n"
+" - `[p]set avatar` - With an image attachment, this will set the avatar.\n"
+" - `[p]set avatar` - Without an attachment, this will show the command help.\n"
+" - `[p]set avatar https://links.flaree.xyz/k95` - Sets the avatar to the provided url.\n\n"
+" **Arguments:**\n"
+" - `[url]` - An image url to be used as an avatar. Leave blank when uploading an attachment.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2352
+msgid "That URL is invalid."
+msgstr ""
+
+#: redbot/core/core_commands.py:2354
+msgid "Something went wrong while trying to get the image."
+msgstr ""
+
+#: redbot/core/core_commands.py:2364
+msgid "Failed. Remember that you can edit my avatar up to two times a hour. The URL or attachment must be a valid image in either JPG or PNG format."
+msgstr ""
+
+#: redbot/core/core_commands.py:2371
+msgid "JPG / PNG format only."
+msgstr ""
+
+#: redbot/core/core_commands.py:2373 redbot/core/core_commands.py:2600
+#: redbot/core/core_commands.py:2656 redbot/core/core_commands.py:2680
+msgid "Done."
+msgstr "Færdig."
+
+#: redbot/core/core_commands.py:2378
+#, docstring
+msgid "\n"
+" Removes [botname]'s avatar.\n\n"
+" **Example:**\n"
+" - `[p]set avatar remove`\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2386
+msgid "Avatar removed."
+msgstr ""
+
+#: redbot/core/core_commands.py:2392
+#, docstring
+msgid "Sets [botname]'s playing status.\n\n"
+" This will appear as `Playing ` or `PLAYING A GAME: ` depending on the context.\n\n"
+" Maximum length for a playing status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set playing` - Clears the activity status.\n"
+" - `[p]set playing the keyboard`\n\n"
+" **Arguments:**\n"
+" - `[game]` - The text to follow `Playing`. Leave blank to clear the current activity status.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2408
+msgid "The maximum length of game descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2416
+msgid "Status set to ``Playing {game.name}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2418
+msgid "Game cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2424
+#, docstring
+msgid "Sets [botname]'s listening status.\n\n"
+" This will appear as `Listening to `.\n\n"
+" Maximum length for a listening status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set listening` - Clears the activity status.\n"
+" - `[p]set listening jams`\n\n"
+" **Arguments:**\n"
+" - `[listening]` - The text to follow `Listening to`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2441
+msgid "The maximum length of listening descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2450
+msgid "Status set to ``Listening to {listening}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2453
+msgid "Listening cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2459
+#, docstring
+msgid "Sets [botname]'s watching status.\n\n"
+" This will appear as `Watching `.\n\n"
+" Maximum length for a watching status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set watching` - Clears the activity status.\n"
+" - `[p]set watching [p]help`\n\n"
+" **Arguments:**\n"
+" - `[watching]` - The text to follow `Watching`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2475
+msgid "The maximum length of watching descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2482
+msgid "Status set to ``Watching {watching}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2484
+msgid "Watching cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2490
+#, docstring
+msgid "Sets [botname]'s competing status.\n\n"
+" This will appear as `Competing in `.\n\n"
+" Maximum length for a competing status is 128 characters.\n\n"
+" **Examples:**\n"
+" - `[p]set competing` - Clears the activity status.\n"
+" - `[p]set competing London 2012 Olympic Games`\n\n"
+" **Arguments:**\n"
+" - `[competing]` - The text to follow `Competing in`. Leave blank to clear the current activity status."
+msgstr ""
+
+#: redbot/core/core_commands.py:2507
+msgid "The maximum length of competing descriptions is 128 characters."
+msgstr ""
+
+#: redbot/core/core_commands.py:2516
+msgid "Status set to ``Competing in {competing}``."
+msgstr ""
+
+#: redbot/core/core_commands.py:2519
+msgid "Competing cleared."
+msgstr ""
+
+#: redbot/core/core_commands.py:2525
+#, docstring
+msgid "Sets [botname]'s status.\n\n"
+" Available statuses:\n"
+" - `online`\n"
+" - `idle`\n"
+" - `dnd`\n"
+" - `invisible`\n\n"
+" **Examples:**\n"
+" - `[p]set status online` - Clears the status.\n"
+" - `[p]set status invisible`\n\n"
+" **Arguments:**\n"
+" - `` - One of the available statuses.\n"
+" "
+msgstr ""
+
+#: redbot/core/core_commands.py:2555
+msgid "Status changed to {}."
+msgstr ""
+
+#: redbot/core/core_commands.py:2563
+#, docstring
+msgid "Sets [botname]'s streaming status to a twitch stream.\n\n"
+" This will appear as `Streaming ` or `LIVE ON TWITCH` depending on the context.\n"
+" It will also include a `Watch` button with a twitch.tv url for the provided streamer.\n\n"
+" Maximum length for a stream title is 128 characters.\n\n"
+" Leaving both streamer and stream_title empty will clear it.\n\n"
+" **Examples:**\n"
+" - `[p]set stream` - Clears the activity status.\n"
+" - `[p]set stream 26 Twentysix is streaming` - Sets the stream to `https://www.twitch.tv/26`.\n"
+" - `[p]set stream https://twitch.tv/26 Twentysix is streaming` - Sets the URL manually.\n\n"
+" **Arguments:**\n"
+" - `