60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
// Dutch Mimes Module for v2.3 (translated by the QuiX project)
 | 
						|
 | 
						|
$GLOBALS["mimes"]=array(
 | 
						|
	// dir, exe, file
 | 
						|
	"dir"	=> "Map",
 | 
						|
	"exe"	=> "Programma",
 | 
						|
	"file"	=> "Bestand",
 | 
						|
 | 
						|
	// text
 | 
						|
	"text"	=> "Tekstbestand",
 | 
						|
	
 | 
						|
	// programming
 | 
						|
	"php"	=> "PHP Script",
 | 
						|
	"sql"	=> "SQL Bestand",
 | 
						|
	"perl"	=> "PERL Script",
 | 
						|
	"html"	=> "HTML Pagina",
 | 
						|
	"js"	=> "Javascript Bestand",
 | 
						|
	"css"	=> "CSS Bestand",
 | 
						|
	"cgi"	=> "CGI Script",
 | 
						|
	// C++
 | 
						|
	"cpps"	=> "C++ Bronbestand",
 | 
						|
	"cpph"	=> "C++ Header Bestand",
 | 
						|
	// Java
 | 
						|
	"javas"	=> "Java Bronbestand",
 | 
						|
	"javac"	=> "Java Class Bestand",
 | 
						|
	// Pascal
 | 
						|
	"pas"	=> "Pascal Bestand",
 | 
						|
	
 | 
						|
	// images
 | 
						|
	"gif"	=> "GIF Afbeelding",
 | 
						|
	"jpg"	=> "JPG Afbeelding",
 | 
						|
	"bmp"	=> "BMP Afbeelding",
 | 
						|
	"png"	=> "PNG Afbeelding",
 | 
						|
	
 | 
						|
	// compressed
 | 
						|
	"zip"	=> "ZIP Archief",
 | 
						|
	"tar"	=> "TAR Archief",
 | 
						|
	"gzip"	=> "GZIP Archief",
 | 
						|
	"bzip2"	=> "BZIP2 Archief",
 | 
						|
	"rar"	=> "RAR Archief",
 | 
						|
	
 | 
						|
	// music
 | 
						|
	"mp3"	=> "MP3 Audio Bestand",
 | 
						|
	"wav"	=> "WAV Audio Bestand",
 | 
						|
	"midi"	=> "MIDI Audio Bestand",
 | 
						|
	"real"	=> "RealAudio Bestand",
 | 
						|
	
 | 
						|
	// movie
 | 
						|
	"mpg"	=> "MPG Video Bestand",
 | 
						|
	"mov"	=> "Movie Bestand",
 | 
						|
	"avi"	=> "AVI Video Bestand",
 | 
						|
	"flash"	=> "Flash Movie Bestand",
 | 
						|
	
 | 
						|
	// Micosoft / Adobe
 | 
						|
	"word"	=> "Word Document",
 | 
						|
	"excel"	=> "Excel Document",
 | 
						|
	"pdf"	=> "PDF Bestand"
 | 
						|
); ?>
 |