X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fforms%2Fdialogs%2Fform.js;h=43c29c3999569055c27e4a0a8be3a6c4b142fd77;hb=055b6b0792ce7dc53d47af606b367c04b927c2ab;hp=9074e5bb21d03050fabb7088891c8ea2f2ce9874;hpb=ea7e3453c7b0f023b050aca6d9f83ab372860d91;p=ckeditor.git diff --git a/_source/plugins/forms/dialogs/form.js b/_source/plugins/forms/dialogs/form.js index 9074e5b..43c29c3 100644 --- a/_source/plugins/forms/dialogs/form.js +++ b/_source/plugins/forms/dialogs/form.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.dialog.add( 'form', function( editor ) @@ -104,7 +104,7 @@ CKEDITOR.dialog.add( 'form', function( editor ) type : 'text', label : editor.lang.form.action, 'default' : '', - accessKey : 'A' + accessKey : 'T' }, { type : 'hbox', @@ -143,17 +143,17 @@ CKEDITOR.dialog.add( 'form', function( editor ) { id : 'target', type : 'select', - label : editor.lang.form.target, + label : editor.lang.common.target, style : 'width:100%', accessKey : 'M', 'default' : '', items : [ - [ editor.lang.form.targetNotSet, '' ], - [ editor.lang.form.targetNew, '_blank' ], - [ editor.lang.form.targetTop, '_top' ], - [ editor.lang.form.targetSelf, '_self' ], - [ editor.lang.form.targetParent, '_parent' ] + [ editor.lang.common.notSet, '' ], + [ editor.lang.common.targetNew, '_blank' ], + [ editor.lang.common.targetTop, '_top' ], + [ editor.lang.common.targetSelf, '_self' ], + [ editor.lang.common.targetParent, '_parent' ] ] }, {