Ticket #8025: 8025.patch
File 8025.patch, 3.5 KB (added by , 13 years ago) |
---|
-
_source/lang/en.js
240 240 findWhat : 'Find what:', 241 241 replaceWith : 'Replace with:', 242 242 notFoundMsg : 'The specified text was not found.', 243 findOptions : 'Find Options', 243 244 matchCase : 'Match case', 244 245 matchWord : 'Match whole word', 245 246 matchCyclic : 'Match cyclic', -
_source/plugins/find/dialogs/find.js
646 646 ] 647 647 }, 648 648 { 649 type : 'vbox', 650 padding : 0, 651 children : 649 type : 'fieldset', 650 label : CKEDITOR.tools.htmlEncode( lang.findOptions ), 651 style : 'margin-top:29px', 652 children : 652 653 [ 653 654 { 654 type : 'checkbox', 655 id : 'txtFindCaseChk', 656 isChanged : false, 657 style : 'margin-top:28px', 658 label : lang.matchCase 659 }, 660 { 661 type : 'checkbox', 662 id : 'txtFindWordChk', 663 isChanged : false, 664 label : lang.matchWord 665 }, 666 { 667 type : 'checkbox', 668 id : 'txtFindCyclic', 669 isChanged : false, 670 'default' : true, 671 label : lang.matchCyclic 655 type : 'vbox', 656 padding : 0, 657 children : 658 [ 659 { 660 type : 'checkbox', 661 id : 'txtFindCaseChk', 662 isChanged : false, 663 label : lang.matchCase 664 }, 665 { 666 type : 'checkbox', 667 id : 'txtFindWordChk', 668 isChanged : false, 669 label : lang.matchWord 670 }, 671 { 672 type : 'checkbox', 673 id : 'txtFindCyclic', 674 isChanged : false, 675 'default' : true, 676 label : lang.matchCyclic 677 } 678 ] 672 679 } 673 680 ] 674 681 } … … 768 775 ] 769 776 }, 770 777 { 771 type : ' vbox',772 padding : 0,773 children : 778 type : 'fieldset', 779 label : CKEDITOR.tools.htmlEncode( lang.findOptions ), 780 children : 774 781 [ 775 782 { 776 type : 'checkbox', 777 id : 'txtReplaceCaseChk', 778 isChanged : false, 779 label : lang 780 .matchCase 781 }, 782 { 783 type : 'checkbox', 784 id : 'txtReplaceWordChk', 785 isChanged : false, 786 label : lang 787 .matchWord 788 }, 789 { 790 type : 'checkbox', 791 id : 'txtReplaceCyclic', 792 isChanged : false, 793 'default' : true, 794 label : lang 795 .matchCyclic 783 type : 'vbox', 784 padding : 0, 785 children : 786 [ 787 { 788 type : 'checkbox', 789 id : 'txtReplaceCaseChk', 790 isChanged : false, 791 label : lang.matchCase 792 }, 793 { 794 type : 'checkbox', 795 id : 'txtReplaceWordChk', 796 isChanged : false, 797 label : lang.matchWord 798 }, 799 { 800 type : 'checkbox', 801 id : 'txtReplaceCyclic', 802 isChanged : false, 803 'default' : true, 804 label : lang.matchCyclic 805 } 806 ] 796 807 } 797 808 ] 798 809 }