~ubuntu-branches/ubuntu/quantal/postgresql-9.1/quantal-proposed

« back to all changes in this revision

Viewing changes to src/pl/plperl/po/pt_BR.po

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-12-02 14:39:18 UTC
  • mfrom: (12.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20111202143918-1ftj0oo87w0y8m8d
* New upstream bug fix release:
  - Fix bugs in information_schema.referential_constraints view.
    This view was being insufficiently careful about matching the
    foreign-key constraint to the depended-on primary or unique key
    constraint. That could result in failure to show a foreign key
    constraint at all, or showing it multiple times, or claiming that
    it depends on a different constraint than the one it really does.
    Since the view definition is installed by initdb, merely upgrading
    will not fix the problem. If you need to fix this in an existing
    installation, you can (as a superuser) drop the information_schema
    schema then re-create it by sourcing
    "SHAREDIR/information_schema.sql". (Run pg_config --sharedir if
    you're uncertain where "SHAREDIR" is.) This must be repeated in
    each database to be fixed.
  - Make "contrib/citext"'s upgrade script fix collations of citext
    columns and indexes.
    Existing citext columns and indexes aren't correctly marked as
    being of a collatable data type during pg_upgrade from a pre-9.1
    server. That leads to operations on them failing with errors such
    as "could not determine which collation to use for string
    comparison". This change allows them to be fixed by the same script
    that upgrades the citext module into a proper 9.1 extension during
    CREATE EXTENSION citext FROM unpackaged.
    If you have a previously-upgraded database that is suffering from
    this problem, and you already ran the "CREATE EXTENSION" command,
    you can manually run (as superuser) the "UPDATE" commands found at
    the end of "SHAREDIR/extension/citext--unpackaged--1.0.sql". (Run
    pg_config --sharedir if you're uncertain where "SHAREDIR" is.)
  - Fix possible crash during "UPDATE" or "DELETE" that joins to the
    output of a scalar-returning function.
  - Fix incorrect replay of WAL records for GIN index updates.
  - Fix TOAST-related data corruption during CREATE TABLE dest AS
    SELECT - FROM src or INSERT INTO dest SELECT * FROM src.
  - Fix possible failures during hot standby startup.
  - Start hot standby faster when initial snapshot is incomplete.
  - Fix race condition during toast table access from stale syscache
    entries. The typical symptom was transient errors like "missing chunk
    number 0 for toast value NNNNN in pg_toast_2619", where the cited toast
    table would always belong to a system catalog.
  - Track dependencies of functions on items used in parameter default
    expressions. Previously, a referenced object could be dropped without
    having dropped or modified the function, leading to misbehavior when
    the function was used. Note that merely installing this update will not
    fix the missing dependency entries; to do that, you'd need to
    "CREATE OR REPLACE" each such function afterwards. If you have
    functions whose defaults depend on non-built-in objects, doing so
    is recommended.
  - Fix incorrect management of placeholder variables in nestloop joins.
    This bug is known to lead to "variable not found in subplan target
    list" planner errors, and could possibly result in wrong query
    output when outer joins are involved.
  - Fix window functions that sort by expressions involving aggregates.
  - Fix "MergeAppend child's targetlist doesn't match MergeAppend"
    planner errors.
  - Fix index matching for operators with both collatable and
    noncollatable inputs. In 9.1.0, an indexable operator that has a
    non-collatable left-hand input type and a collatable right-hand input
    type would not be recognized as matching the left-hand column's index.
    An example is the hstore ? text operator.
  - Allow inlining of set-returning SQL functions with multiple OUT
    parameters.
  - Don't trust deferred-unique indexes for join removal.
  - Make DatumGetInetP() unpack inet datums that have a 1-byte header,
    and add a new macro, DatumGetInetPP(), that does not.
  - Improve locale support in money type's input and output.
    Aside from not supporting all standard lc_monetary formatting
    options, the input and output functions were inconsistent, meaning
    there were locales in which dumped money values could not be
    re-read.
  - Don't let transform_null_equals affect CASE foo WHEN NULL ...
    constructs.  transform_null_equals is only supposed to affect foo =
    NULL expressions written directly by the user, not equality checks
    generated internally by this form of CASE.
  - Change foreign-key trigger creation order to better support
    self-referential foreign keys.
  - Fix IF EXISTS to work correctly in "DROP OPERATOR FAMILY".
  - Disallow dropping of an extension from within its own script.
  - Don't mark auto-generated types as extension members.
  - Cope with invalid pre-existing search_path settings during "CREATE
    EXTENSION".
  - Avoid floating-point underflow while tracking buffer allocation
    rate.
  - Prevent autovacuum transactions from running in serializable mode.
    Autovacuum formerly used the cluster-wide default transaction
    isolation level, but there is no need for it to use anything higher
    than READ COMMITTED, and using SERIALIZABLE could result in
    unnecessary delays for other processes.
  - Ensure walsender processes respond promptly to SIGTERM.
  - Exclude "postmaster.opts" from base backups.
  - Fix incorrect field alignment in ecpg's SQLDA area.
  - Preserve blank lines within commands in psql's command history.
    The former behavior could cause problems if an empty line was
    removed from within a string literal, for example.
  - Avoid platform-specific infinite loop in pg_dump.
  - Fix compression of plain-text output format in pg_dump.
    pg_dump has historically understood -Z with no -F switch to mean
    that it should emit a gzip-compressed version of its plain text
    output. Restore that behavior.
  - Fix pg_dump to dump user-defined casts between auto-generated
    types, such as table rowtypes.
  - Fix missed quoting of foreign server names in pg_dump.
  - Assorted fixes for pg_upgrade. Handle exclusion constraints correctly,
    avoid failures on Windows, don't complain about mismatched toast table
    names in 8.4 databases.
  - In PL/pgSQL, allow foreign tables to define row types.
  - Fix up conversions of PL/Perl functions' results.
    Restore the pre-9.1 behavior that PL/Perl functions returning void
    ignore the result value of their last Perl statement; 9.1.0 would
    throw an error if that statement returned a reference. Also, make
    sure it works to return a string value for a composite type, so
    long as the string meets the type's input format. In addition,
    throw errors for attempts to return Perl arrays or hashes when the
    function's declared result type is not an array or composite type,
    respectively. (Pre-9.1 versions rather uselessly returned strings
    like ARRAY(0x221a9a0) or HASH(0x221aa90) in such cases.)
  - Ensure PL/Perl strings are always correctly UTF8-encoded.
  - Use the preferred version of xsubpp to build PL/Perl, not
    necessarily the operating system's main copy.
  - Correctly propagate SQLSTATE in PL/Python exceptions.
  - Do not install PL/Python extension files for Python major versions
    other than the one built against.
  - Change all the "contrib" extension script files to report a useful
    error message if they are fed to psql. This should help teach people
    about the new method of using "CREATE EXTENSION" to load these files.
    In most cases, sourcing the scripts directly would fail anyway, but
    with harder-to-interpret messages.
  - Fix incorrect coding in "contrib/dict_int" and "contrib/dict_xsyn".
  - Remove "contrib/sepgsql" tests from the regular regression test
    mechanism. Since these tests require root privileges for setup, they're
    impractical to run automatically. Switch over to a manual approach
    instead, and provide a testing script to help with that.
  - Fix assorted errors in "contrib/unaccent"'s configuration file
    parsing.
  - Honor query cancel interrupts promptly in pgstatindex().
  - Revert unintentional enabling of WAL_DEBUG. Fortunately, as debugging
    tools go, this one is pretty cheap; but it's not intended to be enabled
    by default, so revert.
  - Ensure VPATH builds properly install all server header files.
  - Shorten file names reported in verbose error messages.
    Regular builds have always reported just the name of the C file
    containing the error message call, but VPATH builds formerly
    reported an absolute path name.
* debian/rules: Fix build failure for binary-indep-only builds.
  (Closes: #646079)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
msgstr ""
8
8
"Project-Id-Version: PostgreSQL 9.1\n"
9
9
"Report-Msgid-Bugs-To: pgsql-bugs@postgresql.org\n"
10
 
"POT-Creation-Date: 2011-06-25 18:29-0300\n"
 
10
"POT-Creation-Date: 2011-11-30 16:16-0300\n"
11
11
"PO-Revision-Date: 2009-05-10 01:12-0300\n"
12
12
"Last-Translator: Euler Taveira de Oliveira <euler@timbira.com>\n"
13
13
"Language-Team: Brazilian Portuguese <pgbr-dev@listas.postgresql.org.br>\n"
16
16
"Content-Type: text/plain; charset=UTF-8\n"
17
17
"Content-Transfer-Encoding: 8bit\n"
18
18
 
19
 
#: plperl.c:361
 
19
#: plperl.c:364
20
20
msgid ""
21
21
"If true, trusted and untrusted Perl code will be compiled in strict mode."
22
22
msgstr ""
23
23
"Se verdadeiro, código Perl confiável e não-confiável será compilado em modo "
24
24
"estrito."
25
25
 
26
 
#: plperl.c:375
 
26
#: plperl.c:378
27
27
msgid ""
28
28
"Perl initialization code to execute when a Perl interpreter is initialized."
29
29
msgstr ""
30
30
"Código de inicialização Perl executado quando um interpretador Perl for "
31
31
"inicializado."
32
32
 
33
 
#: plperl.c:397
 
33
#: plperl.c:400
34
34
msgid "Perl initialization code to execute once when plperl is first used."
35
35
msgstr ""
36
36
"Código de inicialização Perl executado quando plperl for utilizado pela "
37
37
"primeira vez."
38
38
 
39
 
#: plperl.c:405
 
39
#: plperl.c:408
40
40
msgid "Perl initialization code to execute once when plperlu is first used."
41
41
msgstr ""
42
42
"Código de inicialização Perl executado quando plperlu for utilizado pela "
43
43
"primeira vez."
44
44
 
45
 
#: plperl.c:622 plperl.c:784 plperl.c:789 plperl.c:893 plperl.c:904
46
 
#: plperl.c:945 plperl.c:966 plperl.c:1863 plperl.c:1958 plperl.c:2020
 
45
#: plperl.c:625 plperl.c:787 plperl.c:792 plperl.c:896 plperl.c:907
 
46
#: plperl.c:948 plperl.c:969 plperl.c:1942 plperl.c:2037 plperl.c:2099
47
47
#, c-format
48
48
msgid "%s"
49
49
msgstr "%s"
50
50
 
51
 
#: plperl.c:623
 
51
#: plperl.c:626
52
52
msgid "while executing PostgreSQL::InServer::SPI::bootstrap"
53
53
msgstr "ao executar PostgreSQL::InServer::SPI::bootstrap"
54
54
 
55
 
#: plperl.c:785
 
55
#: plperl.c:788
56
56
msgid "while parsing Perl initialization"
57
57
msgstr "ao analisar código de inicialização Perl"
58
58
 
59
 
#: plperl.c:790
 
59
#: plperl.c:793
60
60
msgid "while running Perl initialization"
61
61
msgstr "ao executar código de inicialização Perl"
62
62
 
63
 
#: plperl.c:894
 
63
#: plperl.c:897
64
64
msgid "while executing PLC_TRUSTED"
65
65
msgstr "ao executar PLC_TRUSTED"
66
66
 
67
 
#: plperl.c:905
 
67
#: plperl.c:908
68
68
msgid "while executing utf8fix"
69
69
msgstr "ao executar utf8fix"
70
70
 
71
 
#: plperl.c:946
 
71
#: plperl.c:949
72
72
msgid "while executing plperl.on_plperl_init"
73
73
msgstr "ao executar plperl.on_plperl_init"
74
74
 
75
 
#: plperl.c:967
 
75
#: plperl.c:970
76
76
msgid "while executing plperl.on_plperlu_init"
77
77
msgstr "ao executar plperl.on_plperlu_init"
78
78
 
79
 
#: plperl.c:1013 plperl.c:1536
 
79
#: plperl.c:1014 plperl.c:1614
80
80
#, c-format
81
81
msgid "Perl hash contains nonexistent column \"%s\""
82
82
msgstr "hash Perl contém coluna inexistente \"%s\""
83
83
 
84
 
#: plperl.c:1095
 
84
#: plperl.c:1099
85
85
#, c-format
86
86
msgid "number of array dimensions (%d) exceeds the maximum allowed (%d)"
87
87
msgstr "número de dimensões da matriz (%d) excede o máximo permitido (%d)"
88
88
 
89
 
#: plperl.c:1109
 
89
#: plperl.c:1111 plperl.c:1128
90
90
msgid ""
91
91
"multidimensional arrays must have array expressions with matching dimensions"
92
92
msgstr ""
93
93
"matrizes multidimensionais devem ter expressões de matriz com dimensões "
94
94
"correspondentes"
95
95
 
96
 
#: plperl.c:1214
 
96
#: plperl.c:1165
 
97
#, c-format
 
98
msgid "cannot convert Perl array to non-array type %s"
 
99
msgstr "não pode converter array Perl para tipo que não é array %s"
 
100
 
 
101
#: plperl.c:1261
 
102
#, c-format
 
103
msgid "cannot convert Perl hash to non-composite type %s"
 
104
msgstr "não pode converter hash Perl para tipo não-composto %s"
 
105
 
 
106
#: plperl.c:1272
 
107
msgid ""
 
108
"function returning record called in context that cannot accept type record"
 
109
msgstr ""
 
110
"função que retorna record foi chamada em um contexto que não pode aceitar "
 
111
"tipo record"
 
112
 
 
113
#: plperl.c:1287
97
114
msgid "PL/Perl function must return reference to hash or array"
98
115
msgstr "função PL/Perl deve retornar referência a um hash ou uma matriz"
99
116
 
100
 
#: plperl.c:1513
 
117
#: plperl.c:1591
101
118
msgid "$_TD->{new} does not exist"
102
119
msgstr "$_TD->{new} não existe"
103
120
 
104
 
#: plperl.c:1517
 
121
#: plperl.c:1595
105
122
msgid "$_TD->{new} is not a hash reference"
106
123
msgstr "$_TD->{new} não é uma referência hash"
107
124
 
108
 
#: plperl.c:1740 plperl.c:2471
 
125
#: plperl.c:1819 plperl.c:2517
109
126
#, c-format
110
127
msgid "PL/Perl functions cannot return type %s"
111
128
msgstr "funções PL/Perl não podem retornar tipo %s"
112
129
 
113
 
#: plperl.c:1753 plperl.c:2518
 
130
#: plperl.c:1832 plperl.c:2564
114
131
#, c-format
115
132
msgid "PL/Perl functions cannot accept type %s"
116
133
msgstr "funções PL/Perl não podem aceitar tipo %s"
117
134
 
118
 
#: plperl.c:1867
 
135
#: plperl.c:1946
119
136
#, c-format
120
137
msgid "didn't get a CODE reference from compiling function \"%s\""
121
138
msgstr "não obteve uma referência CODE da compilação da função \"%s\""
122
139
 
123
 
#: plperl.c:2072
 
140
#: plperl.c:2150
124
141
msgid "set-valued function called in context that cannot accept a set"
125
142
msgstr ""
126
143
"função que tem argumento do tipo conjunto foi chamada em um contexto que não "
127
144
"pode aceitar um conjunto"
128
145
 
129
 
#: plperl.c:2116
 
146
#: plperl.c:2194
130
147
msgid ""
131
148
"set-returning PL/Perl function must return reference to array or use "
132
149
"return_next"
134
151
"funçao PL/Perl que retorna conjunto deve retornar referência para matriz ou "
135
152
"usar return_next"
136
153
 
137
 
#: plperl.c:2145
138
 
msgid "composite-returning PL/Perl function must return reference to hash"
139
 
msgstr "função que retorna tipo composto deve retornar referência a um hash"
140
 
 
141
 
#: plperl.c:2154
142
 
msgid ""
143
 
"function returning record called in context that cannot accept type record"
144
 
msgstr ""
145
 
"função que retorna record foi chamada em um contexto que não pode aceitar "
146
 
"tipo record"
147
 
 
148
 
#: plperl.c:2268
 
154
#: plperl.c:2314
149
155
msgid "ignoring modified row in DELETE trigger"
150
156
msgstr "ignorando registro modificado em gatilho DELETE"
151
157
 
152
 
#: plperl.c:2276
 
158
#: plperl.c:2322
153
159
msgid ""
154
160
"result of PL/Perl trigger function must be undef, \"SKIP\", or \"MODIFY\""
155
161
msgstr ""
156
162
"resultado da função de gatilho PL/Perl deve ser undef, \"SKIP\" ou \"MODIFY\""
157
163
 
158
 
#: plperl.c:2402 plperl.c:2408
 
164
#: plperl.c:2448 plperl.c:2454
159
165
msgid "out of memory"
160
166
msgstr "sem memória"
161
167
 
162
 
#: plperl.c:2462
 
168
#: plperl.c:2508
163
169
msgid "trigger functions can only be called as triggers"
164
170
msgstr "funções de gatilho só podem ser chamadas como gatilhos"
165
171
 
166
 
#: plperl.c:2838
 
172
#: plperl.c:2884
167
173
msgid "cannot use return_next in a non-SETOF function"
168
174
msgstr "não pode utilizar return_next em uma função que não retorna conjunto"
169
175
 
170
 
#: plperl.c:2844
 
176
#: plperl.c:2940
171
177
msgid ""
172
178
"SETOF-composite-returning PL/Perl function must call return_next with "
173
179
"reference to hash"
175
181
"função PL/Perl que retorna um conjunto de tipo composto deve chamar "
176
182
"return_next com referência a um hash"
177
183
 
178
 
#: plperl.c:3610
 
184
#: plperl.c:3655
179
185
#, c-format
180
186
msgid "PL/Perl function \"%s\""
181
187
msgstr "função PL/Perl \"%s\""
182
188
 
183
 
#: plperl.c:3622
 
189
#: plperl.c:3667
184
190
#, c-format
185
191
msgid "compilation of PL/Perl function \"%s\""
186
192
msgstr "compilação da função PL/Perl \"%s\""
187
193
 
188
 
#: plperl.c:3631
 
194
#: plperl.c:3676
189
195
msgid "PL/Perl anonymous code block"
190
196
msgstr "bloco de código PL/Perl anônimo"