import java.util.ListResourceBundle;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;

// ResourceBundle for French language

public class MyResources_fr extends ListResourceBundle {
    
    public Object[][] getContents() {
	return contents;
    }
    
    static final Object[][] contents = {
	// LOCALIZE THIS
	{"helloWorldString", "<html><center>Bonjour au monde meilleur <p> de tous les mondes possibles.</center></html>"},
	{"goodbyeWorldString", "Adieu, monde cruel! \u00c2\u00ef\u00e9"},
	// END OF MATERIAL TO LOCALIZE
    };
}

