-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcporting.po
62 lines (57 loc) · 2.37 KB
/
cporting.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2022, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Rafael Fontenelle <[email protected]>, 2022
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.10\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-30 14:59+0000\n"
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
"Last-Translator: Rafael Fontenelle <[email protected]>, 2022\n"
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
"ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../../howto/cporting.rst:7
msgid "Porting Extension Modules to Python 3"
msgstr "Python 3 への拡張モジュール移植"
#: ../../howto/cporting.rst:9
msgid ""
"We recommend the following resources for porting extension modules to Python "
"3:"
msgstr "Python 3 への拡張モジュール移植には、以下のリソースを推奨します:"
#: ../../howto/cporting.rst:11
msgid ""
"The `Migrating C extensions`_ chapter from *Supporting Python 3: An in-depth "
"guide*, a book on moving from Python 2 to Python 3 in general, guides the "
"reader through porting an extension module."
msgstr ""
"*Supporting Python 3: An in-depth guide* の `Migrating C extensions`_ 章。本"
"は Python 2 から Python 3 への移行全般を扱い、拡張モジュールの移植を読者にガ"
"イドします。"
#: ../../howto/cporting.rst:15
msgid ""
"The `Porting guide`_ from the *py3c* project provides opinionated "
"suggestions with supporting code."
msgstr ""
"`Porting guide`_ は *py3c* プロジェクトにより提供される、補助コード付きの見解"
"提案です。"
#: ../../howto/cporting.rst:17
msgid ""
"The `Cython`_ and `CFFI`_ libraries offer abstractions over Python's C API. "
"Extensions generally need to be re-written to use one of them, but the "
"library then handles differences between various Python versions and "
"implementations."
msgstr ""
"`Cython`_ と `CFFI`_ のライブラリは Python の C API 抽象化を提案します。拡張"
"はたいてい使用時に書き換えが求められますが、これらのライブラリは Python の"
"バージョンや実装にまたがる違いを処理します。"