disnake

Форк
0
122 строки · 6.1 Кб
1
msgid ""
2
msgstr ""
3
"Project-Id-Version: discordpy\n"
4
"Report-Msgid-Bugs-To: \n"
5
"POT-Creation-Date: 2019-06-22 09:35-0400\n"
6
"PO-Revision-Date: 2020-10-24 02:41\n"
7
"Last-Translator: \n"
8
"Language-Team: Japanese\n"
9
"MIME-Version: 1.0\n"
10
"Content-Type: text/plain; charset=UTF-8\n"
11
"Content-Transfer-Encoding: 8bit\n"
12
"Plural-Forms: nplurals=1; plural=0;\n"
13
"X-Crowdin-Project: discordpy\n"
14
"X-Crowdin-Project-ID: 362783\n"
15
"X-Crowdin-Language: ja\n"
16
"X-Crowdin-File: intro.pot\n"
17
"X-Crowdin-File-ID: 80\n"
18
"Language: ja_JP\n"
19

20
#: ../../intro.rst:6
21
msgid "Introduction"
22
msgstr "はじめに"
23

24
#: ../../intro.rst:8
25
msgid "This is the documentation for disnake, a library for Python to aid in creating applications that utilise the Discord API."
26
msgstr "これはDiscord APIを利用したアプリケーションを作成するのに便利なPythonライブラリ、disnake.pyのドキュメントです。"
27

28
#: ../../intro.rst:12
29
msgid "Prerequisites"
30
msgstr "前提"
31

32
#: ../../intro.rst:14
33
msgid "disnake works with Python 3.5.3 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.4 or lower is not supported due to one of the dependencies (:doc:`aiohttp <aio:index>`) not supporting Python 3.4."
34
msgstr "disnake.pyは3.5.3以降のバージョンのPythonで動作します。Python2.7のような旧バージョンはサポートされていません。Python3.4以下は依存関係にあるライブラリ (:doc:`aiohttp <aio:index>`) がサポートされていないため、サポートしていません。"
35

36
#: ../../intro.rst:22
37
msgid "Installing"
38
msgstr "インストール"
39

40
#: ../../intro.rst:24
41
msgid "You can get the library directly from PyPI: ::"
42
msgstr "PyPIから直接ライブラリをインストールできます。"
43

44
#: ../../intro.rst:28
45
msgid "If you are using Windows, then the following should be used instead: ::"
46
msgstr "Windowsを使用している場合は、以下のコマンドで実行してください。"
47

48
#: ../../intro.rst:33
49
msgid "To get voice support, you should use ``disnake[voice]`` instead of ``disnake``, e.g. ::"
50
msgstr "音声のサポートが必要な場合は、 ``disnake`` ではなく、以下の例のように ``disnake[voice]`` を使うべきです。"
51

52
#: ../../intro.rst:37
53
msgid "On Linux environments, installing voice requires getting the following dependencies:"
54
msgstr "Linux環境では、依存関係にある以下のライブラリが必要になるので注意してください。"
55

56
#: ../../intro.rst:39
57
msgid "`libffi <https://github.com/libffi/libffi>`_"
58
msgstr "`libffi <https://github.com/libffi/libffi>`_"
59

60
#: ../../intro.rst:40
61
msgid "`libnacl <https://github.com/saltstack/libnacl>`_"
62
msgstr "`libnacl <https://github.com/saltstack/libnacl>`_"
63

64
#: ../../intro.rst:41
65
msgid "`python3-dev <https://packages.debian.org/python3-dev>`_"
66
msgstr "`python3-dev <https://packages.debian.org/python3-dev>`_"
67

68
#: ../../intro.rst:43
69
msgid "For a Debian-based system, the following command will get these dependencies:"
70
msgstr "Debianベースのシステムでは、次のコマンドで依存関係にあるライブラリを取得できます。"
71

72
#: ../../intro.rst:49
73
msgid "Remember to check your permissions!"
74
msgstr "自分の権限の確認は忘れないようにしてください!"
75

76
#: ../../intro.rst:52
77
msgid "Virtual Environments"
78
msgstr "仮想環境"
79

80
#: ../../intro.rst:54
81
msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libaries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions."
82
msgstr "システムへのインストールをライブラリによって汚したくない場合や、現在インストールされているシステムとは異なるバージョンのライブラリを使用したい場合があります。または、システムへのライブラリのインストール権限がない場合などです。こういった目的のため、Python3.3の標準ライブラリには、このように別々のバージョンを保持したい場合のために、「仮想環境」というものが用意されています。"
83

84
#: ../../intro.rst:59
85
msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`."
86
msgstr "より詳しいチュートリアルは :doc:`py:tutorial/venv` にあります。"
87

88
#: ../../intro.rst:61
89
msgid "However, for the quick and dirty:"
90
msgstr "簡単に仮想環境を構築する方法。"
91

92
#: ../../intro.rst:63
93
msgid "Go to your project's working directory:"
94
msgstr "プロジェクトの作業ディレクトリに移動してください。"
95

96
#: ../../intro.rst:70
97
msgid "Activate the virtual environment:"
98
msgstr "下記コマンドで仮想環境を有効化します。"
99

100
#: ../../intro.rst:76
101
msgid "On Windows you activate it with:"
102
msgstr "Windowsの場合は、こちらを使ってください。"
103

104
#: ../../intro.rst:82
105
msgid "Use pip like usual:"
106
msgstr "いつものようにpipインストールを実行します。"
107

108
#: ../../intro.rst:88
109
msgid "Congratulations. You now have a virtual environment all set up."
110
msgstr "おめでとうございます。これで仮想環境のセットアップができました。"
111

112
#: ../../intro.rst:91
113
msgid "Basic Concepts"
114
msgstr "基本概念"
115

116
#: ../../intro.rst:93
117
msgid "disnake revolves around the concept of :ref:`events <disnake-api-events>`. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to."
118
msgstr "disnake.pyは :ref:`イベント <disnake-api-events>` の概念を中心としています。イベントは何かを受け取り、それに対する応答を行います。例えば、メッセージが発生すると、メッセージの発生に関連するイベントを受け取り、そのイベントに対して応答を返すことができます。"
119

120
#: ../../intro.rst:97
121
msgid "A quick example to showcase how events work:"
122
msgstr "以下はイベントの仕組みを紹介する簡単な例です。"
123

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.