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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
{
This file is part of the Free Component Library (FCL)
Copyright (c) 1999-2000 by the Free Pascal development team
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.
**********************************************************************}
const
SAssignError = '%s no puede ser assignado a %s';
SFCreateError = 'Fichero %s no puede ser creado';
SFOpenError = 'Fichero %s no puede ser abierto';
SReadError = 'Error-Lectura-Stream';
SWriteError = 'Error-Escritura-Stream';
SMemoryStreamError = 'No es posible expandir Memoria Stream';
SCantWriteResourceStreamError = 'No se puede escribir en un ResourceStream de solo lectura';
SDuplicateReference = 'WriteObject fue llamado dos veces por una sola instancia';
SClassNotFound = 'Clase %s no encontrada';
SInvalidImage = 'Imagen stream ilegal';
SResNotFound = 'No se encontro el resource %s';
SClassMismatch = 'El resource %s tiene una clase erronea';
SListIndexError = 'El indice de lista excede los limites (%d)';
SListCapacityError = 'La maxima capacidad de lista a sido alcanzada (%d)';
SListCountError = 'Contador de lista demasiado grande (%d)';
SSortedListError = 'Operacion no permitida en StringLists ordenado';
SDuplicateString = 'Entradas duplicadas no permitidas en StringList';
SInvalidTabIndex = 'Registerindex fuera de limites';
SDuplicateName = 'Un componente con el nombre %s existe actualmente';
SInvalidName = '"%s" no es un nombre identificador valido';
SDuplicateClass = 'Una Clase con el nombre %s existe actualmente';
SNoComSupport = '%s no esta registrado como COM-Class';
SLineTooLong = 'Linea demasiado larga';
SInvalidPropertyValue = 'Valor de propiedad no valido';
SInvalidPropertyPath = 'Path de propiedad no valido';
SUnknownProperty = 'Propiedad desconocidad';
SReadOnlyProperty = 'Propiedad de solo lectura';
{N} SUnknownPropertyType = 'Unknown property type %d';
SPropertyException = 'Error leyendo %s%s: %s';
{N} SAncestorNotFound = 'Ancestor of ''%s'' not found.';
SInvalidBitmap = 'Bitmap no valido';
SInvalidIcon = 'Icono no valido';
SInvalidMetafile = 'MetaFile no valido';
SInvalidPixelFormat = 'PixelFormat no valido';
SBitmapEmpty = 'El bitmap esta vacio';
SScanLine = 'Indice de linea fuera de limites';
SChangeIconSize = 'No se puede cambiar el tamao del icono';
SOleGraphic = 'Operacion no valida para TOleGraphic';
SUnknownExtension = 'Extension desconocida (.%s)';
SUnknownClipboardFormat = 'Formato de Portapapeles desconocido';
SOutOfResources = 'Recursos de sistema agotados';
SNoCanvasHandle = 'El manejador Canvas no permite dibujar';
SInvalidImageSize = 'Tamao de imagen no valido';
STooManyImages = 'Demasiadas imagenes';
SDimsDoNotMatch = 'El tamao de la imagen no coincide';
SInvalidImageList = 'ImageList no valido';
SReplaceImage = 'La imagen no puede ser reemplazada';
SImageIndexError = 'ImageList-Index no valido';
SImageReadFail = 'Los datos de ImageList no pueden ser leido desde Stream';
SImageWriteFail = 'Los datos de ImageList no pueden ser escritos en Stream';
SWindowDCError = 'Error cuando??';
SClientNotSet = 'El cliente de TDrag no fue iniciado';
SWindowClass = 'Error inicializando Window Class';
SWindowCreate = 'Error creando una Ventana';
{?} SCannotFocus = 'Una Ventana invisible or desactivada no puede obtener el foco';
SParentRequired = 'El elemento ''%s'' no tiene una ventana padre';
SMDIChildNotVisible = 'Una ventana MDI-Child no puede ser ocultada.';
SVisibleChanged = 'Una propiedad visual no puede ser cambiada en el manejador OnShow o OnHide';
{?} SCannotShowModal = 'Una Ventana visible no puede ser hecha modal';
SScrollBarRange = 'Propiedad de Scrollbar fuera de limites';
SPropertyOutOfRange = 'Propiedad %s fuera de limites';
SMenuIndexError = 'Indice de menu fuera de rango';
SMenuReinserted = 'Menu reinsertado';
SMenuNotFound = 'Entrada de menu no encontra en menu';
SNoTimers = 'No hay timers disponibles';
SNotPrinting = 'La impresora no esta imprimiendo';
SPrinting = 'La impresora esta ocupada';
SPrinterIndexError = 'PrinterIndex fuera de rango';
SInvalidPrinter = 'La impresora seleccionada no es valida';
SDeviceOnPort = '%s en %s';
SGroupIndexTooLow = 'GroupIndex tiene que ser mayor que el goupindex del menu predecesor';
STwoMDIForms = 'Solo hay una ventana MDI disponible';
SNoMDIForm = 'No hay ningun MDI form disponible, none esta activado';
SRegisterError = 'Registro invalido';
SImageCanvasNeedsBitmap = 'Un Canvas solo puede ser cambiado si contiene un bitmap';
SControlParentSetToSelf = 'Un componente no puede tenerse a si mismo como padre';
SOKButton = 'Aceptar';
SCancelButton = 'Cancelar';
SYesButton = '&Si';
SNoButton = '&No';
SHelpButton = '&Ayuda';
SCloseButton = '&Cerrar';
SIgnoreButton = '&Ignorar';
SRetryButton = '&Reintentar';
SAbortButton = 'Abortar';
SAllButton = '&Todo';
{?} SFB = 'VH';
{?} SFG = 'VG';
{?} SBG = 'HG';
SOldTShape = 'No es posible cargar versiones antiguas de TShape';
SVMetafiles = 'MetaFiles';
SVEnhMetafiles = 'MetaFiles ampliados';
SVIcons = 'Iconos';
SVBitmaps = 'Bitmaps';
SGridTooLarge = 'Malla demasiado grande para esta operacion';
{?} STooManyDeleted = 'Zu viele Zeilen oder Spalten gelscht';
SIndexOutOfRange = 'Indice de malla fuera de rango';
SFixedColTooBig = 'El numero de columnas fijas tiene que ser menor que el contador Column';
SFixedRowTooBig = 'El numero de filas fijas tiene que ser menor que el contador Row';
{?} SInvalidStringGridOp = 'Es knnen keine Zeilen des ''Grids'' gelscht oder eingefgt werden';
SParseError = '%s en Linia %d';
SIdentifierExpected = 'Falta identificador';
SStringExpected = 'Falta string';
SNumberExpected = 'Falta numero';
SCharExpected = 'Falta %s';
SSymbolExpected = 'Falta %s';
SInvalidNumber = 'Valor numerico no valido';
SInvalidString = 'Constante string no valida';
SInvalidProperty = 'Valor de propiedad no valido';
SInvalidBinary = 'Binario no valido';
SOutlineIndexError = 'Indice de nodo no encontrado';
SOutlineExpandError = 'El nodo padre tiene que ser expandido';
SInvalidCurrentItem = 'Item no valido';
SMaskErr = 'Mascara no valida';
SMaskEditErr = 'Mascara no valida. Usa la tecla ESC para deshacer los cambios.';
SOutlineError = 'Indice de nodo no valido';
SOutlineBadLevel = '???';
{?} SOutlineSelection = 'Ungltige Auswahl';
{?} SOutlineFileLoad = 'Fehler beim Dateiladen';
{?} SOutlineLongLine = 'Zeile zu lang';
{?} SOutlineMaxLevels = 'Maximale Gliederungstiefe berschritten';
SMsgDlgWarning = 'Atencion';
SMsgDlgError = 'Error';
SMsgDlgInformation = 'Informacion';
SMsgDlgConfirm = 'Confirmar';
SMsgDlgYes = '&Si';
SMsgDlgNo = '&No';
SMsgDlgOK = 'Aceptar';
SMsgDlgCancel = 'Cancelar';
SMsgDlgHelp = '&Ayuda';
SMsgDlgHelpNone = 'No hay ayuda disponible';
SMsgDlgHelpHelp = 'Ayuda';
SMsgDlgAbort = 'A&bortar';
SMsgDlgRetry = '&Reintentar';
SMsgDlgIgnore = '&Ignorar';
SMsgDlgAll = '&Todo';
SMsgDlgNoToAll = 'N&o a todo';
SMsgDlgYesToAll = 'Si a To&do';
SmkcBkSp = 'Backspace';
SmkcTab = 'Tabulador';
SmkcEsc = 'Esc';
SmkcEnter = 'Intro';
SmkcSpace = 'Espacio';
SmkcPgUp = 'Pagina arriva';
SmkcPgDn = 'Pagina abajo';
SmkcEnd = 'Fin';
SmkcHome = 'Inicio';
SmkcLeft = 'Izquierda';
SmkcUp = 'Arriba';
SmkcRight = 'Derecha';
SmkcDown = 'Abajo';
SmkcIns = 'Insertar';
SmkcDel = 'Suprimir';
SmkcShift = 'Shift+';
SmkcCtrl = 'Ctrl+';
SmkcAlt = 'Alt+';
srUnknown = '(Desconocido)';
srNone = '(Vacio)';
SOutOfRange = 'El valor tiene que estar entre %d y %d';
SCannotCreateName = 'No es posible use el nombre estandard para un componente desconocido';
{?} SDateEncodeError = 'Ungltiges Argument fr Datumskodierung';
{?} STimeEncodeError = 'Ungltiges Argument fr Zeitkodierung';
{?} SInvalidDate = '''''%s'''' ist kein gltiges Datum';
{?} SInvalidTime = '''''%s'''' ist keine gltige Zeit';
{?} SInvalidDateTime = '''''%s'''' ist kein gltiges Datum und Zeit';
{?} SInsertLineError = 'Zeile kann nicht eingefgt werden';
{?} SCannotDragForm = 'Formulare knnen nicht gezogen werden';
{?} SPutObjectError = 'PutObject auf undefiniertes Element';
{?} SCardDLLNotLoaded = 'CARDS.DLL kann nicht geladen werden';
{?} SDuplicateCardId = 'Doppelte CardId gefunden';
{?} SDdeErr = 'Ein Fehler wurde von der DDE zurckgeliefert ($0%x)';
{?} SDdeConvErr = 'DDE Fehler - Konversation wurde nicht hergestellt ($0%x)';
{?} SDdeMemErr = 'Fehler trat auf, da unzureichender Speicher fr DDE ($0%x)';
{?} SDdeNoConnect = 'DDE-Konversation kann nicht eingerichtet werden';
{?} SDefaultFilter = 'Alle Dateien (*.*)|*.*';
{?} sAllFilter = 'Alle Dateien';
{?} SNoVolumeLabel = ': [ - Ohne Namen - ]';
{?} SConfirmCreateDir = 'Das angegebene Verzeichnis existiert nicht. Soll es angelegt werden?';
{?} SSelectDirCap = 'Verzeichnis auswhlen';
{?} SCannotCreateDir = 'Das Verzeichnis kann nicht erstellt werden';
{?} SDirNameCap = 'Verzeichnis&name:';
{?} SDrivesCap = '&Laufwerke:';
{?} SDirsCap = '&Verzeichnisse:';
{?} SFilesCap = '&Dateien: (*.*)';
{?} SNetworkCap = 'Ne&tzwerk...';
{?} SColorPrefix = 'Farbe';
SColorTags = 'ABCDEFGHIJKLMNOP';
{?} SInvalidClipFmt = 'Ungltiges Format der Zwischenablage';
{?} SIconToClipboard = 'Zwischenablage untersttzt keine Symbole';
{?} SDefault = 'Vorgabe';
{?} SInvalidMemoSize = 'Text berschreitet Memo-Kapazitt';
{?} SCustomColors = 'Selbstdefinierte Farben';
{?} SInvalidPrinterOp = 'Operation auf ausgewhltem Drucker nicht verfgbar';
{?} SNoDefaultPrinter = 'Zur Zeit ist kein Standard-Drucker gewhlt';
{?} SIniFileWriteError = 'nach %s kann nicht geschrieben werden';
{?} SBitsIndexError = 'Bits-Index auerhalb des zulssigen Bereichs';
{?} SUntitled = '(Unbenannt)';
{?} SInvalidRegType = 'Ungltiger Datentyp fr ''%s''';
{?} SRegCreateFailed = 'Erzeugung von Schlssel %s misslungen';
{?} SRegSetDataFailed = 'Konnte Daten fr ''%s'' nicht setzen';
{?} SRegGetDataFailed = 'Konnte Daten fr ''%s'' nicht holen';
{?} SUnknownConversion = 'Unbekannte Dateierweiterung fr RichEdit-Konvertierung (.%s)';
{?} SDuplicateMenus = 'Men ''%s'' wird bereits von einem anderen Formular benutzt';
{?} SPictureLabel = 'Bild:';
SPictureDesc = ' (%dx%d)';
{?} SPreviewLabel = 'Vorschau';
{?} SCannotOpenAVI = 'AVI kann nicht geffnet werden';
{?} SNotOpenErr = 'Kein MCI-Gert geffnet';
{?} SMPOpenFilter = 'Alle Dateien (*.*)|*.*|Wave-Dateien (*.WAV)|*.WAV|Midi-Dateien (*.MID)|*.MID|Video fr Windows (*.avi)|*.avi';
SMCINil = '';
SMCIAVIVideo = 'AVIVideo';
SMCICDAudio = 'CDAudio';
SMCIDAT = 'DAT';
SMCIDigitalVideo = 'DigitalVideo';
SMCIMMMovie = 'MMMovie';
SMCIOther = 'Andere';
SMCIOverlay = 'Overlay';
SMCIScanner = 'Scanner';
SMCISequencer = 'Sequencer';
SMCIVCR = 'VCR';
SMCIVideodisc = 'Videodisc';
SMCIWaveAudio = 'WaveAudio';
SMCIUnknownError = 'Unbekannter Fehlercode';
SBoldItalicFont = 'Negrita cursiva';
SBoldFont = 'Negrita';
SItalicFont = 'Cursiva';
SRegularFont = 'Normal';
{?} SPropertiesVerb = 'Eigenschaften';
|