forked from python/python-docs-fr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaepack.po
More file actions
189 lines (154 loc) · 5.02 KB
/
Copy pathaepack.po
File metadata and controls
189 lines (154 loc) · 5.02 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2016, 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 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-10-30 10:44+0100\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/aepack.rst:3
msgid ""
":mod:`aepack` --- Conversion between Python variables and AppleEvent data "
"containers"
msgstr ""
#: ../Doc/library/aepack.rst:12
msgid ""
"The :mod:`aepack` module defines functions for converting (packing) Python "
"variables to AppleEvent descriptors and back (unpacking). Within Python the "
"AppleEvent descriptor is handled by Python objects of built-in type :class:"
"`AEDesc`, defined in module :mod:`Carbon.AE`."
msgstr ""
#: ../Doc/library/aepack.rst:19
msgid "This module has been removed in Python 3.x."
msgstr ""
#: ../Doc/library/aepack.rst:22
msgid "The :mod:`aepack` module defines the following functions:"
msgstr ""
#: ../Doc/library/aepack.rst:27
msgid ""
"Returns an :class:`AEDesc` object containing a conversion of Python value "
"x. If *forcetype* is provided it specifies the descriptor type of the "
"result. Otherwise, a default mapping of Python types to Apple Event "
"descriptor types is used, as follows:"
msgstr ""
#: ../Doc/library/aepack.rst:33
msgid "Python type"
msgstr "Type Python"
#: ../Doc/library/aepack.rst:33
msgid "descriptor type"
msgstr ""
#: ../Doc/library/aepack.rst:35
msgid ":class:`FSSpec`"
msgstr ""
#: ../Doc/library/aepack.rst:35
msgid "typeFSS"
msgstr ""
#: ../Doc/library/aepack.rst:37
msgid ":class:`FSRef`"
msgstr ""
#: ../Doc/library/aepack.rst:37
msgid "typeFSRef"
msgstr ""
#: ../Doc/library/aepack.rst:39
msgid ":class:`Alias`"
msgstr ""
#: ../Doc/library/aepack.rst:39
msgid "typeAlias"
msgstr ""
#: ../Doc/library/aepack.rst:41
msgid "integer"
msgstr ""
#: ../Doc/library/aepack.rst:41
msgid "typeLong (32 bit integer)"
msgstr ""
#: ../Doc/library/aepack.rst:43
msgid "float"
msgstr "*float*"
#: ../Doc/library/aepack.rst:43
msgid "typeFloat (64 bit floating point)"
msgstr ""
#: ../Doc/library/aepack.rst:45
msgid "string"
msgstr "*string*"
#: ../Doc/library/aepack.rst:45
msgid "typeText"
msgstr ""
#: ../Doc/library/aepack.rst:47
msgid "unicode"
msgstr ""
#: ../Doc/library/aepack.rst:47
msgid "typeUnicodeText"
msgstr ""
#: ../Doc/library/aepack.rst:49
msgid "list"
msgstr "*list*"
#: ../Doc/library/aepack.rst:49
msgid "typeAEList"
msgstr ""
#: ../Doc/library/aepack.rst:51
msgid "dictionary"
msgstr "dictionnaire"
#: ../Doc/library/aepack.rst:51
msgid "typeAERecord"
msgstr ""
#: ../Doc/library/aepack.rst:53
msgid "instance"
msgstr ""
#: ../Doc/library/aepack.rst:53
msgid "*see below*"
msgstr ""
#: ../Doc/library/aepack.rst:56
msgid ""
"If *x* is a Python instance then this function attempts to call an :meth:"
"`__aepack__` method. This method should return an :class:`AEDesc` object."
msgstr ""
#: ../Doc/library/aepack.rst:59
msgid ""
"If the conversion *x* is not defined above, this function returns the Python "
"string representation of a value (the repr() function) encoded as a text "
"descriptor."
msgstr ""
#: ../Doc/library/aepack.rst:66
msgid ""
"*x* must be an object of type :class:`AEDesc`. This function returns a "
"Python object representation of the data in the Apple Event descriptor *x*. "
"Simple AppleEvent data types (integer, text, float) are returned as their "
"obvious Python counterparts. Apple Event lists are returned as Python lists, "
"and the list elements are recursively unpacked. Object references (ex. "
"``line 3 of document 1``) are returned as instances of :class:`aetypes."
"ObjectSpecifier`, unless ``formodulename`` is specified. AppleEvent "
"descriptors with descriptor type typeFSS are returned as :class:`FSSpec` "
"objects. AppleEvent record descriptors are returned as Python dictionaries, "
"with 4-character string keys and elements recursively unpacked."
msgstr ""
#: ../Doc/library/aepack.rst:77
msgid ""
"The optional ``formodulename`` argument is used by the stub packages "
"generated by :mod:`gensuitemodule`, and ensures that the OSA classes for "
"object specifiers are looked up in the correct module. This ensures that if, "
"say, the Finder returns an object specifier for a window you get an instance "
"of ``Finder.Window`` and not a generic ``aetypes.Window``. The former knows "
"about all the properties and elements a window has in the Finder, while the "
"latter knows no such things."
msgstr ""
#: ../Doc/library/aepack.rst:89
msgid "Module :mod:`Carbon.AE`"
msgstr ""
#: ../Doc/library/aepack.rst:89
msgid "Built-in access to Apple Event Manager routines."
msgstr ""
#: ../Doc/library/aepack.rst:91
msgid "Module :mod:`aetypes`"
msgstr ""
#: ../Doc/library/aepack.rst:92
msgid "Python definitions of codes for Apple Event descriptor types."
msgstr ""