1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
10000
5
#
@@ -15,7 +15,7 @@ msgid ""
15
15
msgstr ""
16
16
"Project-Id-Version : Python 3.12\n "
17
17
"Report-Msgid-Bugs-To : \n "
18
- "POT-Creation-Date : 2023-12-15 14:14+0000\n "
18
+ "POT-Creation-Date : 2024-01-05 14:14+0000\n "
19
19
"PO-Revision-Date : 2021-06-28 00:57+0000\n "
20
20
"Last-Translator : Vitor Buxbaum Orlandi, 2023\n "
21
21
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -167,8 +167,8 @@ msgstr ""
167
167
168
168
#: ../../library/configparser.rst:211
169
169
msgid ""
170
- "As with a dictionary, you can use a section's :meth:`get` method to provide "
171
- "fallback values:"
170
+ "As with a dictionary, you can use a section's :meth:`~ConfigParser. get` "
171
+ "method to provide fallback values:"
172
172
msgstr ""
173
173
174
174
#: ../../library/configparser.rst:224
@@ -182,10 +182,10 @@ msgstr ""
182
182
183
183
#: ../../library/configparser.rst:235
184
184
msgid ""
185
- "One more thing to be aware of is that the parser-level :meth:`get` method "
186
- "provides a custom, more complex interface, maintained for backwards "
187
- "compatibility. When using this method, a fallback value can be provided via "
188
- "the ``fallback`` keyword-only argument:"
185
+ "One more thing to be aware of is that the parser-level :meth:`~ConfigParser. "
186
+ "get` method provides a custom, more complex interface, maintained for "
187
+ "backwards compatibility. When using this method, a fallback value can be "
188
+ "provided via the ``fallback`` keyword-only argument:"
189
189
msgstr ""
190
190
191
191
#: ../../library/configparser.rst:246
@@ -214,8 +214,8 @@ msgstr ""
214
214
215
215
#: ../../library/configparser.rst:274
216
216
msgid ""
217
- "By default, a valid section name can be any string that does not contain '\\ "
218
- "\\ n' or ']' . To change this, see :attr:`ConfigParser.SECTCRE`."
217
+ "By default, a valid section name can be any string that does not contain '\\ "
218
+ "\\ n'. To change this, see :attr:`ConfigParser.SECTCRE`."
219
219
msgstr ""
220
220
221
221
#: ../../library/configparser.rst:277
@@ -389,7 +389,7 @@ msgstr ""
389
389
#: ../../library/configparser.rst:483
390
390
msgid ""
391
391
"The most common way to change the way a specific config parser works is to "
392
- "use the :meth:`__init__` options:"
392
+ "use the :meth:`! __init__` options:"
393
393
msgstr ""
394
394
395
395
#: ../../library/configparser.rst:486
@@ -407,7 +407,7 @@ msgstr ""
407
407
#: ../../library/configparser.rst:493
408
408
msgid ""
409
409
"Hint: if you want to specify default values for a specific section, use :"
410
- "meth:`read_dict` before you read the actual file."
410
+ "meth:`~ConfigParser. read_dict` before you read the actual file."
411
411
msgstr ""
412
412
413
413
#: ../../library/configparser.rst:496
@@ -505,9 +505,9 @@ msgstr "*strict*, o valor padrão é: ``True``"
505
505
#: ../../library/configparser.rst:637
506
506
msgid ""
507
507
"When set to ``True``, the parser will not allow for any section or option "
508
- "duplicates while reading from a single source (using :meth:`read_file`, : "
509
- "meth:`read_string` or :meth:`read_dict`). It is recommended to use strict "
510
- "parsers in new applications."
508
+ "duplicates while reading from a single source (using :meth:`~ConfigParser. "
509
+ "read_file`, : meth:`~ConfigParser. read_string` or :meth:`~ConfigParser. "
510
+ "read_dict`). It is recommended to use strict parsers in new applications."
511
511
msgstr ""
512
512
513
513
#: ../../library/configparser.rst:642
@@ -587,7 +587,7 @@ msgid ""
587
587
"be desirable, users may define them in a subclass or pass a dictionary where "
588
588
"each key is a name of the converter and each value is a callable "
589
589
"implementing said conversion. For instance, passing ``{'decimal': decimal."
590
- "Decimal}`` would add :meth:`getdecimal` on both the parser object and all "
590
+ "Decimal}`` would add :meth:`! getdecimal` on both the parser object and all "
591
591
"section proxies. In other words, it will be possible to write both "
592
592
"``parser_instance.getdecimal('section', 'key', fallback=0)`` and "
593
593
"``parser_instance['section'].getdecimal('key', 0)``."
@@ -870,13 +870,13 @@ msgstr ""
870
870
#: ../../library/configparser.rst:1064
871
871
msgid ""
872
872
"Optional argument *source* specifies the name of the file being read. If "
873
- "not given and *f* has a :attr:`name` attribute, that is used for *source*; "
873
+ "not given and *f* has a :attr:`! name` attribute, that is used for *source*; "
874
874
"the default is ``'<???>'``."
875
875
msgstr ""
876
876
877
877
#: ../../library/configparser.rst:1068
878
- msgid "Replaces :meth:`readfp`."
879
- msgstr "Substitui :meth:`readfp`. "
878
+ msgid "Replaces :meth:`! readfp`."
879
+ msgstr ""
880
880
881
881
#: ../../library/configparser.rst:1073
882
882
msgid "Parse configuration data from a string."
@@ -1038,9 +1038,9 @@ msgstr ""
1038
1038
1039
1039
#: ../../library/configparser.rst:1217
1040
1040
msgid ""
1041
- "The maximum depth for recursive interpolation for :meth:`get` when the *raw* "
1042
- "parameter is false. This is relevant only when the default *interpolation* "
1043
- "is used."
1041
+ "The maximum depth for recursive interpolation for :meth:`~configparser. "
1042
+ "ConfigParser.get` when the *raw* parameter is false. This is relevant only "
1043
+ "when the default *interpolation* is used."
1044
1044
msgstr ""
1045
1045
1046
1046
#: ../../library/configparser.rst:1225
@@ -1107,15 +1107,15 @@ msgstr ""
1107
1107
1108
1108
#: ../../library/configparser.rst:1290
1109
1109
msgid ""
1110
- "Exception raised if :meth:`add_section` is called with the name of a section "
1111
- "that is already present or in strict parsers when a section if found more "
1112
- "than once in a single input file, string or dictionary."
1110
+ "Exception raised if :meth:`~ConfigParser. add_section` is called with the "
1111
+ "name of a section that is already present or in strict parsers when a "
1112
+ "section if found more than once in a single input file, string or dictionary."
1113
1113
msgstr ""
1114
1114
1115
1115
#: ../../library/configparser.rst:1294
1116
1116
msgid ""
1117
- "Optional ``source`` and ``lineno`` attributes and arguments to :meth:"
1118
- "` __init__` were added."
1117
+ "Optional ``source`` and ``lineno`` attributes and arguments to :meth:`! "
1118
+ "__init__` were added."
1119
1119
msgstr ""
1120
1120
1121
1121
#: ../../library/configparser.rst:1301
@@ -1169,7 +1169,7 @@ msgstr ""
1169
1169
1170
1170
#: ../../library/configparser.rst:1348
1171
1171
msgid ""
1172
- "The ``filename`` attribute and :meth:`__init__` constructor argument were "
1172
+ "The ``filename`` attribute and :meth:`! __init__` constructor argument were "
1173
1173
"removed. They have been available using the name ``source`` since 3.2."
1174
1174
msgstr ""
1175
1175
0 commit comments