summaryrefslogtreecommitdiff
path: root/uui/source/ids.src
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-06-22 13:07:00 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-06-22 13:07:00 +0000
commitf7d3bdb2de163d654638473c8ddc02d0d06a5d82 (patch)
tree2aa9613d6491c86ef306b649785166437c5460a9 /uui/source/ids.src
parent5e75a4e706782effcb05e1805eae4f3f572fd07f (diff)
#87187# - Added support for css::ucb::InteractiveAugmentedIOException
Diffstat (limited to 'uui/source/ids.src')
-rw-r--r--uui/source/ids.src229
1 files changed, 225 insertions, 4 deletions
diff --git a/uui/source/ids.src b/uui/source/ids.src
index 3027d8c51bc4..6176d28e2d60 100644
--- a/uui/source/ids.src
+++ b/uui/source/ids.src
@@ -2,9 +2,9 @@
*
* $RCSfile: ids.src,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: vg $ $Date: 2001-06-08 21:41:36 $
+ * last change: $Author: kso $ $Date: 2001-06-22 14:06:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,9 +62,11 @@
//
// Miscellaneous Resources
//
-// $Author: vg $ $Date: 2001-06-08 21:41:36 $ $Revision: 1.11 $
+// $Author: kso $ $Date: 2001-06-22 14:06:59 $ $Revision: 1.12 $
//============================================================================
+#define __RSC
+
#ifndef UUI_IDS_HRC
#include <ids.hrc>
#endif
@@ -177,4 +179,223 @@ String STR_ERROR_WRONGMEDIUM
Text[ finnish ] = "Syt tallennusvline $$.";
};
-
+Resource RID_UUI_ERRHDL
+{
+ // IOErrorCode_ABORT = 0,
+ String ( ERRCODE_UUI_IO_ABORT & ERRCODE_RES_MASK )
+ {
+ Text = "Die auf $(ARG1) ausgefnhrte Aktion wurde abgebrochen" ;
+ Text [ ENGLISH ] = "The operation executed on $(ARG1) was aborted" ;
+ };
+ // IOErrorCode_ACCESS_DENIED = 1,
+ String ( ERRCODE_UUI_IO_ACCESSDENIED & ERRCODE_RES_MASK )
+ {
+ Text = "Der Zugriff auf auf $(ARG1) wurde verweigert" ;
+ Text [ ENGLISH ] = "The access to $(ARG1) was denied" ;
+ };
+ // IOErrorCode_ALREADY_EXISTING = 2,
+ String ( ERRCODE_UUI_IO_ALREADYEXISTS & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) existiert bereits" ;
+ Text [ ENGLISH ] = "$(ARG1) does already exist" ;
+ };
+ // IOErrorCode_BAD_CRC = 3,
+ String ( ERRCODE_UUI_IO_BADCRC & ERRCODE_RES_MASK )
+ {
+ Text = "Die Daten von $(ARG1) haben eine inkorrekte Prnfsumme" ;
+ Text [ english ] = "The data of $(ARG1) have an incorrect checksum" ;
+ };
+ // IOErrorCode_CANT_CREATE = 4,
+ String ( ERRCODE_UUI_IO_CANTCREATE & ERRCODE_RES_MASK )
+ {
+ // !!! $(ARG1) can be empty!
+ Text = "Das Objekt $(ARG1) kann im Verzeichnis $(ARG2) nicht angelegt werden" ;
+ Text [ ENGLISH ] = "The object $(ARG1) could not be created in directory $(ARG2)" ;
+ };
+ // IOErrorCode_CANT_READ = 5,
+ String ( ERRCODE_UUI_IO_CANTREAD & ERRCODE_RES_MASK )
+ {
+ Text = "Daten von $(ARG1) konnten nicht gelesen werden" ;
+ Text [ ENGLISH ] = "Data of $(ARG1) could not be read" ;
+ };
+ // IOErrorCode_CANT_SEEK = 6,
+ String ( ERRCODE_UUI_IO_CANTSEEK & ERRCODE_RES_MASK )
+ {
+ Text = "Die Seek-Operation auf $(ARG1) konnte nicht ausgefnhrt werden" ;
+ Text [ ENGLISH ] = "The seek operation on $(ARG1) could not be completed" ;
+ };
+ // IOErrorCode_CANT_TELL = 7,
+ String ( ERRCODE_UUI_IO_CANTTELL & ERRCODE_RES_MASK )
+ {
+ Text = "Die Tell-Operation auf $(ARG1) konnte nicht ausgefnhrt werden" ;
+ Text [ ENGLISH ] = "The tell operation on $(ARG1) could not be completed" ;
+ };
+ // IOErrorCode_CANT_WRITE = 8,
+ String ( ERRCODE_UUI_IO_CANTWRITE & ERRCODE_RES_MASK )
+ {
+ Text = "Daten fnr $(ARG1) konnten nicht geschrieben werden" ;
+ Text [ ENGLISH ] = "Data for $(ARG1) could not be written" ;
+ };
+ // IOErrorCode_CURRENT_DIRECTORY = 9,
+ String ( ERRCODE_UUI_IO_CURRENTDIR & ERRCODE_RES_MASK )
+ {
+ Text = "Aktion unmglich: $(ARG1) ist das aktuelle Verzeichnis" ;
+ Text [ english ] = "Action not allowed: $(ARG1) is the current directory" ;
+ };
+ // IOErrorCode_DEVICE_NOT_READY = 10,
+ String ( ERRCODE_UUI_IO_DEVICENOTREADY & ERRCODE_RES_MASK )
+ {
+ Text = "Das GerSt (Laufwerk) $(ARG1) ist nicht bereit" ;
+ Text [ english ] = "The Device (drive) $(ARG1) is not ready" ;
+ };
+ // IOErrorCode_DIFFERENT_DEVICES = 11,
+ String ( ERRCODE_UUI_IO_NOTSAMEDEVICE & ERRCODE_RES_MASK )
+ {
+ Text = "Aktion unmglich: $(ARG1) und $(ARG2) sind verschiedene GerSte (Laufwerke)" ;
+ Text [ english ] = "Action not allowed: $(ARG1) and $(ARG2) are different devices (drives)" ;
+ };
+ // IOErrorCode_GENERAL = 12,
+ String ( ERRCODE_UUI_IO_GENERAL & ERRCODE_RES_MASK )
+ {
+ Text = "Allgemeiner Ein-/Ausgabefehler beim Zugriff auf $(ARG1)" ;
+ Text [ ENGLISH ] = "General input/output error while accessing $(ARG1)" ;
+ };
+ // IOErrorCode_INVALID_ACCESS = 13,
+ String ( ERRCODE_UUI_IO_INVALIDACCESS & ERRCODE_RES_MASK )
+ {
+ Text = "Es wurde versucht, in ungnltiger Weise auf $(ARG1) zuzugreifen" ;
+ Text [ ENGLISH ] = "An invalid attempt was made to access $(ARG1)" ;
+ };
+ // IOErrorCode_INVALID_CHARACTER = 14,
+ String ( ERRCODE_UUI_IO_INVALIDCHAR & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) enthSlt unzulSssige Zeichen" ;
+ Text [ ENGLISH ] = "$(ARG1) contains invalid characters" ;
+ };
+ // IOErrorCode_INVALID_DEVICE = 15,
+ String ( ERRCODE_UUI_IO_INVALIDDEVICE & ERRCODE_RES_MASK )
+ {
+ Text = "Das GerSt (Laufwerk) $(ARG1) ist ungnltig" ;
+ Text [ ENGLISH ] = "The device (drive) $(ARG1) is invalid" ;
+ };
+ // IOErrorCode_INVALID_LENGTH = 16,
+ String ( ERRCODE_UUI_IO_INVALIDLENGTH & ERRCODE_RES_MASK )
+ {
+ Text = "Die Daten von $(ARG1) haben eine ungnltige LSnge" ;
+ Text [ english ] = "The data of $(ARG1) have an invalid length" ;
+ };
+ // IOErrorCode_INVALID_PARAMETER = 17,
+ String ( ERRCODE_UUI_IO_INVALIDPARAMETER & ERRCODE_RES_MASK )
+ {
+ Text = "Die Operation auf $(ARG1) wurde mit einem ungnltigen Parameter gestartet" ;
+ Text [ ENGLISH ] = "The operation on $(ARG1) was started with an invalid parameter" ;
+ };
+ // IOErrorCode_IS_WILDCARD = 18,
+ String ( ERRCODE_UUI_IO_ISWILDCARD & ERRCODE_RES_MASK )
+ {
+ Text = "Die Operation kann nicht ausgefnhrt werden, weil $(ARG1) Wildcards enthSlt";
+ Text [ ENGLISH ] = "The operation cannot be run, because $(ARG1) contains wildcards" ;
+ };
+ // IOErrorCode_LOCKING_VIOLATION = 19,
+ String ( ERRCODE_UUI_IO_LOCKVIOLATION & ERRCODE_RES_MASK )
+ {
+ Text = "Fehler beim gemeinsamen Zugriff auf $(ARG1)" ;
+ Text [ ENGLISH ] = "Sharing violation while accessing $(ARG1)" ;
+ };
+ // IOErrorCode_MISPLACED_CHARACTER = 20,
+ String ( ERRCODE_UUI_IO_MISPLACEDCHAR & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) enthSlt Zeichen an unzulSssiger Position" ;
+ Text [ ENGLISH ] = "$(ARG1) contains misplaced characters" ;
+ };
+ // IOErrorCode_NAME_TOO_LONG = 21,
+ String ( ERRCODE_UUI_IO_NAMETOOLONG & ERRCODE_RES_MASK )
+ {
+ Text = "Der Name $(ARG1) enthSlt zu viele Zeichen" ;
+ Text [ ENGLISH ] = "The name $(ARG1) contains to many characters" ;
+ };
+ // IOErrorCode_NOT_EXISTING = 22,
+ String ( ERRCODE_UUI_IO_NOTEXISTS & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) existiert nicht" ;
+ Text [ ENGLISH ] = "$(ARG1) does not exist" ;
+ };
+ // IOErrorCode_NOT_EXISTING_PATH = 23,
+ String ( ERRCODE_UUI_IO_NOTEXISTSPATH & ERRCODE_RES_MASK )
+ {
+ Text = "Der Pfad $(ARG1) existiert nicht" ;
+ Text [ ENGLISH ] = "The path $(ARG1) does not exist" ;
+ };
+ // IOErrorCode_NOT_SUPPORTED = 24,
+ String ( ERRCODE_UUI_IO_NOTSUPPORTED & ERRCODE_RES_MASK )
+ {
+ Text = "Die Operation auf $(ARG1) wird auf dem vorliegenden Betriebssystem nicht unterstntzt" ;
+ Text [ ENGLISH ] = "The operation on $(ARG1) is not supported on this operating system" ;
+ };
+ // IOErrorCode_NO_DIRECTORY = 25,
+ String ( ERRCODE_UUI_IO_NOTADIRECTORY & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) ist kein Verzeichnis" ;
+ Text [ ENGLISH ] = "$(ARG1) is not a directory" ;
+ };
+ // IOErrorCode_NO_FILE = 26,
+ String ( ERRCODE_UUI_IO_NOTAFILE & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) ist keine Datei" ;
+ Text [ ENGLISH ] = "$(ARG1) is not a file" ;
+ };
+ // IOErrorCode_OUT_OF_DISK_SPACE = 27,
+ String ( ERRCODE_UUI_IO_OUTOFSPACE & ERRCODE_RES_MASK )
+ {
+ Text = "Auf dem GerSt $(ARG1) ist kein Platz mehr vorhanden" ;
+ Text [ ENGLISH ] = "There was no space left on device $(ARG1)" ;
+ };
+ // IOErrorCode_OUT_OF_FILE_HANDLES = 28,
+ String ( ERRCODE_UUI_IO_TOOMANYOPENFILES & ERRCODE_RES_MASK )
+ {
+ Text = "Die Operation auf $(ARG1) kann nicht ausgefnhrt werden, da bereits zu viele Dateien geffnet sind" ;
+ Text [ ENGLISH ] = "The operation on $(ARG1) can't be completed because there are too many open files" ;
+ };
+ // IOErrorCode_OUT_OF_MEMORY = 29,
+ String ( ERRCODE_UUI_IO_OUTOFMEMORY & ERRCODE_RES_MASK )
+ {
+ Text = "Die Operation auf $(ARG1) kann nicht ausgefnhrt werden, da kein Speicher mehr zur Verfngung steht" ;
+ Text [ ENGLISH ] = "The operation on $(ARG1) can't be completed because there is no more memory available" ;
+ };
+ // IOErrorCode_PENDING = 30,
+ String ( ERRCODE_UUI_IO_PENDING & ERRCODE_RES_MASK )
+ {
+ Text = "Die Operation auf $(ARG1) kann nicht fortgesetzt werden, weil weitere Daten erwartet werden" ;
+ Text [ ENGLISH ] = "The operation on $(ARG1) cannot continue, because there are pending data" ;
+ };
+ // IOErrorCode_RECURSIVE = 31,
+ String ( ERRCODE_UUI_IO_RECURSIVE & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) kann nicht in sich selbst kopiert werden" ;
+ Text [ ENGLISH ] = "$(ARG1) cannot be copied into itself" ;
+ };
+ // IOErrorCode_UNKNOWN = 32,
+ String ( ERRCODE_UUI_IO_UNKNOWN & ERRCODE_RES_MASK )
+ {
+ Text = "Unbekannter Ein-/Ausgabefehler beim Zugriff auf $(ARG1)" ;
+ Text [ ENGLISH ] = "Unknown input/output error while accessing $(ARG1)" ;
+ };
+ // IOErrorCode_WRITE_PROTECTED = 33,
+ String ( ERRCODE_UUI_IO_WRITEPROTECTED & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) ist schreibgeschntzt" ;
+ Text [ english ] = "$(ARG1) is write protected" ;
+ };
+ // IOErrorCode_WRONG_FORMAT = 34,
+ String ( ERRCODE_UUI_IO_WRONGFORMAT & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) liegt in einem falschen Format vor" ;
+ Text [ ENGLISH ] = "$(ARG1) has an incorrect format" ;
+ };
+ // IOErrorCode_WRONG_VERSION = 35,
+ String ( ERRCODE_UUI_IO_WRONGVERSION & ERRCODE_RES_MASK )
+ {
+ Text = "$(ARG1) liegt in einer falschen Version vor" ;
+ Text [ ENGLISH ] = "$(ARG1) has an incorrect version" ;
+ };
+};