/* Calculator - Label Resources for German Language
Copyright (C) 1998-2003 Cedar Spring Software, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Cedar Spring Software, Inc.
PO Box 1216
Gresham, OR 97030
http://www.cedarspring.com
*/
package finance;
import java.util.*;
public class LabelResource_de extends java.util.ListResourceBundle {
static final Object[][] contents = new String[][]{
{ "Present_Value", "Barwert" },
{ "Periods", "Perioden" },
{ "Rate", "Zinssatz" },
{ "Payment", "Zahlung" },
{ "Future_Value", "Endwert" },
{ "Message", "Meldung:" },
{ "Amortize", "Tilgungsplan erstellen"},
{ "Payments_Per_Year", "Zahlungen pro Jahr" },
{ "Scale", "Dezimalsystem" },
{ "Compounding", "Zinseszins pro Jahr" },
{ "Pay_at_end", "End Modus" },
{ "Round", "Runden" },
{ "Reset", "Zur\u00fccksetzen" },
{ "Clear", "L\u00f6schen" },
{ "Options", "Optionen" },
{ "Display", "Anzeigen" },
{ "effective", "EZ" },
{ "Principal", "Kapital" },
{ "Interest", "Zinsen" },
{ "Balance", "Saldo"},
{ "Pad", " "},
{ "Patience", "Plan wird erstellt..."}
};
public Object[][] getContents() {
return contents;
}
}