2004-01-08 10:03:17 +01:00
|
|
|
// I18N constants
|
|
|
|
|
|
|
|
// LANG: "en", ENCODING: UTF-8 | ISO-8859-1
|
2004-01-29 22:27:14 +01:00
|
|
|
// Author: Mihai Bazon, http://dynarch.com/mishoo
|
2004-01-08 10:03:17 +01:00
|
|
|
|
|
|
|
// 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.)
|
|
|
|
|
|
|
|
HTMLArea.I18N = {
|
|
|
|
|
|
|
|
// the following should be the filename without .js extension
|
|
|
|
// it will be used for automatically load plugin language.
|
|
|
|
lang: "en",
|
|
|
|
|
|
|
|
tooltips: {
|
|
|
|
bold: "Bold",
|
|
|
|
italic: "Italic",
|
|
|
|
underline: "Underline",
|
|
|
|
strikethrough: "Strikethrough",
|
|
|
|
subscript: "Subscript",
|
|
|
|
superscript: "Superscript",
|
|
|
|
justifyleft: "Justify Left",
|
|
|
|
justifycenter: "Justify Center",
|
|
|
|
justifyright: "Justify Right",
|
|
|
|
justifyfull: "Justify Full",
|
|
|
|
orderedlist: "Ordered List",
|
|
|
|
unorderedlist: "Bulleted List",
|
|
|
|
outdent: "Decrease Indent",
|
|
|
|
indent: "Increase Indent",
|
|
|
|
forecolor: "Font Color",
|
|
|
|
hilitecolor: "Background Color",
|
|
|
|
horizontalrule: "Horizontal Rule",
|
|
|
|
createlink: "Insert Web Link",
|
2004-01-29 22:27:14 +01:00
|
|
|
insertimage: "Insert/Modify Image",
|
2004-01-08 10:03:17 +01:00
|
|
|
inserttable: "Insert Table",
|
|
|
|
htmlmode: "Toggle HTML Source",
|
|
|
|
popupeditor: "Enlarge Editor",
|
|
|
|
about: "About this editor",
|
|
|
|
showhelp: "Help using editor",
|
|
|
|
textindicator: "Current style",
|
|
|
|
undo: "Undoes your last action",
|
|
|
|
redo: "Redoes your last action",
|
|
|
|
cut: "Cut selection",
|
|
|
|
copy: "Copy selection",
|
2004-01-29 22:27:14 +01:00
|
|
|
paste: "Paste from clipboard",
|
|
|
|
lefttoright: "Direction left to right",
|
2005-06-18 22:43:14 +02:00
|
|
|
righttoleft: "Direction right to left",
|
|
|
|
removeformat: "Remove formatting",
|
|
|
|
print: "Print document",
|
|
|
|
killword: "Clear MSOffice tags"
|
2004-01-08 10:03:17 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
buttons: {
|
|
|
|
"ok": "OK",
|
|
|
|
"cancel": "Cancel"
|
|
|
|
},
|
|
|
|
|
|
|
|
msg: {
|
|
|
|
"Path": "Path",
|
2004-01-29 22:27:14 +01:00
|
|
|
"TEXT_MODE": "You are in TEXT MODE. Use the [<>] button to switch back to WYSIWYG.",
|
|
|
|
|
|
|
|
"IE-sucks-full-screen" :
|
|
|
|
// translate here
|
|
|
|
"The full screen mode is known to cause problems with Internet Explorer, " +
|
|
|
|
"due to browser bugs that we weren't able to workaround. You might experience garbage " +
|
|
|
|
"display, lack of editor functions and/or random browser crashes. If your system is Windows 9x " +
|
|
|
|
"it's very likely that you'll get a 'General Protection Fault' and need to reboot.\n\n" +
|
2004-04-21 00:17:46 +02:00
|
|
|
"You have been warned. Please press OK if you still want to try the full screen editor.",
|
|
|
|
|
2005-06-18 22:43:14 +02:00
|
|
|
"MOZ-security-clipboard" :
|
|
|
|
// Translate Here
|
|
|
|
"The Paste button does not work in Mozilla based web browsers (technical security reasons). Press CTRL-V on your keyboard to paste directly."
|
2004-01-29 22:27:14 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
dialogs: {
|
2005-06-18 22:43:14 +02:00
|
|
|
// Common
|
|
|
|
"OK" : "OK",
|
2004-01-29 22:27:14 +01:00
|
|
|
"Cancel" : "Cancel",
|
2005-06-18 22:43:14 +02:00
|
|
|
|
|
|
|
"Alignment:" : "Alignment:",
|
|
|
|
"Not set" : "Not set",
|
|
|
|
"Left" : "Left",
|
|
|
|
"Right" : "Right",
|
|
|
|
"Texttop" : "Texttop",
|
|
|
|
"Absmiddle" : "Absmiddle",
|
|
|
|
"Baseline" : "Baseline",
|
|
|
|
"Absbottom" : "Absbottom",
|
|
|
|
"Bottom" : "Bottom",
|
|
|
|
"Middle" : "Middle",
|
|
|
|
"Top" : "Top",
|
|
|
|
|
|
|
|
"Layout" : "Layout",
|
|
|
|
"Spacing" : "Spacing",
|
|
|
|
"Horizontal:" : "Horizontal:",
|
|
|
|
"Horizontal padding" : "Horizontal padding",
|
|
|
|
"Vertical:" : "Vertical:",
|
|
|
|
"Vertical padding" : "Vertical padding",
|
|
|
|
"Border thickness:" : "Border thickness:",
|
|
|
|
"Leave empty for no border" : "Leave empty for no border",
|
|
|
|
|
|
|
|
// Insert Link
|
2004-01-29 22:27:14 +01:00
|
|
|
"Insert/Modify Link" : "Insert/Modify Link",
|
|
|
|
"None (use implicit)" : "None (use implicit)",
|
2005-06-18 22:43:14 +02:00
|
|
|
"New window (_blank)" : "New window (_blank)",
|
2004-01-29 22:27:14 +01:00
|
|
|
"Same frame (_self)" : "Same frame (_self)",
|
2005-06-18 22:43:14 +02:00
|
|
|
"Top frame (_top)" : "Top frame (_top)",
|
|
|
|
"Other" : "Other",
|
2004-01-29 22:27:14 +01:00
|
|
|
"Target:" : "Target:",
|
|
|
|
"Title (tooltip):" : "Title (tooltip):",
|
|
|
|
"URL:" : "URL:",
|
2005-06-18 22:43:14 +02:00
|
|
|
"You must enter the URL where this link points to" : "You must enter the URL where this link points to",
|
|
|
|
// Insert Table
|
|
|
|
"Insert Table" : "Insert Table",
|
|
|
|
"Rows:" : "Rows:",
|
|
|
|
"Number of rows" : "Number of rows",
|
|
|
|
"Cols:" : "Cols:",
|
|
|
|
"Number of columns" : "Number of columns",
|
|
|
|
"Width:" : "Width:",
|
|
|
|
"Width of the table" : "Width of the table",
|
|
|
|
"Percent" : "Percent",
|
|
|
|
"Pixels" : "Pixels",
|
|
|
|
"Em" : "Em",
|
|
|
|
"Width unit" : "Width unit",
|
|
|
|
"Positioning of this table" : "Positioning of this table",
|
|
|
|
"Cell spacing:" : "Cell spacing:",
|
|
|
|
"Space between adjacent cells" : "Space between adjacent cells",
|
|
|
|
"Cell padding:" : "Cell padding:",
|
|
|
|
"Space between content and border in cell" : "Space between content and border in cell",
|
|
|
|
// Insert Image
|
|
|
|
"Insert Image" : "Insert Image",
|
|
|
|
"Image URL:" : "Image URL:",
|
|
|
|
"Enter the image URL here" : "Enter the image URL here",
|
|
|
|
"Preview" : "Preview",
|
|
|
|
"Preview the image in a new window" : "Preview the image in a new window",
|
|
|
|
"Alternate text:" : "Alternate text:",
|
|
|
|
"For browsers that don't support images" : "For browsers that don't support images",
|
|
|
|
"Positioning of this image" : "Positioning of this image",
|
|
|
|
"Image Preview:" : "Image Preview:"
|
2004-01-08 10:03:17 +01:00
|
|
|
}
|
|
|
|
};
|