mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 15:21:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			553 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			553 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| { This unit collects all resource strings of the project }
 | |
| unit StringsUnit;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| resourcestring
 | |
|   rsBeer = 'Beer';
 | |
|   rsWine = 'Wine';
 | |
|   rsWater = 'Water';
 | |
|   rsYouSelected = 'You selected %s.';
 | |
|   rsYouSelectedAt = 'You selected %0:s at %1:s.';
 | |
|   rsTodayIs = 'Today is %s';
 | |
|   rsOne = 'One';
 | |
|   rsTwo = 'Two';
 | |
|   rsThree = 'Three';
 | |
|   rsFour = 'Four';
 | |
|   rsFive = 'Five';
 | |
|   rsSix = 'Six';
 | |
|   rsSeven = 'Seven';
 | |
|   rsEight = 'Eight';
 | |
|   rsNine = 'Nine';
 | |
|   rsSumOfSelectedNumbers = 'Sum of selected numbers: %s';
 | |
| 
 | |
| implementation
 | |
| 
 | |
| end.
 | |
| 
 | 
