2010-03-05 21:57:25 +00:00
|
|
|
{ rxconst unit
|
|
|
|
|
2018-11-05 20:49:44 +00:00
|
|
|
Copyright (C) 2005-2018 Lagunov Aleksey alexs75@yandex.ru and Lazarus team
|
2017-01-25 09:56:51 +00:00
|
|
|
original conception from rx library for Delphi (c)
|
2010-03-05 21:57:25 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU Library General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
option) any later version with the following modification:
|
|
|
|
|
|
|
|
As a special exception, the copyright holders of this library give you
|
|
|
|
permission to link this library with independent modules to produce an
|
|
|
|
executable, regardless of the license terms of these independent modules,and
|
|
|
|
to copy and distribute the resulting executable under terms of your choice,
|
|
|
|
provided that you also meet, for each linked independent module, the terms
|
|
|
|
and conditions of the license of that module. An independent module is a
|
|
|
|
module which is not derived from or based on this library. If you modify
|
|
|
|
this library, you may extend this exception to your version of the library,
|
|
|
|
but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
exception statement from your version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
|
|
along with this library; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
}
|
2007-08-09 21:36:59 +00:00
|
|
|
|
2007-08-10 22:15:51 +00:00
|
|
|
unit rxconst;
|
2007-08-09 21:36:59 +00:00
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
{$I RX.INC}
|
|
|
|
|
|
|
|
|
|
|
|
const
|
|
|
|
RX_VERSION = $0002004B; { 2.75 }
|
|
|
|
|
|
|
|
|
2007-10-17 10:19:26 +00:00
|
|
|
resourcestring
|
2019-04-12 08:54:40 +00:00
|
|
|
sQuestion = 'Question';
|
2012-03-29 16:01:32 +00:00
|
|
|
sBrowse = 'Browse';
|
|
|
|
sDefaultFilter = 'All files (*.*)|*.*';
|
|
|
|
sDateDlgTitle = 'Select a Date';
|
|
|
|
sNextYear = 'Next Year|';
|
|
|
|
sNextMonth = 'Next Month|';
|
|
|
|
sPrevYear = 'Previous Year|';
|
|
|
|
sPrevMonth = 'Previous Month|';
|
|
|
|
sNotImplemented = 'Function not yet implemented';
|
|
|
|
sFileNotExec = 'File specified is not an executable file, dynamic-link library, or icon file';
|
|
|
|
sLoadLibError = 'Could not load ''%s'' library';
|
|
|
|
sDetails = 'Details';
|
|
|
|
sWindowsIcoFiles = 'Windows Ico files (*.ico)|*.ico|All files (*.*)|*.*';
|
|
|
|
sToCurDate = 'Set current date';
|
2009-08-17 17:50:27 +00:00
|
|
|
|
|
|
|
//TDualListDialog
|
|
|
|
SDualListSrcCaption = 'Source';
|
|
|
|
SDualListDestCaption = 'Destination';
|
|
|
|
SDualListCaption = 'Dual list dialog';
|
|
|
|
|
|
|
|
//TToolPanelSetupForm
|
|
|
|
sToolPanelSetup = 'Tool panel setup';
|
|
|
|
sVisibleButtons = 'Visible buttons';
|
|
|
|
sOptions = 'Options';
|
|
|
|
sAvaliableButtons = 'Avaliable buttons';
|
|
|
|
sShowCaption = 'Show caption';
|
|
|
|
sToolBarStyle = 'Tool bar style';
|
2015-05-26 13:40:45 +00:00
|
|
|
sToolBarStyle1 = 'Standard';
|
2009-08-17 17:50:27 +00:00
|
|
|
sToolBarStyle2 = 'Windows XP';
|
|
|
|
sToolBarStyle3 = 'Native';
|
|
|
|
sFlatButtons = 'Flat buttons';
|
|
|
|
sTransparent = 'Transparent';
|
|
|
|
sShowHint = 'Show hint';
|
|
|
|
sButtonAlign = 'Button align';
|
|
|
|
sButtonAlign1 = 'None';
|
|
|
|
sButtonAlign2 = 'Left';
|
2015-05-26 13:40:45 +00:00
|
|
|
sButtonAlign3 = 'Right';
|
2017-01-03 06:53:36 +00:00
|
|
|
sWidget = 'Widget : ';
|
2010-03-02 17:47:14 +00:00
|
|
|
sAppVersion = 'Version : ';
|
|
|
|
sLCLVersion = 'LCL Version: ';
|
|
|
|
sFpcVersion = 'FPC version : ';
|
|
|
|
sTargetCPU = 'Target CPU : ';
|
|
|
|
sTargetOS = 'Target OS : ';
|
2010-03-10 18:48:27 +00:00
|
|
|
sBuildDate = 'Build date : ';
|
2010-03-02 17:47:14 +00:00
|
|
|
sAbout = 'About';
|
|
|
|
sGeneral = 'General';
|
|
|
|
sLicense = 'License';
|
2013-03-17 08:06:32 +00:00
|
|
|
SOutOfRange = 'Out of range %d %d %d %d';
|
2018-12-14 10:54:15 +00:00
|
|
|
sSeparator = 'Separator';
|
2018-12-14 11:41:03 +00:00
|
|
|
sRxToolPanelEditor = 'Rx toolpanel editor';
|
2018-12-21 08:55:44 +00:00
|
|
|
sRxCloseFormValidatorEditor = 'Rx close form validator editor';
|
2019-07-26 18:49:17 +00:00
|
|
|
sRxViewsPanelEditor = 'Rx views panel editor';
|
2019-09-27 06:17:48 +00:00
|
|
|
sRxNotDefinedFileName = 'Not defined file name';
|
2009-08-17 17:50:27 +00:00
|
|
|
|
2011-11-30 17:27:12 +00:00
|
|
|
{ TRxHistoryNavigator }
|
2012-03-29 16:01:32 +00:00
|
|
|
sHistoryDesc = 'History - "%s"';
|
2011-11-30 17:27:12 +00:00
|
|
|
|
2012-03-29 16:01:32 +00:00
|
|
|
{ RxCloseFormValidator }
|
2015-05-26 13:40:45 +00:00
|
|
|
sCloseValidError = 'Error. Expected values...';
|
|
|
|
sReqValue = 'Error. Expected value for field %s.';
|
2012-03-29 16:01:32 +00:00
|
|
|
sExptControlNotFound = 'Control not found in validate %s.';
|
2007-08-09 21:36:59 +00:00
|
|
|
|
2012-10-09 10:35:17 +00:00
|
|
|
{ RxMDI }
|
2018-01-12 10:28:22 +00:00
|
|
|
sCloseWindows = 'Close window';
|
|
|
|
sCloseAllExceptThis = 'Close all except this';
|
|
|
|
sCloseAllWindows = 'Close all windows';
|
2019-04-12 08:54:40 +00:00
|
|
|
sErrorLinkedTaskPanel = 'Not assigned task panel';
|
|
|
|
sCloseAllQuestion = 'Close all window?';
|
2014-07-01 09:42:54 +00:00
|
|
|
|
|
|
|
{ TRxDateRangeEdit }
|
|
|
|
sFirstQuarter = 'First quarter';
|
|
|
|
sSecondQuarter = 'Second quarter';
|
|
|
|
sThirdQuarter = 'Third quarter';
|
|
|
|
sFourthQuarter = 'Fourth quarter';
|
|
|
|
sFirstHalfOfYear = 'First half of year';
|
|
|
|
sSecondHalfOfYear = 'Second half of year';
|
2012-10-09 10:35:17 +00:00
|
|
|
|
2016-09-26 07:55:49 +00:00
|
|
|
{ TFolderLister }
|
|
|
|
sFolderListerErr = '%s. Not assigned property MenuItem';
|
|
|
|
|
2016-12-08 13:54:00 +00:00
|
|
|
{ TConfigValues }
|
|
|
|
sVariableIsNotString = 'Variable %s is not string';
|
2016-12-13 06:02:55 +00:00
|
|
|
sVariableIsNotInteger = 'Variable %s is not integer';
|
|
|
|
sVariableIsNotFloat = 'Variable %s is not float';
|
|
|
|
sVariableIsNotDT = 'Variable %s is not date/time';
|
|
|
|
sVariableIsNotBoolean = 'Variable %s is not boolean';
|
2016-12-08 13:54:00 +00:00
|
|
|
|
2018-04-20 13:57:15 +00:00
|
|
|
{ TRxNotifierForm }
|
|
|
|
sClose = 'Close';
|
|
|
|
sCloseAfterSec = 'Close after %d sec';
|
2018-05-14 13:30:07 +00:00
|
|
|
sCloseMessageHint = 'Close message';
|
|
|
|
|
2018-11-05 20:49:44 +00:00
|
|
|
{ TRxTextHolder }
|
|
|
|
sRxTextHolderTextEditor = 'Rx text holder editor';
|
2018-11-19 08:14:39 +00:00
|
|
|
sRxStrHolderTextEditor = 'Rx string holder editor';
|
2018-11-05 20:49:44 +00:00
|
|
|
sRxTextHolderEditor = 'RxTextHolder editor';
|
|
|
|
sRxTextHolderTextCaption = 'Caption';
|
|
|
|
sRxTextHolderAdd = 'Add';
|
|
|
|
sRxTextHolderRemove = 'Remove';
|
2018-11-19 08:14:39 +00:00
|
|
|
sRxTextHolderMoveUp = 'Up';
|
|
|
|
sRxTextHolderMoveDown = 'Down';
|
2018-11-06 13:59:28 +00:00
|
|
|
sRxTextFolderItem = 'Item ';
|
2018-11-19 08:14:39 +00:00
|
|
|
sRxTextFolderSynHighlighter = 'Highlighter';
|
|
|
|
sRxTextFolderSynNone = 'None';
|
|
|
|
sRxTextFolderSynXML = 'XML';
|
|
|
|
sRxTextFolderSynHTML = 'HTML';
|
|
|
|
sRxTextFolderSynSQL = 'SQL';
|
|
|
|
|
2018-12-12 06:37:09 +00:00
|
|
|
{ TRxLoginDialog }
|
|
|
|
sRxLoginDlgBtnMore = 'More >>';
|
|
|
|
sRxLoginDlgDatabase = 'Database';
|
2018-11-05 20:49:44 +00:00
|
|
|
|
2018-12-13 11:42:18 +00:00
|
|
|
|
|
|
|
{ rxShortCutUnit }
|
|
|
|
sGrabKey = 'Grab key';
|
|
|
|
sPressTheKey = 'Press the key';
|
|
|
|
sShortCut = 'ShortCut';
|
|
|
|
|
2019-07-03 08:34:10 +00:00
|
|
|
{ Pretty names for Size}
|
|
|
|
sRxTerraByte = 'TB';
|
|
|
|
sRxGigaByte = 'GB';
|
|
|
|
sRxMegaByte = 'MB';
|
|
|
|
sRxKiloByte = 'KB';
|
|
|
|
sRxByte = 'B';
|
2012-03-29 16:01:32 +00:00
|
|
|
implementation
|
2007-10-17 10:19:26 +00:00
|
|
|
|
2007-08-09 21:36:59 +00:00
|
|
|
end.
|