/** * Translation source file for Simple Spreadsheet * Language: English UK * Author: Sophie Lee (spylee § gmail.com) * Created on: 11.11.2006 * ---------------------------------------------- * Released under GPL version 2 **/ var strings = new Array(); // Menu strings["English"] = "English"; strings["New"] = "New"; strings["Save"] = "Save"; strings["Print"] = "Print"; strings["Home"] = "Home"; strings["<<"] = "<<"; strings[">>"] = ">>"; strings["Up"] = "Up"; strings["Down"] = "Down"; strings["Position"] = "Position"; strings["Formula"] = "Formula"; strings["Style"] = "Style"; strings["Close"] = "Close"; strings["X"] = "X"; strings["Formulas"] = "Formulas"; strings["Styles"] = "Styles"; strings["Values"] = "Values"; strings["Help"] = "Help"; strings["Insert Row"] = "Insert Row"; strings["Insert Column"] = "Insert Column"; strings["Delete Row"] = "Delete Row"; strings["Delete Column"] = "Delete Column"; strings["Sort asc."] = "Sort asc."; strings["Sort desc."] = "Sort desc."; strings["Cut"] = "Cut"; strings["Copy"] = "Copy"; strings["Paste"] = "Paste"; strings["Empty"] = "Empty"; strings["Export to CSV"] = "Export to CSV"; strings["Export to TSV"] = "Export to TSV"; strings["Export to JS"] = "Export to JS"; strings["Load"] = "Load"; strings["Cancel"] = "Cancel"; strings["About"] = "About"; strings["Simple Spreadsheet code / CSV data / Tab separated values (copy/paste from Excel):"] = "Simple Spreadsheet code / CSV data / Tab separated values (copy/paste from Excel):"; strings["Url"] = "URL"; strings["Refresh"] = "Refresh"; strings["Auto"] = "Auto"; strings["Manual"] = "Manual"; strings["Only Javascript-like syntax"] = "Only Javascript-like syntax"; // Confirmation messages strings["Really empty cell(s) ?"] = "Really empty cell(s) ?"; strings["Really delete entire row ?"] = "Really delete entire row ?"; strings["Really delete entire column ?"] = "Really delete entire column ?"; strings["Really close without saving changes ?"] = "Really close without saving changes ?"; // Error messages strings["Error loading data:"] = "Error loading data:"; strings["Error parsing data:"] = "Error parsing data:"; strings["Error evaluating"] = "Error evaluating"; strings["Value"] = "Value"; strings["Invalid cell."] = "Invalid cell."; strings["Cannot edit: cell is marked as readonly."] = "Cannot edit: cell is marked as readonly."; strings["There was an error on this page."] = "There was an error on this page."; strings["Line:"] = "Line:"; strings["Error:"] = "Error:"; strings["Could not initialize RequestObject"] = "Could not initialize RequestObject"; strings["Error doing request to xmlhttp:"] = "Error doing request to xmlhttp:"; // Months and Days strings["January"] = "January"; strings["February"] = "February"; strings["March"] = "March"; strings["April"] = "April"; strings["May"] = "May"; strings["June"] = "June"; strings["July"] = "July"; strings["August"] = "August"; strings["September"] = "September"; strings["October"] = "October"; strings["November"] = "November"; strings["December"] = "December"; strings["Monday"] = "Monday"; strings["Tuesday"] = "Tuesday"; strings["Wednesday"] = "Wednesday"; strings["Thursday"] = "Thursday"; strings["Friday"] = "Friday"; strings["Saturday"] = "Saturday"; strings["Sunday"] = "Sunday";