01: /*
02: *******************************************************************************
03: * Copyright (C) 1996-2005, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07:
08: package com.ibm.icu.impl.data;
09:
10: import java.util.ListResourceBundle;
11:
12: public class HolidayBundle_it extends ListResourceBundle {
13: static private final Object[][] fContents = {
14: { "All Saints' Day", "Ognissanti" },
15: { "Armistice Day", "armistizio" },
16: { "Ascension", "ascensione" },
17: { "Ash Wednesday", "mercoled\u00ec delle ceneri" },
18: { "Boxing Day", "Santo Stefano" },
19: { "Christmas", "natale" }, { "Easter Sunday", "pasqua" },
20: { "Epiphany", "Epifania" },
21: { "Good Friday", "venerd\u00ec santo" },
22: { "Halloween", "vigilia di Ognissanti" },
23: { "Maundy Thursday", "gioved\u00ec santo" },
24: { "New Year's Day", "anno nuovo" },
25: { "Palm Sunday", "domenica delle palme" },
26: { "Pentecost", "di Pentecoste" },
27: { "Shrove Tuesday", "martedi grasso" },
28: { "St. Stephen's Day", "Santo Stefano" },
29: { "Thanksgiving", "Giorno del Ringraziamento" },
30:
31: };
32:
33: public synchronized Object[][] getContents() {
34: return fContents;
35: }
36: }
|