-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcurses.panel.po
140 lines (117 loc) · 6.43 KB
/
curses.panel.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2018, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Arihiro TAKASE, 2017\n"
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\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"
#: ../../library/curses.panel.rst:2
msgid ":mod:`curses.panel` --- A panel stack extension for curses"
msgstr ":mod:`curses.panel` --- curses のためのパネルスタック拡張"
#: ../../library/curses.panel.rst:11
msgid ""
"Panels are windows with the added feature of depth, so they can be stacked "
"on top of each other, and only the visible portions of each window will be "
"displayed. Panels can be added, moved up or down in the stack, and removed."
msgstr ""
"パネルは深さ (depth) "
"の機能が追加されたウィンドウです。これにより、ウィンドウをお互いに重ね合わせることができ、各ウィンドウの可視部分だけが表示されます。パネルはスタック中に追加したり、スタック内で上下移動させたり、スタックから除去することができます。"
#: ../../library/curses.panel.rst:19
msgid "Functions"
msgstr "関数"
#: ../../library/curses.panel.rst:21
msgid "The module :mod:`curses.panel` defines the following functions:"
msgstr ":mod:`curses.panel` では以下の関数を定義しています:"
#: ../../library/curses.panel.rst:26
msgid "Returns the bottom panel in the panel stack."
msgstr "パネルスタックの最下層のパネルを返します。"
#: ../../library/curses.panel.rst:31
msgid ""
"Returns a panel object, associating it with the given window *win*. Be aware"
" that you need to keep the returned panel object referenced explicitly. If "
"you don't, the panel object is garbage collected and removed from the panel "
"stack."
msgstr ""
"与えられたウィンドウ *win* "
"に関連付けられたパネルオブジェクトを返します。返されたパネルオブジェクトを参照しておく必要があることに注意してください。もし参照しなければ、パネルオブジェクトはガベージコレクションされてパネルスタックから削除されます。"
#: ../../library/curses.panel.rst:38
msgid "Returns the top panel in the panel stack."
msgstr "パネルスタックの最上層のパネルを返します。"
#: ../../library/curses.panel.rst:43
msgid ""
"Updates the virtual screen after changes in the panel stack. This does not "
"call :func:`curses.doupdate`, so you'll have to do this yourself."
msgstr ""
"仮想スクリーンをパネルスタック変更後の状態に更新します。この関数では :func:`curses.doupdate` "
"を呼ばないので、ユーザは自分で呼び出す必要があります。"
#: ../../library/curses.panel.rst:50
msgid "Panel Objects"
msgstr "Panel オブジェクト"
#: ../../library/curses.panel.rst:52
msgid ""
"Panel objects, as returned by :func:`new_panel` above, are windows with a "
"stacking order. There's always a window associated with a panel which "
"determines the content, while the panel methods are responsible for the "
"window's depth in the panel stack."
msgstr ""
"上記の :func:`new_panel` が返す Panel "
"オブジェクトはスタック順の概念を持つウィンドウです。ウィンドウはパネルに関連付けられており、表示する内容を決定している一方、パネルのメソッドはパネルスタック中のウィンドウの深さ管理を担います。"
#: ../../library/curses.panel.rst:57
msgid "Panel objects have the following methods:"
msgstr "Panel オブジェクトは以下のメソッドを持っています:"
#: ../../library/curses.panel.rst:62
msgid "Returns the panel above the current panel."
msgstr "現在のパネルの上にあるパネルを返します。"
#: ../../library/curses.panel.rst:67
msgid "Returns the panel below the current panel."
msgstr "現在のパネルの下にあるパネルを返します。"
#: ../../library/curses.panel.rst:72
msgid "Push the panel to the bottom of the stack."
msgstr "パネルをスタックの最下層にプッシュします。"
#: ../../library/curses.panel.rst:77
msgid ""
"Returns ``True`` if the panel is hidden (not visible), ``False`` otherwise."
msgstr ""
#: ../../library/curses.panel.rst:82
msgid ""
"Hide the panel. This does not delete the object, it just makes the window on"
" screen invisible."
msgstr "パネルを隠します。この操作ではオブジェクトは消去されず、スクリーン上のウィンドウを不可視にするだけです。"
#: ../../library/curses.panel.rst:88
msgid "Move the panel to the screen coordinates ``(y, x)``."
msgstr "パネルをスクリーン座標 ``(y, x)`` に移動します。"
#: ../../library/curses.panel.rst:93
msgid "Change the window associated with the panel to the window *win*."
msgstr "パネルに関連付けられたウィンドウを *win* に変更します。"
#: ../../library/curses.panel.rst:98
msgid ""
"Set the panel's user pointer to *obj*. This is used to associate an "
"arbitrary piece of data with the panel, and can be any Python object."
msgstr ""
"パネルのユーザポインタを *obj* に設定します。このメソッドは任意のデータをパネルに関連付けるために使われ、任意の Python "
"オブジェクトにすることができます。"
#: ../../library/curses.panel.rst:104
msgid "Display the panel (which might have been hidden)."
msgstr "(隠れているはずの) パネルを表示します。"
#: ../../library/curses.panel.rst:109
msgid "Push panel to the top of the stack."
msgstr "パネルをスタックの最上層にプッシュします。"
#: ../../library/curses.panel.rst:114
msgid ""
"Returns the user pointer for the panel. This might be any Python object."
msgstr "パネルのユーザポインタを返します。任意の Python オブジェクトです。"
#: ../../library/curses.panel.rst:119
msgid "Returns the window object associated with the panel."
msgstr "パネルに関連付けられているウィンドウオブジェクトを返します。"