Subversion Repositories Kolibri OS

Rev

Rev 1000 | Rev 1045 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1000 Rev 1035
Line 5... Line 5...
5
        dd      i_end
5
        dd      i_end
6
memsize dd      mem
6
memsize dd      mem
7
        dd      stacktop
7
        dd      stacktop
8
        dd      0, app_path
8
        dd      0, app_path
Line 9... Line 9...
9
 
9
 
10
version equ '0.61'
10
version equ '0.62'
Line 11... Line 11...
11
version_dword equ 0*10000h + 61
11
version_dword equ 0*10000h + 62
12
 
12
 
13
min_width = 54
13
min_width = 54
14
max_width = 255
14
max_width = 255
Line 8193... Line 8193...
8193
aDeleteLength = $ - aDelete - 1
8193
aDeleteLength = $ - aDelete - 1
8194
aCancel                 db      ' Cancel ',0
8194
aCancel                 db      ' Cancel ',0
8195
aCancelLength = $ - aCancel - 1
8195
aCancelLength = $ - aCancel - 1
8196
aCancelB                db      '[ Cancel ]',0
8196
aCancelB                db      '[ Cancel ]',0
8197
aCancelBLength = $ - aCancelB - 1
8197
aCancelBLength = $ - aCancelB - 1
-
 
8198
aCancelB2 = aCancelB
-
 
8199
aCancelB2Length = $ - aCancelB2 - 1
8198
aCopyCaption            db      'Copy',0
8200
aCopyCaption            db      'Copy',0
8199
aCopy                   db      '[ Copy ]',0
8201
aCopy                   db      '[ Copy ]',0
8200
aCopyLength = $ - aCopy - 1
8202
aCopyLength = $ - aCopy - 1
8201
a_Continue              db      '[ Continue ]',0
8203
a_Continue              db      '[ Continue ]',0
8202
a_ContinueLength = $ - a_Continue - 1
8204
a_ContinueLength = $ - a_Continue - 1
Line 8270... Line 8272...
8270
aWholeWords             db      'Whole words',0
8272
aWholeWords             db      'Whole words',0
8271
aReverseSearch          db      'Reverse search',0
8273
aReverseSearch          db      'Reverse search',0
8272
aStringNotFound         db      'Could not find the string',0
8274
aStringNotFound         db      'Could not find the string',0
8273
aFileSearch             db      'Find file',0
8275
aFileSearch             db      'Find file',0
8274
aFileMasks              db      'A file mask or several file masks:',0
8276
aFileMasks              db      'A file mask or several file masks:',0
-
 
8277
aFileMasksLen = $ - aFileMasks - 1
8275
aContainingText         db      'Containing text:',0
8278
aContainingText         db      'Containing text:',0
-
 
8279
aContainingTextLen = $ - aContainingText - 1
8276
aSearchingIn            db      'Searching "" in:',0
8280
aSearchingIn            db      'Searching "" in:',0
8277
aSearchingInLen = $ - aSearchingIn - 1
8281
aSearchingInLen = $ - aSearchingIn - 1
8278
aSearchDone             db      'Search done. Found ? file(s)',0
8282
aSearchDone             db      'Search done. Found ? file(s)',0
8279
aSearchDoneLen = $ - aSearchDone - 1
8283
aSearchDoneLen = $ - aSearchDone - 1
8280
aNewSearch              db      '[ New search ]',0
8284
aNewSearch              db      '[ New search ]',0
Line 8283... Line 8287...
8283
aGotoLen = $ - aGoto - 1
8287
aGotoLen = $ - aGoto - 1
8284
aView                   db      '[ View ]',0
8288
aView                   db      '[ View ]',0
8285
aViewLen = $ - aView - 1
8289
aViewLen = $ - aView - 1
8286
aEditConfigErr1         db      'Error in configuration of plugins for the editor.',0
8290
aEditConfigErr1         db      'Error in configuration of plugins for the editor.',0
8287
aEditConfigErr2         db      'Try to remove unnecessary plugins.',0
8291
aEditConfigErr2         db      'Try to remove unnecessary plugins.',0
-
 
8292
aEditNoMemory           db      'The file is too big for the editor.',0
8288
aLine                   db      '    Line'
8293
aLine                   db      '    Line'
8289
aCol                    db      '   Col '
8294
aCol                    db      '   Col '
8290
aEditorTitle            db      'Editor',0
8295
aEditorTitle            db      'Editor',0
8291
aFileModified           db      'File has been modified',0
8296
aFileModified           db      'File has been modified',0
8292
aSave                   db      'Save',0
8297
aSave                   db      'Save',0
8293
aDontSave               db      'Do not save',0
8298
aDontSave               db      'Do not save',0
8294
aContinueEdit           db      'Continue editing',0
8299
aContinueEdit           db      'Continue editing',0
8295
aCannotSaveToPlugin     db      'Saving is not supported for plugin panels',0
8300
aCannotSaveToPlugin     db      'Saving is not supported for plugin panels',0
-
 
8301
aCannotSearchOnPlugin   db      'The search on plugin panels is not supported yet',0
8296
aCancelled              db      'Operation has been interrupted',0
8302
aCancelled              db      'Operation has been interrupted',0
8297
aConfirmCancel          db      'Do you really want to cancel it?',0
8303
aConfirmCancel          db      'Do you really want to cancel it?',0
8298
end if
8304
end if
Line 8299... Line 8305...
8299
 
8305