Skip to content

Commit 52060a1

Browse files
authored
Merge pull request #521 from RPSMain/fix/name
Fix's Name Issues
2 parents 9781332 + 7849b7e commit 52060a1

File tree

15 files changed

+44
-44
lines changed

15 files changed

+44
-44
lines changed

docs/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,17 @@ qthelp:
8686
@echo
8787
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
8888
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
89-
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/discord.py.qhcp"
89+
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/pycord.qhcp"
9090
@echo "To view the help file:"
91-
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/discord.py.qhc"
91+
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/pycord.qhc"
9292

9393
devhelp:
9494
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
9595
@echo
9696
@echo "Build finished."
9797
@echo "To view the help file:"
98-
@echo "# mkdir -p $$HOME/.local/share/devhelp/discord.py"
99-
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/discord.py"
98+
@echo "# mkdir -p $$HOME/.local/share/devhelp/pycord"
99+
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/pycord"
100100
@echo "# devhelp"
101101

102102
epub:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
]
272272

273273
# Output file base name for HTML help builder.
274-
htmlhelp_basename = 'discord.pydoc'
274+
htmlhelp_basename = 'pycorddoc'
275275

276276
# -- Options for LaTeX output ---------------------------------------------
277277

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. discord.py documentation master file, created by
1+
.. pycord documentation master file, created by
22
sphinx-quickstart on Fri Aug 21 05:43:30 2015.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.

docs/locale/ja/LC_MESSAGES/api.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ msgid "API Reference"
1919
msgstr "APIリファレンス"
2020

2121
#: ../../api.rst:6
22-
msgid "The following section outlines the API of discord.py."
23-
msgstr "ここではdiscord.pyのAPIについて解説します。"
22+
msgid "The following section outlines the API of pycord."
23+
msgstr "ここではpycordのAPIについて解説します。"
2424

2525
#: ../../api.rst:10
2626
msgid ""
2727
"This module uses the Python logging module to log diagnostic and errors "
2828
"in an output independent way. If the logging module is not configured, "
2929
"these logs will not be output anywhere. See :ref:`logging_setup` for "
3030
"more information on how to set up and use the logging module with "
31-
"discord.py."
31+
"pycord."
3232
msgstr ""
33-
"このモジュールはPythonのloggingモジュールを使用して、出力に依存しない方法でエラーや診断の内容を記録します。loggingモジュールが設定されていない場合、これらのログはどこにも出力されません。discord.pyでloggingモジュールを使用する方法の詳細は"
33+
"このモジュールはPythonのloggingモジュールを使用して、出力に依存しない方法でエラーや診断の内容を記録します。loggingモジュールが設定されていない場合、これらのログはどこにも出力されません。pycordでloggingモジュールを使用する方法の詳細は"
3434
" :ref:`logging_setup` を参照してください。"
3535

3636
#: ../../api.rst:17
@@ -6727,7 +6727,7 @@ msgstr "Webhookサポート"
67276727

67286728
#: ../../api.rst:2505
67296729
msgid ""
6730-
"discord.py offers support for creating, editing, and executing webhooks "
6730+
"pycord offers support for creating, editing, and executing webhooks "
67316731
"through the :class:`Webhook` class."
67326732
msgstr ""
67336733

@@ -16700,7 +16700,7 @@ msgid "The following exceptions are thrown by the library."
1670016700
msgstr ""
1670116701

1670216702
#: discord.DiscordException:1 of
16703-
msgid "Base exception class for discord.py"
16703+
msgid "Base exception class for pycord"
1670416704
msgstr ""
1670516705

1670616706
#: discord.DiscordException:3 of

docs/locale/ja/LC_MESSAGES/ext/commands/api.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ msgstr "APIリファレンス"
2020

2121
#: ../../ext/commands/api.rst:6
2222
msgid ""
23-
"The following section outlines the API of discord.py's command extension "
23+
"The following section outlines the API of pycord's command extension "
2424
"module."
25-
msgstr "この項目ではdiscord.pyのAPIが持つコマンド拡張モジュールについて解説します。"
25+
msgstr "この項目ではpycordのAPIが持つコマンド拡張モジュールについて解説します。"
2626

2727
#: ../../ext/commands/api.rst:11
2828
msgid "Bot"

docs/locale/ja/LC_MESSAGES/ext/commands/index.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ msgid "``discord.ext.commands`` -- Bot commands framework"
2222
msgstr "``discord.ext.commands`` -- ボットコマンドのフレームワーク"
2323

2424
#: ../../ext/commands/index.rst:6
25-
msgid "``discord.py`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``discord.py`` comes with an extension library that handles this for you."
26-
msgstr "``discord.py`` は、Discordと連携するための低レベルな機能を提供します。ときどき、このライブラリーはBotの作成に用いられています。しかしこの作業を正しくやるのは最初のときは気が重くややこしいものです。何度も繰り返し、拡張可能で柔軟、そしてパワフルなBotコマンドフレームワークを作成しています。この理由より、 ``discord.py`` にはこれを扱う拡張ライブラリがついてきます。"
25+
msgid "``pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``pycord`` comes with an extension library that handles this for you."
26+
msgstr "``pycord`` は、Discordと連携するための低レベルな機能を提供します。ときどき、このライブラリーはBotの作成に用いられています。しかしこの作業を正しくやるのは最初のときは気が重くややこしいものです。何度も繰り返し、拡張可能で柔軟、そしてパワフルなBotコマンドフレームワークを作成しています。この理由より、 ``pycord`` にはこれを扱う拡張ライブラリがついてきます。"
2727

docs/locale/ja/LC_MESSAGES/ext/tasks/index.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ msgstr "スリープできる最大時間は何秒ですか?"
3939

4040
#: ../../ext/tasks/index.rst:14
4141
msgid ""
42-
"The goal of this discord.py extension is to abstract all these worries "
42+
"The goal of this pycord extension is to abstract all these worries "
4343
"away from you."
44-
msgstr "discord.pyの拡張機能の目的は、こういった苦労の種を抽象化することです。"
44+
msgstr "pycordの拡張機能の目的は、こういった苦労の種を抽象化することです。"
4545

4646
#: ../../ext/tasks/index.rst:17
4747
msgid "Recipes"

docs/locale/ja/LC_MESSAGES/faq.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ msgstr "よくある質問"
2121
#: ../../faq.rst:7
2222
msgid ""
2323
"This is a list of Frequently Asked Questions regarding using "
24-
"``discord.py`` and its extension modules. Feel free to suggest a new "
24+
"``pycord`` and its extension modules. Feel free to suggest a new "
2525
"question or submit one via pull requests."
26-
msgstr "これは ``discord.py`` 及び 拡張モジュールに対して、よくある質問をまとめたものです。気軽に質問やプルリクエストを提出してください。"
26+
msgstr "これは ``pycord`` 及び 拡張モジュールに対して、よくある質問をまとめたものです。気軽に質問やプルリクエストを提出してください。"
2727

2828
#: ../../faq.rst:11
2929
msgid "Questions"
@@ -141,7 +141,7 @@ msgstr ""
141141
#: ../../faq.rst:82
142142
msgid ""
143143
"Example code can be found in the `examples folder "
144-
"<https://github.com/Rapptz/discord.py/tree/master/examples>`_ in the "
144+
"<https://github.com/pycord-development/pycord/tree/master/examples>`_ in the "
145145
"repository."
146146
msgstr ""
147147

@@ -357,10 +357,10 @@ msgstr "バックグラウンドで何かを動かすにはどうすればいい
357357
#: ../../faq.rst:247
358358
msgid ""
359359
"`Check the background_task.py example. "
360-
"<https://github.com/Rapptz/discord.py/blob/master/examples/background_task.py>`_"
360+
"<https://github.com/pycord-development/pycord/blob/master/examples/background_task.py>`_"
361361
msgstr ""
362362
"`background_task.pyの例を参照してください。 "
363-
"<https://github.com/Rapptz/discord.py/blob/master/examples/background_task.py>`_"
363+
"<https://github.com/pycord-development/pycord/blob/master/examples/background_task.py>`_"
364364

365365
#: ../../faq.rst:250
366366
msgid "How do I get a specific model?"

docs/locale/ja/LC_MESSAGES/index.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ msgstr ""
1515
"Generated-By: Babel 2.5.3\n"
1616

1717
#: ../../index.rst:7
18-
msgid "Welcome to discord.py"
19-
msgstr "discord.py へようこそ。"
18+
msgid "Welcome to pycord"
19+
msgstr "pycord へようこそ。"
2020

2121
#: ../../index.rst:11
2222
msgid ""
23-
"discord.py is a modern, easy to use, feature-rich, and async ready API "
23+
"pycord is a modern, easy to use, feature-rich, and async ready API "
2424
"wrapper for Discord."
25-
msgstr "discord.py は機能豊富かつモダンで使いやすい、非同期処理にも対応したDiscord用のAPIラッパーです。"
25+
msgstr "pycord は機能豊富かつモダンで使いやすい、非同期処理にも対応したDiscord用のAPIラッパーです。"
2626

2727
#: ../../index.rst:14
2828
msgid "**Features:**"

docs/locale/ja/LC_MESSAGES/intents.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# SOME DESCRIPTIVE TITLE.
22
# Copyright (C) 2015-present, Rapptz
3-
# This file is distributed under the same license as the discord.py package.
3+
# This file is distributed under the same license as the pycord package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
55
#
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: discord.py 1.5.1\n"
9+
"Project-Id-Version: pycord 1.5.1\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2020-10-23 22:41-0400\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
@@ -401,7 +401,7 @@ msgstr ""
401401

402402
#: ../../intents.rst:189
403403
msgid ""
404-
"For now, the old gateway will still work so downgrading to discord.py "
404+
"For now, the old gateway will still work so downgrading to pycord "
405405
"v1.4 is still possible and will continue to be supported until Discord "
406406
"officially kills the v6 gateway, which is imminent. However it is "
407407
"paramount that for the future of your bot that you upgrade your code to "

0 commit comments

Comments
 (0)