blob: a519f7fbea72c8cba49855345a366f46a135ec3d (
plain) (
blame)
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
|
/*** filelist.msg - Displayable strings for filelist.c
*
* Microsoft Confidential
* Copyright (C) Microsoft Corporation 1993-1994
* All Rights Reserved.
*
* Author:
* Benjamin W. Slivka
*
* History:
* 20-Aug-1993 bens Initial version
* 01-Apr-1994 bens Added FLSetSource() message
* 07-Jun-1994 bens Add localization comments (whew!)
*/
/*
** Error Messages
*/
/*LOCALIZE
*
* Purpose: Out of memory doing file list management.
* %1 = Detailed error message (one of psz_... below)
* Generate: Difficult -- have to create low memory situation.
* DO NOT TRY TO REPRO.
*/
#define pszFLISTERR_OUT_OF_MEMORY "Out of memory: %1"
/*LOCALIZE
*
* Purpose: Out of memory creating a file list.
* Generate: Difficult -- have to create low memory situation.
* DO NOT TRY TO REPRO.
*/
#define pszCREATING_FILE_LIST "Creating file list" // For out of mem
/*LOCALIZE
*
* Purpose: Out of memory adding a file to a file list.
* Generate: Difficult -- have to create low memory situation.
* DO NOT TRY TO REPRO.
*/
#define pszADDING_FILE "Adding a file" // For out of mem
/*LOCALIZE
*
* Purpose: Out of memory changing the destination name in a file list.
* Generate: Difficult -- have to create low memory situation.
* DO NOT TRY TO REPRO.
*/
#define pszCHANGING_DESTINATION "Changing destination" // For out of mem
/*LOCALIZE
*
* Purpose: Out of memory changing the source name in a file list.
* Generate: Difficult -- have to create low memory situation.
* DO NOT TRY TO REPRO.
*/
#define pszCHANGING_SOURCE "Changing source" // For out of mem
//*** THE END - filelist.msg
|