From 1d8387b8d971faa82a05cd60208604d5ccb5b827 Mon Sep 17 00:00:00 2001 From: samvaio Date: Wed, 8 Mar 2017 01:41:57 +0530 Subject: [PATCH 01/19] .NET Core 1.1.0 SDK Preview 2.1 build 3177 --- docs/guides/Windows Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/Windows Guide.md b/docs/guides/Windows Guide.md index 0d569909..c0e62c76 100644 --- a/docs/guides/Windows Guide.md +++ b/docs/guides/Windows Guide.md @@ -120,7 +120,7 @@ In order to have a functioning music module, you need to install ffmpeg and setu -[.NET Core SDK]: https://www.microsoft.com/net/core#windowscmd +[.NET Core SDK]: https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1-preview2.1-download.md [Git]: https://git-scm.com/download/win [7zip]: http://www.7-zip.org/download.html [DiscordApp]: https://discordapp.com/developers/applications/me From 4c1d405d51b11edf82833807bd20ed1654246bf7 Mon Sep 17 00:00:00 2001 From: samvaio Date: Wed, 8 Mar 2017 02:19:18 +0530 Subject: [PATCH 02/19] linux and macos update links changed to .NET Core 1.1.0 SDK Preview 2.1 build 3177 --- docs/guides/Linux Guide.md | 48 +++++++++++++++++++++++++++++++------- docs/guides/OSX Guide.md | 3 ++- 2 files changed, 42 insertions(+), 9 deletions(-) diff --git a/docs/guides/Linux Guide.md b/docs/guides/Linux Guide.md index 1997407b..4e168cf4 100644 --- a/docs/guides/Linux Guide.md +++ b/docs/guides/Linux Guide.md @@ -198,17 +198,49 @@ CentOS: ![img2](https://cdn.discordapp.com/attachments/251504306010849280/251504746987388938/dotnet.gif) Go to [this link](https://www.microsoft.com/net/core#ubuntu) (for Ubuntu) or to [this link](https://www.microsoft.com/net/core#linuxcentos) (for CentOS) provided by microsoft for instructions on how to get the most up to date version of the dotnet core sdk! -Make sure that you're on the correct page for your distribution of linux as the guides are different for the various distributions +Make sure that you're on the correct page for your distribution of linux as the guides are different for the various distributions. +Install the **currently supported version** `1.0.0-preview2-1-003177`. +You can find it [here](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1-preview2.1-download.md) if you prefer manual installing `dpkg` files. -We'll go over the steps here for Ubuntu 16.04 anyway (these will **only** work on Ubuntu 16.04), accurate as of 3/2/2017 +We'll go over the steps here for few linux distributions, accurate as of March 08, 2017: +**NOTE:** .NET CORE SDK only supports 64-bit Linux Operating Systems (Raspberry Pis are not supported because of this) +**Ubuntu x64 17.04 & 16.10** +```sh +sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ yakkety main" > /etc/apt/sources.list.d/dotnetdev.list' +sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893 +sudo apt-get update && sudo apt-get install dotnet-dev-1.0.0-preview2.1-003177 -y ``` + +**Ubuntu x64 16.04** +```sh sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list' sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893 sudo apt-get update && sudo apt-get install dotnet-dev-1.0.0-preview2.1-003177 -y ``` -**NOTE:** .NET CORE SDK only supports 64-bit Linux Operating Systems (Raspberry Pis are not supported because of this) +**Ubuntu x64 14.04** +```sh +sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' +sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893 +sudo apt-get update && sudo apt-get install dotnet-dev-1.0.0-preview2.1-003177 -y +``` + +**Debian 8 x64** +```sh +sudo apt-get install curl libunwind8 gettext -y +curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?LinkID=835021 +sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet +sudo ln -s /opt/dotnet/dotnet /usr/local/bin +``` + +**CentOS 7 x64** +```sh +sudo yum install libunwind libicu -y +curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?LinkID=835019 +sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet +sudo ln -s /opt/dotnet/dotnet /usr/local/bin +``` #####Installing Opus Voice Codec and libsodium @@ -232,14 +264,14 @@ Ubuntu: Centos: -``` +```sh yum -y install http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm epel-release yum -y install ffmpeg ``` **NOTE:** If you are running **UBUNTU 14.04**, you must run these first: -``` +```sh sudo add-apt-repository ppa:mc3man/trusty-media sudo apt-get update sudo apt-get dist-upgrade @@ -250,7 +282,7 @@ sudo apt-get dist-upgrade **NOTE:** If you are running **Debian 8 Jessie**, please, follow these steps: -``` +```sh sudo apt-get update echo "deb http://ftp.debian.org/debian jessie-backports main" | tee /etc/apt/sources.list.d/debian-backports.list sudo apt-get update && sudo apt-get install ffmpeg -y @@ -330,14 +362,14 @@ If the [Nadeko installer](http://nadekobot.readthedocs.io/en/latest/guides/Linux **OR** -``` +```sh cd ~ && git clone -b dev --recursive --depth 1 https://github.com/Kwoth/NadekoBot.git cd ~/NadekoBot/discord.net/src/Discord.Net && dotnet restore && cd ../Discord.Net.Commands && dotnet restore && cd ../../../src/NadekoBot/ && dotnet restore && dotnet build --configuration Release ``` If you are getting error using the above steps try: -``` +```sh cd ~/NadekoBot/discord.net && dotnet restore -s https://dotnet.myget.org/F/dotnet-core/api/v3/index.json && dotnet restore cd ~/NadekoBot/src/NadekoBot/ && dotnet restore && dotnet build --configuration Release ``` diff --git a/docs/guides/OSX Guide.md b/docs/guides/OSX Guide.md index 7475a911..366a5319 100644 --- a/docs/guides/OSX Guide.md +++ b/docs/guides/OSX Guide.md @@ -30,7 +30,7 @@ brew install tmux - `ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/` - `ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/` -- Download the [.NET Core SDK](https://www.microsoft.com/net/core#macos), found [here.](https://go.microsoft.com/fwlink/?LinkID=835011) +- Download the [.NET Core SDK][.NET Core SDK] - Open the `.pkg` file you downloaded and install it. - `ln -s /usr/local/share/dotnet/dotnet /usr/local/bin` @@ -166,6 +166,7 @@ If you used Screen press CTRL+A+D (this will detach the nadeko screen) - `dotnet build --configuration Release` [Homebrew]: http://brew.sh/ +[.NET Core SDK]: https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1-preview2.1-download.md [DiscordApp]: https://discordapp.com/developers/applications/me [Atom]: https://atom.io/ [Invite Guide]: http://discord.kongslien.net/guide.html From 96bf2a5233bf9769baf58c5b9ad37dece2580e27 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:30 +0100 Subject: [PATCH 03/19] Update ResponseStrings.zh-CN.resx (POEditor.com) From 221ca3f4de316849c2af4ecd4ac6ee52baa280e6 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:33 +0100 Subject: [PATCH 04/19] Update ResponseStrings.zh-TW.resx (POEditor.com) --- .../Resources/ResponseStrings.zh-TW.resx | 622 +++++++++++++----- 1 file changed, 468 insertions(+), 154 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.zh-TW.resx b/src/NadekoBot/Resources/ResponseStrings.zh-TW.resx index 7b58202d..cb7f3b62 100644 --- a/src/NadekoBot/Resources/ResponseStrings.zh-TW.resx +++ b/src/NadekoBot/Resources/ResponseStrings.zh-TW.resx @@ -140,7 +140,6 @@ 在 @{0} 與 {1} 對戰後佔領的基地已失效。 - Fuzzy 敵人 @@ -153,11 +152,9 @@ 無效的戰爭大小。 - Fuzzy 目前正在進行的戰爭 - Fuzzy 未佔領 @@ -170,7 +167,6 @@ 目前尚無戰爭進行中。 - Fuzzy 大小 @@ -211,7 +207,6 @@ 沒有找到自訂回應 。 - Fuzzy 找不到輸入的自訂回應編號。 @@ -300,7 +295,7 @@ {0} 的屬性是 {1} - 該用戶不存在。 + 該成員不存在。 您已昏厥所以不能移動! @@ -326,7 +321,7 @@ PLURAL - 用戶已封鎖 + 成員已封鎖 Bot 暱稱已改為 {0} @@ -401,7 +396,7 @@ 私人訊息來自 - 成功新增了新的捐贈者。此用戶總共捐贈了:{0} + 成功新增了新的捐贈者。此成員總共捐贈了:{0} 感謝下列的人使這個項目繼續運作! @@ -455,7 +450,7 @@ 在這個頻道啟用歡迎通知。 - 您不能對身分組與您一樣或更高的人使用此指令。 + 您不能對身分組與您一樣或更高的成員使用此指令。 圖片共花了 {0} 秒載入! @@ -474,7 +469,7 @@ 原因:{1} - 用戶已被踢出 + 成員已被踢出 Fuzzy @@ -616,16 +611,16 @@ Fuzzy - 用戶緩衝數應介於 {0} 和 {1} 之間。 + 成員緩衝數應介於 {0} 和 {1} 之間。 - 如果 {1} 秒內進入了 {0} 或更多位使用者,我則會將他們 {2} 。 + 如果 {1} 秒內進入了 {0} 或更多位成員,我則會將他們 {2} 。 時間必須在於 {0} 和 {1} 秒之間。 - 已成功移除了使用者 {0} 上所有的身分組。 + 成功的移除了 {0} 所有的身分組。 無法移除身分組。我的權限不夠。 @@ -643,7 +638,7 @@ 無效的色碼或是權限不足引起錯誤。 - 成功的移除 {1} 的 {0} 身分組。 + 成功的移除了 {1} 的 {0} 身分組。 無法移除身分組。我沒有足夠的權限。 @@ -744,293 +739,352 @@ Shard {0} 重新連線中。 + Fuzzy 關閉中 + Fuzzy - 使用者無法在 {1} 秒發送超過 {0} 條訊息。 + 成員無法在 {1} 秒發送超過 {0} 條訊息。 + Fuzzy 慢速模式已停用。 + Fuzzy 慢速模式已啟用 + Fuzzy 軟禁 (踢出) - PLURAL + PLURAL +Fuzzy {0} 將會忽略此頻道。 + Fuzzy {0} 將會注意此頻道。 + Fuzzy - 如果使用者連續貼出 {0} 個相同的訊息,我將會把他們 {1}。 + 如果成員連續貼出 {0} 個相同的訊息,我將會把他們 {1}。      __忽略的頻道__: {2} + Fuzzy 文字頻道已建立 - Fuzzy 文字頻道已刪除 - Fuzzy 成功解除靜音。 + Fuzzy 解除靜音 - singular + singular +Fuzzy - 使用者名稱 + 成員名稱 + Fuzzy - 使用者名稱已更改 - Fuzzy + 成員名稱已更改 - 使用者 - - - 使用者已封鎖 + 成員 Fuzzy + + 成員已封鎖 + - {0} 已**被禁**__文字聊天__。 + 已**禁止** {0} 的__文字聊天__。 + Fuzzy - {0} 已**允許**__文字聊天__。 + 已**開啟** {0} 的__文字聊天__。 + Fuzzy 使用者已加入 - Fuzzy 使用者已離開 - Fuzzy - {0} 已**被禁**__文字和語音聊天__。 + 已**禁止** {0} 的__文字和語音聊天__。 + Fuzzy 使用者身分組已新增 + Fuzzy 已移除用戶的身分組 - Fuzzy {0} 改成了 {1} + Fuzzy - {0} 已從文字頻道和語音頻道被**取消禁音**。 + 已**開放** {0} 的__文字和語音聊天__。 + Fuzzy {0} 已加入 {1} 語音頻道。 + Fuzzy {0} 已離開 {1} 語音頻道。 + Fuzzy {0} 已從 {1} 移至 {2} 語音頻道。 + Fuzzy - {0} 已被**静音**。 + 已**禁止** {0} 的__語音聊天__。 + Fuzzy - {0} 已被**取消静音**。 + 已**開放** {0} 的__語音聊天__。 + Fuzzy 已建立語音頻道 + Fuzzy 已刪除語音頻道 + Fuzzy 已停用語音+文字功能。 + Fuzzy 已啟用語音+文字功能。 + Fuzzy - 我沒有**管理身分組**和/或**管理頻道**權限,所以我無法在 {0} 伺服器上運行`語音+文字`。 + 我沒有**管理身分組**和/或**管理頻道**權限,所以我無法在 {0} 伺服器上執行`語音+文字`功能。 + Fuzzy - 您正在啟用/停用此功能,而且**我没有管理員權限**。這可能會造成一些問題,您必須自己清理文字頻道。 + 您正在啟用/停用此功能,但我**__没有__管理員權限**。這可能會造成一些問題,而事後您必須自行處理這些文字頻道。 + Fuzzy - 我需要至少**管理身份**和**管理频道**权限,以启用此功能。 (优先管理权限) + 我至少需要**管理身份組**和**管理頻道**權限才能使用此功能。(建議給我管理員權限) + Fuzzy - 用户{0}来自文字频道 + 使用者被 {0} 文字聊天 + Fuzzy - 用户{0}来自文字和语音频道 + 使用者被 {0} 文字及語音聊天 + Fuzzy - 用户{0}来自语音频道 + 使用者被 {0} 語音聊天 + Fuzzy - 您已从{0}服务器软禁止。 -原因:{1} + 您已被伺服器 {0} 軟禁。 +理由: {1} + Fuzzy - 用户已取消禁止 - Fuzzy + 使用者已解禁 迁移完成! + Fuzzy 在迁移时出错,请检查机器人的控制台以获取更多信息。 + Fuzzy 在线状态更新 - Fuzzy 用户被软禁用 - Fuzzy 已給予 {0} 給 {1} + Fuzzy 祝你下一次好運 ^_^ + Fuzzy 恭喜! 您赢得{0}因为您滚{1}或以上 + Fuzzy 卡牌改组。 + Fuzzy 拋出了 {0}。 - User flipped tails. + User flipped tails. +Fuzzy 你猜對了!你赢得了 {0} + Fuzzy 指定的數字無效。你可以丟 1 至 {0} 個硬幣。 + Fuzzy 将{0}反应添加到此消息以获取{1} + Fuzzy 此活動只在 {0} 小時內有效。 + Fuzzy 花反应活动开始了! + Fuzzy 送了 {1} 給 {0} - X has gifted 15 flowers to Y + X has gifted 15 flowers to Y +Fuzzy {0} 擁有 {1} - X has Y flowers + X has Y flowers +Fuzzy + Fuzzy 排行榜 + Fuzzy 从{2}身份授予{0}至{1}名用户。 + Fuzzy 你的賭注不能大於 {0} + Fuzzy 你的賭注不能少於 {0} + Fuzzy 你沒有足夠的 {0} + Fuzzy 卡牌组中没有更多的牌。 + Fuzzy - 抽奖用户 - Fuzzy + 得獎用戶 您抛了{0}。 + Fuzzy 賭注 + Fuzzy 哇啊啊啊啊啊啊!恭喜!x{0} + Fuzzy 单个{0},x {1} + Fuzzy 哇!好运! 三个相同! x {0} + Fuzzy 做得好! 两个{0} - 投注x {1} + Fuzzy 獲勝 + Fuzzy 用户必须键入密码才能获取{0}。 持续{1}秒。 嘘~别跟任何人说。 + Fuzzy SneakyGame事件结束。 {0}个用户收到了奖励。 + Fuzzy SneakyGameStatus事件已启动 + Fuzzy - Fuzzy 已成功从{1}取得{0} + Fuzzy 无法从{1}取得{0},因为用户没有那么多{2}! + Fuzzy 返回ToC + Fuzzy - 仅限Bot Owner + 只限 BOT 擁有者 Fuzzy - 需要{0}频道权限。 + 需要 {0} 頻道權限。 + Fuzzy - 您可以在patreon上支持项目:<{0}>或paypal:<{1}> + 您可以在 patreon 上:<{0}> 或 paypal:<{1}> 支持這個項目 命令和别名 - Fuzzy 命令列表已重新生成。 - Fuzzy 输入`{0} h CommandName`可查看该指定命令的帮助。 例如 `{0} h> 8ball` + Fuzzy 我找不到该命令。 请再次尝试之前验证该命令是否存在。 + Fuzzy 描述 + Fuzzy 您可以在: @@ -1040,1285 +1094,1545 @@ Paypal <{1}> 不要忘记在邮件中留下您的不和名字或ID。 **谢谢**♥️ + Fuzzy **命令列表**:<{0}> **主机指南和文档可以在这里找到**:<{1}> - Fuzzy - 命令列表 - Fuzzy + 指令列表 组件列表 - Fuzzy 输入“{0} cmds ModuleName”以获取该组件中的命令列表。 例如`{0} cmds games` + Fuzzy 该组件不存在。 + Fuzzy 需要{0}服务器权限。 + Fuzzy 目录 - Fuzzy - 用法 + 使用方式 + Fuzzy - 自动hentai启动。 使用以下标记之一重新排列每个{0}: + Autohentai 啟動。每 {0} 秒發送一張含有以下標籤的圖片: {1} - 标签 - - - 动物竞赛 + 標籤 Fuzzy + + 動物競速比賽 + - 启动失败,因为没有足够的参与者。 + 參賽者不足,無法啟動比賽。 + Fuzzy - 竞赛已满! 立即开始。 + 參賽者已滿!將立即開始比賽。 + Fuzzy - {0}加入为{1} + {0} 扮演為 {1} - {0}加入为{1},赌注{2}! + {0} 扮演為 {1} 並下注了 {2}! - 输入{0} jr 以加入竞赛。 + 輸入 {0}jr 來加入比賽。 + Fuzzy - 在20内秒或当房间满后开始。 + 比賽將開始於20秒內或房間人數滿後。 + Fuzzy - {0}个参与者开始。 + 比賽開始,共有 {0} 個參賽者。 {0}为{1}赢得竞赛! + Fuzzy 0}为{1}赢得竞赛,和赢得{2}! + Fuzzy 指定的数字无效。 您可以一次滚动{0} - {1}骰子。 + Fuzzy 掷了{0} - Someone rolled 35 + Someone rolled 35 +Fuzzy 掷骰子:{0} - Dice Rolled: 5 + Dice Rolled: 5 +Fuzzy 竞赛启动失败。 另一个比赛可能正在运行。 + Fuzzy 此服务器上不存在竞赛 + Fuzzy 第二个数字必须大于第一个数字。 + Fuzzy 爱被改变 - Fuzzy 声称 - Fuzzy 离婚 + Fuzzy 喜欢 + Fuzzy - 价钱 + 價格 + Fuzzy 没有waifus被要求。 + Fuzzy 最佳Waifus + Fuzzy 您的兴趣已设置为该waifu,或者您尝试在没有兴趣的情况下删除您的兴趣。 + Fuzzy 将把兴趣从{0}更改为{1}。 *这在道德上是有问题的*🤔 - Make sure to get the formatting right, and leave the thinking emoji + Make sure to get the formatting right, and leave the thinking emoji +Fuzzy 您必须等待{0}小时和{1}分钟才能再次更改您的兴趣。 + Fuzzy 您的兴趣已重置。 你不再有你喜欢的人。 + Fuzzy 想成为{0}的waifu。哇非常可爱<3 + Fuzzy 声明{0}为他的waifu,花了{1}! + Fuzzy 你已经离婚了一个喜欢你的waifu。 你无情的怪物。 {0}收到了{1}作为补偿。 + Fuzzy 你不能设置兴趣自己,你好自卑。 + Fuzzy 🎉他的爱实现! 🎉 {0}的新值为{1}! + Fuzzy 没有waifu那么便宜。 您必须至少支付{0}才能获得waifu,即使他们的实际价值较低。 + Fuzzy 您必须支付{0}或更多才能认领那个waifu! + Fuzzy 那waifu不是你的。 + Fuzzy 你不能认领自己。 + Fuzzy 你最近离婚了。 您必须等待{0}小时和{1}分钟再次离婚。 + Fuzzy 没人 + Fuzzy 你离婚了一个不喜欢你的waifu。 您收到了{0}。 + Fuzzy 8ball + Fuzzy 恐惧症游戏 + Fuzzy 游戏结束,没人提交。 + Fuzzy 没人投票。 游戏结束,没有赢家。 + Fuzzy 首字母缩写是{0}。 + Fuzzy 恐惧症游戏已经在这个频道中运行。 + Fuzzy 游戏开始。 创建具有以下首字母缩写的句子:{0}。 + Fuzzy 您有{0}秒的时间提交。 + Fuzzy {0}提交了他的判决。 (总{1}个) + Fuzzy 通过输入提交数字投票 + Fuzzy {0}投了票! + Fuzzy 获胜者{0}获得{1}分。 + Fuzzy {0}赢了因为是唯一的提交用户! + Fuzzy + Fuzzy 平局! 两个都挑了{0} + Fuzzy {0}赢了! {1} 打赢了 {2} + Fuzzy 提交关闭 - Fuzzy 动物竞赛已经运行。 + Fuzzy 总计:{0} 平均:{1} + Fuzzy 类别 + Fuzzy 在此服务器上禁用cleverbot。 + Fuzzy 在此服务器上启用cleverbot。 + Fuzzy 在此频道上停用的货币生成功能。 + Fuzzy 在此频道上启用的货币生成功能。 + Fuzzy {0} 个 {1}出现了! 通过输入`{2} pick'来拾取 - plural + plural +Fuzzy 一个{0}出现了! 通过输入`{1} pick`来拾取 + Fuzzy 加载问题失败。 + Fuzzy 游戏开始 - Fuzzy Hangman游戏开始了 + Fuzzy Hangman游戏已在此频道上打开。 + Fuzzy 启动hangman错误。 + Fuzzy “{0} hangman”字词类型列表: + Fuzzy 排行榜 + Fuzzy 您没有足够的{0} + Fuzzy 没有结果 + Fuzzy 采了{0} - Kwoth picked 5* + Kwoth picked 5* +Fuzzy {0}种了{1} - Kwoth planted 5* + Kwoth planted 5* +Fuzzy 琐事游戏已经在这个服务器上运行。 + Fuzzy 琐事游戏 + Fuzzy {0}猜对了! 答案是:{1} + Fuzzy 此服务器上没有运行琐事游戏。 + Fuzzy {0}有{1}分 + Fuzzy 这个问题后停止。 + Fuzzy 时间到! 正确的答案是{0} + Fuzzy {0}猜到了,赢得了游戏! 答案是:{1} + Fuzzy 你不能对自己玩。 + Fuzzy TicTacToe游戏已在此频道中运行。 + Fuzzy 平局! + Fuzzy 开始了一局TicTacToe游戏。 + Fuzzy {0}赢了! - Fuzzy 相配了三个 - Fuzzy 没有地方动了! + Fuzzy 时间已过! - Fuzzy 轮到{0}了 + Fuzzy {0}对{1} + Fuzzy 正在排{0}首歌... + Fuzzy 已停用自动播放。 + Fuzzy 已启用自动播放。 + Fuzzy 默认音量设置为{0}% + Fuzzy 目录队列完成。 + Fuzzy 公平播放 + Fuzzy 完成歌曲 - Fuzzy 停用公平播放。 + Fuzzy 启用公平播放。 + Fuzzy 从位置 + Fuzzy ID + Fuzzy 输入错误。 + Fuzzy 最大播放时间没有限制移除。 + Fuzzy 最大播放时间设置为{0}秒。 + Fuzzy 最大音乐队列大小设置为无限。 + Fuzzy 最大音乐队列大小设置为{0}首。 + Fuzzy 您需要在此服务器上加入语音频道。 + Fuzzy + Fuzzy 现在播放 - Fuzzy 没有活动音乐播放器。 + Fuzzy 没有搜索结果。 + Fuzzy 音乐播放暂停。 + Fuzzy 播放器队列 - {0} / {1}页 - Fuzzy 正在播放 - Fuzzy `#{0}` - ** {1} ** by * {2} *({3}首歌) + Fuzzy 有保存{0}页的播放列表 - Fuzzy 播放列表已删除。 + Fuzzy 无法删除该播放列表。 它不存在,或者你不是它的作者。 + Fuzzy 具有该ID的播放列表不存在。 + Fuzzy 播放列表队列完成。 + Fuzzy 播放列表已保存 - Fuzzy {0}秒限制 + Fuzzy 队列 + Fuzzy 歌加入队列 - Fuzzy 音乐队列已清除。 + Fuzzy 队列已满{0} / {0}。 + Fuzzy 歌被移除 - context: "removed song #5" + context: "removed song #5" +Fuzzy 重复播放当前歌曲 - Fuzzy 重复播放列表 - Fuzzy 重复曲目 - Fuzzy 当前曲目停止重复。 + Fuzzy 音乐播放已恢复。 + Fuzzy 禁用重复播放列表 + Fuzzy 重复播放列表已启用。 + Fuzzy 我现在将在此频道里输出播放,完成,暂停和删除歌曲。 + Fuzzy 跳到‘{0}:{1}’ + Fuzzy 歌播放列表曲被随机。 - Fuzzy 歌曲被移动 - Fuzzy {0}小时 {1}分钟 {2}秒 + Fuzzy 到位置 + Fuzzy 无限 + Fuzzy 音量必须介于0和100之间 + Fuzzy 音量设置为{0}% + Fuzzy 在{0}频道上禁止所有组件的使用。 - Fuzzy 在{0}频道上允许启用所有组件。 - Fuzzy 允许 + Fuzzy {0}身份的所有组件被禁止使用。 - Fuzzy {0}身份的所有组件被允许使用。 - Fuzzy 在此服务器上禁止所有组件的使用。 + Fuzzy 在此服务器上允许所有组件的使用。 + Fuzzy {0}用户的所有模块被禁止使用。 - Fuzzy {0}用户的所有模块被允许使用。 - Fuzzy ID为{1}被加入黑名单{0} + Fuzzy 命令{0}冷却时间现有{1}秒。 + Fuzzy 命令{0}没有冷却时间了,现有所有的冷却时间已被清除。 - Fuzzy 没有设置命令冷却时间。 + Fuzzy 命令成本 - Fuzzy {2}频道上已停用{0} {1}。 - Fuzzy 已在{2}频道上启用{0} {1}的使用。 - Fuzzy 被拒绝 + Fuzzy 以巴{0}添加到已过滤字词列表中。 + Fuzzy 被过滤的词列表 - Fuzzy 已从过滤字词列表中删除{0}。 + Fuzzy 第二个参数无效(必须是{0}和{1}之间的数字) + Fuzzy 在此频道上停用邀请过滤功能。 + Fuzzy 在此频道上启用邀请过滤。 + Fuzzy 在此服务器上停用邀请过滤功能。 + Fuzzy 在此服务器上启用邀请过滤功能。 + Fuzzy 已将权限{0}从#{1}移至#{2} + Fuzzy 在索引#{0}找不到权限 + Fuzzy 未设置费用。 + Fuzzy 命令 - Gen (of command) + Gen (of command) +Fuzzy 组件 - Gen. (of module) + Gen. (of module) +Fuzzy 权限页面第{0}页 + Fuzzy 当前权限身份为{0}。 + Fuzzy 用户现在需要{0}身份才能编辑权限。 + Fuzzy 在该索引中找不到权限。 + Fuzzy 已删除权限#{0} - {1} + Fuzzy 禁止{2}身份使用{0} {1}。 + Fuzzy 允许{2}身份使用{0} {1}。 + Fuzzy - Short of seconds. + Short of seconds. +Fuzzy 此服务器上的{0} {1}已被禁止使用。 + Fuzzy 此服务器上的{0} {1}已被允许使用。 + Fuzzy ID为{1}的{0}从黑名单上移除 + Fuzzy 不可编辑 + Fuzzy {2}用户的{0} {1}已被禁止使用。 + Fuzzy {2}用户的{0} {1}已允许使用。 + Fuzzy 我将不再显示权限警告。 + Fuzzy 我现在将显示权限警告。 + Fuzzy 此频道上的字过滤已停用。 + Fuzzy 此频道上的字过滤已启用。 + Fuzzy 此服务器上的字过滤已停用。 + Fuzzy 此服务器上的字过滤已启用。 + Fuzzy 能力 + Fuzzy 没有最喜爱的动漫 + Fuzzy 开始自动翻译此频道上的消息。 用户消息将被自动删除。 + Fuzzy 您的自动翻译语言已删除。 + Fuzzy 您的自动翻译语言已设置为{0}> {1} + Fuzzy 开始自动翻译此频道上的消息。 + Fuzzy 停止自动翻译此频道上的消息。 + Fuzzy 错误格式或出现错误。 + Fuzzy 找不到该卡。 + Fuzzy + Fuzzy + Fuzzy 漫画# + Fuzzy 竞争模式失败次数 - Fuzzy 竞争模式玩次数 - Fuzzy 竞争模式排名 - Fuzzy 竞争模式胜利次数 + Fuzzy 完成 + Fuzzy 条件 + Fuzzy 花费 + Fuzzy 日期 + Fuzzy 定义: + Fuzzy 放掉 + Fuzzy 剧集 + Fuzzy 发生了错误。 + Fuzzy 例子 + Fuzzy 找不到那个动画。 + Fuzzy 找不到漫画。 + Fuzzy 类型 + Fuzzy 未能找到该标记的定义。 + Fuzzy 身高/体重 + Fuzzy {0} m / {1} kg + Fuzzy 湿度 + Fuzzy 图片搜索: - Fuzzy 找不到该电影。 + Fuzzy 来源或目标语言错误。 + Fuzzy 笑话没加载。 + Fuzzy 纬度/经度 + Fuzzy 等级 + Fuzzy {0}地方标记列表 - Don't translate {0}place + Don't translate {0}place +Fuzzy 地点 + Fuzzy 未加载魔术项目。 + Fuzzy {0}的MAL个人资料 + Fuzzy 机器人的业主没有指定MashapeApiKey。 您不能使用此功能。 + Fuzzy 最小/最大 + Fuzzy 找不到频道。 + Fuzzy 没找到结果。 + Fuzzy 等候接听 - Fuzzy 原始网址 - Fuzzy 需要osu!API密钥。 + Fuzzy 无法检索osu! 线索。 + Fuzzy 找到{0}张图片。 显示随机{0}。 + Fuzzy 找不到用户! 请再次前检查区域和BattleTag。 + Fuzzy 计划看 + Fuzzy 平台 + Fuzzy 找不到能力。 + Fuzzy 找不到宠物小精灵。 + Fuzzy 个人资料链接: - Fuzzy 质量: + Fuzzy 快速游戏时间 - Fuzzy 快赢 - Fuzzy 评分 + Fuzzy 得分: + Fuzzy 搜索: - Fuzzy 无法缩短该链接。 + Fuzzy 短链接 - Fuzzy 出了些问题。 + Fuzzy 请指定搜索参数。 + Fuzzy 状态 + Fuzzy 储存链接 - Fuzzy 直播台{0}已离线。 + Fuzzy 直播台{0}在线有{1}个观众。 + Fuzzy 您在此服务器上关注{0}个直播台 + Fuzzy 您未在此服务器上关注任何直播台。 + Fuzzy 没有这个直播台。 + Fuzzy 直播台可能不存在。 + Fuzzy 已从({1})的通知中移除{0}的直播台 + Fuzzy 状态更改时,我会通知此频道。 + Fuzzy 日出 + Fuzzy 日落 + Fuzzy 温度 + Fuzzy 标题: + Fuzzy 3个最喜欢的动画: + Fuzzy 翻译: + Fuzzy 类型 + Fuzzy 未能找到该字词的定义。 + Fuzzy 链接 + Fuzzy 观众 + Fuzzy 观看 + Fuzzy 无法在指定的维基上找到该字词。 + Fuzzy 请输入目标维基,然后搜索查询。 + Fuzzy 找不到网页。 + Fuzzy 风速 - Fuzzy {0}个被禁止最多的英雄 + Fuzzy 无法yodify您的句子。 + Fuzzy 加入 + Fuzzy `{0} .` {1} [{2:F2} / s] - {3}总计 /s and total need to be localized to fit the context - -`1.` +`1.` +Fuzzy 活动页面#{0} - Fuzzy {0}个用户。 + Fuzzy 作者 + Fuzzy 机器ID + Fuzzy {0} calc命令功能列表 + Fuzzy 此频道的{0}是{1} + Fuzzy 频道主题 - Fuzzy 执行命令 - Fuzzy {0} {1}等于{2} {3} + Fuzzy 转换器可以使用的单位 + Fuzzy 无法将{0}转换为{1}:找不到单位 + Fuzzy 无法将{0}转换为{1}:单位类型不相等 + Fuzzy 创建于 - Fuzzy 加入跨服务器频道。 + Fuzzy 离开跨服务器频道。 + Fuzzy 这是您的CSC令牌 + Fuzzy 自定义Emojis - Fuzzy 错误 + Fuzzy 特征 + Fuzzy ID + Fuzzy 索引超出范围。 + Fuzzy 以下是这个身份的用户列表: + Fuzzy 您不能对其中有用户很多的身份使用此命令来防止滥用。 - Fuzzy 值{0}错误。 - Invalid months value/ Invalid hours value + Invalid months value/ Invalid hours value +Fuzzy 加入Discord + Fuzzy 加入服务器 - Fuzzy ID:{0} 会员数:{1} 业主ID:{2} - Fuzzy 在该网页上找不到服务器。 + Fuzzy 重复列表 - Fuzzy 会员 + Fuzzy 存储 + Fuzzy 讯息 + Fuzzy 消息重复功能 - Fuzzy 名字 + Fuzzy 昵称 + Fuzzy 没有人在玩那个游戏 + Fuzzy 没有活动重复功能。 + Fuzzy 此页面上没有身份。 + Fuzzy 此页面上没有分片。 + Fuzzy 没有主题设置。 + Fuzzy 业主 + Fuzzy 业主IDs + Fuzzy 状态 + Fuzzy {0}个服务器 {1}个文字频道 {2}个语音频道 + Fuzzy 删除所有引号使用{0}关键字。 + Fuzzy {0}页引号 + Fuzzy 此页面上没有引用。 + Fuzzy 没有您可以删除的引用。 + Fuzzy 引用被添加 + Fuzzy 删除了随机引用。 + Fuzzy 区域 + Fuzzy 注册日 - Fuzzy 我将在{2}`({3:d.M.yyyy。}的{4:HH:mm})提醒{0}关于{1} + Fuzzy 无效时间格式。 检查命令列表。 + Fuzzy 新的提醒模板被设定。 + Fuzzy 会每{1}天{2}小时{3}分钟重复{0}。 + Fuzzy 重复列表 - Fuzzy 此服务器上没有运行重复消息。 + Fuzzy #{0}已停止。 + Fuzzy 此服务器上没有找到被重复的消息。 + Fuzzy 结果 + Fuzzy 身份 + Fuzzy 此服务器上所有身份第{0}页: + Fuzzy {1}身份的第{0}页 + Fuzzy 颜色的格式不正确。 例如,使用‘#00ff00’。 + Fuzzy 开始轮流{0}身份的颜色。 + Fuzzy 停止{0}身份颜色轮流 + Fuzzy 此服务器的{0}是{1} + Fuzzy 伺服器資訊 - Fuzzy 分片 + Fuzzy 分片统计 - Fuzzy 分片**#{0} **处于{1}状态与{2}台服务器 + Fuzzy **名称:** {0} **链接:** {1} + Fuzzy 找不到特殊的表情符號。 + Fuzzy 正在播放 {0} 首歌,{1} 首等待播放。 + Fuzzy 文字頻道 - Fuzzy 这是你的房间链接: + Fuzzy 運行時間 + Fuzzy 此用户 {1} 的{0} 是 {2} - Id of the user kwoth#1234 is 123123123123 + Id of the user kwoth#1234 is 123123123123 +Fuzzy 用戶 + Fuzzy 語音頻道 - Fuzzy 你已經加入這場比賽了! + Fuzzy 目前投票結果 + Fuzzy 沒有投票。 + Fuzzy 投票已在這個伺服器進行。 + Fuzzy 📃 {0} 已建立一個投票 which requires your attention: - Fuzzy `{0}.` {1} 有 {2} 票。 - Fuzzy {0} 已投票。 - Kwoth voted. + Kwoth voted. +Fuzzy 私訊我相對數字的答案。 + Fuzzy 發送相對數字的答案在這裡。 + Fuzzy 感謝你的投票, {0} + Fuzzy 共收到 {0}票。 + Fuzzy \ No newline at end of file From 5648394d8ddca4e6ff5febf99765e7470a6d7fe8 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:35 +0100 Subject: [PATCH 05/19] Update ResponseStrings.nl-NL.resx (POEditor.com) --- .../Resources/ResponseStrings.nl-NL.resx | 380 +++++++++++------- 1 file changed, 227 insertions(+), 153 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.nl-NL.resx b/src/NadekoBot/Resources/ResponseStrings.nl-NL.resx index 1363046f..ef811d3e 100644 --- a/src/NadekoBot/Resources/ResponseStrings.nl-NL.resx +++ b/src/NadekoBot/Resources/ResponseStrings.nl-NL.resx @@ -140,6 +140,7 @@ De aanvraag van @{0} voor een oorlog tegen {1} is niet meer geldig. + Fuzzy Vijand @@ -152,9 +153,11 @@ Ongeldige oorlogs formaat. + Fuzzy Lijst van voorlopende oorlogen. + Fuzzy Niet veroverd. @@ -167,6 +170,7 @@ Geen voorlopende oorlogen. + Fuzzy Grootte. @@ -206,6 +210,7 @@ Geen speciale reacties gevonden. + Fuzzy Geen speciale reacties gevonden met die ID. @@ -467,10 +472,12 @@ Reden: {1} Gebruiker weggeschopt + Fuzzy Lijst van talen {0} + Fuzzy Jouw server's locale is nu {0} - {1} @@ -528,9 +535,11 @@ Reden: {1} Bericht in #{0} verwijdert + Fuzzy Bericht in #{0} bijgewerkt + Fuzzy Gebruikers zijn gedempt @@ -551,15 +560,19 @@ Reden: {1} nieuw bericht + Fuzzy nieuwe bijnaam + Fuzzy Nieuw onderwerp + Fuzzy Bijnaam veranderd + Fuzzy Kan de server niet vinden @@ -569,12 +582,15 @@ Reden: {1} Oud bericht + Fuzzy Oude bijnaam + Fuzzy Oude onderwerp + Fuzzy Fout. Hoogst waarschijnlijk heb ik geen voldoende rechten. @@ -584,6 +600,7 @@ Reden: {1} Actieve Beschermingen. + Fuzzy {0} is nu ** uitgeschakeld** op deze server. @@ -596,6 +613,7 @@ Reden: {1} Geen bescherming aangezet. + Fuzzy Gebruiker's drempel moet tussen {0} en {1} zijn. @@ -771,12 +789,14 @@ __IgnoredChannels__: {2} Gebruikersnaam veranderd + Fuzzy Gebruikers Gebruiker verbannen + Fuzzy {0} is **gedempt** van chatten. @@ -792,15 +812,18 @@ __IgnoredChannels__: {2} Gebruiker verlaten + Fuzzy {0} is **gedempt** van het tekst en stem kanaal. Rol van gebruiker toegevoegd + Fuzzy Rol van gebruiker verwijderd + Fuzzy {0} is nu {1} @@ -825,9 +848,11 @@ __IgnoredChannels__: {2} Spraakkanaal gemaakt + Fuzzy Spraakkanaal vernietigd + Fuzzy Spraak + tekst mogelijkheid uitgezet. @@ -868,9 +893,11 @@ Reden: {1} Aanwezigheid Updates + Fuzzy Gebruiker zacht-verbannen + Fuzzy heeft {0} aan {1} gegeven @@ -980,6 +1007,7 @@ Duurt {1} seconden. Vertel het aan niemand. Shhh. Alleen Voor Bot Eigenaren + Fuzzy Heeft {0} kanaal rechten nodig. @@ -989,9 +1017,11 @@ Duurt {1} seconden. Vertel het aan niemand. Shhh. Command en aliassen. + Fuzzy Commandolijst Geregenereerd. + Fuzzy Typ `{0}h CommandoNaam` om de hulp te zien voor die specifieke commando. b.v `{0}h >8bal` @@ -1013,12 +1043,15 @@ Vergeet niet je discord naam en id in het bericht te zetten. **Lijst met commando's**: <{0}> **Hosting gidsen en documenten kunnen hier gevonden worden**: <{1}> + Fuzzy Lijst Met Commando's + Fuzzy Lijst Met Modules + Fuzzy Typ `{0}cmds ModuleNaam` om een lijst van commando's te krijgen voor die module. bv `{0}cmds games` @@ -1031,6 +1064,7 @@ Vergeet niet je discord naam en id in het bericht te zetten. Inhoudsopgave + Fuzzy Gebruik @@ -1094,10 +1128,10 @@ Vergeet niet je discord naam en id in het bericht te zetten. Het tweede nummer moet groter zijn dan het eerste nummer. - Verandering Van Het Hart + Verandering van het hart - Overwonnen door + Opgeëist door Scheidingen @@ -1174,8 +1208,7 @@ Dit is moreel twijfelachtig🤔 Acrophobie - Spel geëindigd zonder submissies. - Fuzzy + Spel afgelopen zonder inzendingen. Geen stemmen ingestuurdt. Spel geëindigd zonder winnaar. @@ -1257,7 +1290,7 @@ Dit is moreel twijfelachtig🤔 Hangman - + Er is al een spel galgje aan de gang in dit kanaal. @@ -1266,36 +1299,36 @@ Dit is moreel twijfelachtig🤔 - + Scoreboard - + Je hebt niet genoeg {0} - + Geen resultaten - + {0} geplukt Kwoth picked 5* - + {0} heeft {1} geplant Kwoth planted 5* - + Trivia spel - + {0} heeft 'm geraden! Het antwoord was: {1} - + {0} heeft {1} punten @@ -1307,19 +1340,19 @@ Dit is moreel twijfelachtig🤔 - + Je kan niet tegen jezelf spelen. - + Gelijkspel! - + heeft een Boter, Kaas en eieren sessie aangemaakt. - + {0} heeft gewonnen! @@ -1328,25 +1361,25 @@ Dit is moreel twijfelachtig🤔 - + Tijd voorbij! - + {0}'s beurt - + Aan het proberen om {0} liedjes in de wachtrij te zetten... - + Autoplay uitgezet. - + Autoplay aangezet. - + Standaard volume op {0}% gezet @@ -1355,7 +1388,7 @@ Dit is moreel twijfelachtig🤔 - + Liedje afgelopen @@ -1364,43 +1397,44 @@ Dit is moreel twijfelachtig🤔 - + van positie - + ongeldige invoer. - + Maximale speeltijd heeft geen limiet meer. - + Maximale speeltijd op {0} seconden gezet. - + Maximale muziek wachtrij heeft geen limiet meer. - + Maximale muziek wachtrij is nu {0} liedjes. - + Je moet in het spraakkanaal van de server zijn. - + Naam - + Nu aan het spelen + Fuzzy - + Geen actieve muziek speler. - + Geen zoekresultaten. - + Muziek gepauzeerd. @@ -1412,10 +1446,11 @@ Dit is moreel twijfelachtig🤔 - + Pagina {0} van opgeslagen afspeellijsten + - + Afspeellijst verwijderd @@ -1427,32 +1462,32 @@ Dit is moreel twijfelachtig🤔 - + Afspeellijst opgeslagen - + {0}s limiet - + Wachtrij - + Muziek wachtrij leeggemaakt. - + Wachtrij is vol op {0}/{0}. - + Liedje verwijderd context: "removed song #5" - + Huidig liedje word herhaald - + Huidige afspeellijst word herhaald @@ -1476,25 +1511,25 @@ Dit is moreel twijfelachtig🤔 - + Liedjes geschud - + Liedje verzet - + {0}u {1}m {2}s - + Naar positie - + ongelimiteerd - + Volume moet tussen 0 en 100 zijn - + Volume op {0}% gezet @@ -1503,7 +1538,7 @@ Dit is moreel twijfelachtig🤔 - + Toegestaan @@ -1527,13 +1562,13 @@ Dit is moreel twijfelachtig🤔 - + Commando {0} heeft nu een {1}s afkoel tijd. - + Commando {0} heeft geen afkoel tijd meer, en alle bestaande afkoeltijden zijn weggehaald. - + Geen commando afkoeltijden ingesteld. @@ -1545,13 +1580,13 @@ Dit is moreel twijfelachtig🤔 - + Geweigerd - + Lijst van gefilterde worden @@ -1581,15 +1616,15 @@ Dit is moreel twijfelachtig🤔 - + Commando Gen (of command) - + Module Gen. (of module) - + Rechten pagina {0} @@ -1656,7 +1691,7 @@ Dit is moreel twijfelachtig🤔 - + Gestart met het automatisch vertalen van berichten op dit kanaal. Gebruiker berichten worden automatisch verwijderd. @@ -1665,10 +1700,10 @@ Dit is moreel twijfelachtig🤔 - + Gestart met het automatisch vertalen van berichten op dit kanaal. - + Gestopt met het automatisch vertalen van berichten op dit kanaal. @@ -1677,10 +1712,10 @@ Dit is moreel twijfelachtig🤔 - + feit - + hoofdstukken @@ -1698,64 +1733,66 @@ Dit is moreel twijfelachtig🤔 - + Voltooid - + Conditie - + Kost - + Datum - + Definiëren: - + Laten vallen - + Afleveringen - + Fout opgedaagd. - + Voorbeeld - + Mislukt in het vinden van die chinese tekenfilm + Fuzzy - + Mislukt in het vinden van die + Fuzzy - + Genres - + Lengte/Gewicht - + Vochtigheid - + Afbeelding zoekopdracht voor: - + Mislukt in het vinden van die film. - + Grapjes niet geladen. @@ -1768,13 +1805,13 @@ Dit is moreel twijfelachtig🤔 Don't translate {0}place - + Lokatie - + {0}'s MAL profiel @@ -1783,19 +1820,19 @@ Dit is moreel twijfelachtig🤔 - + Geen kanaal gevonden. - + Geen resultaten gevonden. - + Originele URL - + Een osu! API sleutel is vereist. @@ -1822,7 +1859,7 @@ Dit is moreel twijfelachtig🤔 - + Kwaliteit: @@ -1858,16 +1895,16 @@ Dit is moreel twijfelachtig🤔 - + Streamer {0} is offline. - + Streamer {0} is online met {1} kijkers. - + Je volgt {0} streams op deze server. - + Je volgt geen streams op deze server. @@ -1882,25 +1919,25 @@ Dit is moreel twijfelachtig🤔 - + Zon's opgang - + Zon's ondergang - + Temperatuur - + Titel: - + Vertaling: - + Types @@ -1909,7 +1946,7 @@ Dit is moreel twijfelachtig🤔 - + Kijkers @@ -1921,13 +1958,13 @@ Dit is moreel twijfelachtig🤔 - + Pagina niet gevonden - + Wind snelheid - + De {0} meest verbannen kampioenen. @@ -1941,16 +1978,16 @@ Dit is moreel twijfelachtig🤔 `1.` - + Activiteit pagina #{0} - + {0} gebruikers totaal. - + Auteur - + Bot ID @@ -1959,25 +1996,25 @@ Dit is moreel twijfelachtig🤔 - + Kanaal onderwerp - + Commando's uitgevoerd - + {0} {1} is gelijk aan {2} {3} - + Eenheden die gebruikt kunnen worden door de omvormer - + Kan {0} niet naar {1} omvormen: Eenheden niet gevonden - + Kan {0} niet naar {1} omvormen: Type eenheden zijn niet gelijk - + Gemaakt op @@ -1986,31 +2023,31 @@ Dit is moreel twijfelachtig🤔 - + Dit is je CSC token - + Speciale emojis - + Fout - + Kenmerken - + ID - + Index buiten bereik. - + Hier is de lijst met gebruikers in die rollen: - + Om misbruik te voorkomen ben je niet gemachtigd om dit commando te gebruiken op rollen met veel gebruikers. - + Ongeldige {0} waarde. Invalid months value/ Invalid hours value @@ -2020,67 +2057,71 @@ Dit is moreel twijfelachtig🤔 - + ID: {0} +Leden: {1} +Eigenaar ID: {2} - + Geen servers gevonden op die pagina. - + Lijst van de repeater - + Leden - + Geheugen - + Berichten - + Bericht repeater - + Naam - + Roepnaam - + Niemand speelt dat spel. - + Geen rollen op deze pagina. - + Geen shards op deze pagina. - + Geen onderwerp ingesteld. - + Eigenaar - + Eigenaar IDs - + Aanwezigheid - + {0} Servers +{1} Tekst Kanalen +{2} Spraak Kanalen - + Verwijder alle citaten met het trefwoord {0} - + Pagina {0} met citaten - + Geen citaten op deze pagina. Geen verwijderbare citaten gevonden @@ -2092,13 +2133,13 @@ Dit is moreel twijfelachtig🤔 Een willekeurig citaat verwijderd - + Regio - + Geregistreerd op - + Ik zal {0} herinneren om {1} in {2} `({3:d.M.yyyy.} op {4:HH:mm})` @@ -2107,13 +2148,13 @@ Dit is moreel twijfelachtig🤔 - + Herhalen van {0} elke {1} dagen, {2} uren en {3} minuten. - + Lijst van repeaters - + Geen repeaters actief op deze server. @@ -2137,8 +2178,7 @@ Dit is moreel twijfelachtig🤔 - Gestart met het routeren van kleuren voor de rol {0} - Fuzzy + Begonnen met het routeren van kleuren voor de rol {0} Gestopt met het routeren van kleuren voor de rol {0} @@ -2186,5 +2226,39 @@ Dit is moreel twijfelachtig🤔 Spraak Kanalen + + Je maakt al deel uit van deze race! + + + + + + + + + + + + + + + + + + {0} gestemd. + Kwoth voted. + + + + + + + + + + + + + \ No newline at end of file From 77bd6b46344a8f5a8879655271341974a734007a Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:38 +0100 Subject: [PATCH 06/19] Update ResponseStrings.fr-fr.resx (POEditor.com) --- src/NadekoBot/Resources/ResponseStrings.fr-fr.resx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.fr-fr.resx b/src/NadekoBot/Resources/ResponseStrings.fr-fr.resx index bed50a57..4a8a4a27 100644 --- a/src/NadekoBot/Resources/ResponseStrings.fr-fr.resx +++ b/src/NadekoBot/Resources/ResponseStrings.fr-fr.resx @@ -1531,7 +1531,7 @@ La nouvelle valeur de {0} est {1} ! Lecture en boucle activée. - Je vais désormais afficher les pistess en cours, en pause, terminées et supprimées sur ce salon. + Je vais désormais afficher les pistes en cours, en pause, terminées et supprimées dans ce salon. Saut à `{0}:{1}` From 74b366b83409e7e60cbe352d97c40d8b9a4c567a Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:41 +0100 Subject: [PATCH 07/19] Update ResponseStrings.de-DE.resx (POEditor.com) --- src/NadekoBot/Resources/ResponseStrings.de-DE.resx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.de-DE.resx b/src/NadekoBot/Resources/ResponseStrings.de-DE.resx index 879094e3..cd13fb9b 100644 --- a/src/NadekoBot/Resources/ResponseStrings.de-DE.resx +++ b/src/NadekoBot/Resources/ResponseStrings.de-DE.resx @@ -1052,7 +1052,7 @@ Vergessen Sie bitte nicht, Ihren Discord-Namen oder Ihre ID in der Nachricht zu Fuzzy - Lister der Befehle + Liste der Befehle Fuzzy @@ -1281,11 +1281,11 @@ Vergessen Sie bitte nicht, Ihren Discord-Namen oder Ihre ID in der Nachricht zu Währungsgeneration in diesem Kanal aktiviert. - {0} zufällige {1} sind erschienen! Sammle sie indem Sie `{2}pick` schreiben + {0} zufällige {1} sind erschienen! Sammlen Sie sie indem Sie `{2}pick` schreiben plural - Eine zufällige {0} ist erschienen! Sammle sie indem Sie `{1}pick` schreiben + Eine zufällige {0} ist erschienen! Sammlen Sie sie indem Sie `{1}pick` schreiben Laden einer Frage fehlgeschlagen. From 2a3653080c02ecceddcbe1bd82291a0c4b61a7f1 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:44 +0100 Subject: [PATCH 08/19] Update ResponseStrings.ja-JP.resx (POEditor.com) --- .../Resources/ResponseStrings.ja-JP.resx | 301 ++++++++++++------ 1 file changed, 197 insertions(+), 104 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.ja-JP.resx b/src/NadekoBot/Resources/ResponseStrings.ja-JP.resx index fdfc3df1..62cacf4a 100644 --- a/src/NadekoBot/Resources/ResponseStrings.ja-JP.resx +++ b/src/NadekoBot/Resources/ResponseStrings.ja-JP.resx @@ -749,58 +749,79 @@ Fuzzy - + 無効な色または権限が不十分なためにエラーが発生しました。 + + TYPO, "Occured" should be 'Occurred' - + ユーザー{1}からロール{0}を削除しました + - + 役割を削除できませんでした。私には十分な権限がありません。 + 役割名を変更しました - + 役割の名前を変更できませんでした。私には十分な権限がありません。 + - + 最高のロールよりも上位のロールは編集できません。 + - + 再生メッセージを削除しました:{0} + - + ロール{0}がリストに追加されました。 + + TYPO. "as" should be 'has' - + {0}は見つかりませんでした。 + - + ロール{0}はすでにリストにあります。 + - + 追加されました。 + - + 回転再生状態が無効になっています。 + - + 回転再生状態が有効になっています。 + - + +回転状態の一覧は次のとおりです: +{0} + - + 回転再生状態は設定されません。 + - + あなたはすでに{0}ロールがあります。 + - + {0}はすでに自己割り当てロールを持っています。 + - + 自己割り当ての役割は今排他的です! + 自分に割り当てられるロールが{0}個あります。 @@ -809,55 +830,72 @@ Fuzzy そのロールは自分に割り当てられません。 - + あなたは{0}ロールを持っていません。 + - + 自己割り当ての役割は現在無制限です + - + 私はあなたにその役割を追加することができません。 `私は役割階層に私の役割よりも高い所有者または他の役割に役割を追加することはできません。 + - + 自己割り当て可能なロールのリストから{0}が削除されました。 + - + あなたはもはや{0}ロールを持っていません。 + - + あなたは今{0}の役割を持っています。 + - + ユーザー{1}にロール{0}を追加しました + + Typo- "Sucessfully" should be 'Successfully' ロールの追加に失敗しました。アクセス権が足りません。 - + 新しいアバターセット! + - + 新しいチャンネル名が設定されました。 + - + 新しいゲームセット! + - + 新しいストリームセット! + - + 新しいチャンネルのトピックセット。 + - + シャード{0}が再接続されました。 + - + シャード{0}再接続中です。 + - + シャットダウン + - + ユーザーは{1}秒ごとに{0}以上のメッセージを送信することはできません。 + @@ -870,19 +908,21 @@ Fuzzy PLURAL - + {0}はこのチャンネルを無視します。 - + {0}はこのチャンネルを無視しなくなりました。 - + ユーザーが同じメッセージを{0}行に投稿した場合は、{1}それらを送信します。 + - + テキストチャンネルが作成されました。 - + テキストチャネルが破棄されました。 + @@ -892,32 +932,38 @@ Fuzzy singular - + ユーザー名 + - + ユーザー名が変更されました + ユーザーズ - Fuzzy - + 追放されたユーザー + - + {0}はチャットから**ミュートされています**。 + - + {0}は、チャットから**ミュートされていません**。 + - + ユーザーが参加しました + 利用者が去った - + {0}はテキストチャットとボイスチャットから**ミュート**されています。 + 利用者にロールを追加した @@ -929,187 +975,234 @@ Fuzzy {0}さんは今{1}になった - + {0}はテキストとボイスチャットから**ミュートされていません**。 - + {0}は{1}音声チャンネルに参加しました - + {0}は音声チャネルを残しました{1} - + {0}は{1}から{2}音声チャネルに移動しました。 + - + {0}は**音声ミュートされました**。 + - + {0}は**音声ミュートされていません**。 - + 音声チャネルが作成されました + - + 音声チャネルが破壊されました + - + 音声+テキスト機能が無効になっています。 + - + 音声+テキスト機能を有効にしました。 + - + **私は役割を管理していません**そして/または**チャンネルを管理しています**許可。だから{0}サーバーで音声+テキストを実行できません。 + - + あなたはこの機能を有効/無効にしています。**私は管理者権限を持っていません**。これによりいくつかの問題が発生する可能性があります。その後、自分でテキストチャネルをクリーンアップする必要があります。 + - + この機能を有効にするには、少なくとも**役割を管理する**と**チャネルを管理する**権限が必要です。 (管理権限が必要です) + + TYPO > "atleast" isn't a word. It's 'At least' - + テキストチャットのユーザー{0} + - + テキストとボイスチャットのユーザー{0} + - + ボイスチャットからのユーザー{0} + - + あなたは{0}サーバーからソフト禁止されました。 +理由:{1} - + Since I'm using "exiled" for banned. need to rethink a new word.. so just leave this one alone + + Fuzzy - + 移行が完了しました! + - + 移行中にエラーが発生しました。詳細については、ボットのコンソールを確認してください。 + - + 存在の更新 - + And this is where using exiled screws me over.. again lol + + Fuzzy - + {0}から{1}に授与されました + - + 次回より良い運がいいよ^ _ ^ + - + おめでとう!あなたは{1}以上で転がって{0}勝った - + デッキが再編されました。 + - + 反転した{0}。 User flipped tails. - + ご想像の通り!あなたは{0}を獲得しました + - + 無効な番号が指定されました。 1を{0}コインにすることができます。 + - + このメッセージに{0}反応を加えて{1}を得る␣ + - + このイベントは最大{0}時間有効です。 + - + 花の反応が始まった! + - + は{0}から{1}に才能を与えました + X has gifted 15 flowers to Y - + {0}には{1}があります + X has Y flowers - + 頭 + - + リーダーボード + - + {2}から{0}人の{1}人のユーザーを獲得しました。 + - + {0}以上の賭けはできません + - + あなたは{0}未満に賭けることはできません + - + あなたに十分な{0}がありません。 + - + デッキにはもうカードがありません。 + - + 抽選でユーザーを入力しました。 + - + あなたは{0}をロールした。 + - + 賭ける - + 素晴らしい!おめでとう! x {0} - + 単一の{0}、x {1} - + うわー!幸運な! 3種類の! x {0} + - + よくやった! 2つの{0} - ベットx {1} + - + ウォン - + ユーザーは{0}を取得するために秘密のコードを入力する必要があります。 +{1}秒続く。誰にも言わないでください。 :ウィンク: - + 卑劣なゲームイベントが終了しました。 {0}ユーザーは報酬を受け取った。 - + 卑劣なゲームステータスイベントが開始されました - + テイル - + {1}から{0}を正常に受け取りました + - + ユーザーが{2}をあまり持っていないので{1}から{0}を取ることができませんでした! + - + ボットの所有者のみ + - + {0}チャンネル許可が必要です。 + - + コマンドとエイリアス + From a1830fbc780ca0d9dcb1c7ec921ff2d6dec85958 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:46 +0100 Subject: [PATCH 09/19] Update ResponseStrings.pl-PL.resx (POEditor.com) --- .../Resources/ResponseStrings.pl-PL.resx | 142 +++++++++--------- 1 file changed, 72 insertions(+), 70 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.pl-PL.resx b/src/NadekoBot/Resources/ResponseStrings.pl-PL.resx index eb8b202b..381b43c2 100644 --- a/src/NadekoBot/Resources/ResponseStrings.pl-PL.resx +++ b/src/NadekoBot/Resources/ResponseStrings.pl-PL.resx @@ -856,7 +856,7 @@ Powód: {1} Włączasz/Wyłączasz tą funkcję i **Nie mam uprawnień ADMINISTRATORA**. Może to spowodować problemy i będziesz musiał czyścić kanały tekstowe sam. - + By włączyć tą funkcję, muszę posiadać uprawnienia: **zarządzanie rolami** i **zarządzanie kanałami**. (Preferowane uprawnienia administratora) Użytkownik {0} z tekstowego czatu @@ -901,7 +901,7 @@ Powód: {1} Talia została przetasowana. - + wyrzucono {0}. User flipped tails. @@ -950,7 +950,7 @@ Powód: {1} W talii nie ma więcej kart. - + Wylosowano użytkownika Wyrzucono {0} @@ -1117,7 +1117,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Fuzzy - + Zdobyta przez Rozwody @@ -1138,11 +1138,13 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś - + lubi teraz {0} zamiast {1}. + +*Czy to aby na pewno moralne?* Make sure to get the formatting right, and leave the thinking emoji - + Musisz poczekać {0} godzin i {1} minut aby zmienić swój obiekt westchnień. @@ -1221,19 +1223,19 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Zwycięzcą jest {0} z {1} punktami. - + Użytkownik {0} wygrywa, ponieważ jako jedyny coś zgłosił! Pytanie - + Remis! Dwie osoby wybrały {0} {0} wygrał! {1} pokonuje {2} - + Zgłoszenia zakończone Wyścig zwierzaków właśnie się odbywa. @@ -1261,7 +1263,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś plural - + {0} się pojawiły! Zdobądź je, pisząc `{1}pick` Nie udało się załadować pytania. @@ -1401,7 +1403,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Maksymalna długość kolejki ustawiona na {5} utworów. - + Musisz być na kanale głosowym na tym serwerze. Imię @@ -1422,7 +1424,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś - + Gra utwór @@ -1458,7 +1460,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Kolejka wyczyszczona. - + Zapełnienie kolejki: {0}/{0} Usunięto utwór @@ -1504,7 +1506,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś - + bez limitu Głośność musi być pomiędzy 0 a 100. @@ -1513,67 +1515,67 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Głośność ustawiona na {0}% - + Wyłączono użycie WSZYSTKICH MODÓŁÓW na kanale {0}. - + Włączono użycie WSZYSTKICH MODÓŁÓW na kanale {0}. - + Wyłączono użycie WSZYSTKICH MODÓŁÓW dla roli {0}. - + Włączono użycie WSZYSTKICH MODÓŁÓW dla roli {0}. - + Wyłączono użycie WSZYSTKICH MODÓŁÓW na tym serwerze. - + Włączono użycie WSZYSTKICH MODÓŁÓW na tym serwerze. - + Wyłączono użycie WSZYSTKICH MODÓŁÓW dla użytkownika {0}. - + Włączono użycie WSZYSTKICH MODÓŁÓW dla użytkownika {0}. - + Na czarną listę wpisano użytkownika {0} z ID {1} Komenda {0} ma teraz {1}-sekundowy cooldown. - + Komenda {0} nie ma teraz cooldown'a. Wszystkie aktywne cooldown'y zostały zresetowane. - + Żadna komenda nie ma cooldown'a. - + Komenda kosztuje - + Wyłączono użycie {0} {1} na kanale {2}. - + Włączono użycie {0} {1} na kanale {2}. - + Odmówiono - + Dodano słowo {0} do listy odfiltrowanych słów. - + Lista odfiltrowanych słów - + Usunięto słowo {0} z listy odfiltrowanych słów. - + Błędny drugi parametr. (Musi być to liczba od {0} do {1}) @@ -1588,10 +1590,10 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś - + Przeniesiono uprawnienia {0} z #{1} to #{2} - + Nie znaleziono uprawnień w indeksie #{0} @@ -1605,80 +1607,80 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Gen. (of module) - + Strona uprawnień {0} - + Użytkownicy wymagają roli {0}, by móc edytować uprawnienia. - + Żadne uprawnienia nie zostały znalezione w tym indeksie. - + przeniesiono uprawnienia #{0} - {1} - + Wyłączono użycie {0} {1} dla roli {2}. - + Włączono użycie {0} {1} dla roli {2}. sek. Short of seconds. - + Wyłączono użycie {0} {1} na tym serwerze. - + Włączono użycie {0} {1} na tym serwerze. - + Z czarnej listy usunięto użytkownika {0} z ID {1} - + nie do edytowania - + Wyłączono użycie {0} {1} dla użytkownika {2}. - + Włączono użycie {0} {1} dla użytkownika {2}. - + Nie będę więcej pokazywać ostrzeżeń dotyczących uprawnień. - + Będę pokazywać ostrzeżenia dotyczące uprawnień. - + Filtrowanie słów wyłączone na tym kanale. - + Filtrowanie słów włączone na tym kanale. - + Filtrowanie słów wyłączone na tym serwerze. - + Filtrowanie słów włączone na tym serwerze. Zdolności - + Brak ulubionego zwierzęcia Zaczęto automatyczne tłumaczenie wiadomości na tym kanale. Wiadomości użytkowników będą automatycznie usuwane. - + twój auto-tłumaczący język został usunięty. - + twój auto-tłumaczący język został ustawiony {0}>{1} Zaczęto automatyczne tłumaczenie wiadomości na tym kanale. @@ -1687,7 +1689,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Zakończono automatyczne tłumaczenie wiadomości na tym kanale. - + Złe dane wejściowe albo coś poszło nie tak. Nieznaleziono tej karty. @@ -1702,25 +1704,25 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś - + Przegrane rywalizacje - + Grane rywalizacje - + Ranking rywalizacji - + Wygrane rywalizacje Zakończony - + Warunek - + Koszt Data @@ -1750,7 +1752,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Gatunki - + Nie udało się znaleźć definicji dla tego tagu. Wysokość/szerokość @@ -1762,7 +1764,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Wilgotność - + Szukanie obrazka dla: Wyszukiwanie tego filmu nie powiodło się. @@ -1784,7 +1786,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś Don't translate {0}place - + Lokalizacja Magiczne przedmioty nie zostały załadowane. @@ -1793,10 +1795,10 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś MAL użytkownika {0} - + Właściciel bota nie sprecyzował MashapeApiKey. Nie możesz użyć tej funkcji. - + Min/Max Nie znaleziono kanału. @@ -1808,7 +1810,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś - + Oryginalny URL @@ -1817,7 +1819,7 @@ Nie zapomnij zostawić swojej discordowej nazwy użytkownika albo ID w wiadomoś - + Znaleziono {0} obrazków. Pokazuję przypadkowe {0} From 1be2512ca19d052d20a89cf751b7e0555a5f2c22 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:49 +0100 Subject: [PATCH 10/19] Update ResponseStrings.pt-BR.resx (POEditor.com) From d1060932b05ef8e880673f250884f68607765981 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:51 +0100 Subject: [PATCH 11/19] Update ResponseStrings.ru-RU.resx (POEditor.com) --- .../Resources/ResponseStrings.ru-RU.resx | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.ru-RU.resx b/src/NadekoBot/Resources/ResponseStrings.ru-RU.resx index 20b53a3d..9efa419f 100644 --- a/src/NadekoBot/Resources/ResponseStrings.ru-RU.resx +++ b/src/NadekoBot/Resources/ResponseStrings.ru-RU.resx @@ -2286,38 +2286,40 @@ IDВладельца: {2} Fuzzy - + Вы уже участвуете в этой гонке! - + Результаты опроса - + Не получено ни одного ответа. - + На данном сервере уже идёт опрос. - + {0} создал опрос, требующий Вашего внимания: + Fuzzy - + '{0}.' У {1} {2} голосов. + Fuzzy - + {0} проголосовал. Kwoth voted. - + Отправьте сообщение в этом текстовом канале с номером, соответствующему Вашему ответу. - + Отправьте сообщение в этом текстовом канале с номером, соответствующему Вашему ответу. - + Спасибо за Ваш ответ, {0}. - + Всего получено {0} ответов. \ No newline at end of file From cd997639493f49b7a51a5bd7bb45fb3b86a19c6e Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:54 +0100 Subject: [PATCH 12/19] Update ResponseStrings.sr-cyrl-rs.resx (POEditor.com) --- .../Resources/ResponseStrings.sr-cyrl-rs.resx | 296 +++++++++--------- 1 file changed, 148 insertions(+), 148 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.sr-cyrl-rs.resx b/src/NadekoBot/Resources/ResponseStrings.sr-cyrl-rs.resx index 5e1f33f3..69809693 100644 --- a/src/NadekoBot/Resources/ResponseStrings.sr-cyrl-rs.resx +++ b/src/NadekoBot/Resources/ResponseStrings.sr-cyrl-rs.resx @@ -1169,10 +1169,10 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Твој афинитет је ресетован, Више немаш особу која ти се свиђа. - + хоће да буде waifu од {0} @@ -1181,16 +1181,16 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + не можеш ставити афинитет на себе, егоманијаче. - + Ни једна waifu није тако јефтина. Мораш да платиш бар {0} да би имао waifu, чак иако је њена вредност мања. - + Мораш да платиш {0} или више да би присвојио ту waifu. Та waifu није твоја. @@ -1205,7 +1205,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Нико - + Развео си waifu којој се не свиђаш. Добио си {0} назад. 8кугла @@ -1220,16 +1220,16 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Нема гласова. Игра је се завршила без победника. - + Акроним је био {0}. Игра акрофобије већ постоји у овом каналу. - + Игра је почела. Направи реченицу са овим акронимом: {0} - + Имате {0} секунди за унос. @@ -1238,22 +1238,22 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Гласај тако што укуцаш број уноса. - + {0} је гласао! - + Победник је {0} са {1} поена. - + {0} је победник зато што је једини корисник са уносом. Питање - + Нерешено! Обоје сте изабрали {0} - + {0} је победио! {1} је јаче од {2} Уноси затворени @@ -1315,11 +1315,11 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Нема резултата. - + је убрао {0} Kwoth picked 5* - + {0} је засадио {1} Kwoth planted 5* @@ -1329,22 +1329,22 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Игра тривије - + {0} је погодио! Одговор је био: {1} Нема тривије у току на овом серверу. - + {0} има {1} поена Игра се зауставља после овог питања. - + Време је истекло! Тачан одговор је {0} - + {0} је погодио и ПОБЕДИО игру! Одговор је био: {1} Не можеш играти против себе. @@ -1359,7 +1359,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. је направио игру икс-окса. - + {0} је победио! Три спојене @@ -1371,13 +1371,13 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Време је истекло! - + {0}-ов потез. - + {0} против {1} - + Покушавам да учитам {0} песама... Аутопуштање је угашено. @@ -1479,35 +1479,35 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Песма је учитана - + Музички ред је очишћен. - + Песма је обрисана context: "removed song #5" - + Понављам тренутну песму - + Понављам плејлисту - + Понављам нумеру - + Понављање нумбере стопирано. - + Музика је пуштена. - + Понављање плејлисте је угашено. - + Понављање плејлисте је упаљено. @@ -1516,19 +1516,19 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Песме су измешане - + Песме су померене - + На позицију - + неограничено @@ -1543,7 +1543,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Дозвољено @@ -1573,10 +1573,10 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Нема кулдауна за команде. - + Цене команди @@ -1585,13 +1585,13 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Забрањено - + Листа филтрираних речи @@ -1600,16 +1600,16 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Филтрирање позивница је угашено на овом каналу. - + Филтрирање позивница је упаљено на овом каналу. - + Филтрирање позивница је угашено на овом серверу. - + Филтрирање позивница је упаљено на овом серверу. @@ -1618,14 +1618,14 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Нема постављених цена. - + команде Gen (of command) - + модула Gen. (of module) @@ -1650,7 +1650,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + сек. Short of seconds. @@ -1663,7 +1663,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + неизмењиво @@ -1672,58 +1672,58 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Више нећу приказивати упозорења за дозволе. - + Од сада ћу приказивати упозорења за дозволе. - + Филтрирање речи је угашено на овом каналу. - + Филтрирање речи је упаљено на овом каналу. - + Филтрирање речи је угашено на овом серверу. - + Филтрирање речи је упаљено на овом серверу. - + Моћи - + Нема омиљених анимеа. - + твој језик ауто-превођења је обрисан. - + Започето аутоматско превођење порука на овом каналу - + Стопирано аутоматско превођење порука на овом каналу - + Није добар формат уноса, или нешто друго. - + Не могу да нађем ту карту. - + чињеница - + Поглавља - + Стрип # @@ -1735,83 +1735,83 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Такмичних победа - + Завршено - + Услови - + Цена - + Датум - + Дефиниши: - + Испуштене - + Епизода - + Дошло је до грешке. - + Пример - + Није нађен тај аниму. - + Није нађен тај манго. - + Жанрови - + Није успешно проналажење дефиниције за тај таг. - + Висина/Ширина - + {0}м/{1}кг - + Влажност Ваздуха - + Претрага слика за: - + Филм није нађен. - + Неисправан почетни или крајњи језик. - + Вицеви нису учитани - + Лат/Лонг - + Ниво Don't translate {0}place - + Место - + Магични предмети нису учитани. @@ -1820,19 +1820,19 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Мин/Макс - + Канал није пронађен. - + Нема резултата. - + Паузирано - + Оригинални линк @@ -1847,55 +1847,55 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Планира да гледа - + Платформа - + Није пронађена моћ. - + Није пронађен покемон. - + Линк ка профилу: - + Квалитет: - + Време игре у квик моду - + Победа у квик моду - + Рејтинг - + Скор: - + Тражи за: - + Није успешно скраћивање тог линка. - + Кратак линк - + Дошло је до грешке. - + Унеси параметре за претрагу. - + Статус - + Линк Продавнице @@ -1907,73 +1907,73 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Не пратиш ниједан стрим ан овом серверу. - + Нема тог стрима. - + Стрим вероватно не постоји. - + Обавестићу овај канал када се статус промени. - + Излазак сунца - + Залазак сунца - + Температура - + Наслов: - + 3 омиљене аниме: - + Превод: - + Типови - + Неуспешно проналажење дефиниције за тај термин - + Линк - + Гледаоци - + Гледа - + Није успешно проналажење термина на тој викији. - + Унеси име викије, а затим термин за претрагу. - + Страница није нађена. - + Брзина ветра - + Јодификовање реченице није успешно. - + Ушао @@ -1987,10 +1987,10 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Аутор - + Бот ИД @@ -1999,10 +1999,10 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Тема канала - + Извршених команди @@ -2017,7 +2017,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. - + Направљен @@ -2242,32 +2242,32 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Fuzzy - + Већ си у овој трци! - + Тренутни резултати анкете - + Нема гласова. - + Анкета већ постоји на овом серверу. - + 📃 {0} је направио анкету која захтева вашу пажњу. - + {0} је гласао Kwoth voted. - + Пошаљите ми број одговора у приватној поруци. - + Пошаљите број одговора у овом каналу. From 2ef57465cfdf0ab92fd828ff606106da06bdf082 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:57 +0100 Subject: [PATCH 13/19] Update ResponseStrings.sv-SE.resx (POEditor.com) --- .../Resources/ResponseStrings.sv-SE.resx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.sv-SE.resx b/src/NadekoBot/Resources/ResponseStrings.sv-SE.resx index 305c8788..2eb472e8 100644 --- a/src/NadekoBot/Resources/ResponseStrings.sv-SE.resx +++ b/src/NadekoBot/Resources/ResponseStrings.sv-SE.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Denna bas är redan tagen eller förstörd. + Denna bas är redan tagen eller förstörd. Denna bas är redan förstörd. @@ -194,8 +194,7 @@ Alla anpassade emojis uppgifter borttagna. - Anpassad emoji har blivit raderad. - + Anpassad emoji har blivit raderad Otillräckliga behörigheter. Kräver Bot ägande för globala anpassade reaktioner, och administratör för server anpassade reaktioner. @@ -217,10 +216,10 @@ Ingen egengjord reaktion funnen med det id. - svar + Svar - Egengjord reaktion statistiker. + Egengjord reaktion statistiker Statistiker rensade för {0} egengjorda reaktioner. @@ -229,7 +228,7 @@ Inga statistik för den triggern funnen, inget återgärd gjord. - Trigger. + Trigger Automatisk hentai stoppad. @@ -238,11 +237,10 @@ Inga resultat hittades. - -{0} har redan svimmat + {0} har redan svimmat. - {0} har redan full hälsa + {0} har redan full hälsa. din typ är redan {0} From 6f5850830ad191876ce764102175d0ee92673054 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:17:59 +0100 Subject: [PATCH 14/19] Update ResponseStrings.tr-TR.resx (POEditor.com) From a20fa2ef14b0d4693472ee6ca1b7a254a7b5fb1b Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Wed, 8 Mar 2017 02:18:02 +0100 Subject: [PATCH 15/19] Update ResponseStrings.en-US.resx (POEditor.com) --- .../Resources/ResponseStrings.en-US.resx | 371 +++++++++--------- 1 file changed, 186 insertions(+), 185 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.en-US.resx b/src/NadekoBot/Resources/ResponseStrings.en-US.resx index 8f964f3a..51f02785 100644 --- a/src/NadekoBot/Resources/ResponseStrings.en-US.resx +++ b/src/NadekoBot/Resources/ResponseStrings.en-US.resx @@ -1,121 +1,121 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 That base is already claimed or destroyed. @@ -136,7 +136,7 @@ {0} claimed a base #{1} in a war against {2} - @{0} You already claimed base #{1}. You can't claim a new one. + @{0} You already claimed base #{1}. You can't claim a new one. Claim from @{0} in a war against {1} has expired. @@ -245,10 +245,10 @@ Kwoth used punch:type_icon: on Sanity:type_icon: for 50 damage. - You can't attack again without retaliation! + You can't attack again without retaliation! - You can't attack yourself. + You can't attack yourself. {0} has fainted! @@ -260,16 +260,16 @@ {0} has {1} HP remaining. - You can't use {0}. Type `{1}ml` to see a list of moves you can use. + You can't use {0}. Type `{1}ml` to see a list of moves you can use. Movelist for {0} type - It's not effective. + It's not effective. - You don't have enough {0} + You don't have enough {0} revived {0} with one {1} @@ -281,13 +281,13 @@ Your type has been changed to {0} for a {1} - It's somewhat effective. + It's somewhat effective. - It's super effective! + It's super effective! - You used too many moves in a row, so you can't move! + You used too many moves in a row, so you can't move! Type of {0} is {1} @@ -448,7 +448,7 @@ Reason: {1} Greet announcements enabled on this channel. - You can't use this command on users with a role higher or equal to yours in the role hierarchy. + You can't use this command on users with a role higher or equal to yours in the role hierarchy. Images loaded after {0} seconds! @@ -473,19 +473,19 @@ Reason: {1} List of languages - Your server's locale is now {0} - {1} + Your server's locale is now {0} - {1} - Bot's default locale is now {0} - {1} + Bot's default locale is now {0} - {1} - Bot's language is set to {0} - {1} + Bot's language is set to {0} - {1} - Failed setting locale. Revisit this command's help. + Failed setting locale. Revisit this command's help. - This server's language is set to {0} - {1} + This server's language is set to {0} - {1} {0} has left {1} @@ -538,10 +538,10 @@ Reason: {1} Muted - singular "User muted." + singular "User muted." - I don't have the permission necessary for that most likely. + I don't have the permission necessary for that most likely. New mute role set. @@ -562,7 +562,7 @@ Reason: {1} Nickname changed - Can't find that server + Can't find that server No shard with that ID found. @@ -577,7 +577,7 @@ Reason: {1} Old topic - Error. Most likely I don't have sufficient permissions. + Error. Most likely I don't have sufficient permissions. Permissions for this server are reset. @@ -637,7 +637,7 @@ Reason: {1} Failed to rename role. I have insufficient permissions. - You can't edit roles higher than your highest role. + You can't edit roles higher than your highest role. Removed the playing message: {0} @@ -683,13 +683,13 @@ Reason: {1} That role is not self-assignable. - You don't have {0} role. + You don't have {0} role. Self assigned roles are now not exclusive! - I am unable to add that role to you. `I can't add roles to owners or other roles higher than my role in the role hierarchy.` + I am unable to add that role to you. `I can't add roles to owners or other roles higher than my role in the role hierarchy.` {0} has been removed from the list of self-assignable roles. @@ -731,7 +731,7 @@ Reason: {1} Shutting down - Users can't send more than {0} messages every {1} seconds. + Users can't send more than {0} messages every {1} seconds. Slow mode disabled. @@ -794,10 +794,10 @@ Reason: {1} {0} has been **muted** from text and voice chat. - User's role added + User's role added - User's role removed + User's role removed {0} is now {1} @@ -833,7 +833,7 @@ Reason: {1} Enabled voice + text feature. - I don't have **manage roles** and/or **manage channels** permission, so I cannot run `voice+text` on {0} server. + I don't have **manage roles** and/or **manage channels** permission, so I cannot run `voice+text` on {0} server. You are enabling/disabling this feature and **I do not have ADMINISTRATOR permissions**. This may cause some issues, and you will have to clean up text channels yourself afterwards. @@ -861,7 +861,7 @@ Reason: {1} Migration done! - Error while migrating, check bot's console for more information. + Error while migrating, check bot's console for more information. Presence updates @@ -918,13 +918,13 @@ Reason: {1} Awarded {0} to {1} users from {2} role. - You can't bet more than {0} + You can't bet more than {0} - You can't bet less than {0} + You can't bet less than {0} - You don't have enough {0} + You don't have enough {0} No more cards in the deck. @@ -955,7 +955,7 @@ Reason: {1} Users must type a secret code to get {0}. -Lasts {1} seconds. Don't tell anyone. Shhh. +Lasts {1} seconds. Don't tell anyone. Shhh. SneakyGame event ended. {0} users received the reward. @@ -970,7 +970,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. successfully took {0} from {1} - was unable to take {0} from{1} because the user doesn't have that much {2}! + was unable to take {0} from{1} because the user doesn't have that much {2}! Back to ToC @@ -994,7 +994,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. Type `{0}h CommandName` to see the help for that specified command. e.g. `{0}h >8ball` - I can't find that command. Please verify that the command exists before trying again. + I can't find that command. Please verify that the command exists before trying again. Description @@ -1003,7 +1003,7 @@ Lasts {1} seconds. Don't tell anyone. Shhh. You can support the NadekoBot project on Patreon <{0}> or Paypal <{1}> -Don't forget to leave your discord name or id in the message. +Don't forget to leave your discord name or id in the message. **Thank you** ♥️ @@ -1101,9 +1101,6 @@ Don't forget to leave your discord name or id in the message. Likes - - Nobody - Price @@ -1114,7 +1111,7 @@ Don't forget to leave your discord name or id in the message. Top Waifus - your affinity is already set to that waifu or you're trying to remove your affinity while not having one. + your affinity is already set to that waifu or you're trying to remove your affinity while not having one. changed their affinity from {0} to {1}. @@ -1129,7 +1126,7 @@ Don't forget to leave your discord name or id in the message. Your affinity is reset. You no longer have a person you like. - wants to be {0}'s waifu. Aww <3 + wants to be {0}'s waifu. Aww <3 claimed {0} as their waifu for {1}! @@ -1138,15 +1135,12 @@ Don't forget to leave your discord name or id in the message. You have divorced a waifu who likes you. You heartless monster. {0} received {1} as a compensation. - - You have divorced a waifu who doesn't like you. You received {0} back. - - you can't set affinity to yourself, you egomaniac. + you can't set affinity to yourself, you egomaniac. 🎉 Their love is fulfilled! 🎉 -{0}'s new value is {1}! +{0}'s new value is {1}! No waifu is that cheap. You must pay at least {0} to get a waifu, even if their actual value is lower. @@ -1158,11 +1152,17 @@ Don't forget to leave your discord name or id in the message. That waifu is not yours. - You can't claim yourself. + You can't claim yourself. You divorced recently. You must wait {0} hours and {1} minutes to divorce again. + + Nobody + + + You have divorced a waifu who doesn't like you. You received {0} back. + 8ball @@ -1206,7 +1206,7 @@ Don't forget to leave your discord name or id in the message. Question - It's a draw! Both picked {0} + It's a draw! Both picked {0} {0} won! {1} beats {2} @@ -1217,9 +1217,6 @@ Don't forget to leave your discord name or id in the message. Animal Race is already running. - - You've already joined this race! - Total: {0} Average: {1} @@ -1261,13 +1258,13 @@ Don't forget to leave your discord name or id in the message. Starting hangman errored. - List of "{0}hangman" term types: + List of "{0}hangman" term types: Leaderboard - You don't have enough {0} + You don't have enough {0} No results @@ -1299,13 +1296,13 @@ Don't forget to leave your discord name or id in the message. Stopping after this question. - Time's up! The correct answer was {0} + Time's up! The correct answer was {0} {0} guessed it and WON the game! The answer was: {1} - You can't play against yourself. + You can't play against yourself. TicTacToe Game is already running in this channel. @@ -1329,7 +1326,7 @@ Don't forget to leave your discord name or id in the message. Time expired! - {0}'s move + {0}'s move {0} vs {1} @@ -1416,10 +1413,10 @@ Don't forget to leave your discord name or id in the message. Playlist deleted. - Failed to delete that playlist. It either doesn't exist, or you are not its author. + Failed to delete that playlist. It either doesn't exist, or you are not its author. - Playlist with that ID doesn't exist. + Playlist with that ID doesn't exist. Playlist queue complete. @@ -1444,7 +1441,7 @@ Don't forget to leave your discord name or id in the message. Removed song - context: "removed song #5" + context: "removed song #5" Repeating current song @@ -1573,14 +1570,14 @@ Don't forget to leave your discord name or id in the message. Moved permission {0} from #{1} to #{2} - Can't find permission at index #{0} + Can't find permission at index #{0} No costs set. command - Gen. (of command) + Gen (of command) module @@ -1672,7 +1669,7 @@ Don't forget to leave your discord name or id in the message. Bad input format, or something went wrong. - Couldn't find that card. + Couldn't find that card. fact @@ -1763,7 +1760,7 @@ Don't forget to leave your discord name or id in the message. List of {0}place tags - Don't translate {0}place + Don't translate {0}place Location @@ -1772,10 +1769,10 @@ Don't forget to leave your discord name or id in the message. Magic Items not loaded. - {0}'s MAL profile + {0}'s MAL profile - Bot owner didn't specify MashapeApiKey. You can't use this functionality. + Bot owner didn't specify MashapeApiKey. You can't use this functionality. Min/Max @@ -1871,10 +1868,10 @@ Don't forget to leave your discord name or id in the message. No such stream. - Stream probably doesn't exist. + Stream probably doesn't exist. - Removed {0}'s stream ({1}) from notifications. + Removed {0}'s stream ({1}) from notifications. I will notify this channel when status changes. @@ -1936,7 +1933,7 @@ Don't forget to leave your discord name or id in the message. `{0}.` {1} [{2:F2}/s] - {3} total /s and total need to be localized to fit the context - -`1.` +`1.` Activity page #{0} @@ -2139,7 +2136,7 @@ Owner ID: {2} No colors are in the correct format. Use `#00ff00` for example. - Started rotating {0} role's color. + Started rotating {0} role's color. Stopped rotating colors for the {0} role @@ -2187,6 +2184,9 @@ Owner ID: {2} Voice channels + + You've already joined this race! + Current poll results @@ -2218,4 +2218,5 @@ Owner ID: {2} {0} total votes cast. + \ No newline at end of file From 1fe229fb7a85eac7e3742b4fddbc81c5d35f9ec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Do=C4=9Fan?= Date: Wed, 8 Mar 2017 04:52:26 +0200 Subject: [PATCH 16/19] Update ResponseStrings.tr-TR.resx --- .../Resources/ResponseStrings.tr-TR.resx | 4192 +++++++++-------- 1 file changed, 2097 insertions(+), 2095 deletions(-) diff --git a/src/NadekoBot/Resources/ResponseStrings.tr-TR.resx b/src/NadekoBot/Resources/ResponseStrings.tr-TR.resx index 8ebe09d9..49168340 100644 --- a/src/NadekoBot/Resources/ResponseStrings.tr-TR.resx +++ b/src/NadekoBot/Resources/ResponseStrings.tr-TR.resx @@ -1,4 +1,4 @@ - +