فهرست منبع

[svn r18216] FS#2867 - FCKEditor, audio plugin: Adding ' (mp3)' suffix to the title, so people to know what type of files the plugin deals with.

Ivan Tcholakov 16 سال پیش
والد
کامیت
2090efca2b
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      main/inc/lib/fckeditor/editor/plugins/audio/fckplugin.js

+ 2 - 2
main/inc/lib/fckeditor/editor/plugins/audio/fckplugin.js

@@ -1,10 +1,10 @@
 // Register the related commands.
 var dialogPath = FCKConfig.PluginsPath + 'audio/fck_audio.html' ;
-var flashDialogCmd = new FCKDialogCommand( FCKLang["DlgAudioTitle"], FCKLang["DlgAudioTitle"], dialogPath, 600, 300 ) ;
+var flashDialogCmd = new FCKDialogCommand( FCKLang["DlgAudioTitle"], FCKLang["DlgAudioTitle"] + ' (mp3)', dialogPath, 600, 300 ) ;
 FCKCommands.RegisterCommand( 'MP3', flashDialogCmd ) ;
 
 // Create the Audio toolbar button.
-var oFlashItem		= new FCKToolbarButton( 'MP3', FCKLang["DlgAudioTitle"]) ;
+var oFlashItem		= new FCKToolbarButton( 'MP3', FCKLang["DlgAudioTitle"] + ' (mp3)') ;
 oFlashItem.IconPath	= FCKConfig.PluginsPath + 'audio/audio.gif' ;
 
 FCKToolbarItems.RegisterItem( 'MP3', oFlashItem ) ;