9
9
# Vinicius Gubiani Ferreira <[email protected] >, 2023
10
10
# Marco Rougeth <[email protected] >, 2023
11
11
# Rafael Fontenelle <[email protected] >, 2023
12
+ # Patricia Mortada, 2023
12
13
#
13
14
#, fuzzy
14
15
msgid ""
@@ -17,7 +18,7 @@ msgstr ""
17
18
"Report-Msgid-Bugs-To : \n "
18
19
"POT-Creation-Date : 2023-08-11 14:13+0000\n "
19
20
"PO-Revision-Date : 2021-06-28 01:05+0000\n "
20
- "
Last-Translator :
Rafael Fontenelle <[email protected] > , 2023\n"
21
+ "Last-Translator : Patricia Mortada , 2023\n "
21
22
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
22
23
"teams/5390/pt_BR/)\n "
23
24
"MIME-Version : 1.0\n "
@@ -1121,6 +1122,8 @@ msgid ""
1121
1122
"Raised when an operation on a child process failed. Corresponds to :c:data:"
1122
1123
"`errno` :py:const:`~errno.ECHILD`."
1123
1124
msgstr ""
1125
+ "Levantada quando uma operação em um processo filho falha. Corresponde a :c:"
1126
+ "data:`errno` :py:const:`~errno.ECHILD`."
1124
1127
1125
1128
#: ../../library/exceptions.rst:681
1126
1129
msgid "A base class for connection-related issues."
@@ -1141,44 +1144,63 @@ msgid ""
1141
1144
"has been shutdown for writing. Corresponds to :c:data:`errno` :py:const:"
1142
1145
"`~errno.EPIPE` and :py:const:`~errno.ESHUTDOWN`."
1143
1146
msgstr ""
1147
+ "Uma subclasse de :exc:`ConnectionError`, levantada ao tentar escrever em um "
1148
+ "encadeamento, enquanto a outra extremidade foi fechada, ou ao tentar "
1149
+ "escrever em um soquete que foi desligado para escrita. Corresponde a :c:"
1150
+ "data:`errno` :py:const:`~errno.EPIPE` e :py:const:`~errno.ESHUTDOWN`."
1144
1151
1145
1152
#: ../../library/exceptions.rst:695
1146
1153
msgid ""
1147
1154
"A subclass of :exc:`ConnectionError`, raised when a connection attempt is "
1148
1155
"aborted by the peer. Corresponds to :c:data:`errno` :py:const:`~errno."
1149
1156
"ECONNABORTED`."
1150
1157
msgstr ""
1158
+ "Uma subclasse de :exc:`ConnectionError`, levantada quando uma tentativa de "
1159
+ "conexão é cancelada pelo par. Corresponde a :c:data:`errno` :py:const:"
1160
+ "`~errno.ECONNABORTED`."
1151
1161
1152
1162
#: ../../library/exceptions.rst:701
1153
1163
msgid ""
1154
1164
"A subclass of :exc:`ConnectionError`, raised when a connection attempt is "
1155
1165
"refused by the peer. Corresponds to :c:data:`errno` :py:const:`~errno."
1156
1166
"ECONNREFUSED`."
1157
1167
msgstr ""
1168
+ "Uma subclasse de :exc:`ConnectionError`, levantada quando uma tentativa de "
1169
+ "conexão é recusada pelo par. Corresponde a :c:data:`errno` :py:const:`~errno."
1170
+ "ECONNREFUSED`."
1158
1171
1159
1172
#: ../../library/exceptions.rst:707
1160
1173
msgid ""
1161
1174
"A subclass of :exc:`ConnectionError`, raised when a connection is reset by "
1162
1175
"the peer. Corresponds to :c:data:`errno` :py:const:`~errno.ECONNRESET`."
1163
1176
msgstr ""
1177
+ "Uma subclasse de :exc:`ConnectionError`, levantada quando uma conexão é "
1178
+ "redefinida pelo par. Corresponde a :c:data:`errno` :py:const:`~errno."
1179
+ "ECONNRESET`."
1164
1180
1165
1181
#: ../../library/exceptions.rst:713
1166
1182
msgid ""
1167
1183
"Raised when trying to create a file or directory which already exists. "
1168
1184
"Corresponds to :c:data:`errno` :py:const:`~errno.EEXIST`."
1169
1185
msgstr ""
1186
+ "Levantada ao tentar criar um arquivo ou diretório que já existe. Corresponde "
1187
+ "a :c:data:`errno` :py:const:`~errno.EEXIST`."
1170
1188
1171
1189
#: ../../library/exceptions.rst:718
1172
1190
msgid ""
1173
1191
"Raised when a file or directory is requested but doesn't exist. Corresponds "
1174
1192
"to :c:data:`errno` :py:const:`~errno.ENOENT`."
1175
1193
msgstr ""
1194
+ "Levantada quando um arquivo ou diretório é solicitado, mas não existe. "
1195
+ "Corresponde a :c:data:`errno` :py:const:`~errno.ENOENT`."
1176
1196
1177
1197
#: ../../library/exceptions.rst:723
1178
1198
msgid ""
1179
1199
"Raised when a system call is interrupted by an incoming signal. Corresponds "
1180
1200
"to :c:data:`errno` :py:const:`~errno.EINTR`."
1181
1201
msgstr ""
1202
+ "Levantada quando uma chamada do sistema é interrompida por um sinal de "
1203
+ "entrada. Corresponde a :c:data:`errno` :py:const:`~errno.EINTR`."
1182
1204
1183
1205
#: ../../library/exceptions.rst:726
1184
1206
msgid ""
@@ -1196,6 +1218,9 @@ msgid ""
1196
1218
"Raised when a file operation (such as :func:`os.remove`) is requested on a "
1197
1219
"directory. Corresponds to :c:data:`errno` :py:const:`~errno.EISDIR`."
1198
1220
msgstr ""
1221
+ "Levantada quando uma operação de arquivo (como :func:`os.remove`) é "
1222
+ "solicitada em um diretório. Corresponde a :c:data:`errno` :py:const:`~errno."
1223
+ "EISDIR`."
1199
1224
1200
1225
#: ../../library/exceptions.rst:739
1201
1226
msgid ""
@@ -1205,6 +1230,11 @@ msgid ""
1205
1230
"as if it were a directory. Corresponds to :c:data:`errno` :py:const:`~errno."
1206
1231
"ENOTDIR`."
1207
1232
msgstr ""
1233
+ "Levantada quando uma operação de diretório (como :func:`os.listdir`) é "
1234
+ "solicitada em algo que não é um diretório. Na maioria das plataformas POSIX, "
1235
+ "ela também pode ser levantada se uma operação tentar abrir ou percorrer um "
1236
+ "arquivo não pertencente ao diretório como se fosse um diretório. Corresponde "
1237
+ "a :c:data:`errno` :py:const:`~errno.ENOTDIR`."
1208
1238
1209
1239
#: ../../library/exceptions.rst:747
1210
1240
msgid ""
@@ -1213,24 +1243,34 @@ msgid ""
1213
1243
"`~errno.EACCES`, :py:const:`~errno.EPERM`, and :py:const:`~errno."
1214
1244
"ENOTCAPABLE`."
1215
1245
msgstr ""
1246
+ "Levantada ao tentar executar uma operação sem os direitos de acesso "
1247
+ "adequados -- por exemplo, permissões do sistema de arquivos. Corresponde a :"
1248
+ "c:data:`errno` :py:const:`~errno.EACCES`, :py:const:`~errno.EPERM`, e :py:"
1249
+ "const:`~errno.ENOTCAPABLE`."
1216
1250
1217
1251
#: ../../library/exceptions.rst:752
1218
1252
msgid ""
1219
1253
"WASI's :py:const:`~errno.ENOTCAPABLE` is now mapped to :exc:"
1220
1254
"`PermissionError`."
1221
1255
msgstr ""
1256
+ ":py:const:`~errno.ENOTCAPABLE` do WASI agora é mapeado para:exc:"
1257
+ "`PermissionError`."
1222
1258
1223
1259
#: ../../library/exceptions.rst:758
1224
1260
msgid ""
1225
1261
"Raised when a given process doesn't exist. Corresponds to :c:data:`errno` :"
1226
1262
"py:const:`~errno.ESRCH`."
1227
1263
msgstr ""
1264
+ "Levantada quando um determinado processo não existe. Corresponde a :c:data:"
1265
+ "`errno` :py:const:`~errno.ESRCH`."
1228
1266
1229
1267
#: ../../library/exceptions.rst:763
1230
1268
msgid ""
1231
1269
"Raised when a system function timed out at the system level. Corresponds to :"
1232
1270
"c:data:`errno` :py:const:`~errno.ETIMEDOUT`."
1233
1271
msgstr ""
1272
+ "Levantada quando uma função do sistema expirou no nível do sistema. "
1273
+ "Corresponde a :c:data:`errno` :py:const:`~errno.ETIMEDOUT`."
1234
1274
1235
1275
#: ../../library/exceptions.rst:766
1236
1276
msgid "All the above :exc:`OSError` subclasses were added."
0 commit comments