//// Language package for modified version of Cross-Browser Rich Text Editor
// Written by Malte Stær Nissen (Ms_n_123@ofir.dk)
// This code is public domain. Redistribution and use of this code, with or without modification, is permitted.

// Text language
var txt_lang = "dk";

// Language packages
var lang_pck = {
	// Danish
	dk: {
		// Buttons
		Style: "Stil",
		Paragraph: "Normal",
		Heading: "Overskrift",
		Address: "Skråskrift",
		Formatted: "Formateret",
		Font: "Skrifttype",
		Size: "Størrelse",
		Bold: "Fed",
		Italic: "Kursiv",
		Underline: "Understregning",
		AlignLeft: "Venstrejuster",
		Center: "Centrer",
		AlignRight: "Højrejuster",
		JustifyFull: "Lige Margener",
		OrderedList: "Opstilling Med Tal",
		UnorderedList: "Opstilling med Punkttegn",
		Outdent: "Forminds Indrykning",
		Indent: "Forøg Indrykning",
		TextColor: "Tekst Farve",
		BackgroundColor: "Baggrunds Farve",
		InsertLink: "Indsæt Link",
		AddImage: "Indsæt Billede",
		InsertTable: "Indsæt Tabel",
		SpellCheck: "Sprogkontrol",
		ViewSource: "Se kode",
		SuperScript: "Hævet Skrift",
		SubScript: "Sænket Skrift",
		AddMiniImage: "Indsæt billede (kan vises i fuld størrelse ved klik)",
		
		// Table properties
		Rows: "Rækker",
		Columns: "Kolonner",
		Tablewidth: "Tabel bredde",
		pixels: "pixel",
		percent: "procent",
		Borderthickness: "Kant bredde",
		Cellpadding: "Celle polstring",
		Cellspacing: "Celle afstand",
		InsertTable: "Indsæt Tabel",
		Cancel: "Annuller",
		
		// Link properties
		LinkTip: '<b>Tip:</b> For at indsætte et email link, start dit link med "mailto:"',
		URL: "Link",
		Text: "Tekst",
		Target: "Mål",
		
		// Image properties
		ImgUrl: 'Indtast billede link'
	},
	// English
	en: {
		Style: "Style",
		Paragraph: "Paragraph",
		Heading: "Heading",
		Address: "Address",
		Formatted: "Formatted",
		Font: "Font",
		Size: "Size",
		Bold: "Bold",
		Italic: "Italic",
		Underline: "Underline",
		AlignLeft: "Align Left",
		Center: "Center",
		AlignRight: "Align Right",
		JustifyFull: "Justify Full",
		OrderedList: "Ordered List",
		UnorderedList: "Unordered List",
		Outdent: "Outdent",
		Indent: "Indent",
		TextColor: "Text Color",
		BackgroundColor: "Background Color",
		InsertLink: "Insert Link",
		AddImage: "Add Image",
		InsertTable: "Insert Table",
		SpellCheck: "Spell Check",
		ViewSource: "View Source",
		SuperScript: "Hævet Skrift",
		SubScript: "Sænket Skrift",
		AddMiniImage: "Indsæt billede (can be shown at full size by clicking)",
		
		// Table properties
		Rows: "Rows",
		Columns: "Columns",
		Tablewidth: "Tabel width",
		pixels: "pixels",
		percent: "procent",
		Borderthickness: "Border thickness",
		Cellpadding: "Celle polstring",
		Cellspacing: "Celle afstand",
		InsertTable: "Indsæt Tabel",
		Cancel: "Annuller",
		
		// Link properties
		LinkTip: '<b>Tip:</b> To insert an email link, start your URL with "mailto:"',
		URL: "URL",
		Text: "Text",
		Target: "Target",
			
		// Image properties
		ImgUrl: 'Enter image url'
	}
};

function lang(txt) {
	// If no translation found, it returns the text called
	if (lang_pck[txt_lang][txt]) {
		return lang_pck[txt_lang][txt];
	} else {
		return txt;
	}
}
