/* Flowchart JavaScript, version 0.2
 * Copyright (c) 2006, Tobias Boonstoppel (boonstoppel@gmail.com)
 *
 * For details, see the Flowchart web site: http://minus3.ch/jsflowchart/
/*--------------------------------------------------------------------------*/


// --- GERMAN ---
Flowchart.prototype.language.de = {c1: 'Wollen Sie wirklich diese', c2: 'markierten Objekte l&ouml;schen?', 
				   c3: 'Editieren', 
				   c4: 'L&ouml;schen',
				   c5: 'Linie verschieben',
				   c6: 'Pfeilrichtung &auml;ndern',
				   c7: 'Farbe &auml;ndern',
				   c8: 'Verbinden',
				   c9: 'Verbindung aufheben',
				   c10: 'Neues Objekt',
				   c11: 'Diese Verbindung existiert bereits!',
				   c12: 'Verbinden nicht m&ouml;glich! Sie müssen zuerst 2 Objekte erstellen!',
	                           c13: 'am Raster ausrichten',
	                           c14: 'Exportieren'};

// --- ENGLISH ---
Flowchart.prototype.language.en = {c1: 'Do you really want to delete these ', c2: 'selected objects?', 
				   c3: 'Edit', 
				   c4: 'Delete',
				   c5: 'Move line',
				   c6: 'Change arrow direction',
				   c7: 'Change color',
				   c8: 'Connect',
				   c9: 'Remove connection',
				   c10: 'New object',
				   c11: 'This connection already exists!',
				   c12: 'Can not connect! You have to add 2 Objects first',
	                           c13: 'Adjust alignment',
	                           c14: 'Export'};

// --- FRENCH ---
Flowchart.prototype.language.fr = {c1: 'Voulez-vous supprimer',
                                  c2: 'objets s&eacute;l&eacute;ctionn&eacute;s?',
                                  c3: '&eacute;diter',
                                  c4: 'supprimer',
                                  c5: 'd&eacute;placer ligne',
                                  c6: 'changer la direction de la fl&egrave;che',
                                  c7: 'changer la couleur',
                                  c8: 'connecter',
                                  c9: 'supprimer connexion',
                                  c10: 'nouvel objet',
                                  c11: 'Cette connexion existe d&eacute;jà!',
                                  c12: 'connexion impossible! Vous devez d\'abord ajouter 2 objets.',
                                  c13: 'modifer position',
                                  c14: 'exporter'};

// --- ITALIEN ---
Flowchart.prototype.language.it = "";

// --- SPANISH ---
Flowchart.prototype.language.sp = "";





Flowchart.prototype.getText = function(id) {
  return this.language[this.lang][id] ? this.language[this.lang][id] : 'translate: '+id;
}
