Changeset 850

Show
Ignore:
Timestamp:
2007-09-20 08:57:19 (15 months ago)
Author:
martinkou
Message:

Fixed #1197 : Added the blockquote toolbar button and command.

Location:
FCKeditor/trunk
Files:
1 added
12 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/fckeditor.html

    r834 r850  
    120120LoadScript( '_source/commandclasses/fckjustifycommands.js' ) ; 
    121121LoadScript( '_source/commandclasses/fckindentcommands.js' ) ; 
     122LoadScript( '_source/commandclasses/fckblockquotecommand.js' ) ; 
    122123LoadScript( '_source/commandclasses/fckcorestylecommand.js' ) ; 
    123124LoadScript( '_source/commandclasses/fckremoveformatcommand.js' ) ; 
  • FCKeditor/trunk/editor/lang/en-au.js

    r701 r850  
    7272DecreaseIndent          : "Decrease Indent", 
    7373IncreaseIndent          : "Increase Indent", 
     74Blockquote              : "Blockquote", 
    7475Undo                            : "Undo", 
    7576Redo                            : "Redo", 
  • FCKeditor/trunk/editor/lang/en-ca.js

    r701 r850  
    7272DecreaseIndent          : "Decrease Indent", 
    7373IncreaseIndent          : "Increase Indent", 
     74Blockquote              : "Blockquote", 
    7475Undo                            : "Undo", 
    7576Redo                            : "Redo", 
  • FCKeditor/trunk/editor/lang/en.js

    r701 r850  
    7272DecreaseIndent          : "Decrease Indent", 
    7373IncreaseIndent          : "Increase Indent", 
     74Blockquote              : "Blockquote", 
    7475Undo                            : "Undo", 
    7576Redo                            : "Redo", 
  • FCKeditor/trunk/editor/lang/en-uk.js

    r701 r850  
    7272DecreaseIndent          : "Decrease Indent", 
    7373IncreaseIndent          : "Increase Indent", 
     74Blockquote              : "Blockquote", 
    7475Undo                            : "Undo", 
    7576Redo                            : "Redo", 
  • FCKeditor/trunk/editor/lang/zh-cn.js

    r701 r850  
    7272DecreaseIndent          : "减少缩进量", 
    7373IncreaseIndent          : "增加缩进量", 
     74Blockquote              : "引用文字", 
    7475Undo                            : "撤消", 
    7576Redo                            : "重做", 
  • FCKeditor/trunk/editor/lang/zh.js

    r701 r850  
    7272DecreaseIndent          : "減少縮排", 
    7373IncreaseIndent          : "增加縮排", 
     74Blockquote              : "块引用", 
    7475Undo                            : "復原", 
    7576Redo                            : "重複", 
  • FCKeditor/trunk/editor/_source/internals/fckcommands.js

    r841 r850  
    9595                case 'Indent'   : oCommand = new FCKIndentCommand( 'indent', FCKConfig.IndentLength ) ; break ; 
    9696                case 'Outdent'  : oCommand = new FCKIndentCommand( 'outdent', FCKConfig.IndentLength * -1 ) ; break ; 
     97                case 'Blockquote'       : oCommand = new FCKBlockQuoteCommand() ; break ; 
    9798 
    9899                case 'TableInsertRowAfter'              : oCommand = new FCKTableCommand('TableInsertRowAfter') ; break ; 
  • FCKeditor/trunk/editor/_source/internals/fcktoolbaritems.js

    r701 r850  
    7171                case 'Outdent'                  : oItem = new FCKToolbarButton( 'Outdent'       , FCKLang.DecreaseIndent, null, null, false, true, 28 ) ; break ; 
    7272                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 ; 
    7374 
    7475                case 'Link'                             : oItem = new FCKToolbarButton( 'Link'          , FCKLang.InsertLinkLbl, FCKLang.InsertLink, null, false, true, 34 ) ; break ; 
  • FCKeditor/trunk/fckconfig.js

    r847 r850  
    109109        '/', 
    110110        ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], 
    111         ['OrderedList','UnorderedList','-','Outdent','Indent'], 
     111        ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'], 
    112112        ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], 
    113113        ['Link','Unlink','Anchor'], 
  • FCKeditor/trunk/fckpackager.xml

    r834 r850  
    130130                <File path="editor/_source/commandclasses/fckjustifycommands.js" /> 
    131131                <File path="editor/_source/commandclasses/fckindentcommands.js" /> 
     132                <File path="editor/_source/commandclasses/fckblockquotecommand.js" /> 
    132133                <File path="editor/_source/commandclasses/fckcorestylecommand.js" /> 
    133134                <File path="editor/_source/commandclasses/fckremoveformatcommand.js" /> 
     
    224225                <File path="editor/_source/commandclasses/fckjustifycommands.js" /> 
    225226                <File path="editor/_source/commandclasses/fckindentcommands.js" /> 
     227                <File path="editor/_source/commandclasses/fckblockquotecommand.js" /> 
    226228                <File path="editor/_source/commandclasses/fckcorestylecommand.js" /> 
    227229                <File path="editor/_source/commandclasses/fckremoveformatcommand.js" />