File: lhelpstrconsts.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (72 lines) | stat: -rw-r--r-- 3,042 bytes parent folder | download | duplicates (4)
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
61
62
63
64
65
66
67
68
69
70
71
72
unit LHelpStrConsts;

{$mode objfpc}{$H+}

interface

resourcestring

  // GUI
  slhelp_About = 'About';
  slhelp_LHelpCHMFileViewerVersionCopyrightCAndrewHainesLaz = 'CHM file viewer%sVersion %s%sCopyright (C) Andrew Haines, %sLazarus contributors';
  slhelp_Ok = 'OK';
  slhelp_PleaseEnterAURL = 'Please enter a URL';
  slhelp_SupportedURLTypeS = 'Supported URL type(s): [ %s ]';
  slhelp_File = '&File';
  slhelp_Open = '&Open ...';
  slhelp_OpenRecent = 'Open Recent';
  slhelp_OpenURL = 'Open &URL ...';
  slhelp_Close = '&Close';
  slhelp_Hide = '&Hide';
  slhelp_EXit = 'E&xit';
  slhelp_View = '&View';
  slhelp_ShowContents = 'Show contents';
  slhelp_OpenNewTabWithStatusBar = 'Open new tab with status bar';
  slhelp_OpenNewFileInSeparateTab = 'Open new file in separate tab';
  slhelp_Help = '&Help';
  slhelp_About2 = '&About ...';
  slhelp_OpenExistingFile = 'Open existing file';
  slhelp_HelpFilesChmChmAllFiles = 'Help files (*.chm)|*.chm|All files (*.*)|*';
  slhelp_LHelp = 'LHelp';
  slhelp_LHelp2 = 'LHelp - %s';
  slhelp_CannotHandleThisTypeOfContentForUrl = 'Cannot handle this type of content. "%s" for url:%s%s';
  slhelp_CannotHandleThisTypeOfSubcontentForUrl = 'Cannot handle this type of subcontent. "%s" for url:%s%s';
  slhelp_Loading = 'Loading: %s';
  slhelp_NotFound = '%s not found!';
  slhelp_LoadedInMs = 'Loaded: %s in %sms';
  slhelp_TableOfContentsLoadingPleaseWait = 'Table of Contents Loading. Please Wait ...';
  slhelp_TableOfContentsLoading = 'Table of Contents Loading ...';
  slhelp_IndexLoading = 'Index Loading ...';
  slhelp_Untitled = 'untitled';
  slhelp_NoResults = 'No Results';
  slhelp_Contents = 'Contents';
  slhelp_Index = 'Index';
  slhelp_Search = 'Search';
  slhelp_Keyword = 'Keyword:';
  slhelp_Find = 'Find';
  slhelp_SearchResults = 'Search Results:';
  slhelp_Copy = 'Copy';
  slhelp_PageCannotBeFound = 'Page cannot be found!';
  slhelp_CopyHtmlSource = 'Copy HTML source';
  slhelp_CloseConfirm = 'You can hide Help via Esc key. Do you really want to close LHelp?';

  slhelp_Actions = '&Actions';
  slhelp_ActionsTOC = '&TOC';
  slhelp_ActionsIndex = 'Search by &index';
  slhelp_ActionsSearch = '&Search by text';
  slhelp_ActionsGoHome = 'Go home';
  slhelp_ActionsGoBack = 'Go back';
  slhelp_ActionsGoForward = 'Go forward';

  // --help
  slhelp_LHelpOptions = '  LHelp options:';
  slhelp_UsageLhelpFilenameContextIdHideIpcnameLhelpMyapp = '    Usage: lhelp [[filename] [--context id] [--hide] [--ipcname lhelp-myapp]]';
  slhelp_HelpShowThisInformation = '    --help     :  Show this information';
  slhelp_HideStartHiddenButAcceptCommunicationsViaIPC =       '    --hide     :  Start hidden but accept communications via IPC';
  slhelp_ContextShowTheHelpInformationRelatedToThisContext =  '    --context  :  Show the help information related to this context';
  slhelp_IpcnameTheNameOfTheIPCServerToListenOnForProgramsW = '    --ipcname  :  The name of the IPC server to listen on for%s              programs who wish to control the viewer';

implementation

end.