X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fforms%2Fdialogs%2Fform.js;h=299e3c29430ec73b866fb8c0630ff02f3b5a68e6;hb=refs%2Ftags%2Fv3.2;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..299e3c2 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 ) @@ -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' ] ] }, {