mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 22:10:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			296 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			296 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| unit SimpleWebSrvStrConsts;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| resourcestring
 | |
|   rsSWSTitle = 'Simple Web Server';
 | |
|   rsSWSPathOfCompileserver = 'Path of compileserver';
 | |
|   rsSWSAddress = 'Address';
 | |
|   rsSWSPort = 'Port';
 | |
|   rsSWSBindAny = 'Bind Any';
 | |
|   rsSWSUserOrigin = 'User';
 | |
| 
 | |
| implementation
 | |
| 
 | |
| end.
 | |
| 
 | 
