make file types translatable

This commit is contained in:
Antoine Beaupré 2006-05-13 22:26:20 +00:00
parent 6aae85997d
commit a4fb93b862
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"),
); );
} }