Changeset 850
- Timestamp:
- 2007-09-20 08:57:19 (15 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 1 added
- 12 modified
-
editor/fckeditor.html (modified) (1 diff)
-
editor/lang/en-au.js (modified) (1 diff)
-
editor/lang/en-ca.js (modified) (1 diff)
-
editor/lang/en.js (modified) (1 diff)
-
editor/lang/en-uk.js (modified) (1 diff)
-
editor/lang/zh-cn.js (modified) (1 diff)
-
editor/lang/zh.js (modified) (1 diff)
-
editor/skins/default/fck_strip.gif (modified) (previous)
-
editor/_source/commandclasses/fckblockquotecommand.js (added)
-
editor/_source/internals/fckcommands.js (modified) (1 diff)
-
editor/_source/internals/fcktoolbaritems.js (modified) (1 diff)
-
fckconfig.js (modified) (1 diff)
-
fckpackager.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/fckeditor.html
r834 r850 120 120 LoadScript( '_source/commandclasses/fckjustifycommands.js' ) ; 121 121 LoadScript( '_source/commandclasses/fckindentcommands.js' ) ; 122 LoadScript( '_source/commandclasses/fckblockquotecommand.js' ) ; 122 123 LoadScript( '_source/commandclasses/fckcorestylecommand.js' ) ; 123 124 LoadScript( '_source/commandclasses/fckremoveformatcommand.js' ) ; -
FCKeditor/trunk/editor/lang/en-au.js
r701 r850 72 72 DecreaseIndent : "Decrease Indent", 73 73 IncreaseIndent : "Increase Indent", 74 Blockquote : "Blockquote", 74 75 Undo : "Undo", 75 76 Redo : "Redo", -
FCKeditor/trunk/editor/lang/en-ca.js
r701 r850 72 72 DecreaseIndent : "Decrease Indent", 73 73 IncreaseIndent : "Increase Indent", 74 Blockquote : "Blockquote", 74 75 Undo : "Undo", 75 76 Redo : "Redo", -
FCKeditor/trunk/editor/lang/en.js
r701 r850 72 72 DecreaseIndent : "Decrease Indent", 73 73 IncreaseIndent : "Increase Indent", 74 Blockquote : "Blockquote", 74 75 Undo : "Undo", 75 76 Redo : "Redo", -
FCKeditor/trunk/editor/lang/en-uk.js
r701 r850 72 72 DecreaseIndent : "Decrease Indent", 73 73 IncreaseIndent : "Increase Indent", 74 Blockquote : "Blockquote", 74 75 Undo : "Undo", 75 76 Redo : "Redo", -
FCKeditor/trunk/editor/lang/zh-cn.js
r701 r850 72 72 DecreaseIndent : "减少缩进量", 73 73 IncreaseIndent : "增加缩进量", 74 Blockquote : "引用文字", 74 75 Undo : "撤消", 75 76 Redo : "重做", -
FCKeditor/trunk/editor/lang/zh.js
r701 r850 72 72 DecreaseIndent : "減少縮排", 73 73 IncreaseIndent : "增加縮排", 74 Blockquote : "块引用", 74 75 Undo : "復原", 75 76 Redo : "重複", -
FCKeditor/trunk/editor/_source/internals/fckcommands.js
r841 r850 95 95 case 'Indent' : oCommand = new FCKIndentCommand( 'indent', FCKConfig.IndentLength ) ; break ; 96 96 case 'Outdent' : oCommand = new FCKIndentCommand( 'outdent', FCKConfig.IndentLength * -1 ) ; break ; 97 case 'Blockquote' : oCommand = new FCKBlockQuoteCommand() ; break ; 97 98 98 99 case 'TableInsertRowAfter' : oCommand = new FCKTableCommand('TableInsertRowAfter') ; break ; -
FCKeditor/trunk/editor/_source/internals/fcktoolbaritems.js
r701 r850 71 71 case 'Outdent' : oItem = new FCKToolbarButton( 'Outdent' , FCKLang.DecreaseIndent, null, null, false, true, 28 ) ; break ; 72 72 case 'Indent' : oItem = new FCKToolbarButton( 'Indent' , FCKLang.IncreaseIndent, null, null, false, true, 29 ) ; break ; 73 case 'Blockquote' : oItem = new FCKToolbarButton( 'Blockquote' , FCKLang.Blockquote, null, null, false, true, 73 ) ; break ; 73 74 74 75 case 'Link' : oItem = new FCKToolbarButton( 'Link' , FCKLang.InsertLinkLbl, FCKLang.InsertLink, null, false, true, 34 ) ; break ; -
FCKeditor/trunk/fckconfig.js
r847 r850 109 109 '/', 110 110 ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], 111 ['OrderedList','UnorderedList','-','Outdent','Indent' ],111 ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'], 112 112 ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], 113 113 ['Link','Unlink','Anchor'], -
FCKeditor/trunk/fckpackager.xml
r834 r850 130 130 <File path="editor/_source/commandclasses/fckjustifycommands.js" /> 131 131 <File path="editor/_source/commandclasses/fckindentcommands.js" /> 132 <File path="editor/_source/commandclasses/fckblockquotecommand.js" /> 132 133 <File path="editor/_source/commandclasses/fckcorestylecommand.js" /> 133 134 <File path="editor/_source/commandclasses/fckremoveformatcommand.js" /> … … 224 225 <File path="editor/_source/commandclasses/fckjustifycommands.js" /> 225 226 <File path="editor/_source/commandclasses/fckindentcommands.js" /> 227 <File path="editor/_source/commandclasses/fckblockquotecommand.js" /> 226 228 <File path="editor/_source/commandclasses/fckcorestylecommand.js" /> 227 229 <File path="editor/_source/commandclasses/fckremoveformatcommand.js" />