summaryrefslogtreecommitdiff
path: root/sc/source/ui/src/scerrors.src
blob: a6662c06d1f7e6ac4ff05e11e9df78238cee980e (plain)
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
#define __RSC
#include "scerrors.hxx"
#include "sc.hrc"

StringArray RID_ERRHDLSC
{
    ItemList [ en-US ] =
    {
        // ERRORS -----------------------------------------------------
        < "Impossible to connect to the file." ;
          SCERR_IMPORT_CONNECT & ERRCODE_RES_MASK ; >;
        < "File could not be opened." ;
          SCERR_IMPORT_OPEN & ERRCODE_RES_MASK ; >;
        < "An unknown error has occurred." ;
          SCERR_IMPORT_UNKNOWN & ERRCODE_RES_MASK ; >;
        < "Not enough memory while importing." ;
          SCERR_IMPORT_OUTOFMEM & ERRCODE_RES_MASK ; >;
        < "Unknown Lotus1-2-3 file format." ;
          SCERR_IMPORT_UNKNOWN_WK & ERRCODE_RES_MASK ; >;
        < "Error in file structure while importing." ;
          SCERR_IMPORT_FORMAT & ERRCODE_RES_MASK ; >;
        < "There is no filter available for this file type." ;
          SCERR_IMPORT_NI & ERRCODE_RES_MASK ; >;
        < "Unknown or unsupported Excel file format." ;
          SCERR_IMPORT_UNKNOWN_BIFF & ERRCODE_RES_MASK ; >;
        < "Excel file format not yet implemented." ;
          SCERR_IMPORT_NI_BIFF & ERRCODE_RES_MASK ; >;
        < "This file is password-protected." ;
          SCERR_IMPORT_FILEPASSWD & ERRCODE_RES_MASK ; >;
        < "Internal import error." ;
          SCERR_IMPORT_INTERNAL & ERRCODE_RES_MASK ; >;
        < "The file contains data after row 8192 and therefore can not be read." ;
          SCERR_IMPORT_8K_LIMIT & ERRCODE_RES_MASK ; >;
        < "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col).";
          SCERR_IMPORT_FILE_ROWCOL & ERRCODE_RES_MASK ; >;
        < "File format error found at $(ARG1)(row,col)." ;
          SCERR_IMPORT_FORMAT_ROWCOL & ERRCODE_RES_MASK ; >;

        // Export ----------------------------------------------------
        < "Connection to the file could not be established." ;
          SCERR_EXPORT_CONNECT & ERRCODE_RES_MASK ; >;
        < "Data could not be written." ;
          SCERR_EXPORT_DATA & ERRCODE_RES_MASK ; >;
        < "$(ARG1)" ;
          SCERR_EXPORT_SQLEXCEPTION & ERRCODE_RES_MASK ; >;
        < "Cell $(ARG1) contains characters that are not representable in the selected target character set \"$(ARG2)\"." ;
          SCERR_EXPORT_ENCODING & ERRCODE_RES_MASK ; >;
        < "Cell $(ARG1) contains a string that is longer in the selected target character set \"$(ARG2)\" than the given field width." ;
          SCERR_EXPORT_FIELDWIDTH & ERRCODE_RES_MASK ; >;

        // WARNINGS ---------------------------------------------------
        < "Only the active sheet was saved." ;
          SCWARN_EXPORT_ASCII & ERRCODE_RES_MASK ; >;
        < "The maximum number of rows has been exceeded. Excess rows were not imported!" ;
          SCWARN_IMPORT_RANGE_OVERFLOW & ERRCODE_RES_MASK ; >;
        < "The data could not be loaded completely because the maximum number of rows per sheet was exceeded." ;
          SCWARN_IMPORT_ROW_OVERFLOW & ERRCODE_RES_MASK ; >;
        < "The data could not be loaded completely because the maximum number of columns per sheet was exceeded." ;
          SCWARN_IMPORT_COLUMN_OVERFLOW & ERRCODE_RES_MASK ; >;
        < "Not all sheets have been loaded because the maximum number of sheets was exceeded.\n\nPlease be warned that re-saving this document will permanently delete those sheets that have not been loaded!" ;
          SCWARN_IMPORT_SHEET_OVERFLOW & ERRCODE_RES_MASK ; >;
        < "The data could not be loaded completely because the maximum number of characters per cell was exceeded." ;
          SCWARN_IMPORT_CELL_OVERFLOW & ERRCODE_RES_MASK ; >;
        < "Corresponding FM3-File could not be opened." ;
          SCWARN_IMPORT_OPEN_FM3 & ERRCODE_RES_MASK ; >;
        < "Error in file structure of corresponding FM3-File." ;
          SCWARN_IMPORT_WRONG_FM3 & ERRCODE_RES_MASK ; >;
        < "Document too complex for automatic calculation. Press F9 to recalculate." ;
          SCWARN_CORE_HARD_RECALC & ERRCODE_RES_MASK ; >;
        < "The document contains more rows than supported in the selected format.\nAdditional rows were not saved." ;
          SCWARN_EXPORT_MAXROW & ERRCODE_RES_MASK ; >;
        < "The document contains more columns than supported in the selected format.\nAdditional columns were not saved." ;
          SCWARN_EXPORT_MAXCOL & ERRCODE_RES_MASK ; >;
        < "The document contains more sheets than supported in the selected format.\nAdditional sheets were not saved." ;
          SCWARN_EXPORT_MAXTAB & ERRCODE_RES_MASK ; >;
        < "The document contains information not recognized by this program version.\nResaving the document will delete this information!" ;
          SCWARN_IMPORT_INFOLOST & ERRCODE_RES_MASK ; >;
        < "Not all cell contents could be saved in the specified format." ;
          SCWARN_EXPORT_DATALOST & ERRCODE_RES_MASK ; >;
        < "The following characters could not be converted to the selected character set\nand were written as &#1234; surrogates:\n\n$(ARG1)";
          SCWARN_EXPORT_NONCONVERTIBLE_CHARS & ERRCODE_RES_MASK ; >;
        < "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col).";
          SCWARN_IMPORT_FILE_ROWCOL & ERRCODE_RES_MASK ; >;
        < "Not all attributes could be read." ;
          SCWARN_IMPORT_FEATURES_LOST & ERRCODE_RES_MASK ; >;
    };
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */