mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged 3.1 to HEAD
13275: updated web-client to use tinymce v3 13276: overlay display fix for when field has large content git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13585 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,81 +1,62 @@
|
||||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Styles --',
|
||||
theme_code_desc : 'Edit HTML Source',
|
||||
theme_code_title : 'HTML Source Editor',
|
||||
theme_code_wordwrap : 'Word wrap',
|
||||
theme_sub_desc : 'Subscript',
|
||||
theme_sup_desc : 'Superscript',
|
||||
theme_hr_desc : 'Insert horizontal ruler',
|
||||
theme_removeformat_desc : 'Remove formatting',
|
||||
theme_custom1_desc : 'Your custom description here',
|
||||
insert_image_border : 'Border',
|
||||
insert_image_dimensions : 'Dimensions',
|
||||
insert_image_vspace : 'Vertical space',
|
||||
insert_image_hspace : 'Horizontal space',
|
||||
insert_image_align : 'Alignment',
|
||||
insert_image_align_default : '-- Not set --',
|
||||
insert_image_align_baseline : 'Baseline',
|
||||
insert_image_align_top : 'Top',
|
||||
insert_image_align_middle : 'Middle',
|
||||
insert_image_align_bottom : 'Bottom',
|
||||
insert_image_align_texttop : 'TextTop',
|
||||
insert_image_align_absmiddle : 'Absolute Middle',
|
||||
insert_image_align_absbottom : 'Absolute Bottom',
|
||||
insert_image_align_left : 'Left',
|
||||
insert_image_align_right : 'Right',
|
||||
theme_font_size : '-- Font size --',
|
||||
theme_fontdefault : '-- Font family --',
|
||||
theme_block : '-- Format --',
|
||||
theme_paragraph : 'Paragraph',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Address',
|
||||
theme_pre : 'Preformatted',
|
||||
theme_h1 : 'Heading 1',
|
||||
theme_h2 : 'Heading 2',
|
||||
theme_h3 : 'Heading 3',
|
||||
theme_h4 : 'Heading 4',
|
||||
theme_h5 : 'Heading 5',
|
||||
theme_h6 : 'Heading 6',
|
||||
theme_blockquote : 'Blockquote',
|
||||
theme_code : 'Code',
|
||||
theme_samp : 'Code sample',
|
||||
theme_dt : 'Definition term ',
|
||||
theme_dd : 'Definition description',
|
||||
theme_colorpicker_title : 'Select a color',
|
||||
theme_colorpicker_apply : 'Apply',
|
||||
theme_forecolor_desc : 'Select text color',
|
||||
theme_backcolor_desc : 'Select background color',
|
||||
theme_charmap_title : 'Select custom character',
|
||||
theme_charmap_desc : 'Insert custom character',
|
||||
theme_visualaid_desc : 'Toggle guidelines/invisible elements',
|
||||
insert_anchor_title : 'Insert/edit anchor',
|
||||
insert_anchor_name : 'Anchor name',
|
||||
theme_anchor_desc : 'Insert/edit anchor',
|
||||
theme_insert_link_titlefield : 'Title',
|
||||
theme_clipboard_msg : 'Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?',
|
||||
theme_path : 'Path',
|
||||
cut_desc : 'Cut',
|
||||
copy_desc : 'Copy',
|
||||
paste_desc : 'Paste',
|
||||
link_list : 'Link list',
|
||||
image_list : 'Image list',
|
||||
browse : 'Browse',
|
||||
image_props_desc : 'Image properties',
|
||||
newdocument_desc : 'New document',
|
||||
class_name : 'Class',
|
||||
newdocument : 'Are you sure you want clear all contents?',
|
||||
about_title : 'About TinyMCE',
|
||||
about : 'About',
|
||||
license : 'License',
|
||||
plugins : 'Plugins',
|
||||
plugin : 'Plugin',
|
||||
author : 'Author',
|
||||
version : 'Version',
|
||||
loaded_plugins : 'Loaded plugins',
|
||||
help : 'Help',
|
||||
not_set : '-- Not set --',
|
||||
close : 'Close',
|
||||
toolbar_focus : 'Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X'
|
||||
});
|
||||
tinyMCE.addI18n('en.advanced',{
|
||||
style_select:"Styles",
|
||||
font_size:"Font size",
|
||||
fontdefault:"Font family",
|
||||
block:"Format",
|
||||
paragraph:"Paragraph",
|
||||
div:"Div",
|
||||
address:"Address",
|
||||
pre:"Preformatted",
|
||||
h1:"Heading 1",
|
||||
h2:"Heading 2",
|
||||
h3:"Heading 3",
|
||||
h4:"Heading 4",
|
||||
h5:"Heading 5",
|
||||
h6:"Heading 6",
|
||||
blockquote:"Blockquote",
|
||||
code:"Code",
|
||||
samp:"Code sample",
|
||||
dt:"Definition term ",
|
||||
dd:"Definition description",
|
||||
bold_desc:"Bold (Ctrl+B)",
|
||||
italic_desc:"Italic (Ctrl+I)",
|
||||
underline_desc:"Underline (Ctrl+U)",
|
||||
striketrough_desc:"Strikethrough",
|
||||
justifyleft_desc:"Align left",
|
||||
justifycenter_desc:"Align center",
|
||||
justifyright_desc:"Align right",
|
||||
justifyfull_desc:"Align full",
|
||||
bullist_desc:"Unordered list",
|
||||
numlist_desc:"Ordered list",
|
||||
outdent_desc:"Outdent",
|
||||
indent_desc:"Indent",
|
||||
undo_desc:"Undo (Ctrl+Z)",
|
||||
redo_desc:"Redo (Ctrl+Y)",
|
||||
link_desc:"Insert/edit link",
|
||||
unlink_desc:"Unlink",
|
||||
image_desc:"Insert/edit image",
|
||||
cleanup_desc:"Cleanup messy code",
|
||||
code_desc:"Edit HTML Source",
|
||||
sub_desc:"Subscript",
|
||||
sup_desc:"Superscript",
|
||||
hr_desc:"Insert horizontal ruler",
|
||||
removeformat_desc:"Remove formatting",
|
||||
custom1_desc:"Your custom description here",
|
||||
forecolor_desc:"Select text color",
|
||||
backcolor_desc:"Select background color",
|
||||
charmap_desc:"Insert custom character",
|
||||
visualaid_desc:"Toggle guidelines/invisible elements",
|
||||
anchor_desc:"Insert/edit anchor",
|
||||
cut_desc:"Cut",
|
||||
copy_desc:"Copy",
|
||||
paste_desc:"Paste",
|
||||
image_props_desc:"Image properties",
|
||||
newdocument_desc:"New document",
|
||||
help_desc:"Help",
|
||||
blockquote_desc:"Blockquote",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\r\nDo you want more information about this issue?",
|
||||
path:"Path",
|
||||
newdocument:"Are you sure you want clear all contents?",
|
||||
toolbar_focus:"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X",
|
||||
more_colors:"More colors"
|
||||
});
|
Reference in New Issue
Block a user