File: iconfinderstrconsts.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 (67 lines) | stat: -rw-r--r-- 2,338 bytes parent folder | download
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
unit IconFinderStrConsts;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils;

resourcestring
  // IconThumbnail
  RSIconViewer_AskSaveMetadata = 'Metadata have been changed. Save?';
  RSIconViewer_ShowAll = 'Show all';
  RSIconViewer_HideAll = 'Hide all';

  // IconViewer frame
  RSIconViewer_FilterByIconSizeHint = 'Filter by icon size';
  RSIconViewer_FilterByIconStyleHint = 'Filter by icon style';
  RSIconViewer_ExpressionToFilterByKeywordsHint = 'Expression to filter by keywords';
  RSIconViewer_EditKeywordFilterHint = 'Enter/edit a keyword filter';
  RSIconViewer_ClearFilterHint = 'Clear the keyword filter';
  RSIconViewer_FilterByKeywordsHint = 'Filter by keywords';
  RSIconViewer_EnterKeywordsHere = 'Enter keywords here';
  RSIconViewer_FileNameLbl = 'File name:';
  RSIconViewer_SizeLbl = 'Size:';
  RSIconViewer_StyleLbl = 'Style:';
  RSIconViewer_KeywordsLbl = 'Keywords:';
  RSIconViewer_ConfirmDeleteIconMsg = 'Do you really want to delete the selected icon from the library?';
  RSIconViewer_IconCountInfo = '%0:d icons (out of %1:d)';

  // IconFinderMetadata
  RSMetadata_Caption = 'Icon Metadata Editor';
  RSMetadata_Keywords = 'Keywords (one keyword per line)';
  RSMetadata_Style = 'Style';
  RSMetadata_ClassicStyle = 'Classic';
  RSMetadata_FlatStyle = 'Flat';
  RSMetadata_OutlineStyle = 'Outline';
  RSMetadata_Outline2Style = 'Outline 2-color';
  RSMetadata_AnyStyle = '(any style)';
  RSMetadata_AnySize = '(any size)';

  // IconFinderFolders
  RSFolders_IconFinderFolders = 'Icon Folders';
  RSFolders_Add = 'Add ...';
  RSFolders_Delete = 'Delete';
  RSFolders_MoveUp = 'Move up';
  RSFolders_MoveDown = 'Move down';
  RSFolders_ConfirmDeleteFolderMsg = 'Do you really want to remove this folder from the icon library?';
  RSFolders_NoImages = 'Aborted. No supported images in folder "%s".';

  // IconKeywordFilter editor
  RSKeywordEditor_Caption = 'Keyword Filter Editor';
  RSKeywordEditor_NewKeyword = 'New keyword';
  RSKeywordEditor_Keyword = 'Keyword';
  RSKeywordEditor_KeywordExists = 'Keyword already defined.';
  RSKeywordEditor_Filter = 'Filter';
  RSKeywordEditor_Keywords = 'Keywords';
  RSKeywordEditor_New = 'New';
  RSKeywordEditor_Edit = 'Edit';
  RSKeywordEditor_Columns = 'Columns';
  RSKeywordEditor_Add = 'Add';
  RSKeywordEditor_Clear = 'Clear';

implementation

end.