DocEditor: improved interface captions

git-svn-id: trunk@42336 -
This commit is contained in:
maxim 2013-08-04 22:33:02 +00:00
parent ddd03e966d
commit 019c198f0e
4 changed files with 11 additions and 13 deletions

View File

@ -609,7 +609,6 @@ begin
AInsertPrintShort.Caption:=SMenuInsertShortDescLink; AInsertPrintShort.Caption:=SMenuInsertShortDescLink;
AInsertQuickLink.Caption:=SMenuInsertQuickLink; AInsertQuickLink.Caption:=SMenuInsertQuickLink;
Lists.Caption := SMenuInsertList; Lists.Caption := SMenuInsertList;
AInsertPrintShort.Caption:=SHintInsertPrintShortLink;
AInsertItemizeList.Caption:=SMenuInsertItemizeList; AInsertItemizeList.Caption:=SMenuInsertItemizeList;
AInsertEnumerateList.Caption:=SMenuInsertEnumerateList; AInsertEnumerateList.Caption:=SMenuInsertEnumerateList;

View File

@ -8,7 +8,7 @@
</Flags> </Flags>
<SessionStorage Value="InIDEConfig"/> <SessionStorage Value="InIDEConfig"/>
<MainUnit Value="0"/> <MainUnit Value="0"/>
<Title Value="Lazarus documentation editor."/> <Title Value="Lazarus documentation editor"/>
<ResourceType Value="res"/> <ResourceType Value="res"/>
<UseXPManifest Value="True"/> <UseXPManifest Value="True"/>
<Icon Value="0"/> <Icon Value="0"/>

View File

@ -25,7 +25,7 @@ uses
{$R lazde.res} {$R lazde.res}
begin begin
Application.Title:='Lazarus documentation editor.'; Application.Title:='Lazarus documentation editor';
Application.Initialize; Application.Initialize;
Application.CreateForm(TMainForm, MainForm); Application.CreateForm(TMainForm, MainForm);
Application.Run; Application.Run;

View File

@ -46,8 +46,8 @@ ResourceString
SNew = 'New'; SNew = 'New';
SInsertLink = 'Insert link'; SInsertLink = 'Insert link';
SInsertTable = 'Insert table'; SInsertTable = 'Insert table';
SInsertItemizeList = 'Insert itemize list'; SInsertItemizeList = 'Insert bulleted list';
SInsertEnumerateList = 'Insert enumerate list'; SInsertEnumerateList = 'Insert numbered list';
SInsertPrintShortLink = 'Insert short description link'; SInsertPrintShortLink = 'Insert short description link';
SInsertExampleCode = 'Insert example code'; SInsertExampleCode = 'Insert example code';
SForFile = ' in file '; SForFile = ' in file ';
@ -131,9 +131,8 @@ ResourceString
sShowPrivateMethods = 'Show p&rivate methods'; sShowPrivateMethods = 'Show p&rivate methods';
sWarnIfNoDocumentationNodeFound = 'Warn if no documentation node found'; sWarnIfNoDocumentationNodeFound = 'Warn if no documentation node found';
sSaveBeforeBuildQuestion = 'You must save changes in "%s" before building. Save?%s' + sSaveBeforeBuildQuestion = 'You have unsaved changes in "%s".%s' +
'If you press "No" - last changes will not use'; 'They should be saved in order to be visible in built documentation. Save them?';
// Please correct this phrase, if it necessary!
{ --------------------------------------------------------------------- { ---------------------------------------------------------------------
Menu strings Menu strings
---------------------------------------------------------------------} ---------------------------------------------------------------------}
@ -158,9 +157,9 @@ ResourceString
SMenuInsertShortDescLink = '&Short description link'; SMenuInsertShortDescLink = '&Short description link';
SMenuInsertQuickLink = '&Quick Link'; SMenuInsertQuickLink = '&Quick Link';
SMenuInsertPrintShort = 'Insert short desc link'; SMenuInsertPrintShort = 'Insert short desc link';
SMenuInsertList = 'Insert list'; SMenuInsertList = 'List';
SMenuInsertItemizeList = 'Itemize list'; SMenuInsertItemizeList = 'Bulleted list';
SMenuInsertEnumerateList = 'Enumerate list'; SMenuInsertEnumerateList = 'Numbered list';
SMenuFormat = 'Format'; SMenuFormat = 'Format';
SMenuFormatBold = '&Bold'; SMenuFormatBold = '&Bold';
@ -210,8 +209,8 @@ ResourceString
SHintInsertLink = 'Insert link'; SHintInsertLink = 'Insert link';
ShintInsertTable = 'Insert table'; ShintInsertTable = 'Insert table';
SHintInsertPrintShortLink = 'Insert a short description link'; SHintInsertPrintShortLink = 'Insert a short description link';
SHintInsertItemizeList = 'Insert itemize list'; SHintInsertItemizeList = 'Insert bulleted list';
SHintInsertEnumerateList = 'Insert enumerate list'; SHintInsertEnumerateList = 'Insert numbered list';
SMarkSelection = 'Mark selection %s'; SMarkSelection = 'Mark selection %s';