use _ instead of __ to translate properly file type

This commit is contained in:
Antoine Beaupré 2006-06-28 22:04:53 +00:00
parent f48dfd5f33
commit ecc3cc209c
1 changed files with 40 additions and 40 deletions

View File

@ -132,46 +132,46 @@ $MIME_H=1;
$bro_type= $bro_type=
array( array(
"css" => __("CSS Stylesheet"), "css" => _("CSS Stylesheet"),
"csv" => __("Comma Separated Values data"), "csv" => _("Comma Separated Values data"),
"dia" => __("DIA Diagram"), "dia" => _("DIA Diagram"),
"doc" => __("Word Document"), "doc" => _("Word Document"),
"dot" => __("Word Document Template"), "dot" => _("Word Document Template"),
"epf" => __("Encapsulated Postscript"), "epf" => _("Encapsulated Postscript"),
"gif" => __("GIF Image"), "gif" => _("GIF Image"),
"hqx" => __("Macintosh Executable"), "hqx" => _("Macintosh Executable"),
"htm" => __("HTML Document"), "htm" => _("HTML Document"),
"html"=> __("HTML Document"), "html"=> _("HTML Document"),
"jpeg" => __("JPEG Image"), "jpeg" => _("JPEG Image"),
"jpg" => __("JPEG Image"), "jpg" => _("JPEG Image"),
"m3u" => __("Music Playlist"), "m3u" => _("Music Playlist"),
"mp3" => __("MP3 Music File"), "mp3" => _("MP3 Music File"),
"ogg" => __("Ogg Music File"), "ogg" => _("Ogg Music File"),
"pdf" => __("Acrobat PDF"), "pdf" => _("Acrobat PDF"),
"php" => __("PHP Source"), "php" => _("PHP Source"),
"png" => __("PNG Image"), "png" => _("PNG Image"),
"pps" => __("Powerpoint Slideshow"), "pps" => _("Powerpoint Slideshow"),
"ppt" => __("Powerpoint Slideshow"), "ppt" => _("Powerpoint Slideshow"),
"ps" => __("Postscript Document"), "ps" => _("Postscript Document"),
"psd" => __("Photoshop Image"), "psd" => _("Photoshop Image"),
"rar" => __("Rar Compressed Files"), "rar" => _("Rar Compressed Files"),
"rtf" => __("Rich Text Document"), "rtf" => _("Rich Text Document"),
"sxc" => __("OpenOffice Spreadsheet"), "sxc" => _("OpenOffice Spreadsheet"),
"sxd" => __("OpenOffice Drawing"), "sxd" => _("OpenOffice Drawing"),
"sxi" => __("OpenOffice Presentation"), "sxi" => _("OpenOffice Presentation"),
"sxw" => __("OpenOffice Writer"), "sxw" => _("OpenOffice Writer"),
"tif" => __("TIFF Image"), "tif" => _("TIFF Image"),
"tiff" => __("TIFF Image"), "tiff" => _("TIFF Image"),
"txt" => __("Text Document"), "txt" => _("Text Document"),
"vcf" => __("Virtual Card"), "vcf" => _("Virtual Card"),
"vcs" => __("Virtual Card"), "vcs" => _("Virtual Card"),
"xcf" => __("Gimp Image"), "xcf" => _("Gimp Image"),
"xls" => __("Excel Spreadsheet"), "xls" => _("Excel Spreadsheet"),
"zip" => __("Zip Compressed Files"), "zip" => _("Zip Compressed Files"),
"sxw" => __("Flash Animation"), "sxw" => _("Flash Animation"),
"ra" => __("Real Media File"), "ra" => _("Real Media File"),
"rm" => __("Real Media File"), "rm" => _("Real Media File"),
"ram" => __("Real Media File"), "ram" => _("Real Media File"),
); );
} }