~ubuntu-branches/ubuntu/vivid/lazarus/vivid

« back to all changes in this revision

Viewing changes to doceditor/lazdemsg.pp

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Paul Gevers
  • Date: 2014-02-22 10:25:57 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140222102557-ors9d31r84nz31jq
Tags: 1.2~rc2+dfsg-1
[ Abou Al Montacir ]
* New upstream pre-release.
  + Moved ideintf to components directory.
  + Added new package cairocanvas.
* Remove usage of depreciated parameters form of find. (Closes: Bug#724776)
* Bumped standard version to 3.9.5.
* Clean the way handling make files generation and removal.

[ Paul Gevers ]
* Remove nearly obsolete bzip compression for binary packages
  (See https://lists.debian.org/debian-devel/2014/01/msg00542.html)
* Update d/copyright for newly added dir in examples and components
* Update Vcs-* fields with new packaging location
* Update d/watch file to properly (Debian way) change upstreams versions
* Prevent 46MB of package size by sym linking duplicate files
* Patches
  - refresh to remove fuzz
  - add more Lintian found spelling errors
  - new patch to add shbang to two scripts in lazarus-src
* Drop lcl-# from Provides list of lcl-units-#
* Make lazarus-ide-qt4-# an arch all until it really contains stuff
* Make all metapackages arch all as the usecase for arch any doesn't
  seem to warrant the addition archive hit
* Fix permissions of non-scripts in lazarus-src-#

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  SNew         = 'New';
47
47
  SInsertLink  = 'Insert link';
48
48
  SInsertTable = 'Insert table';
 
49
  SInsertBulletedList = 'Insert bulleted list';
 
50
  SInsertNumberedList = 'Insert numbered list';
49
51
  SInsertPrintShortLink = 'Insert short description link';
 
52
  SInsertExampleCode = 'Insert example code';
50
53
  SForFile     = ' in file ';
51
54
  SForPackage  = ' in package ';
52
55
  SForModule   = ' in module ';
53
 
  SForTopic    = ' in topic';
54
 
  //SLinkTarget  = 'Link target';
55
 
  //SLinkText    = 'Link text';
56
 
  //STableRows   = 'Rows';
57
 
  //STableCols   = 'Columns';
58
 
  //STableHeader = 'Use header row';
 
56
  SForTopic    = ' in topic ';
 
57
  SLinkTarget  = 'Link target';
 
58
  SLinkText    = 'Link text';
 
59
  STableRows   = 'Rows';
 
60
  STableCols   = 'Columns';
 
61
  STableHeader = 'Use header row';
59
62
  SPackages    = 'Packages';
60
63
  SFileModified = 'Document "%s" was modified, would you like to save it?';
61
64
  SDeletePackage = 'Are you sure you want to delete package "%s" ?';
69
72
  SNoElement = 'No element selected';
70
73
  SDataForElement = 'Documentation for element "%s":';
71
74
  SShortDescription = 'Short';
72
 
  //SDescription = 'Description';
73
75
  SErrors = 'Errors';
74
76
  SSeeAlso = 'See Also';
75
77
  SCodeExample = 'Example code File';
94
96
  sNewModule             = 'New module';
95
97
  sNewElement            = 'New element';
96
98
  sNewTopic              = 'New topic';
 
99
  sNodeName              = 'Node name';
97
100
 
98
101
  //Build Form strings
99
102
  SAddDescriptionFile    = 'Select a new description file';
124
127
  sImportContentFile     = 'Import content file';
125
128
  sTargetOS              = 'Target OS';
126
129
  sCPU                   = 'CPU';
 
130
  sAdditionalParams      = 'Additional parameters for fpdoc';
127
131
  sShowPrivateMethods    = 'Show p&rivate methods';
128
132
  sWarnIfNoDocumentationNodeFound = 'Warn if no documentation node found';
129
133
 
 
134
  sSaveBeforeBuildQuestion = 'You have unsaved changes in "%s".%s' +
 
135
                             'They should be saved in order to be visible in built documentation. Save them?';
130
136
{ ---------------------------------------------------------------------
131
137
    Menu strings
132
138
  ---------------------------------------------------------------------}
151
157
  SMenuInsertShortDescLink  = '&Short description link';
152
158
  SMenuInsertQuickLink      = '&Quick Link';
153
159
  SMenuInsertPrintShort = 'Insert short desc link';
 
160
  SMenuInsertList    = 'List';
 
161
  SMenuInsertBulletedList = 'Bulleted list';
 
162
  SMenuInsertNumberedList = 'Numbered list';
154
163
 
155
164
  SMenuFormat           = 'Format';
156
165
  SMenuFormatBold       = '&Bold';
200
209
  SHintInsertLink    = 'Insert link';
201
210
  ShintInsertTable   = 'Insert table';
202
211
  SHintInsertPrintShortLink = 'Insert a short description link';
 
212
  SHintInsertBulletedList = 'Insert bulleted list';
 
213
  SHintInsertNumberedList = 'Insert numbered list';
203
214
 
204
215
  SMarkSelection     = 'Mark selection %s';
205
216