1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// I18N constants
// LANG: "en", ENCODING: UTF-8 | ISO-8859-1
// Author: Mihai Bazon, http://dynarch.com/mishoo
// FOR TRANSLATORS:
//
// 1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
// (at least a valid email address)
//
// 2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
// (if this is not possible, please include a comment
// that states what encoding is necessary.)
ContextMenu.I18N = {
// Items that appear in menu. Please note that an underscore (_)
// character in the translation (right column) will cause the following
// letter to become underlined and be shortcut for that menu option.
"Cut" : "<?php echo addslashes(_("Cut")) ?>",
"Copy" : "<?php echo addslashes(_("Copy")) ?>",
"Paste" : "<?php echo addslashes(_("Paste")) ?>",
"Image Properties" : "<?php echo addslashes(_("_Image Properties...")) ?>",
"Modify Link" : "<?php echo addslashes(_("_Modify Link...")) ?>",
"Check Link" : "<?php echo addslashes(_("Chec_k Link...")) ?>",
"Remove Link" : "<?php echo addslashes(_("_Remove Link...")) ?>",
"Cell Properties" : "<?php echo addslashes(_("C_ell Properties...")) ?>",
"Row Properties" : "<?php echo addslashes(_("Ro_w Properties...")) ?>",
"Insert Row Before" : "<?php echo addslashes(_("I_nsert Row Before")) ?>",
"Insert Row After" : "<?php echo addslashes(_("In_sert Row After")) ?>",
"Delete Row" : "<?php echo addslashes(_("_Delete Row")) ?>",
"Delete Cell" : "<?php echo addslashes(_("Delete Cell")) ?>",
"Table Properties" : "<?php echo addslashes(_("_Table Properties...")) ?>",
"Insert Column Before" : "<?php echo addslashes(_("Insert _Column Before")) ?>",
"Insert Column After" : "<?php echo addslashes(_("Insert C_olumn After")) ?>",
"Delete Column" : "<?php echo addslashes(_("De_lete Column")) ?>",
"Justify Left" : "<?php echo addslashes(_("Justify Left")) ?>",
"Justify Center" : "<?php echo addslashes(_("Justify Center")) ?>",
"Justify Right" : "<?php echo addslashes(_("Justify Right")) ?>",
"Justify Full" : "<?php echo addslashes(_("Justify Full")) ?>",
"Make link" : "<?php echo addslashes(_("Make lin_k...")) ?>",
"Remove the" : "<?php echo addslashes(_("Remove the")) ?>",
"Element" : "<?php echo addslashes(_("Element...")) ?>",
"Insert paragraph before" : "<?php echo addslashes(_("Insert paragraph before")) ?>",
"Insert paragraph after" : "<?php echo addslashes(_("Insert paragraph after")) ?>",
// Other labels (tooltips and alert/confirm box messages)
"Please confirm that you want to remove this element:" : "<?php echo addslashes(_("Please confirm that you want to remove this element:")) ?>",
"Remove this node from the document" : "<?php echo addslashes(_("Remove this node from the document")) ?>",
"How did you get here? (Please report!)" : "<?php echo addslashes(_("How did you get here? (Please report!)")) ?>",
"Show the image properties dialog" : "<?php echo addslashes(_("Show the image properties dialog")) ?>",
"Modify URL" : "<?php echo addslashes(_("Modify URL")) ?>",
"Current URL is" : "<?php echo addslashes(_("Current URL is")) ?>",
"Opens this link in a new window" : "<?php echo addslashes(_("Opens this link in a new window")) ?>",
"Please confirm that you want to unlink this element." : "<?php echo addslashes(_("Please confirm that you want to unlink this element.")) ?>",
"Link points to:" : "<?php echo addslashes(_("Link points to:")) ?>",
"Unlink the current element" : "<?php echo addslashes(_("Unlink the current element")) ?>",
"Show the Table Cell Properties dialog" : "<?php echo addslashes(_("Show the Table Cell Properties dialog")) ?>",
"Show the Table Row Properties dialog" : "<?php echo addslashes(_("Show the Table Row Properties dialog")) ?>",
"Insert a new row before the current one" : "<?php echo addslashes(_("Insert a new row before the current one")) ?>",
"Insert a new row after the current one" : "<?php echo addslashes(_("Insert a new row after the current one")) ?>",
"Delete the current row" : "<?php echo addslashes(_("Delete the current row")) ?>",
"Show the Table Properties dialog" : "<?php echo addslashes(_("Show the Table Properties dialog")) ?>",
"Insert a new column before the current one" : "<?php echo addslashes(_("Insert a new column before the current one")) ?>",
"Insert a new column after the current one" : "<?php echo addslashes(_("Insert a new column after the current one")) ?>",
"Delete the current column" : "<?php echo addslashes(_("Delete the current column")) ?>",
"Create a link" : "<?php echo addslashes(_("Create a link")) ?>",
"Insert a paragraph before the current node" : "<?php echo addslashes(_("Insert a paragraph before the current node")) ?>",
"Insert a paragraph after the current node" : "<?php echo addslashes(_("Insert a paragraph after the current node")) ?>"
};
|