Преглед на файлове

[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 ) ;