19 changed files with 9336 additions and 11331 deletions
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -0,0 +1,283 @@ |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: discordpy-japanese\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2019-04-23 10:19+0900\n" |
|||
"PO-Revision-Date: 2019-05-04 06:10\n" |
|||
"Last-Translator: Episword (mistio100)\n" |
|||
"Language-Team: Japanese\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: 8bit\n" |
|||
"Language: ja\n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
"X-Generator: crowdin.com\n" |
|||
"X-Crowdin-Project: discordpy-japanese\n" |
|||
"X-Crowdin-Language: ja\n" |
|||
"X-Crowdin-File: /ext/tasks/index.po\n" |
|||
|
|||
#: ../../ext/tasks/index.rst:2 |
|||
msgid "``discord.ext.tasks`` -- asyncio.Task helpers" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:6 |
|||
msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:8 |
|||
msgid "How do I handle :exc:`asyncio.CancelledError`?" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:9 |
|||
msgid "What do I do if the internet goes out?" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:10 |
|||
msgid "What is the maximum number of seconds I can sleep anyway?" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:12 |
|||
msgid "The goal of this discord.py extension is to abstract all these worries away from you." |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:15 |
|||
msgid "Recipes" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:17 |
|||
msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:36 |
|||
msgid "Adding an exception to handle during reconnect:" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:59 |
|||
msgid "Looping a certain amount of times before exiting:" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:75 |
|||
msgid "Waiting until the bot is ready before the loop starts:" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:95 |
|||
msgid ":meth:`~.tasks.Loop.before_loop` can be used as a decorator as well:" |
|||
msgstr "" |
|||
|
|||
#: ../../ext/tasks/index.rst:121 |
|||
msgid "API Reference" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop:1 |
|||
msgid "A background task helper that abstracts the loop and reconnection logic for you." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop:3 |
|||
msgid "The main interface to create this is through :func:`loop`." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.current_loop:1 |
|||
msgid "The current iteration of the loop." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.current_loop:0 |
|||
msgid "type" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.current_loop:3 |
|||
msgid ":class:`int`" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:1 |
|||
msgid "Starts the internal task in the event loop." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:0 discord.ext.tasks.Loop.add_exception_type:0 |
|||
#: discord.ext.tasks.Loop.remove_exception_type:0 |
|||
#: discord.ext.tasks.Loop.before_loop:0 discord.ext.tasks.Loop.after_loop:0 |
|||
#: discord.ext.tasks.loop:0 |
|||
msgid "Parameters" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:3 |
|||
msgid "The arguments to to use." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:4 |
|||
msgid "The keyword arguments to use." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:0 discord.ext.tasks.Loop.add_exception_type:0 |
|||
#: discord.ext.tasks.Loop.before_loop:0 discord.ext.tasks.Loop.after_loop:0 |
|||
#: discord.ext.tasks.loop:0 |
|||
msgid "raises" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:6 |
|||
msgid ":exc:`RuntimeError` -- A task has already been launched." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:0 |
|||
#: discord.ext.tasks.Loop.remove_exception_type:0 discord.ext.tasks.loop:0 |
|||
msgid "Returns" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:8 |
|||
msgid "The task that has been created." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:0 |
|||
#: discord.ext.tasks.Loop.remove_exception_type:0 discord.ext.tasks.loop:0 |
|||
msgid "Return type" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.start:9 |
|||
msgid ":class:`asyncio.Task`" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.cancel:1 |
|||
msgid "Cancels the internal task, if any are running." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.add_exception_type:1 |
|||
msgid "Adds an exception type to be handled during the reconnect logic." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.add_exception_type:3 |
|||
msgid "By default the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.add_exception_type:7 |
|||
msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.add_exception_type:10 |
|||
#: discord.ext.tasks.Loop.remove_exception_type:3 |
|||
msgid "The exception class to handle." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.add_exception_type:13 |
|||
msgid ":exc:`TypeError` -- The exception passed is either not a class or not inherited from :class:`BaseException`." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.clear_exception_types:1 |
|||
msgid "Removes all exception types that are handled." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.clear_exception_types:5 |
|||
msgid "This operation obviously cannot be undone!" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.remove_exception_type:1 |
|||
msgid "Removes an exception type from being handled during the reconnect logic." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.remove_exception_type:6 |
|||
msgid "Whether it was successfully removed." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.remove_exception_type:7 |
|||
msgid ":class:`bool`" |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.get_task:1 |
|||
msgid "Optional[:class:`asyncio.Task`]: Fetches the internal task or ``None`` if there isn't one running." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.before_loop:1 |
|||
msgid "A function that also acts as a decorator to register a coroutine to be called before the loop starts running. This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.before_loop:6 |
|||
msgid "The coroutine to register before the loop runs." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.before_loop:9 discord.ext.tasks.Loop.after_loop:7 |
|||
#: discord.ext.tasks.loop:22 |
|||
msgid ":exc:`TypeError` -- The function was not a coroutine." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.after_loop:1 |
|||
msgid "A function that also acts as a decorator to register a coroutine to be called after the loop finished running." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.Loop.after_loop:4 |
|||
msgid "The coroutine to register after the loop finishes." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:1 |
|||
msgid "A decorator that schedules a task in the background for you with optional reconnect logic." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:4 |
|||
msgid "The number of seconds between every iteration." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:6 |
|||
msgid "The number of minutes between every iteration." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:8 |
|||
msgid "The number of hours between every iteration." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.loop:10 |
|||
msgid "The number of loops to do, ``None`` if it should be an infinite loop." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.loop:13 |
|||
msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.loop:17 |
|||
msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.loop:21 |
|||
msgid ":exc:`ValueError` -- An invalid value was given." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.loop:24 |
|||
msgid "The loop helper that handles the background task." |
|||
msgstr "" |
|||
|
|||
#: ../../../discord/ext/tasks/__init__.py:docstring of |
|||
#: discord.ext.tasks.loop:25 |
|||
msgid ":class:`Loop`" |
|||
msgstr "" |
|||
|
File diff suppressed because it is too large
@ -1,90 +1,78 @@ |
|||
# SOME DESCRIPTIVE TITLE. |
|||
# Copyright (C) 2015-2019, Rapptz |
|||
# This file is distributed under the same license as the discord.py package. |
|||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019. |
|||
# |
|||
#, fuzzy |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: discord.py 1.0.0a\n" |
|||
"Project-Id-Version: discordpy-japanese\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2019-04-08 17:55-0400\n" |
|||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
|||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
|||
"Language-Team: LANGUAGE <LL@li.org>\n" |
|||
"POT-Creation-Date: 2019-04-23 10:19+0900\n" |
|||
"PO-Revision-Date: 2019-05-04 06:10\n" |
|||
"Last-Translator: Episword (mistio100)\n" |
|||
"Language-Team: Japanese\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=utf-8\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: 8bit\n" |
|||
"Generated-By: Babel 2.5.3\n" |
|||
"Language: ja\n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
"X-Generator: crowdin.com\n" |
|||
"X-Crowdin-Project: discordpy-japanese\n" |
|||
"X-Crowdin-Language: ja\n" |
|||
"X-Crowdin-File: version_guarantees.po\n" |
|||
|
|||
#: ../../version_guarantees.rst:4 |
|||
msgid "Version Guarantees" |
|||
msgstr "" |
|||
msgstr "バージョン保証" |
|||
|
|||
#: ../../version_guarantees.rst:6 |
|||
msgid "" |
|||
"The library follows a `semantic versioning principle " |
|||
"<https://semver.org/>`_ which means that the major version is updated " |
|||
"every time there is an incompatible API change. However due to the lack " |
|||
"of guarantees on the Discord side when it comes to breaking changes along" |
|||
" with the fairly dynamic nature of Python it can be hard to discern what " |
|||
"can be considered a breaking change and what isn't." |
|||
msgstr "" |
|||
msgid "The library follows a `semantic versioning principle <https://semver.org/>`_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." |
|||
msgstr "このライブラリは `セマンティック バージョニングの原則 <https://semver.org/>`_ に従います。それが意味するのは、互換性のないAPIの変更が行われるたびにメジャーバージョンが更新されるということです。しかしながら、Discord側にはPythonの非常に動的な性質とともに破壊的変更を行う際の保証がないため、破壊的変更とみなされるもの、そうでないものを区別するのは困難です。" |
|||
|
|||
#: ../../version_guarantees.rst:8 |
|||
msgid "" |
|||
"The first thing to keep in mind is that breaking changes only apply to " |
|||
"**publicly documented functions and classes**. If it's not listed in the " |
|||
"documentation here then it is not part of the public API and is thus " |
|||
"bound to change. This includes attributes that start with an underscore " |
|||
"or functions without an underscore that are not documented." |
|||
msgstr "" |
|||
msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." |
|||
msgstr "最初に覚えておくべきことは、破壊的変更は **公開ドキュメント化してある関数とクラス** のみに適用されるということです。ドキュメントにないものはパブリックAPIの一部ではないため、変更される可能性があります。これにはドキュメントに載っていないアンダースコアから始まる関数や、通常の関数が含まれます。" |
|||
|
|||
#: ../../version_guarantees.rst:12 |
|||
msgid "The examples below are non-exhaustive." |
|||
msgstr "" |
|||
msgstr "以下の例は網羅的なものではありません。" |
|||
|
|||
#: ../../version_guarantees.rst:15 |
|||
msgid "Examples of Breaking Changes" |
|||
msgstr "" |
|||
msgstr "破壊的変更の例" |
|||
|
|||
#: ../../version_guarantees.rst:17 |
|||
msgid "Changing the default parameter value to something else." |
|||
msgstr "" |
|||
msgstr "デフォルトのパラメータ値を別のものに変更。" |
|||
|
|||
#: ../../version_guarantees.rst:18 |
|||
msgid "Renaming a function without an alias to an old function." |
|||
msgstr "" |
|||
msgstr "古い関数へのエイリアスのない関数の名称を変更。" |
|||
|
|||
#: ../../version_guarantees.rst:19 |
|||
msgid "Adding or removing parameters to an event." |
|||
msgstr "" |
|||
msgstr "イベントへのパラメータの追加、あるいは削除。" |
|||
|
|||
#: ../../version_guarantees.rst:22 |
|||
msgid "Examples of Non-Breaking Changes" |
|||
msgstr "" |
|||
msgstr "破壊的変更ではないものの例" |
|||
|
|||
#: ../../version_guarantees.rst:24 |
|||
msgid "Adding or removing private underscored attributes." |
|||
msgstr "" |
|||
msgstr "アンダースコア付きのプライベート関数の追加、あるいは削除。" |
|||
|
|||
#: ../../version_guarantees.rst:25 |
|||
msgid "Adding an element into the ``__slots__`` of a data class." |
|||
msgstr "" |
|||
msgstr "データクラスの ``__slots__`` への要素の追加。" |
|||
|
|||
#: ../../version_guarantees.rst:26 |
|||
msgid "Changing the behaviour of a function to fix a bug." |
|||
msgstr "" |
|||
msgstr "バグ修正のための関数の動作の変更。" |
|||
|
|||
#: ../../version_guarantees.rst:27 |
|||
msgid "Changes in the documentation." |
|||
msgstr "" |
|||
msgstr "ドキュメントの変更。" |
|||
|
|||
#: ../../version_guarantees.rst:28 |
|||
msgid "Modifying the internal HTTP handling." |
|||
msgstr "" |
|||
msgstr "内部HTTP処理の変更。" |
|||
|
|||
#: ../../version_guarantees.rst:29 |
|||
msgid "Upgrading the dependencies to a new version, major or otherwise." |
|||
msgstr "" |
|||
msgstr "依存関係をメジャー、またはそれ以外の新しいバージョンへアップグレード。" |
|||
|
|||
|
File diff suppressed because it is too large
Loading…
Reference in new issue