File: printer4lazstrconst.pas

package info (click to toggle)
lazarus 1.6.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 172,444 kB
  • ctags: 124,173
  • sloc: pascal: 1,528,777; xml: 260,232; sh: 3,008; java: 603; makefile: 512; perl: 297; sql: 222; ansic: 137
file content (41 lines) | stat: -rw-r--r-- 1,073 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
 *****************************************************************************
  This file is part of the Lazarus Component Library (LCL)

  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';

implementation

end.