X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fplugins%2Fforms%2Fdialogs%2Fform.js;h=299e3c29430ec73b866fb8c0630ff02f3b5a68e6;hp=f214f53ee6983238f7db81159f3275a2914805f5;hb=059b4c2fef02528bf1af189f7996e80652faddfb;hpb=c6e377a02b54abc07129d72b632763c727476a15 diff --git a/_source/plugins/forms/dialogs/form.js b/_source/plugins/forms/dialogs/form.js index f214f53..299e3c2 100644 --- a/_source/plugins/forms/dialogs/form.js +++ b/_source/plugins/forms/dialogs/form.js @@ -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' ] ] }, {