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
|
// 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.)
AnselImage.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.
"Insert Image" : "<?php echo addslashes(_("Insert Image")) ?>",
"Image URL:" : "<?php echo addslashes(_("Image URL:")) ?>",
"Enter the image URL here" : "<?php echo addslashes(_("Enter the image URL here")) ?>",
"Preview" : "<?php echo addslashes(_("Preview")) ?>",
"Preview the image in a new window" : "<?php echo addslashes(_("Preview the image in a new window")) ?>",
"Alternate text:" : "<?php echo addslashes(_("Alternate text:")) ?>",
"For browsers that don't support images" : "<?php echo addslashes(_("For browsers that don't support images")) ?>",
"Positioning of this image" : "<?php echo addslashes(_("Positioning of this image")) ?>",
"Image Preview:" : "<?php echo addslashes(_("Image Preview:")) ?>",
"Gallery:" : "<?php echo addslashes(_("Gallery:")) ?>",
"Gallery to take image from" : "<?php echo addslashes(_("Gallery to take image from")) ?>",
"Image from gallery:" : "<?php echo addslashes(_("Image from gallery:")) ?>",
"Image from gallery" : "<?php echo addslashes(_("Image from gallery")) ?>"
};
|