mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 10:19:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{
 | 
						|
 *****************************************************************************
 | 
						|
  This file is part of the Printer4Lazarus package
 | 
						|
 | 
						|
  See the file COPYING.modifiedLGPL.txt, included in this distribution,
 | 
						|
  for details about the license.
 | 
						|
 *****************************************************************************
 | 
						|
 | 
						|
 Abstract: Resourcestrings.
 | 
						|
}
 | 
						|
unit Printer4LazStrConst;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
interface
 | 
						|
 | 
						|
resourcestring
 | 
						|
  p4lrsCancel = 'Cancel';
 | 
						|
  p4lrsPrinterProperties = 'Printer properties';
 | 
						|
  p4lrsOk = 'Ok';
 | 
						|
  p4lrsGeneral = 'General';
 | 
						|
  p4lrsPaperSize = 'Paper size';
 | 
						|
  p4lrsPaperType = 'Paper type';
 | 
						|
  p4lrsPaperSource = 'Paper source';
 | 
						|
  p4lrsResolution = 'Resolution';
 | 
						|
  p4lrsOrientation = 'Orientation';
 | 
						|
  p4lrsPortrait = 'Portrait';
 | 
						|
  p4lrsLandscape = 'Landscape';
 | 
						|
  p4lrsReverseLandscape = 'Reverse landscape';
 | 
						|
  p4lrsReversePortrait = 'Reverse portrait';
 | 
						|
  p4lrsBanners = 'Banners';
 | 
						|
  p4lrsStart = 'Start';
 | 
						|
  p4lrsEnd = 'End';
 | 
						|
  p4lrsPagesPerSheet = 'Pages per sheet';
 | 
						|
  p4lrsMargins = 'Margins';
 | 
						|
  p4lrsAdvanced = 'Advanced';
 | 
						|
  p4lrsNoDefaultPrinter = 'No default printer found.';
 | 
						|
  p4lrsShortUnitsMm = '(mm)';
 | 
						|
  p4lrsShortUnitsInches = '(inches)';
 | 
						|
  p4lrsButtonMoreArrow = 'More >>';
 | 
						|
  p4lrsButtonLessArrow = '<< Less';
 | 
						|
  p4lrsJobStateReady = 'Ready';
 | 
						|
  p4lrsJobStatePrinting = 'Printing';
 | 
						|
  p4lrsJobStateStopped = 'Stopped';
 | 
						|
  p4lrsJobStateAccepting = '(Accepting jobs)';
 | 
						|
  p4lrsJobStateRejecting = '(Rejecting jobs)';
 | 
						|
  p4lrsAllPages = 'All';
 | 
						|
  p4lrsPageOdd = 'Odd';
 | 
						|
  p4lrsPageEven = 'Even';
 | 
						|
 | 
						|
implementation
 | 
						|
 | 
						|
end.
 | 
						|
 |