blob: d27ec6027e385670110f51ab0dc2c7f7d7102a45 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 1996-2000, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/NumberFormatRules_nl.java,v $
* $Date: 2000/03/10 04:07:29 $
* $Revision: 1.2 $
*
*****************************************************************************************
*/
package com.ibm.text.resources;
import java.util.ListResourceBundle;
/**
* RuleBasedNumberFormat data for Dutch
*
* @author Richard Gillam
* @version $Version$ $Date: 2000/03/10 04:07:29 $
*/
class NumberFormatRules_nl extends ListResourceBundle {
/**
* Puts a copyright in the .class file
*/
private static final String copyrightNotice
= "Copyright \u00a91997-1998 IBM Corp. All rights reserved.";
public Object[][] getContents() {
return contents;
}
Object[][] contents = {
/**
* Spellout rules for Swedish.
*/
{ "SpelloutRules",
" -x: min >>;\n"
+ "x.x: << komma >>;\n"
+ "(zero?); een; twee; drie; vier; vijf; zes; zeven; acht; negen;\n"
+ "tien; elf; twaalf; dertien; veertien; vijftien; zestien;\n"
+ "zeventien; achtien; negentien;\n"
+ "20: [>> en ]twintig;\n"
+ "30: [>> en ]dertig;\n"
+ "40: [>> en ]veertig;\n"
+ "50: [>> en ]vijftig;\n"
+ "60: [>> en ]zestig;\n"
+ "70: [>> en ]zeventig;\n"
+ "80: [>> en ]tachtig;\n"
+ "90: [>> en ]negentig;\n"
+ "100: << honderd[ >>];\n"
+ "1000: << duizend[ >>];\n"
+ "1,000,000: << miljoen[ >>];\n"
+ "1,000,000,000: << biljoen[ >>];\n"
+ "1,000,000,000,000: =#,##0=" }
// can someone supply me with information on negatives and decimals?
};
}