12345678910111213141516171819202122232425262728293031323334 |
- {
- This file is part of the Free Pascal run time library.
- Copyright (c) 2014 by Maciej Izak (hnb)
- member of the Free Sparta development team (http://freesparta.com)
- Copyright(c) 2004-2014 DaThoX
- It contains the Free Pascal generics library
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- 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.
- **********************************************************************}
- unit Generics.Strings;
- {$mode objfpc}{$H+}
- interface
- resourcestring
- SArgumentOutOfRange = 'Argument out of range';
- SDuplicatesNotAllowed = 'Duplicates not allowed in dictionary';
- SDictionaryKeyDoesNotExist = 'Dictionary key does not exist';
- SItemNotFound = 'Item not found';
- implementation
- end.
|