Browse Source

[Crowdin] Updated translation files

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/9556/merge
github-actions[bot] 11 months ago
committed by GitHub
parent
commit
0b4263e697
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3592
      docs/locale/ja/LC_MESSAGES/api.po
  2. 2
      docs/locale/ja/LC_MESSAGES/discord.po
  3. 2
      docs/locale/ja/LC_MESSAGES/ext/tasks/index.po
  4. 2
      docs/locale/ja/LC_MESSAGES/faq.po
  5. 2
      docs/locale/ja/LC_MESSAGES/intents.po
  6. 2
      docs/locale/ja/LC_MESSAGES/intro.po
  7. 14
      docs/locale/ja/LC_MESSAGES/logging.po
  8. 2
      docs/locale/ja/LC_MESSAGES/migrating.po
  9. 2
      docs/locale/ja/LC_MESSAGES/migrating_to_async.po
  10. 2
      docs/locale/ja/LC_MESSAGES/migrating_to_v1.po
  11. 2
      docs/locale/ja/LC_MESSAGES/quickstart.po
  12. 2
      docs/locale/ja/LC_MESSAGES/sphinx.po
  13. 2
      docs/locale/ja/LC_MESSAGES/version_guarantees.po
  14. 1814
      docs/locale/ja/LC_MESSAGES/whats_new.po

3592
docs/locale/ja/LC_MESSAGES/api.po

File diff suppressed because it is too large

2
docs/locale/ja/LC_MESSAGES/discord.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

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

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/faq.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/intents.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/intro.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

14
docs/locale/ja/LC_MESSAGES/logging.po

@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"POT-Creation-Date: 2024-03-26 03:41+0000\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@ -46,18 +46,22 @@ msgid "This is recommended, especially at verbose levels such as ``DEBUG``, as t
msgstr "特に、 ``DEBUG`` といった冗長なイベントレベルを設定している場合、プログラムの標準エラー出力をつまらせてしまう原因になるため、ファイルへの出力が推奨されます。"
#: ../../logging.rst:46
msgid "If you want the logging configuration the library provides to affect all loggers rather than just the ``discord`` logger, you can pass ``root_logger=True`` inside :meth:`Client.run`:"
msgstr ""
#: ../../logging.rst:52
msgid "If you want to setup logging using the library provided configuration without using :meth:`Client.run`, you can use :func:`discord.utils.setup_logging`:"
msgstr ":meth:`Client.run` を使用せずにライブラリ提供の構成を使用して logging を設定したい場合は、 :func:`discord.utils.setup_logging` を使用できます。"
#: ../../logging.rst:57
#: ../../logging.rst:63
msgid "More advanced setups are possible with the :mod:`logging` module. The example below configures a rotating file handler that outputs DEBUG output for everything the library outputs, except for HTTP requests:"
msgstr ":mod:`logging` モジュールを使用するとより高度なセットアップが行えます。以下の例では、HTTPリクエスト以外のすべてのライブラリの出力に対しDEBUG出力を使用するローテーションを行うファイルハンドラを構成します。"
#: ../../logging.rst:85
#: ../../logging.rst:91
msgid "For more information, check the documentation and tutorial of the :mod:`logging` module."
msgstr "詳細は、:mod:`logging` モジュールのドキュメントを参照してください。"
#: ../../logging.rst:89
#: ../../logging.rst:95
msgid "The library now provides a default logging configuration."
msgstr "ライブラリがデフォルト logging 構成を提供するようになりました。"

2
docs/locale/ja/LC_MESSAGES/migrating.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/migrating_to_async.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/migrating_to_v1.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/quickstart.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/sphinx.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

2
docs/locale/ja/LC_MESSAGES/version_guarantees.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: discordpy\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-21 01:17+0000\n"
"PO-Revision-Date: 2023-10-30 15:32\n"
"PO-Revision-Date: 2024-04-17 02:43\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"

1814
docs/locale/ja/LC_MESSAGES/whats_new.po

File diff suppressed because it is too large
Loading…
Cancel
Save