File: sdb_consts.pas

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (60 lines) | stat: -rw-r--r-- 1,991 bytes parent folder | download | duplicates (6)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{ DB Export component resource strings

  Copyright (C) 2009 Marcelo B Paula

  Estes fontes são software livre; você pode redistribuir e/ou modificá-los
  sob os termos da GNU Library General Public License como publicada pela Free
  Software Foundation; ou a versão 2 da Licença, ou (a sua escolha) qualquer
  versão posterior.

  Este código é distribuído na esperança de que seja útil, mas SEM
  QUALQUER GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE ou
  ADEQUAÇÃO A UMA FINALIDADE PARTICULAR. Veja a licença GNU General Public
  License para maiores detalhes.

  Você deve ter recebido uma cópia da licença GNU Library General Public
  License juntamente com esta biblioteca; senão, escreva a Free Software
  Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA.
}
unit sdb_consts;

{$mode objfpc}{$H+}

interface

resourcestring

  // RegDBExport
  SExecute = 'Execute ...';
  SErrNoDatasetAssigned = 'DataExporter has no Dataset assigned.';
  SErrOpeningDataset = 'Could not open dataset for exporting: %s';

  // fpdataexporter
  SNRecordsExported = 'Successfully exported %d records.';
  SCancelRecordsExported = 'Exported %d before user canceled.';

  // Select Data Export Format form
  sdb_Selectdataexportformat = 'Select data export Format';
  sdb_Availableexportformats = 'Available export formats:';

  // Export progress form
  SProgress = 'Exporting %d records';
  //
  sdb_Exportprogress = 'Export progress';
  sdb_Cancel         = '&Cancel';

  // Configure Data Export form
  sdb_Configuredataexport = 'Configure data export';
  sdb_Filename            = 'Filename:';
  sdb_Fields              = 'Fields';
  sdb_Formatting          = 'Formatting';
  sdb_Selectfieldstoexport= 'Select fi&elds to export';
  sdb_Propertiesforselectedfield = 'Properties for selected field:';
  sdb_Moveselectedfieldup = 'Move selected field up';
  sdb_Moveselectedfielddown = 'Move selected field down';


implementation

end.