You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RnQ/for.RnQ/RnQStrings.pas

31 lines
889 B
Plaintext

{
This file is part of R&Q.
Under same license
}
unit RnQStrings;
{ $MODE Delphi }
interface
uses RDGlobal;
{$I NoRTTI.inc}
const
Str_message = 'Message';
Str_roster = 'roaster';
Str_unk = 'Unknown';
Str_Error = 'Error';
Str_already_run = 'There is another instance with this user already running';
Str_unsupported = 'This function is not supported yet' + CRLF + 'Please inform us if you need it!';
// Str_authRequest = 'Authorization Request\nPlease authorize my request and add me to your Contact List.';
Str_authRequest = 'Please authorize my request and add me to your Contact List.';
// not2Translate : array[0..2] of string = ('R&Q', 'http://RnQ.ru', 'Rapid D');
not2Translate: array [0 .. 4] of AnsiString = ('R&Q', 'http://RnQ.ru', 'Massimo Melina', 'Rapid D', 'R&&Q Team');
not2TranslateSite = 1;
implementation
end.