Changeset 343 for ExceptionLogger


Ignore:
Timestamp:
Apr 3, 2012, 7:36:23 AM (12 years ago)
Author:
chronos
Message:
 
Location:
ExceptionLogger
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • ExceptionLogger/Demo/Demo.lpi

    r297 r343  
    5656        <ResourceBaseClass Value="Form"/>
    5757        <UnitName Value="UMainForm"/>
    58         <IsVisibleTab Value="True"/>
    5958        <EditorIndex Value="0"/>
    6059        <WindowIndex Value="0"/>
    6160        <TopLine Value="14"/>
    62         <CursorPos X="1" Y="27"/>
     61        <CursorPos X="26" Y="34"/>
    6362        <UsageCount Value="20"/>
    6463        <Loaded Value="True"/>
     
    8988        <EditorIndex Value="3"/>
    9089        <WindowIndex Value="0"/>
    91         <TopLine Value="83"/>
    92         <CursorPos X="31" Y="89"/>
     90        <TopLine Value="42"/>
     91        <CursorPos X="33" Y="85"/>
    9392        <UsageCount Value="10"/>
    9493        <Loaded Value="True"/>
     
    116115        <Filename Value="../UExceptionLogger.pas"/>
    117116        <UnitName Value="UExceptionLogger"/>
     117        <IsVisibleTab Value="True"/>
    118118        <EditorIndex Value="1"/>
    119119        <WindowIndex Value="0"/>
    120         <TopLine Value="228"/>
    121         <CursorPos X="23" Y="233"/>
     120        <TopLine Value="46"/>
     121        <CursorPos X="29" Y="59"/>
    122122        <UsageCount Value="10"/>
    123123        <Loaded Value="True"/>
  • ExceptionLogger/ExceptionLogger.lpk

    r295 r343  
    77    <Author Value="Chronos (robie@centrum.cz)"/>
    88    <CompilerOptions>
    9       <Version Value="10"/>
     9      <Version Value="11"/>
    1010      <PathDelim Value="\"/>
    1111      <SearchPaths>
     
    1717        </SyntaxOptions>
    1818      </Parsing>
    19       <Linking>
    20         <Debugging>
    21           <GenerateDebugInfo Value="True"/>
    22           <DebugInfoType Value="dsAuto"/>
    23         </Debugging>
    24       </Linking>
    2519      <Other>
    2620        <CompilerMessages>
     
    3327    <License Value="GNU/GPL"/>
    3428    <Version Major="1"/>
    35     <Files Count="6">
     29    <Files Count="5">
    3630      <Item1>
    3731        <Filename Value="CustomLineInfo.pas"/>
     
    4337      </Item2>
    4438      <Item3>
    45         <Filename Value="UExceptionForm.lfm"/>
    46         <Type Value="LFM"/>
     39        <Filename Value="UExceptionForm.pas"/>
     40        <UnitName Value="UExceptionForm"/>
    4741      </Item3>
    4842      <Item4>
    49         <Filename Value="UExceptionForm.pas"/>
    50         <UnitName Value="UExceptionForm"/>
    51       </Item4>
    52       <Item5>
    5343        <Filename Value="UExceptionLogger.pas"/>
    5444        <HasRegisterProc Value="True"/>
    5545        <UnitName Value="UExceptionLogger"/>
    56       </Item5>
    57       <Item6>
     46      </Item4>
     47      <Item5>
    5848        <Filename Value="ReadMe.txt"/>
    5949        <Type Value="Binary"/>
    60       </Item6>
     50      </Item5>
    6151    </Files>
    6252    <i18n>
  • ExceptionLogger/UExceptionForm.lfm

    r295 r343  
    11object ExceptionForm: TExceptionForm
    2   Left = 331
    3   Height = 301
    4   Top = 184
     2  Left = 342
     3  Height = 299
     4  Top = 202
    55  Width = 457
    66  Caption = 'Exception info'
    7   ClientHeight = 301
     7  ClientHeight = 299
    88  ClientWidth = 457
    99  OnCreate = FormCreate
     
    155155  object PanelDescription: TPanel
    156156    Left = 0
    157     Height = 189
     157    Height = 187
    158158    Top = 80
    159159    Width = 457
    160160    Align = alClient
    161161    BevelOuter = bvNone
    162     ClientHeight = 189
     162    ClientHeight = 187
    163163    ClientWidth = 457
    164164    TabOrder = 1
    165165    object PageControl1: TPageControl
    166166      Left = 8
    167       Height = 187
     167      Height = 185
    168168      Top = 0
    169169      Width = 444
     
    190190      object TabSheet2: TTabSheet
    191191        Caption = 'Call stack'
    192         ClientHeight = 161
     192        ClientHeight = 159
    193193        ClientWidth = 436
    194194        object ListView1: TListView
    195195          Left = 4
    196           Height = 151
     196          Height = 149
    197197          Top = 7
    198198          Width = 430
     
    234234    Left = 0
    235235    Height = 32
    236     Top = 269
     236    Top = 267
    237237    Width = 457
    238238    Align = alBottom
     
    242242    TabOrder = 2
    243243    object ButtonKill: TButton
    244       Left = 295
     244      Left = 280
    245245      Height = 25
    246246      Top = 3
    247       Width = 83
     247      Width = 91
    248248      Anchors = [akRight, akBottom]
    249       Caption = 'Terminate'
     249      Caption = 'Exit program'
    250250      OnClick = ButtonKillClick
    251251      TabOrder = 0
    252252    end
    253253    object ButtonClose: TButton
    254       Left = 383
     254      Left = 376
    255255      Height = 25
    256256      Top = 3
    257       Width = 67
     257      Width = 74
    258258      Anchors = [akRight, akBottom]
    259       Caption = 'Close'
     259      Caption = 'Continue'
    260260      OnClick = ButtonCloseClick
    261261      TabOrder = 1
     
    271271    end
    272272    object ButtonDetails: TButton
    273       Left = 215
     273      Left = 200
    274274      Height = 25
    275275      Top = 3
  • ExceptionLogger/UExceptionForm.lrt

    r295 r343  
    1010TEXCEPTIONFORM.LISTVIEW1.COLUMNS[4].CAPTION=Procedure/method
    1111TEXCEPTIONFORM.LISTVIEW1.COLUMNS[5].CAPTION=Unit
    12 TEXCEPTIONFORM.BUTTONKILL.CAPTION=Terminate
    13 TEXCEPTIONFORM.BUTTONCLOSE.CAPTION=Close
     12TEXCEPTIONFORM.BUTTONKILL.CAPTION=Exit program
     13TEXCEPTIONFORM.BUTTONCLOSE.CAPTION=Continue
    1414TEXCEPTIONFORM.CHECKBOXIGNORE.CAPTION=Next time ignore this exception
    1515TEXCEPTIONFORM.BUTTONDETAILS.CAPTION=Details
  • ExceptionLogger/UExceptionLogger.pas

    r297 r343  
    5757  SGeneral = 'General';
    5858  SErrorOccured = 'Error occured during program execution:';
    59   STerminate = 'Terminate';
    60   SClose = 'Close';
     59  STerminate = 'Exit program';
     60  SClose = 'Continue';
    6161  SDetails = 'Details';
    6262  SIgnoreNextTime = 'Next time ignore this exception';
  • ExceptionLogger/languages/UExceptionLogger.cs.po

    r297 r343  
    55"POT-Creation-Date: \n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Chronos <robie@centrum.cz>\n"
     7"Last-Translator: Jiří Hajda <robie@centrum.cz>\n"
    88"Language-Team: \n"
    99"MIME-Version: 1.0\n"
     
    2828
    2929#: uexceptionlogger.sclose
    30 msgid "Close"
    31 msgstr "Zavřít"
     30#| msgid "Close"
     31msgid "Continue"
     32msgstr "Pokračovat"
    3233
    3334#: uexceptionlogger.sdetails
     
    8182
    8283#: uexceptionlogger.sterminate
    83 msgid "Terminate"
    84 msgstr "Přerušit"
     84#| msgid "Terminate"
     85msgid "Exit program"
     86msgstr "Ukončit program"
    8587
    8688#: uexceptionlogger.sthreadid
  • ExceptionLogger/languages/UExceptionLogger.po

    r297 r343  
    44#: uexceptionlogger.saddress
    55msgid "Address"
    6 msgstr ""
     6msgstr "Content-Type: text/plain; charset=UTF-8"
    77
    88#: uexceptionlogger.sapplication
     
    2020
    2121#: uexceptionlogger.sclose
    22 msgid "Close"
     22msgid "Continue"
    2323msgstr ""
    2424
     
    7373
    7474#: uexceptionlogger.sterminate
    75 msgid "Terminate"
     75msgid "Exit program"
    7676msgstr ""
    7777
Note: See TracChangeset for help on using the changeset viewer.