1 | //*************************************************************
|
---|
2 | // IEDownload strings *
|
---|
3 | // *
|
---|
4 | // For Delphi 5 to 2009 *
|
---|
5 | // Freeware unit *
|
---|
6 | // by *
|
---|
7 | // Eran Bodankin (bsalsa) *
|
---|
8 | // bsalsa@gmail.com *
|
---|
9 | // *
|
---|
10 | // Documentation and updated versions: *
|
---|
11 | // http://www.bsalsa.com *
|
---|
12 | //*************************************************************
|
---|
13 | {*******************************************************************************}
|
---|
14 | {LICENSE:
|
---|
15 | THIS SOFTWARE IS PROVIDED TO YOU "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
---|
16 | EITHER EXPRESSED OR IMPLIED INCLUDING BUT NOT LIMITED TO THE APPLIED
|
---|
17 | WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
---|
18 | YOU ASSUME THE ENTIRE RISK AS TO THE ACCURACY AND THE USE OF THE SOFTWARE
|
---|
19 | AND ALL OTHER RISK ARISING OUT OF THE USE OR PERFORMANCE OF THIS SOFTWARE
|
---|
20 | AND DOCUMENTATION. BSALSA PRODUCTIONS DOES NOT WARRANT THAT THE SOFTWARE IS ERROR-FREE
|
---|
21 | OR WILL OPERATE WITHOUT INTERRUPTION. THE SOFTWARE IS NOT DESIGNED, INTENDED
|
---|
22 | OR LICENSED FOR USE IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE CONTROLS,
|
---|
23 | INCLUDING WITHOUT LIMITATION, THE DESIGN, CONSTRUCTION, MAINTENANCE OR
|
---|
24 | OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS,
|
---|
25 | AIR TRAFFIC CONTROL, AND LIFE SUPPORT OR WEAPONS SYSTEMS. BSALSA PRODUCTIONS SPECIFICALLY
|
---|
26 | DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR SUCH PURPOSE.
|
---|
27 |
|
---|
28 | You may use, change or modify the component under 3 conditions:
|
---|
29 | 1. In your website, add a link to "http://www.bsalsa.com"
|
---|
30 | 2. In your application, add credits to "Embedded Web Browser"
|
---|
31 | 3. Mail me (bsalsa@gmail.com) any code change in the unit
|
---|
32 | for the benefit of the other users.
|
---|
33 | 4. Please, consider donation in our web site!
|
---|
34 | {*******************************************************************************}
|
---|
35 |
|
---|
36 | unit IEDownloadStrings;
|
---|
37 |
|
---|
38 | interface
|
---|
39 |
|
---|
40 | resourcestring
|
---|
41 |
|
---|
42 | Bind_To_St = 'MonikerBindToStorage: ';
|
---|
43 | Create_BSCB = 'Creating IBindStatusCallback: ';
|
---|
44 | Create_Moniker = 'CreateMoniker: ';
|
---|
45 | CreateABindCtx = 'CreateAsyncBindCtx: ';
|
---|
46 | CreateURLMEx = 'CreateURLMonikerEx: ';
|
---|
47 | DL_DIR = 'Downloads\';
|
---|
48 | done = 'Done.';
|
---|
49 | DL_ToFile = 'UrlDownloadToFile';
|
---|
50 | DL_ToCacheFile = 'UrlDownloadToCacheFile';
|
---|
51 | Err_AsyncBindCtx = 'Error while CreateAsyncBindCtx: ';
|
---|
52 | Err_BindToSt = 'Error while MonikerBindToStorage ';
|
---|
53 | Err_CreateMoniker = 'Error while CreateMoniker ';
|
---|
54 | Err_Creating_Dir = ' while creating download folder';
|
---|
55 | Err_Folder = 'Error while opening folder';
|
---|
56 | Err_Proc_DL = 'ProcessEvents fails to wait until complete downloading';
|
---|
57 | Err_Proc_Ev = 'ProcessEvents fails to wait until complete.';
|
---|
58 | Err_RegBSCB = 'Error while RegisterBindStatusCallback: ';
|
---|
59 | Err_Revoke = 'Error while RevokeBindStatusCallback. ';
|
---|
60 | Err_ToFile = 'Error while UrlDownloadToFile';
|
---|
61 | Err_ToCacheFile = 'Error while UrlDownloadToCacheFile';
|
---|
62 | Err_TimeOut = 'Error: Timeout.';
|
---|
63 | Err_URLMEx = 'Error while CreateURLMonikerEx: ';
|
---|
64 | Frmt_Time = 'mm:ss.zzz';
|
---|
65 | kb_sec = 'kb/sec';
|
---|
66 | Reg_BSCB = 'RegisterBindStatusCallback: ';
|
---|
67 | Registering_new_moniker = 'Registering new moniker: ';
|
---|
68 | Revoke_BSCB = 'RevokeBindStatusCallback: ';
|
---|
69 | Err_Doc_AsAdvise = 'Error while getting ConnectionPoint.Advise: ';
|
---|
70 | Doc_AsAdvise = 'Getting ConnectionPoint.Advise ';
|
---|
71 | Err_Doc_AsPointContainer = 'Error while getting IConnectionPointContainer: ';
|
---|
72 | Doc_AsPointContainer = 'Getting IConnectionPointContainer: ';
|
---|
73 | Err_Doc_AsAmbientPropertyChange = 'Error while getting AmbientPropertyChang: ';
|
---|
74 | Doc_AsAmbientPropertyChange = 'Getting Ambient Property Change: ';
|
---|
75 | Err_Doc_AsSetClientSite = 'Error while getting Set Client Site: ';
|
---|
76 | Doc_AsSetClientSite = 'Getting Set Client Site: ';
|
---|
77 | Err_CoCreateInstance = 'Error while CoCreateInstance: ';
|
---|
78 | Succ_CoCreateInstance = 'Getting CoCreateInstance: ';
|
---|
79 | Err_IpersistMoniker_Load = 'Error while loading as IpersistMoniker: ';
|
---|
80 | Succ_IpersistMoniker_Load = 'Loading as IpersistMoniker ';
|
---|
81 | Err_Load_Str = 'Error while loading from string: ';
|
---|
82 | Succ_Load_Str = 'Loading from string: ';
|
---|
83 | Err_Load_Mon = 'Error while loading from moniker: ';
|
---|
84 | Succ_Load_Mon = 'Loading from moniker: ';
|
---|
85 | P_Wait = 'Please wait... ';
|
---|
86 | General_Error = 'An error occured while ';
|
---|
87 | Doc_Error = 'Bad document or bad address.';
|
---|
88 |
|
---|
89 | implementation
|
---|
90 |
|
---|
91 | end.
|
---|