blob: 91075a8ca21cfdbcb1b39c4f0b59f49fe119ed73 [file] [log] [blame]
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
#
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved.
#
# Oracle and Java are registered trademarks of Oracle and/or its affiliates.
# Other names may be trademarks of their respective owners.
#
# The contents of this file are subject to the terms of either the GNU
# General Public License Version 2 only ("GPL") or the Common
# Development and Distribution License("CDDL") (collectively, the
# "License"). You may not use this file except in compliance with the
# License. You can obtain a copy of the License at
# http://www.netbeans.org/cddl-gplv2.html
# or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
# specific language governing permissions and limitations under the
# License. When distributing the software, include this License Header
# Notice in each file and include the License file at
# nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the GPL Version 2 section of the License file that
# accompanied this code. If applicable, add the following below the
# License Header, with the fields enclosed by brackets [] replaced by
# your own identifying information:
# "Portions Copyrighted [year] [name of copyright owner]"
#
# Contributor(s):
#
# The Original Software is NetBeans. The Initial Developer of the Original
# Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
# Microsystems, Inc. All Rights Reserved.
#
# If you wish your version of this file to be governed by only the CDDL
# or only the GPL Version 2, indicate your decision by adding
# "[Contributor] elects to include this software in this distribution
# under the [CDDL or GPL Version 2] license." If you do not indicate a
# single choice of license, a recipient has the option to distribute
# your version of this file under either the CDDL, the GPL Version 2 or
# to extend the choice of license to its licensees as provided above.
# However, if you add GPL Version 2 code and therefore, elected the GPL
# Version 2 license, then the option applies only if the new code is
# made subject to such option by the copyright holder.
complete-line-newline=Completar Linha e Criar Nova Linha
complete-line=Completar Linha
LBL_constructor=Construtor...
LBL_generate_constructor=Gerar Construtor
LBL_super_constructor_select=Selecionar super&construtores:
LBL_constructor_select=&Selecionar os campos a serem inicializados pelo construtor:
LBL_copy_constructor=Copiar Construtor
LBL_getter=Getter...
LBL_getter_field_select=&Selecionar campos para os quais gerar getters:
LBL_setter=Setter...
LBL_setter_field_select=&Selecionar campos para os quais gerar setters:
LBL_getter_and_setter=Getter e Setter...
LBL_getter_and_setter_field_select=&Selecionar campos para os quais gerar getters e setters:
LBL_implement_method=Implementar M\u00e9todo...
LBL_generate_implement=Gerar M\u00e9todos p/Implementa\u00e7\u00e3o
LBL_implement_method_select=Selecionar m\u00e9todos para implementar:
LBL_override_method=Substituir M\u00e9todo...
LBL_generate_override=Gerar M\u00e9todos p/Substitui\u00e7\u00e3o
LBL_override_method_select=Selecionar m\u00e9todos para substituir:
LBL_delegate_method=Delegar M\u00e9todo...
LBL_generate_delegate=Gerar M\u00e9todos p/Delega\u00e7\u00e3o
LBL_delegate_field_select=Selecionar campo de destino para o qual gerar delega\u00e7\u00f5es:
LBL_delegate_method_select=Selecionar m\u00e9todos para os quais gerar delega\u00e7\u00f5es:
#A11Y Descriptions
A11Y_Generate_Constructor=Caixa de Di\u00e1logo Gerar Construtor
A11Y_Generate_Operators=Caixa de Di\u00e1logo Gerar Operadores
A11Y_Generate_Delegate=Caixa de Di\u00e1logo Delegar M\u00e9todo
A11Y_Generate_GetterSetter=Gerar M\u00e9todos Getter e Setter
A11Y_Generate_ImplementOverride=Caixa de Di\u00e1logo Implementar/Substituir M\u00e9todo
#Operators
LBL_operatorArithmetic=Operadores Aritm\u00e9ticos...
LBL_operatorRelational=Operadores Relacionais...
LBL_operatorAssignment=Operador de Designa\u00e7\u00e3o...
LBL_operatorPointer=Operadores de Ponteiro...
LBL_operatorFriendStream=Operadores de Fluxo de Amigos...
LBL_operatorBitwise=Opera\u00e7\u00f5es Bit a Bit...
LBL_operatorLogical=Operadores L\u00f3gicos...
LBL_generate_operator=Gerar Operador
LBL_operator_select=&Selecionar operadores:
MOD={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult %= right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
DIV={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult /= right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
MUL={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult *= right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
PLUS={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult += right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
MINUS={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult -= right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
PLUS_PLUS_POSTFIX={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\noperator++(); // Reutilizar o operador de prefixo\nreturn result;
MINUS_MINUS_POSTFIX={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\noperator--(); // Reutilizar o operador de prefixo\nreturn result;
AND={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult &= right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
OR={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult |= right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
XOR={0} result(*this); // Fazer uma c\u00f3pia de mim mesmo.\nresult ^= right; // Reutilizar a designa\u00e7\u00e3o composta\nreturn result;
EQ_EQ=bool result = false; // Comparar direito e *this aqui\nreturn result;
NOT_EQ=bool result = !(*this == right); // Reusar operador de igualdade\nreturn result;
LESS=return right > *this; // Reusar o operador maior que
GREATER_EQ=return !(right > *this); // Reusar o operador maior que
LESS_EQ=return !(*this > right); // Reusar o operador maior que