Check-in [ce8c160b30]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Adding some TortoiseSVN icons
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ce8c160b304228dbf7e7f1aef7d195f79663d077
User & Date: edwardlblake 2012-09-26 05:40:18.686
Context
2012-09-26
06:43
Changed TortoiseFossilShell to only use named pipe check-in: 4d2727161c user: edwardlblake tags: trunk
05:40
Adding some TortoiseSVN icons check-in: ce8c160b30 user: edwardlblake tags: trunk
2012-09-25
10:53
More improvements check-in: caca3e3eb4 user: edwardlblake tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Added extern/TortoiseOverlays/Documentation.txt.














































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
TortoiseOverlays
================

Introduction:
-------------
Windows only has a limited amount of free slots for icon overlay
handlers (around 12 - the rest is used by the system itself). This is
a problem for Tortoise clients because they usually need a lot of those
handlers to show the different states of files and folders. If a user
has more than one Tortoise client installed, that's already enough to
hit the system limit and some overlays won't show up anymore.

The purpose of the TortoiseOverlays project is to provide a common icon
overlay handler for all the Tortoise clients. This reduces the risk of
hitting the system limit. The only downside is that all Tortoise clients
will have the very same overlay icons, which means the users won't
immediately see from the overlays which version control system is
handling a certain folder of file. But this is still far better than
not be able to show an overlay at all because of the system limit.

Using the TortoiseOverlays dll:
-------------------------------
Usually, an icon overlay handler is registered under
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\ShellIconOverlayIdentifiers
To make use of the TortoiseOverlays dll, register your overlay handler
under HKLM\Software\TortoiseOverlays\\Statusname, with 'Statusname'
being one of:
Normal             under version control, but nothing special
Modified           locally modified, needs committing/pushing
Conflict           requires user interaction to solve a problem
Deleted            item is missing or deleted
ReadOnly           item is readonly, can't be edited
Locked             user has permission to edit item (has exclusive lock)
Added              item is added, but not yet in the repository
Ignored            item is ignored by the version control system
Unversioned        item is not under version control

The difference here is that TortoiseOverlays must know which one of your
overlay handlers handles which of the states so it can show the correct
icon. An example:
instead of creating the registry key
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\ShellIconOverlayIdentifiers\TortoiseSVNNormal
with the "(default)" registry value being the GUID, create the key
HKLM\Software\TortoiseOverlays\\Normal
and add a string value "SVN"="GUID"

That's it. No more changes are needed.

How it works:
-------------
TortoiseOverlays registers itself with the explorer to handle the nine
states mentioned above, i.e. it registers nine overlay handlers.
The explorer process initializes the TortoiseOverlays handler, calling
its IShellIconOverlayIdentifier::GetOverlayInfo(). TortoiseOverlays
looks for the registered overlay handlers under
HKLM\Software\TortoiseOverlays\\Statusname and calls their
GetOverlayInfo() method so they can initialize too (Note that any change
to the icon name, index, ... your handler does are overwritten later
and won't be used - it's TortoiseOverlays that handles the icons now).
After the initialization, TortoiseOverlays relays every call to its
IShellIconOverlayIdentifier::IsMemberOf() method to the other handlers.
The first handler that returns S_OK determines whether the icon is shown
or not.

Since TortoiseOverlays is shared between all Tortoise clients (it's a
so called shared component) it installs in
c:\program files\common files (%commonprogramfiles%) to make sure it's
available from all clients.

How to install/redistribute TortoiseOverlays:
---------------------------------------------
You can either install TortoiseOverlays with the provided merge module
(which is the recommended way, because it can properly handle the
required reference counting of the registry keys and dlls), or use the
also provided msi installer.
You MUST NOT try to install the dll and create the registry keys yourself!
If you have a non-msi installer, you can call the msi installer like this:
msiexec /i TortoiseOverlays-1.0.0.XXXX-win32.msi /qn /norestart
But in that case, you also must not deinstall it when your client gets
deinstalled.

The reason I chose merge modules/msi is that TortoiseOverlays is a
*shared* component, and other setup packages can't handle reference
counting very well. And removing TortoiseOverlays with your client even
though some other Tortoise client still needs it is not acceptable.


Using custom icons:
-------------------
TortoiseOverlays comes with a default set of icons. But if you like to
give the user the chance to use his own preferred icon set, you can
tell TortoiseOverlays to use a different set. To do that, create the
following registry values and set them to the paths of your icons:
HKCU\Software\TortoiseOverlays\NormalIcon
HKCU\Software\TortoiseOverlays\ModifiedIcon
HKCU\Software\TortoiseOverlays\ConflictIcon
HKCU\Software\TortoiseOverlays\DeletedIcon
HKCU\Software\TortoiseOverlays\ReadOnlyIcon
HKCU\Software\TortoiseOverlays\LockedIcon
HKCU\Software\TortoiseOverlays\AddedIcon
HKCU\Software\TortoiseOverlays\IgnoredIcon
HKCU\Software\TortoiseOverlays\UnversionedIcon

Make sure you install your new icon sets under
c:\program files\common files\TortoiseOverlays\icons\iconsetname
(%commonprogramfiles%\TortoiseOverlays\icons\iconsetname)
to avoid missing icons as soon as your client gets uninstalled. Because
as the TortoiseOverlays dll your icon sets are shared files, shared
between all Tortoise clients.
Also make sure your icon sets include *all* icons, not just the ones
your client uses. Otherwise the user will have inconsistent icons in
those clients who use all icons.

Settings:
---------
As of version 1.1.1, it is possible to disable overlay handlers
and prevent them from getting loaded and use up an overlay slot.
To do that, create the registry DWORD values and set the values
to zero. If the value is not zero or the registry entries don't
exist, the handlers are loaded as usual.

HKCU\Software\TortoiseOverlays\ShowIgnoredOverlay
HKCU\Software\TortoiseOverlays\ShowUnversionedOverlay
HKCU\Software\TortoiseOverlays\ShowAddedOverlay
HKCU\Software\TortoiseOverlays\ShowLockedOverlay
HKCU\Software\TortoiseOverlays\ShowReadonlyOverlay
HKCU\Software\TortoiseOverlays\ShowDeletedOverlay

If you provide an UI in your Tortoise client to disable the
handlers, inform the user that this affects *all* Tortoise clients!

Since this setting affects the loading of the overlay handlers, a restart
of the shell (at least a logoff/logon) is required for the changes
to take effect.

Added extern/TortoiseOverlays/License.txt.




























































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
====================================================================
Copyright (c) 2007-2008 The TortoiseSVN Project.  All rights reserved.

Preamble:
The TortoiseOverlays handler was written to reduce the problems with
the limited available icon overlay handler slots in Windows. The goal
is to have all clients use it equally. The purpose of this license is
to allow all clients to use the TortoiseOverlays handler, no matter
what license the client itself has. And to state some rules for all
clients to avoid compatibility problems and for users to know where
the TortoiseOverlays handler comes from.



Redistribution and use of the TortoiseOverlays handler and the overlay
icons in it are permitted provided that the following conditions are met:

1. Clients using the TortoiseOverlay handler must provide an
   acknowlegdement that it was taken from the TortoiseSVN project, with
   a link to the project website (tortoisesvn.net)
   in one or more of the following places:
   a) an "about" box.
   b) the product user manual.
   c) a textfile in the installation folder of the application.
   d) a contributors page on the product web page.

2. The name "TortoiseSVN" must not be used to endorse or
   promote products using this overlay handler without prior written
   permission. For written permission, please contact
   dev@tortoisesvn.tigris.org.
Added extern/TortoiseOverlays/Readme.txt.














>
>
>
>
>
>
>
1
2
3
4
5
6
7
The binary files in this directory are taken from the TortoiseSVN project.

The source code and the original binaries are available from:
http://code.google.com/p/tortoisesvn/

Binaries:
http://code.google.com/p/tortoisesvn/source/browse/TortoiseOverlays/version-1.1.3/bin/
Added extern/TortoiseSVNResources/AddBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/CFMBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/CacheList.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/CheckoutBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/CommitBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/CommitBackgroundBranches.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/CopyBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/DelunversionedBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Drives.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ExportBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip Clean/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Blip/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/CVSClassic/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesVista/readme.txt.






>
>
>
1
2
3
Icons provided by Claude DeschĂȘnes

http://claudedeschenes.com/
Added extern/TortoiseSVNResources/Icons/DechenesXp/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/DechenesXp/readme.txt.






>
>
>
1
2
3
Icons provided by Claude DeschĂȘnes

http://claudedeschenes.com/
Added extern/TortoiseSVNResources/Icons/Function/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Function/Readme.txt.






>
>
>
1
2
3
This icon set was provided by Lazare INEPOLOGLOU, based on the Function icon set (http://wefunction.com/2008/07/function-free-icon-set/)

http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=757&dsMessageId=2436302
Added extern/TortoiseSVNResources/Icons/Function/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Modern/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/MufWin7/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Straight/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/Subclipse/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/AddedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/ConflictIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/DeletedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/IgnoredIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/LockedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/ModifiedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/NormalIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/ReadOnlyIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Icons/XPStyle/UnversionedIcon.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ImportBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Library.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/LineEndingCR.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/LineEndingCRLF.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/LineEndingLF.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/LockBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Margin.cur.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/MergeBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/MergeWizardTitle.bmp.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Overlays.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/RenameBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ResolveBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/RevertBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/RevisionGraph.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/SwitchBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/Tortoise.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/TortoiseCache.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/TortoiseMerge.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/TortoiseMerge.rc2.




































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
//
// TortoiseMerge.RC2 - resources Microsoft Visual C++ does not edit directly
//

#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
// Add manually edited resources here...
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
#include "..\version.h"
VS_VERSION_INFO VERSIONINFO
 FILEVERSION FILEVER
 PRODUCTVERSION PRODUCTVER
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x4L
 FILETYPE VFT_APP
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040004e4"
        BEGIN
            VALUE "CompanyName", "http://tortoisesvn.net\0"
            VALUE "FileDescription", "TortoiseMerge\0"
            VALUE "FileVersion", STRFILEVER
            VALUE "InternalName", "TortoiseMerge.exe\0"
            VALUE "LegalCopyright", "Copyright (C) 2003-2012 - TortoiseSVN\0"
            VALUE "OriginalFilename", "TortoiseMerge.exe\0"
            VALUE "ProductName", "TortoiseMerge\0"
            VALUE "ProductVersion", STRPRODUCTVER
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x400, 1252
    END
END

/////////////////////////////////////////////////////////////////////////////
Added extern/TortoiseSVNResources/TortoiseMergeENG.rc.


































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
// Microsoft Visual C++ generated resource script.
//
#include "..\TortoiseMerge\resource.h"

#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"

/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS

/////////////////////////////////////////////////////////////////////////////
// Neutral resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL

/////////////////////////////////////////////////////////////////////////////
//
// Icon
//

// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDR_MAINFRAME           ICON                    "TortoiseMerge.ico"
IDI_REMOVEDLINE         ICON                    "lineremoved.ico"
IDI_ADDEDLINE           ICON                    "lineadded.ico"
IDI_CONFLICTEDLINE      ICON                    "lineconflicted.ico"
IDI_WHITESPACELINE      ICON                    "linewhitespace.ico"
IDI_EQUALLINE           ICON                    "lineequal.ico"
IDI_LINEENDINGCR        ICON                    "LineEndingCR.ico"
IDI_LINEENDINGCRLF      ICON                    "LineEndingCRLF.ico"
IDI_LINEENDINGLF        ICON                    "LineEndingLF.ico"
IDI_CONFLICTEDIGNOREDLINE ICON                    "lineconflictedignored.ico"
IDI_LINEEDITED          ICON                    "lineedited.ico"
IDI_MOVEDLINE           ICON                    "moved.ico"
IDI_AEROBACKGROUND      ICON                    "aerobackground.ico"

/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//

IDD_ABOUT DIALOGEX 0, 0, 333, 249
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "About TortoiseMerge"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "Author:\t\t\t\tStefan Kueng",IDC_STATIC,"Static",SS_LEFTNOWORDWRAP | WS_GROUP,14,68,309,8
    LTEXT           "Icons/Design/Code:\t\tLuebbe Onken",IDC_STATIC,14,80,306,8
    DEFPUSHBUTTON   "OK",IDOK,276,228,50,14
    GROUPBOX        "Version",IDC_VERSIONBOX,7,123,319,99
    EDITTEXT        IDC_VERSIONABOUT,14,134,304,85,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "Visit our website",IDC_WEBLINK,14,95,312,8
    LTEXT           "and support the developers",IDC_SUPPORTLINK,14,105,312,8
END

IDD_DIFFLOCATOR DIALOGEX 0, 0, 20, 314
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_SYSMENU
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
END

IDD_LINEDIFF DIALOGEX 0, 0, 428, 23
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
END


/////////////////////////////////////////////////////////////////////////////
//
// DESIGNINFO
//

#ifdef APSTUDIO_INVOKED
GUIDELINES DESIGNINFO
BEGIN
    IDD_DIFFLOCATOR, DIALOG
    BEGIN
        LEFTMARGIN, 3
        RIGHTMARGIN, 13
        BOTTOMMARGIN, 202
    END

    IDD_LINEDIFF, DIALOG
    BEGIN
        RIGHTMARGIN, 427
    END
END
#endif    // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//

IDB_LOGOFLIPPED         BITMAP                  "tortoisemerge_logoflipped.bmp"
IDB_TTF_BMP             BITMAP                  "ttf_glyph.bmp"

/////////////////////////////////////////////////////////////////////////////
//
// AVI
//

IDR_DOWNLOAD            AVI                     "download.avi"

/////////////////////////////////////////////////////////////////////////////
//
// Cursor
//

IDC_MARGINCURSOR        CURSOR                  "Margin.cur"

/////////////////////////////////////////////////////////////////////////////
//
// PNG
//

IDB_RIBBONLARGE         PNG                     "ribbon\\ribbonlarge.png"
IDB_RIBBONSMALL         PNG                     "ribbon\\ribbonsmall.png"
IDB_LOGO                PNG                     "ribbon\\TortoiseMerge.png"
#endif    // Neutral resources
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
// English (United States) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//

IDD_FILEPATCHES DIALOGEX 0, 0, 133, 221
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
EXSTYLE WS_EX_TOOLWINDOW
CAPTION "File patches"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_FILELIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | LVS_NOCOLUMNHEADER | WS_TABSTOP,0,0,131,184
    PUSHBUTTON      "Patch &selected item",IDC_PATCHSELECTEDBUTTON,0,189,132,14,WS_DISABLED
    PUSHBUTTON      "Patch &all items",IDC_PATCHALLBUTTON,0,206,132,14
END

IDD_OPENDLG DIALOGEX 0, 0, 325, 209
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_CONTEXTHELP
CAPTION "TortoiseMerge"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "&Merging",IDC_MERGERADIO,"Button",BS_AUTORADIOBUTTON | WS_GROUP,14,18,75,10
    CONTROL         "&Apply unified diff",IDC_APPLYRADIO,"Button",BS_AUTORADIOBUTTON,96,18,152,10
    LTEXT           "Base file:",IDC_STATIC,14,48,82,8
    EDITTEXT        IDC_BASEFILEEDIT,96,45,152,14,ES_AUTOHSCROLL
    PUSHBUTTON      "&Browse...",IDC_BASEFILEBROWSE,260,46,50,14
    LTEXT           "Their file:",IDC_STATIC,14,69,82,8
    EDITTEXT        IDC_THEIRFILEEDIT,96,66,152,14,ES_AUTOHSCROLL
    PUSHBUTTON      "B&rowse...",IDC_THEIRFILEBROWSE,260,67,50,14
    LTEXT           "My file:",IDC_STATIC,14,91,82,8
    EDITTEXT        IDC_YOURFILEEDIT,96,88,152,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Br&owse...",IDC_YOURFILEBROWSE,260,89,50,14
    CONTROL         "Use Unified Diff from &clipboard",IDC_PATCHFROMCLIPBOARD,
                    "Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,129,234,10
    LTEXT           "Diff file:",IDC_STATIC,14,145,82,8
    EDITTEXT        IDC_DIFFFILEEDIT,96,142,152,14,ES_AUTOHSCROLL
    PUSHBUTTON      "&Browse...",IDC_DIFFFILEBROWSE,260,142,50,14
    LTEXT           "Directory:",IDC_STATIC,14,164,82,8
    EDITTEXT        IDC_DIRECTORYEDIT,96,162,152,14,ES_AUTOHSCROLL
    PUSHBUTTON      "B&rowse...",IDC_DIRECTORYBROWSE,260,163,50,14
    DEFPUSHBUTTON   "OK",IDOK,7,188,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,127,188,50,14
    PUSHBUTTON      "Help",IDHELP,268,188,50,14
    LTEXT           "",IDC_VERSIONSTRING,7,7,311,8,SS_CENTERIMAGE
    GROUPBOX        "Merging",IDC_MERGEGROUP,7,34,311,77
    GROUPBOX        "Apply unified diff",IDC_UNIDIFFGROUP,7,117,311,66
END

IDD_SETMAINPAGE DIALOGEX 0, 0, 265, 250
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "General"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    CONTROL         "&Backup original file",IDC_BACKUP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,10,236,10
    CONTROL         "&Jump to first difference when loading",IDC_FIRSTDIFFONLOAD,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,21,236,10
    CONTROL         "J&ump to first conflict when loading",IDC_FIRSTCONFLICTONLOAD,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,26,33,225,10
    CONTROL         "Default to UTF-8 encoding",IDC_UTF8DEFAULT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,45,236,10
    CONTROL         "Use &one-pane view as default for 2-file diff",IDC_ONEPANE,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,56,236,10
    CONTROL         "Show linenumber&s",IDC_LINENUMBERS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,67,236,10
    CONTROL         "Add new files automatically to SVN",IDC_AUTOADD,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,79,236,10
    LTEXT           "&Tab size:",IDC_STATIC,15,118,54,8
    EDITTEXT        IDC_TABSIZE,80,115,41,14,ES_AUTOHSCROLL | ES_NUMBER
    LTEXT           "&Font:",IDC_STATIC,15,135,52,8
    COMBOBOX        IDC_FONTNAMES,80,133,122,90,CBS_DROPDOWNLIST | CBS_OWNERDRAWVARIABLE | CBS_SORT | CBS_HASSTRINGS | WS_VSCROLL | WS_TABSTOP
    COMBOBOX        IDC_FONTSIZES,211,133,40,47,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
    LTEXT           "&Max line length for inline diffs",IDC_STATIC,15,172,173,8
    EDITTEXT        IDC_MAXINLINE,211,170,40,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER
    CONTROL         "Ignore line &endings (recommended)",IDC_IGNORELF,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,185,237,10
    CONTROL         "Ignore case cha&nges",IDC_CASEINSENSITIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,196,236,10
    GROUPBOX        "Misc",IDC_MISCGROUP,7,0,251,151
    GROUPBOX        "Diffing",IDC_DIFFGROUP,7,161,251,82
END

IDD_SETCOLORPAGE DIALOGEX 0, 0, 265, 257
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Colors"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Line differences",IDC_STATIC,7,7,251,161
    LTEXT           "Normal",IDC_STATIC,15,16,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKNORMAL,152,14,50,14
    LTEXT           "Added",IDC_STATIC,15,32,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKADDED,152,30,50,14
    LTEXT           "Removed",IDC_STATIC,15,49,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKREMOVED,152,47,50,14
    LTEXT           "Modified",IDC_STATIC,15,66,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKMODIFIED,152,64,50,14
    LTEXT           "Conflicted",IDC_STATIC,15,83,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKCONFLICTED,152,81,50,14
    LTEXT           "Conflict resolved",IDC_STATIC,15,100,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKCONFLICTRESOLVED,152,98,50,14
    LTEXT           "Empty",IDC_STATIC,15,116,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKEMPTY,152,114,50,14
    LTEXT           "Moved from",IDC_STATIC,15,133,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKMOVEDFROM,152,131,50,14
    LTEXT           "Moved to",IDC_STATIC,15,150,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKMOVEDTO,152,148,50,14
    GROUPBOX        "Inline differences",IDC_STATIC,7,171,251,43
    LTEXT           "Added",IDC_STATIC,15,181,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKWHITESPACES,152,179,50,14
    LTEXT           "Removed",IDC_STATIC,15,197,113,8,0,WS_EX_RIGHT
    PUSHBUTTON      "",IDC_BKWHITESPACEDIFF,152,195,50,14
    GROUPBOX        "Misc",IDC_STATIC,7,217,251,33
    RTEXT           "Whitespaces",IDC_STATIC,15,232,113,8
    PUSHBUTTON      "",IDC_FGWHITESPACES,152,228,50,14
END

IDD_PATCH_FILE_OPEN_CUSTOM DIALOGEX 0, 0, 122, 28
STYLE DS_SETFONT | DS_3DLOOK | DS_FIXEDSYS | DS_CONTROL | WS_CHILD | WS_CLIPSIBLINGS | WS_SYSMENU
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    PUSHBUTTON      "Open from clipboard",IDC_PATCH_TO_CLIPBOARD,7,7,108,14
END

IDD_FIND DIALOGEX 0, 0, 311, 73
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Find"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Search for:",IDC_STATIC,7,10,79,8
    CONTROL         "",IDC_FINDCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,90,7,154,95
    CONTROL         "Match &case",IDC_MATCHCASE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,26,200,10
    CONTROL         "&Limit search to modified lines",IDC_LIMITTODIFFS,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,41,200,10
    CONTROL         "&Whole word",IDC_WHOLEWORD,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,56,200,10
    DEFPUSHBUTTON   "&Find",IDOK,248,7,56,14,WS_DISABLED
    PUSHBUTTON      "Cancel",IDCANCEL,248,28,56,14
END


/////////////////////////////////////////////////////////////////////////////
//
// DESIGNINFO
//

#ifdef APSTUDIO_INVOKED
GUIDELINES DESIGNINFO
BEGIN
    IDD_FILEPATCHES, DIALOG
    BEGIN
        BOTTOMMARGIN, 220
    END

    IDD_OPENDLG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 318
        VERTGUIDE, 14
        VERTGUIDE, 96
        VERTGUIDE, 248
        VERTGUIDE, 310
        TOPMARGIN, 7
        BOTTOMMARGIN, 202
    END

    IDD_SETMAINPAGE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 258
        VERTGUIDE, 7
        VERTGUIDE, 15
        VERTGUIDE, 80
        VERTGUIDE, 188
        VERTGUIDE, 211
        VERTGUIDE, 251
        TOPMARGIN, 7
        BOTTOMMARGIN, 243
    END

    IDD_SETCOLORPAGE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 258
        VERTGUIDE, 15
        VERTGUIDE, 128
        VERTGUIDE, 152
        TOPMARGIN, 7
        BOTTOMMARGIN, 250
    END

    IDD_PATCH_FILE_OPEN_CUSTOM, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 87
        TOPMARGIN, 7
        BOTTOMMARGIN, 21
    END

    IDD_FIND, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 304
        VERTGUIDE, 86
        VERTGUIDE, 90
        VERTGUIDE, 244
        VERTGUIDE, 248
        TOPMARGIN, 7
        BOTTOMMARGIN, 66
    END
END
#endif    // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Accelerator
//

IDR_MAINFRAME ACCELERATORS
BEGIN
    "Q",            ID_APP_EXIT,            VIRTKEY, CONTROL, NOINVERT
    VK_ESCAPE,      ID_APP_EXIT,            VIRTKEY, NOINVERT
    "W",            ID_APP_EXIT,            VIRTKEY, CONTROL, NOINVERT
    VK_DOWN,        ID_CARET_DOWN,          VIRTKEY, NOINVERT
    VK_DOWN,        ID_CARET_DOWN,          VIRTKEY, SHIFT, NOINVERT
    VK_LEFT,        ID_CARET_LEFT,          VIRTKEY, NOINVERT
    VK_LEFT,        ID_CARET_LEFT,          VIRTKEY, SHIFT, NOINVERT
    VK_RIGHT,       ID_CARET_RIGHT,         VIRTKEY, NOINVERT
    VK_RIGHT,       ID_CARET_RIGHT,         VIRTKEY, SHIFT, NOINVERT
    VK_UP,          ID_CARET_UP,            VIRTKEY, NOINVERT
    VK_UP,          ID_CARET_UP,            VIRTKEY, SHIFT, NOINVERT
    VK_LEFT,        ID_CARET_WORDLEFT,      VIRTKEY, CONTROL, NOINVERT
    VK_LEFT,        ID_CARET_WORDLEFT,      VIRTKEY, SHIFT, CONTROL, NOINVERT
    VK_RIGHT,       ID_CARET_WORDRIGHT,     VIRTKEY, CONTROL, NOINVERT
    VK_RIGHT,       ID_CARET_WORDRIGHT,     VIRTKEY, SHIFT, CONTROL, NOINVERT
    VK_F1,          ID_CONTEXT_HELP,        VIRTKEY, SHIFT, NOINVERT
    "C",            ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
    VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
    VK_DELETE,      ID_EDIT_CUT,            VIRTKEY, SHIFT, NOINVERT
    "X",            ID_EDIT_CUT,            VIRTKEY, CONTROL, NOINVERT
    "F",            ID_EDIT_FIND,           VIRTKEY, CONTROL, NOINVERT
    VK_F3,          ID_EDIT_FINDNEXT,       VIRTKEY, NOINVERT
    VK_F3,          ID_EDIT_FINDNEXTSTART,  VIRTKEY, CONTROL, NOINVERT
    VK_F3,          ID_EDIT_FINDPREV,       VIRTKEY, SHIFT, NOINVERT
    VK_F3,          ID_EDIT_FINDPREVSTART,  VIRTKEY, SHIFT, CONTROL, NOINVERT
    "G",            ID_EDIT_GOTOLINE,       VIRTKEY, CONTROL, NOINVERT
    "V",            ID_EDIT_PASTE,          VIRTKEY, CONTROL, NOINVERT
    VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY, SHIFT, NOINVERT
    VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY, SHIFT, NOINVERT
    "A",            ID_EDIT_SELECTALL,      VIRTKEY, CONTROL, NOINVERT
    VK_BACK,        ID_EDIT_UNDO,           VIRTKEY, ALT, NOINVERT
    "Z",            ID_EDIT_UNDO,           VIRTKEY, CONTROL, NOINVERT
    VK_F12,         ID_EDIT_USELEFTBLOCK,   VIRTKEY, NOINVERT
    VK_RIGHT,       ID_EDIT_USELEFTBLOCK,   VIRTKEY, ALT, NOINVERT
    VK_F10,         ID_EDIT_USEMINETHENTHEIRBLOCK, VIRTKEY, SHIFT, CONTROL, NOINVERT
    VK_F10,         ID_EDIT_USEMYBLOCK,     VIRTKEY, CONTROL, NOINVERT
    VK_F12,         ID_EDIT_USEMYBLOCK,     VIRTKEY, SHIFT, NOINVERT
    VK_F9,          ID_EDIT_USETHEIRBLOCK,  VIRTKEY, CONTROL, NOINVERT
    VK_F9,          ID_EDIT_USETHEIRTHENMYBLOCK, VIRTKEY, SHIFT, CONTROL, NOINVERT
    "O",            ID_FILE_OPEN,           VIRTKEY, CONTROL, NOINVERT
    "R",            ID_FILE_RELOAD,         VIRTKEY, CONTROL, NOINVERT
    VK_F5,          ID_FILE_RELOAD,         VIRTKEY, NOINVERT
    "S",            ID_FILE_SAVE,           VIRTKEY, CONTROL, NOINVERT
    "S",            ID_FILE_SAVE_AS,        VIRTKEY, SHIFT, CONTROL, NOINVERT
    VK_F1,          ID_HELP,                VIRTKEY, NOINVERT
    VK_F8,          ID_NAVIGATE_NEXTCONFLICT, VIRTKEY, NOINVERT
    VK_DOWN,        ID_NAVIGATE_NEXTDIFFERENCE, VIRTKEY, CONTROL, NOINVERT
    VK_DOWN,        ID_NAVIGATE_NEXTDIFFERENCE, VIRTKEY, ALT, NOINVERT
    VK_F11,         ID_NAVIGATE_NEXTDIFFERENCE, VIRTKEY, NOINVERT
    VK_F7,          ID_NAVIGATE_NEXTDIFFERENCE, VIRTKEY, NOINVERT
    VK_RIGHT,       ID_NAVIGATE_NEXTINLINEDIFF, VIRTKEY, CONTROL, ALT, NOINVERT
    VK_LEFT,        ID_NAVIGATE_PREVINLINEDIFF, VIRTKEY, CONTROL, ALT, NOINVERT
    VK_F8,          ID_NAVIGATE_PREVIOUSCONFLICT, VIRTKEY, SHIFT, NOINVERT
    VK_F11,         ID_NAVIGATE_PREVIOUSDIFFERENCE, VIRTKEY, CONTROL, NOINVERT
    VK_F11,         ID_NAVIGATE_PREVIOUSDIFFERENCE, VIRTKEY, SHIFT, NOINVERT
    VK_F7,          ID_NAVIGATE_PREVIOUSDIFFERENCE, VIRTKEY, SHIFT, NOINVERT
    VK_UP,          ID_NAVIGATE_PREVIOUSDIFFERENCE, VIRTKEY, CONTROL, NOINVERT
    VK_UP,          ID_NAVIGATE_PREVIOUSDIFFERENCE, VIRTKEY, ALT, NOINVERT
    VK_F6,          ID_NEXT_PANE,           VIRTKEY, NOINVERT
    VK_F6,          ID_PREV_PANE,           VIRTKEY, SHIFT, NOINVERT
    "L",            ID_VIEW_COLLAPSED,      VIRTKEY, CONTROL, NOINVERT
    "D",            ID_VIEW_ONEWAYDIFF,     VIRTKEY, CONTROL, NOINVERT
    "U",            ID_VIEW_SWITCHLEFT,     VIRTKEY, CONTROL, NOINVERT
    "T",            ID_VIEW_WHITESPACES,    VIRTKEY, CONTROL, NOINVERT
    "P",            ID_VIEW_WRAPLONGLINES,  VIRTKEY, CONTROL, NOINVERT
END


/////////////////////////////////////////////////////////////////////////////
//
// Ribbon
//

IDR_RIBBON              RT_RIBBON_XML           "ribbon.mfcribbon-ms"


/////////////////////////////////////////////////////////////////////////////
//
// Menu
//

IDR_MAINFRAME MENU
BEGIN
    MENUITEM "&File",                       0
END


/////////////////////////////////////////////////////////////////////////////
//
// String Table
//

STRINGTABLE
BEGIN
    IDR_MAINFRAME           "TortoiseMerge"
    IDS_TITLE_REJECTEDHUNKS "Rejected patch hunks for '%s'"
END

STRINGTABLE
BEGIN
    AFX_IDS_APP_TITLE       "TortoiseMerge"
    AFX_IDS_IDLEMESSAGE     "For Help, press F1. Scroll horizontally with Ctrl-Scrollwheel"
    AFX_IDS_HELPMODEMESSAGE "Select an object on which to get Help"
END

STRINGTABLE
BEGIN
    ID_INDICATOR_EXT        "EXT"
    ID_INDICATOR_CAPS       "CAP"
    ID_INDICATOR_NUM        "NUM"
    ID_INDICATOR_SCRL       "SCRL"
    ID_INDICATOR_OVR        "OVR"
    ID_INDICATOR_REC        "REC"
END

STRINGTABLE
BEGIN
    ID_APP_ABOUT            "Display program information, version number and copyright\nAbout"
    ID_APP_EXIT             "Quit the application; prompts to save documents\nExit"
    ID_HELP_INDEX           "Opens Help\nHelp Topics"
    ID_HELP_FINDER          "List Help topics\nHelp Topics"
    ID_HELP_USING           "Display instructions about how to use help\nHelp"
    ID_CONTEXT_HELP         "Display help for clicked on buttons, menus and windows\nHelp"
    ID_HELP                 "Display help for current task or command\nHelp"
END

STRINGTABLE
BEGIN
    ID_NEXT_PANE            "Switch to the next window pane\nNext Pane"
    ID_PREV_PANE            "Switch back to the previous window pane\nPrevious Pane"
END

STRINGTABLE
BEGIN
    ID_WINDOW_SPLIT         "Split the active window into panes\nSplit"
END

STRINGTABLE
BEGIN
    ID_EDIT_CLEAR           "Erase the selection\nErase"
    ID_EDIT_CLEAR_ALL       "Erase everything\nErase All"
    ID_EDIT_COPY            "Copy the selection and put it on the Clipboard\nCopy"
    ID_EDIT_CUT             "Cut the selection and put it on the Clipboard\nCut"
    ID_EDIT_FIND            "Find the specified text\nFind"
    ID_EDIT_PASTE           "Insert Clipboard contents\nPaste"
    ID_EDIT_REPEAT          "Repeat the last action\nRepeat"
    ID_EDIT_REPLACE         "Replace specific text with different text\nReplace"
    ID_EDIT_SELECT_ALL      "Select the entire document\nSelect All"
    ID_EDIT_UNDO            "Undo the last modifications\nUndo"
    ID_EDIT_REDO            "Redo the previously undone action\nRedo"
END

STRINGTABLE
BEGIN
    ID_VIEW_TOOLBAR         "Show or hide the toolbar\nToggle ToolBar"
    ID_VIEW_STATUS_BAR      "Show or hide the status bar\nToggle StatusBar"
END

STRINGTABLE
BEGIN
    AFX_IDS_SCSIZE          "Change the window size"
    AFX_IDS_SCMOVE          "Change the window position"
    AFX_IDS_SCMINIMIZE      "Reduce the window to an icon"
    AFX_IDS_SCMAXIMIZE      "Enlarge the window to full size"
    AFX_IDS_SCNEXTWINDOW    "Switch to the next document window"
    AFX_IDS_SCPREVWINDOW    "Switch to the previous document window"
    AFX_IDS_SCCLOSE         "Close the active window and prompts to save the documents"
END

STRINGTABLE
BEGIN
    AFX_IDS_SCRESTORE       "Restore the window to normal size"
    AFX_IDS_SCTASKLIST      "Activate Task List"
END

STRINGTABLE
BEGIN
    IDS_SELECTFILE          "Select File..."
    IDS_SELECTDIFFFILE      "Select patch file..."
END

STRINGTABLE
BEGIN
    ID_VIEW_WHITESPACES     "Show special characters for whitespaces and newlines\nShow Whitespaces"
    ID_VIEW_ONEWAYDIFF      "Switch between single and double pane view\nSwitch between single and double pane view"
    ID_NAVIGATE_NEXTDIFFERENCE "Go to the next difference\nNext difference"
    ID_NAVIGATE_PREVIOUSDIFFERENCE 
                            "Go to the previous difference\nPrevious difference"
    ID_VIEW_OPTIONS         "Adjust the settings\nSettings"
END

STRINGTABLE
BEGIN
    IDS_ERR_PATCH_NOINDEX   "The line 'Index: ' was not found!\nEither this is not a diff file or the diff is empty."
    IDS_ERR_PATCH_NOEQUATIONCHARLINE 
                            "The line '====' was expected in line %d !"
    IDS_ERR_PATCH_NOREMOVEFILELINE 
                            "The line indicating the old file was expected in line %d !"
    IDS_ERR_PATCH_NOADDFILELINE 
                            "The line indicating the new file was expected in line %d !"
    IDS_ERR_PATCH_RENAMINGNOTSUPPORTED 
                            "The old file does not match the new file.\nRenaming of files is not (yet) supported!"
    IDS_ERR_PATCH_CHUNKSTARTNOTFOUND 
                            "The chunk start '@@' was expected in line %d !"
    IDS_ERR_PATCH_UNKOWNLINETYPE "An unknown line type was found in line %d !"
    IDS_ERR_PATCH_CHUNKMISMATCH 
                            "The chunk size did not match the number of added/removed lines!"
END

STRINGTABLE
BEGIN
    IDS_ERR_PATCH_INVALIDPATCHFILE "The file %s does not exist!"
    IDS_ERR_PATCH_FILENOTINPATCH 
                            "The file %s was not found in the patch file!"
    IDS_ERR_PATCH_DOESNOTMATCH 
                            "The patch seems outdated! The file line\n%1!s!\nand the patchline\n%2!s!\ndo not match!"
    IDS_ERR_PATCH_FILESAVE  "Could not save the file %s!"
END

STRINGTABLE
BEGIN
    IDS_ERR_MAINFRAME_FILEVERSIONNOTFOUND 
                            "Could not retrieve revision %1!s! of the file %2!s!.\nPatching is not possible!"
    IDS_ERR_MAINFRAME_FILEHASCONFLICTS 
                            "There are still unresolved conflicts in line %d!\nYou should resolve those conflicts first before saving.\nDo you want to save the file with the conflicts still there?\nIf you click YES, then you have to manually resolve the conflicts in another editor!"
END

STRINGTABLE
BEGIN
    ID_INDICATOR_LEFTVIEW   " "
    ID_INDICATOR_RIGHTVIEW  " "
    ID_INDICATOR_BOTTOMVIEW " "
END

STRINGTABLE
BEGIN
    IDS_STATUSBAR_REMOVEDLINES "- %d"
    IDS_STATUSBAR_ADDEDLINES "+ %d"
    IDS_STATUSBAR_CONFLICTEDLINES "! %d"
    IDS_STATUSBAR_LEFTVIEW  "Left View: "
    IDS_STATUSBAR_RIGHTVIEW "Right View: "
    IDS_STATUSBAR_CONFLICTS "Conflicts: %d"
END

STRINGTABLE
BEGIN
    IDS_VIEWCONTEXTMENU_USETHISBLOCK "Use th&is text block"
    IDS_VIEWCONTEXTMENU_USETHEIRBLOCK "Use text block from '&theirs'"
    IDS_VIEWCONTEXTMENU_USEYOURBLOCK "Use text block from '&mine'"
    IDS_VIEWCONTEXTMENU_USETHEIRANDYOURBLOCK 
                            "Use text block from 't&heirs' before 'mine'"
    IDS_VIEWCONTEXTMENU_USEYOURANDTHEIRBLOCK 
                            "Use text block from 'm&ine' before 'theirs'"
    IDS_VIEWCONTEXTMENU_USETHISFILE "Use this &whole file"
    IDS_VIEWCONTEXTMENU_USEOTHERBLOCK "Use &other text block"
    IDS_VIEWCONTEXTMENU_USEOTHERFILE "Use whole other &file"
    IDS_VIEWCONTEXTMENU_USEBOTHTHISFIRST 
                            "Use both text blocks (this one first)"
    IDS_VIEWCONTEXTMENU_USEBOTHTHISLAST "Use both text blocks (this one last)"
END

STRINGTABLE
BEGIN
    IDS_SAVEASTITLE         "Save as..."
    IDS_COMMANDLINEHELP     "Valid command line options are:\n/base:<path to base file>\n/theirs:<path to their file>\n/mine:<path to your file>\n/merged:<path to resulting merged file>\n/diff:<path to unified diff file>\n/patchpath:<path to folder>"
    IDS_OPENDIFFFILETITLE   "Apply Patch..."
    IDS_GETVERSIONOFFILETITLE "Fetching file..."
    IDS_GETVERSIONOFFILE    "Fetching revision %s of file:"
    IDS_WARNMODIFIEDLOOSECHANGES 
                            "There are unsaved modifications!\nDo you want to save your changes?"
    IDS_ASKFORSAVE          "Do you want to save your changes?"
    IDS_WARNMODIFIEDLOOSECHANGESOPTIONS 
                            "Do you want to reload the documents to reflect the settings changes?\nNote: you will lose all changes you've made!"
END

STRINGTABLE
BEGIN
    IDS_ERR_DIFF_DIFF       "The diffing engine aborted because of an error:\n%s"
    IDS_ERR_DIFF_NEWLINES   "Cannot show diff because of inconsistent newlines in the file."
END

STRINGTABLE
BEGIN
    IDS_ERR_FILE_OPEN       "Could not open the file\n%s"
    IDS_ERR_FILE_BINARY     "The file\n%s\nis not a valid text file!"
    IDS_ERR_FILE_NOTAFILE   "%s\nis a directory, not a file!\nTortoiseMerge can't diff directories."
    IDS_ERR_FILE_TOOBIG     "The file is too big"
END

STRINGTABLE
BEGIN
    ID_FILE_OPEN            "Open files for diff or to apply a patch\nOpen files"
    ID_FILE_SAVE            "Save the modified file\nSave file"
    ID_FILE_SAVE_AS         "Save the modified file\nSave file"
END

STRINGTABLE
BEGIN
    IDS_ABOUTVERSION        "TortoiseMerge %d.%d.%d, Build %d - %s, %s\r\nlibsvn_diff %d.%d.%d, %s\r\napr %d.%d.%d\r\napr-utils %d.%d.%d"
    IDS_ABOUTVERSIONBOX     "TortoiseMerge %d.%d.%d, Build %d - %s, %s"
    IDS_SETTINGSTITLE       "Settings"
END

STRINGTABLE
BEGIN
    IDS_COMMONFILEFILTER    "All Files (*.*)|*.*||"
    IDS_PATCHFILEFILTER     "Patchfiles (*.diff, *.patch)|*.diff;*.patch|All (*.*)|*.*||"
    IDS_PROGRAMSFILEFILTER  "Programs (*.exe)|*.exe|All Files (*.*)|*.*||"
END

STRINGTABLE
BEGIN
    IDS_PATCH_ALL           "Patch all files"
    IDS_PATCH_TITLE         "File patches"
    IDS_DIFF_TITLE          "File diffs"
    IDS_PATCH_SELECTED      "Patch selected files"
    IDS_PATCH_PREVIEW       "Preview patched file"
    IDS_PATCH_ITEMTT        "%s\n%ld failed hunk(s)"
    IDS_PATCH_COPYFROMCLIPBOARD "Open from clipboard"
END

STRINGTABLE
BEGIN
    ID_FILE_RELOAD          "Reloads the opened files and reverts all changes.\nReload"
END

STRINGTABLE
BEGIN
    ID_NAVIGATE_PREVIOUSCONFLICT 
                            "Go to the previous conflict\nPrevious conflict"
    ID_NAVIGATE_NEXTCONFLICT "Go to the next conflict\nNext conflict"
    ID_EDIT_MARKASRESOLVED  "Marks a file as resolved in Subversion\nMark as resolved"
    ID_VIEW_SWITCHLEFT      "Switch the contents of the left and right view\nSwitch left and right view"
END

STRINGTABLE
BEGIN
    ID_VIEW_SHOWFILELIST    "Hide/Show the patch file list\nHides or shows the patch file list"
    ID_EDIT_USETHEIRBLOCK   "Use text block from 'theirs'\nUse 'theirs' text block"
    ID_EDIT_USEMYBLOCK      "Use text block from 'mine'\nUse 'mine' text block"
    ID_EDIT_USETHEIRTHENMYBLOCK 
                            "Use text block from 'theirs' before 'mine'\nUse 'theirs' text block then 'mine'"
    ID_EDIT_USEMINETHENTHEIRBLOCK 
                            "Use text block from 'mine' before 'theirs'\nUse 'mine' text block then 'theirs'"
    ID_VIEW_INLINEDIFFWORD  "Show Inline-Diff word by word\nInline diff word-wise"
    ID_EDIT_CREATEUNIFIEDDIFFFILE 
                            "Creates a patch file from the differences of the two files\nCreate patch file"
END

STRINGTABLE
BEGIN
    IDS_WARNBETTERPATCHPATHFOUND 
                            "The path\n%1!s!\nseems not to match the paths in the patchfile.\nBut TortoiseMerge found the path\n%2!s!\nmatches it better. Do you want to use the suggested path instead?"
    IDS_NOTFOUNDVIEWTITLEINDICATOR "(not found)"
    IDS_WARNABSOLUTEPATHFOUND 
                            "The path\n%1!s!\nin the patchfile does not exist.\nTortoiseMerge found the relative path\n%2!s!\nwhich seems to match the directory you're applying the patch.\n\nDo you want to use the suggested path? Answering 'no' will quit TortoiseMerge."
    IDS_WARNABSOLUTEPATHNOTFOUND 
                            "The path\n%s\nin the patchfile does not exist.\nTortoiseMerge tried to apply the patch by stripping prefixes but no matching path could be found."
    IDS_DELETEWHENEMPTY     "The file \n%s\nis empty.\nDo you want to remove the file?"
    IDS_EMPTYLINETT         "(no line number)"
    IDS_WARNMODIFIEDOUTSIDELOOSECHANGES 
                            "Some file(s) have been changed outside T-Merge.\nWould you like to reload and lose your changes?"
    IDS_WARNMODIFIEDOUTSIDE "Some file(s) have been changed outside T-Merge.\nDo you want to load the changes?"
    IDS_WARNBETTERPATCHPATHFOUND_TASK2 
                            "Path found that matches the patch better."
    IDS_WARNBETTERPATCHPATHFOUND_TASK3 
                            "Use the found path.\nApply the patch to\n%s"
    IDS_WARNBETTERPATCHPATHFOUND_TASK4 
                            "Use the original path.\nApply the patch to\n%s"
    IDS_DELETEWHENEMPTY_TASK2 "File is empty."
    IDS_DELETEWHENEMPTY_TASK3 "Delete\nThe file is removed."
    IDS_DELETEWHENEMPTY_TASK4 "Cancel\nKeep the empty file."
    IDS_ASKFORSAVE_TASK2    "Save modifications."
    IDS_ASKFORSAVE_TASK3    "Save\nThe modifications are saved to\n%s"
END

STRINGTABLE
BEGIN
    IDS_VIEWTITLE_THEIRS    "Theirs"
    IDS_VIEWTITLE_MERGED    "Merged"
    IDS_VIEWTITLE_MINE      "Mine"
END

STRINGTABLE
BEGIN
    IDS_COLOURPICKER_CUSTOMTEXT "More colors..."
    IDS_COLOURPICKER_DEFAULTTEXT "Automatic"
END

STRINGTABLE
BEGIN
    IDS_VIEWSCROLLTIPTEXT   "Line: %*ld"
END

STRINGTABLE
BEGIN
    IDS_EDIT_COPY           "&Copy"
    IDS_EDIT_CUT            "C&ut"
    IDS_EDIT_PASTE          "&Paste"
END

STRINGTABLE
BEGIN
    IDC_STYLEBUTTON         "Change the style of the application\nChange Style"
    ID_VIEW_APPLOOK_WIN7    "Windows 7"
    ID_VIEW_APPLOOK_VS_2008 "Visual Studio 2008"
    ID_VIEW_APPLOOK_WIN_2000 "Windows 2000"
    ID_VIEW_APPLOOK_OFF_XP  "Office XP"
    ID_VIEW_APPLOOK_WIN_XP  "Windows XP"
    ID_VIEW_APPLOOK_OFF_2003 "Office 2003"
    ID_VIEW_APPLOOK_VS_2005 "Visual Studio 2005"
    ID_OFFICE2007           "Office 2007 colors"
    ID_VIEW_APPLOOK_OFF_2007_BLUE "Blue Style"
    ID_VIEW_APPLOOK_OFF_2007_BLACK "Black Style"
    ID_VIEW_APPLOOK_OFF_2007_SILVER "Silver Style"
    ID_VIEW_APPLOOK_OFF_2007_AQUA "Aqua Style"
END

STRINGTABLE
BEGIN
    ID_VIEW_LINEDIFFBAR     "Show or hide the line diff bar\nToggle LineDiffBar"
    ID_VIEW_LOCATORBAR      "Show or hide the locator bar\nToggle LocatorBar"
    ID_EDIT_USELEFTBLOCK    "Use text block from the left view\nUse left block"
    ID_EDIT_USELEFTFILE     "Use all content from the left view\nUse left file"
    ID_EDIT_USEBLOCKFROMLEFTBEFORERIGHT 
                            "Use block from left view before block from right view\nUse block from left before right"
    ID_EDIT_USEBLOCKFROMRIGHTBEFORELEFT 
                            "Use block from right view before block from left view\nUse block from right before left"
END

STRINGTABLE
BEGIN
    IDS_PATCH_SEARCHPATHTITLE "Searching for better path to apply patch..."
    IDS_PATCH_SEARCHPATHLINE1 "scanning path:"
    IDS_PATCH_PROGTITLE     "Patching"
    IDS_PATCH_PATHINGFILE   "Patching file '%1'"
END

STRINGTABLE
BEGIN
    ID_VIEW_COLLAPSED       "Collapse unchanged sections\nCollapse"
    ID_VIEW_COMPAREWHITESPACES 
                            "Compares all whitespaces when diffing\nCompare whitespaces"
    ID_VIEW_IGNOREWHITESPACECHANGES 
                            "Ignores changes in whitespaces when diffing\nIgnore whitespace changes"
    ID_VIEW_IGNOREALLWHITESPACECHANGES 
                            "Ignores all whitespace changes when diffing\nIgnore all whitespace changes"
    ID_NAVIGATE_NEXTINLINEDIFF 
                            "Go to the previous inline difference\nPrevious inline difference"
    ID_NAVIGATE_PREVINLINEDIFF 
                            "Go to the next inline difference\nNext inline difference"
END

STRINGTABLE
BEGIN
    ID_VIEW_MOVEDBLOCKS     "Detect and highlight moved blocks"
    ID_VIEW_WRAPLONGLINES   "Wrap long lines at the right border of the view\nWrap long lines"
    ID_VIEW_INLINEDIFF      "Show Inline-Diff\nInline diff"
    ID_EDIT_GOTOLINE        "Navigate to a specific line in the view\nGoto Line"
END

STRINGTABLE
BEGIN
    IDS_ERR_THREADSTARTFAILED "Could not start thread!"
END

STRINGTABLE
BEGIN
    IDS_APPNAME             "TortoiseMerge"
END

STRINGTABLE
BEGIN
    IDS_ERR_DIFFVIEWSTART   "Could not start diff viewer!\n%s"
    IDS_ERR_PATCHPATHS      "Both the path to the patch file and the target path must be absolute paths!"
END

STRINGTABLE
BEGIN
    IDS_UTILS_SELECTTEXTVIEWER "Select text editor application"
END

STRINGTABLE
BEGIN
    IDS_ERR_TEXTVIEWSTART   "Could not start text viewer!\n%s"
END

STRINGTABLE
BEGIN
    IDS_PROPMODS            "(properties only)"
    IDS_PROPANDCONTENTMODS  "(props and content)"
    IDS_MOVED_FROM_TT       "Line moved from line %ld"
    IDS_MOVED_TO_TT         "Line moved to line %ld"
END

STRINGTABLE
BEGIN
    IDS_ASKFORSAVE_TASK4    "Quit\nExit TortoiseMerge without saving the modifications"
    IDS_ASKFORSAVE_TASK5    "Cancel\nDon't quit TortoiseMerge"
    IDS_ASKFORSAVE_TASK6    "Save as\nYou're asked where to save the file"
    IDS_ASKFORSAVE_TASK7    "Don't save\nReload the views without saving the modifications"
    IDS_ASKFORSAVE_TASK8    "Cancel\nDon't switch the views"
    IDS_WARNMODIFIEDOUTSIDE_TASK2 "Do you want to load the changed files?"
    IDS_WARNMODIFIEDOUTSIDE_TASK3 
                            "Load changes\nChanges made in TortoiseMerge are lost and replaced with the new content."
    IDS_WARNMODIFIEDOUTSIDE_TASK4 
                            "Load changes\nThe views are updated with the new content."
    IDS_WARNMODIFIEDOUTSIDE_TASK5 
                            "Ignore changes\nIgnore the outside changes."
    IDS_ERR_MAINFRAME_FILEHASCONFLICTS_TASK2 "Unresolved conflicts!"
    IDS_ERR_MAINFRAME_FILEHASCONFLICTS_TASK3 
                            "Save\nSave the file with the conflict markers."
    IDS_ERR_MAINFRAME_FILEHASCONFLICTS_TASK4 
                            "Cancel\nResolve the conflicts first."
END

STRINGTABLE
BEGIN
    IDS_GOTOLINE            "&Line number (%d - %d)"
    IDS_GOTO_OUTOFRANGE     "The line number must be in between %d and %d"
END

STRINGTABLE
BEGIN
    ID_LOGOBUTTON           "TortoiseMerge"
END

STRINGTABLE
BEGIN
    ID_APPLOOK              "Changes the style of the application"
END

STRINGTABLE
BEGIN
    ID_USEBLOCKS            "Click to see commands to move blocks of text\nUse text blocks"
END

STRINGTABLE
BEGIN
    IDS_MSGBOX_OK           "&OK"
    IDS_MSGBOX_CANCEL       "&Cancel"
    IDS_MSGBOX_IGNORE       "Ignore"
    IDS_MSGBOX_RETRY        "Retry"
    IDS_MSGBOX_ABORT        "Abort"
    IDS_MSGBOX_HELP         "&Help"
    IDS_MSGBOX_YES          "Yes"
END

STRINGTABLE
BEGIN
    IDS_MSGBOX_NO           "No"
    IDS_MSGBOX_CONTINUE     "Continue"
    IDS_MSGBOX_DONOTASKAGAIN "Don't ask me again"
    IDS_MSGBOX_DONOTTELLAGAIN "Don't tell me again"
    IDS_MSGBOX_DONOTSHOWAGAIN "Don't show this message again"
    IDS_MSGBOX_YESTOALL     "Yes to all"
    IDS_MSGBOX_NOTOALL      "No to all"
    IDS_MSGBOX_TRYAGAIN     "Try again"
    IDS_MSGBOX_REPORT       "Report"
    IDS_MSGBOX_IGNOREALL    "Ignore all"
    IDS_MSGBOX_SKIP         "Skip"
    IDS_MSGBOX_SKIPALL      "Skip all"
END

STRINGTABLE
BEGIN
    IDS_ASKFORSAVE_TASK9    "When resolving conflicts, you always have to save even if there is no conflict shown. TortoiseMerge can merge changes that SVN can't and won't show a conflict for those!"
END

STRINGTABLE
BEGIN
    IDS_MARKASRESOLVED      "Do you want to mark the file\n%s\nas resolved?"
    IDS_MARKASRESOLVED_TASK2 "File has no conflicts"
    IDS_MARKASRESOLVED_TASK3 
                            "Mark as resolved\nThe file status is changed to modified"
    IDS_MARKASRESOLVED_TASK4 
                            "Leave as conflicted\nThe conflict status of the file is kept"
END

#endif    // English (United States) resources
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
// German (Switzerland) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DES)
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN_SWISS

/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//

IDD_GOTO DIALOGEX 0, 0, 175, 69
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Go To Line"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    DEFPUSHBUTTON   "OK",IDOK,59,48,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,118,48,50,14
    LTEXT           "&Line number",IDC_LINELABEL,7,7,161,8
    EDITTEXT        IDC_NUMBER,7,20,161,14,ES_AUTOHSCROLL | ES_NUMBER
END


/////////////////////////////////////////////////////////////////////////////
//
// DESIGNINFO
//

#ifdef APSTUDIO_INVOKED
GUIDELINES DESIGNINFO
BEGIN
    IDD_GOTO, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 168
        TOPMARGIN, 7
        BOTTOMMARGIN, 62
    END
END
#endif    // APSTUDIO_INVOKED


#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE 
BEGIN
    "..\\TortoiseMerge\\resource.h\0"
END

2 TEXTINCLUDE 
BEGIN
    "#include ""afxres.h""\r\n"
    "\0"
END

3 TEXTINCLUDE 
BEGIN
    "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
    "#define _AFX_NO_OLE_RESOURCES\r\n"
    "#define _AFX_NO_TRACKER_RESOURCES\r\n"
    "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
    "\r\n"
    "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
    "LANGUAGE 9, 1\r\n"
    "#pragma code_page(1252)\r\n"
    "#include ""TortoiseMerge.rc2""  // non-Microsoft Visual C++ edited resources\r\n"
    "#include ""afxres.rc""         // Standard components\r\n"
    "#include ""afxprint.rc""  // printing/print preview resources\r\n"
    "#include ""afxribbon.rc"" // ribbon and control bar resources\r\n"
    "#include ""afxolecl.rc""  // OLE container resources\r\n"
    "#endif\r\n"
    "\0"
END

#endif    // APSTUDIO_INVOKED

#endif    // German (Switzerland) resources
/////////////////////////////////////////////////////////////////////////////



#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
#define _AFX_NO_SPLITTER_RESOURCES
#define _AFX_NO_OLE_RESOURCES
#define _AFX_NO_TRACKER_RESOURCES
#define _AFX_NO_PROPERTY_RESOURCES

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE 9, 1
#pragma code_page(1252)
#include "TortoiseMerge.rc2"  // non-Microsoft Visual C++ edited resources
#include "afxres.rc"         // Standard components
#include "afxprint.rc"  // printing/print preview resources
#include "afxribbon.rc" // ribbon and control bar resources
#include "afxolecl.rc"  // OLE container resources
#endif

/////////////////////////////////////////////////////////////////////////////
#endif    // not APSTUDIO_INVOKED

Added extern/TortoiseSVNResources/TortoiseProc.rc2.






































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
//
// TortoiseProc.RC2 - resources Microsoft Visual C++ does not edit directly
//

#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
// Add manually edited resources here...
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
#include "..\version.h"
VS_VERSION_INFO VERSIONINFO
 FILEVERSION FILEVER
 PRODUCTVERSION PRODUCTVER
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x4L
 FILETYPE VFT_APP
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040004e4"
        BEGIN
            VALUE "CompanyName", "http://tortoisesvn.net\0"
            VALUE "FileDescription", "TortoiseSVN client\0"
            VALUE "FileVersion", STRFILEVER
            VALUE "InternalName", "TortoiseProc.exe\0"
            VALUE "LegalCopyright", "Copyright (C) 2003-2012 - TortoiseSVN\0"
            VALUE "OriginalFilename", "TortoiseProc.exe\0"
            VALUE "ProductName", "TortoiseSVN\0"
            VALUE "ProductVersion", STRPRODUCTVER
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x400, 1252
    END
END

#include "..\\TortoiseShell\\resource.rc"
/////////////////////////////////////////////////////////////////////////////
Added extern/TortoiseSVNResources/TortoiseProcENG.rc.






































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
// Microsoft Visual C++ generated resource script.
//
#include "..\TortoiseProc\resource.h"

#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"

/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS

/////////////////////////////////////////////////////////////////////////////
// Neutral resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL

/////////////////////////////////////////////////////////////////////////////
//
// AVI
//

IDR_ANIMATION           AVI                     "bin168.avi"
IDR_MOVEANI             AVI                     "bin167.avi"
IDR_SEARCH              AVI                     "search.avi"
IDR_CLEANUPANI          AVI                     "cleananim.avi"
IDR_DOWNLOAD            AVI                     "download.avi"

/////////////////////////////////////////////////////////////////////////////
//
// Icon
//

// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDR_MAINFRAME           ICON                    "Tortoise.ico"
IDI_DRIVES              ICON                    "Drives.ico"
IDI_SSH                 ICON                    "ssh.ico"
IDI_PROXY               ICON                    "proxy.ico"
IDI_MISC                ICON                    "misc.ico"
IDI_SET_OVERLAYS        ICON                    "Overlays.ico"
IDI_GENERAL             ICON                    "general.ico"
IDI_LOOKANDFEEL         ICON                    "lookandfeel.ico"
IDI_ICONSET             ICON                    "iconset.ico"
IDI_DIALOGS             ICON                    "dialogs.ico"
IDI_WARNING_GENERAL     ICON                    "warning-general.ico"
IDI_ACTIONADDED         ICON                    "actionadded.ico"
IDI_ACTIONDELETED       ICON                    "actiondeleted.ico"
IDI_ACTIONMODIFIED      ICON                    "actionmodified.ico"
IDI_ACTIONREPLACED      ICON                    "actionreplaced.ico"
IDI_REVGRAPH_ADDED      ICON                    "revgraph_added.ico"
IDI_REVGRAPH_ADDEDPLUS  ICON                    "revgraph_addedplus.ico"
IDI_REVGRAPH_DELETED    ICON                    "revgraph_deleted.ico"
IDI_REVGRAPH_LASTCOMMIT ICON                    "revgraph_lastcommit.ico"
IDI_REVGRAPH_RENAMED    ICON                    "revgraph_renamed.ico"
IDI_REVGRAPH_REPLACED   ICON                    "revgraph_replaced.ico"
IDI_REVGRAPH_TAGGED     ICON                    "revgraph_tag.ico"
IDI_SAVEDDATA           ICON                    "saveddata.ico"
IDI_GRAPHBAR            ICON                    "graph-bar.ico"
IDI_GRAPHBARSTACKED     ICON                    "graph-bar-stacked.ico"
IDI_GRAPHLINE           ICON                    "graph-line.ico"
IDI_GRAPHLINESTACKED    ICON                    "graph-line-stacked.ico"
IDI_GRAPHPIE            ICON                    "graph-pie.ico"
IDI_SWITCHLEFTRIGHT     ICON                    "switch.ico"
IDI_HOOK                ICON                    "hook.ico"
IDI_REPO_FILE           ICON                    "repo_file.ico"
IDI_REPO_HTTP           ICON                    "repo_http.ico"
IDI_REPO_HTTPS          ICON                    "repo_https.ico"
IDI_REPO_SVN            ICON                    "repo_svn.ico"
IDI_REPO_SVNSSH         ICON                    "repo_svn+ssh.ico"
IDI_REPO_UNKNOWN        ICON                    "repo_unknown.ico"
IDI_ADD_BKG             ICON                    "AddBackground.ico"
IDI_RESOLVE_BKG         ICON                    "ResolveBackground.ico"
IDI_REVERT_BKG          ICON                    "RevertBackground.ico"
IDI_COMMIT_BKG          ICON                    "CommitBackground.ico"
IDI_LOCK_BKG            ICON                    "LockBackground.ico"
IDI_CFM_BKG             ICON                    "CFMBackground.ico"
IDI_DELUNVERSIONED_BKG  ICON                    "DelunversionedBackground.ico"
IDI_UNLOCK_BKG          ICON                    "UnlockBackground.ico"
IDI_CANCELNORMAL        ICON                    "cancel-normal.ico"
IDI_CANCELPRESSED       ICON                    "cancel-pressed.ico"
IDI_LOGFILTER           ICON                    "logfilter.ico"
IDI_FILTEREDIT          ICON                    "filteredit.ico"
IDI_CHECKOUT_BKG        ICON                    "CheckoutBackground.ico"
IDI_COPY_BKG            ICON                    "CopyBackground.ico"
IDI_EXPORT_BKG          ICON                    "ExportBackground.ico"
IDI_IMPORT_BKG          ICON                    "ImportBackground.ico"
IDI_MERGE_BKG           ICON                    "MergeBackground.ico"
IDI_RENAME_BKG          ICON                    "RenameBackground.ico"
IDI_SWITCH_BKG          ICON                    "SwitchBackground.ico"
IDI_UPDATE_BKG          ICON                    "UpdateBackground.ico"
IDI_CACHE               ICON                    "cache.ico"
IDI_CACHELIST           ICON                    "CacheList.ico"
IDI_SETTINGSREVGRAPH    ICON                    "RevisionGraph.ico"
IDI_TORTOISEBLAME       ICON                    "..\\TortoiseBlame\\TortoiseBlame.ico"
IDI_BUGTRAQ             ICON                    "bugtraq.ico"
IDI_UP                  ICON                    "..\\Resources\\up.ico"
IDI_COPYCLIP            ICON                    "copy.ico"
IDI_MKDIR               ICON                    "newfolder.ico"
IDI_REFRESH             ICON                    "refresh.ico"
IDI_SAVE                ICON                    "save.ico"
IDI_SAVEAS              ICON                    "saveas.ico"
IDI_EXPLORER            ICON                    "explorer.ico"
IDI_OPEN                ICON                    "open.ico"
IDI_EXTERNALOVL         ICON                    "..\\resources\\externalovl.ico"
IDI_NESTEDOVL           ICON                    "..\\resources\\nestedovl.ico"
IDI_DEPTHEMPTYOVL       ICON                    "..\\resources\\depthemptyovl.ico"
IDI_DEPTHFILESOVL       ICON                    "..\\resources\\depthfilesovl.ico"
IDI_DEPTHIMMEDIATEDOVL  ICON                    "..\\resources\\depthimmediatesovl.ico"
IDI_COMMITBRANCHES_BKG  ICON                    "CommitBackgroundBranches.ico"
IDI_LINK                ICON                    "link.ico"
IDI_ACTIONMERGED        ICON                    "..\\Resources\\actionmerged.ico"
IDI_LIBRARY             ICON                    "Library.ico"
IDI_AEROBACKGROUND      ICON                    "aerobackground.ico"
IDI_ACTIONREVERSEMERGED ICON                    "actionreversemerged.ico"
IDI_RESTORE             ICON                    "restore.ico"
IDI_RESTOREOVL          ICON                    "restoreovl.ico"
IDI_FORWARD             ICON                    "forward.ico"
IDI_BACKWARD            ICON                    "backward.ico"
IDI_MERGEINFOOVL        ICON                    "mergeinfoovl.ico"
IDI_EXTERNALPEGGEDOVL   ICON                    "externalpeggedovl.ico"

/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//

IDB_LOGOFLIPPED         BITMAP                  "tortoisesvn_logoflipped.bmp"
IDB_TTF_BMP             BITMAP                  "ttf_glyph.bmp"
IDB_MERGEWIZARDTITLE    BITMAP                  "MergeWizardTitle.bmp"

/////////////////////////////////////////////////////////////////////////////
//
// Cursor
//

IDC_PANCUR              CURSOR                  "pan.cur"
IDC_PANCURDOWN          CURSOR                  "pandown.cur"
#endif    // Neutral resources
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
// English (United States) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//

IDR_REVGRAPHBAR         BITMAP                  "revgraphbar.bmp"
IDR_REVGRAPHGLYPHS      BITMAP                  "revgraphglyphs.bmp"

/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//

IDD_LOGCACHESTATISTICS DIALOGEX 0, 0, 298, 282
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Log Cache Statistics"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "RAM [kB]: ",IDC_STATIC,18,18,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_SIZERAM,90,18,48,8
    LTEXT           "disk [kB]: ",IDC_STATIC,18,30,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_SIZEDISK,90,30,48,8
    LTEXT           "connection: ",IDC_STATIC,18,42,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_CONNECTIONSTATE,90,42,48,8
    GROUPBOX        "Size and status",IDC_STATIC,12,6,132,54
    LTEXT           "last read: ",IDC_STATIC,162,18,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_LASTREAD,234,18,48,8
    LTEXT           "last update: ",IDC_STATIC,162,30,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_LASTWRITE,234,30,48,8
    LTEXT           "last HEAD update: ",IDC_STATIC,162,42,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_LASTHEADUPDATE,234,42,48,8
    GROUPBOX        "Age",IDC_STATIC,156,6,132,54
    LTEXT           "authors: ",IDC_STATIC,18,84,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_AUTHORS,90,84,48,8
    LTEXT           "path elements: ",IDC_STATIC,18,96,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_PATHELEMENTS,90,96,48,8
    LTEXT           "paths: ",IDC_STATIC,18,108,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_PATHS,90,108,48,8
    LTEXT           "skip ranges: ",IDC_STATIC,18,120,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_SKIPRANGES,90,120,48,8
    LTEXT           "word tokens: ",IDC_STATIC,143,84,85,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_WORDTOKENS,234,84,48,8
    LTEXT           "pair tokens: ",IDC_STATIC,143,96,85,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_PAIRTOKENS,234,96,48,8
    LTEXT           "text [token count]: ",IDC_STATIC,143,108,85,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_TEXTSIZE,234,108,48,8
    LTEXT           "words [uncompressed]: ",IDC_STATIC,143,120,85,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_UNCOMPRESSEDSIZE,234,120,48,8
    GROUPBOX        "Container sizes",IDC_STATIC,12,72,276,66
    LTEXT           "max revision: ",IDC_STATIC,18,162,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_MAXREVISION,90,162,48,8
    LTEXT           "revision count: ",IDC_STATIC,18,174,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_REVISIONCOUNT,90,174,48,8
    LTEXT           "changes total: ",IDC_STATIC,18,204,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_CHANGESTOTAL,90,204,48,8
    LTEXT           "revisions: ",IDC_STATIC,18,216,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_CHANGEDREVISIONS,90,216,48,8
    LTEXT           "missing in: ",IDC_STATIC,18,228,66,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_CHANGESMISSING,90,228,48,8
    LTEXT           "merges total: ",IDC_STATIC,144,162,84,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_MERGESTOTAL,234,162,48,8
    LTEXT           "revisions: ",IDC_STATIC,144,174,84,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_MERGESREVISIONS,234,174,48,8
    LTEXT           "missing in: ",IDC_STATIC,144,186,84,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_MERGESMISSING,234,186,48,8
    LTEXT           "user revprops total: ",IDC_STATIC,144,204,84,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_USERREVPROPSTOTAL,234,204,48,8
    LTEXT           "revisions: ",IDC_STATIC,144,216,84,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_USERREVPROPSREVISISONS,234,216,48,8
    LTEXT           "missing in: ",IDC_STATIC,144,228,84,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_USERREVPROPSMISSING,234,228,48,8
    GROUPBOX        "Revisions",IDC_STATIC,12,150,276,96
    DEFPUSHBUTTON   "&OK",IDOK,123,258,50,14
END

IDD_GOOFFLINE DIALOGEX 0, 0, 239, 137
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Want to go offline?"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "There has been a problem contacting the server.\nDo you want to see the cached data instead?\n\nPlease understand that the cached data may be outdated,\nincomplete or even misleading due to incomplete history data.",IDC_STATIC,7,7,222,60
    CONTROL         "Make this the default",IDC_ASDEFAULTOFFLINE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,71,226,10
    PUSHBUTTON      "&Offline for now",IDOK,7,97,110,14,BS_MULTILINE
    PUSHBUTTON      "&Permanently offline",IDC_PERMANENTLYOFFLINE,124,97,110,14,BS_MULTILINE
    DEFPUSHBUTTON   "&Cancel",IDCANCEL,7,118,227,14,BS_MULTILINE
END

IDD_ABOUT DIALOGEX 0, 0, 333, 297
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "About TortoiseSVN"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Authors:",IDC_AUTHORS,14,68,54,8
    LTEXT           "Stefan KĂŒng, LĂŒbbe Onken",IDC_STATIC,68,68,258,8
    LTEXT           "Credits:",IDC_STATIC,14,80,54,8
    LTEXT           "Documentation : Simon Large\nCode : Tobias SchÀfer, Stefan Fuhrmann",IDC_STATIC,68,80,258,33
    LTEXT           "Visit our website",IDC_WEBLINK,14,114,312,8
    LTEXT           "and support the developers",IDC_SUPPORTLINK,14,124,312,8
    GROUPBOX        "Version Information",IDC_VERSIONBOX,7,138,319,99
    EDITTEXT        IDC_VERSIONABOUT,14,149,304,85,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "This product includes software from Apacheℱ Subversion¼ (http://subversion.apache.org)",IDC_CREDITS1,14,239,312,8
    PUSHBUTTON      "Check For Updates...",IDC_UPDATE,7,276,110,14
    DEFPUSHBUTTON   "&OK",IDOK,276,276,50,14
    LTEXT           "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)",IDC_CREDITS2,14,252,312,18
END

IDD_ADD DIALOGEX 0, 0, 245, 170
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Add"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_ADDLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,231,107
    CONTROL         "Select / deselect &all",IDC_SELECTALL,"Button",BS_AUTO3STATE | WS_TABSTOP,7,119,231,10
    PUSHBUTTON      "&OK",IDOK,73,149,50,14
    PUSHBUTTON      "&Cancel",IDCANCEL,131,149,50,14
    PUSHBUTTON      "&Help",IDHELP,188,149,50,14
    CONTROL         "Enable Auto-&Properties",IDC_USEAUTOPROPS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,133,231,10
END

IDD_CHANGEDFILES DIALOGEX 0, 0, 549, 242
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Working Copy"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_CHANGEDLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,535,161
    CONTROL         "&Directories",IDC_SHOWFOLDERS,"Button",BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP,15,189,132,10
    CONTROL         "&Files",IDC_SHOWFILES,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,199,132,10
    CONTROL         "Un&versioned",IDC_SHOWUNVERSIONED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,209,132,10
    CONTROL         "Un&modified",IDC_SHOWUNMODIFIED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,219,132,10
    CONTROL         "I&gnored",IDC_SHOWIGNORED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,150,188,138,10
    CONTROL         "&Properties",IDC_SHOWUSERPROPS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,150,198,138,10
    CONTROL         "Items in &externals",IDC_SHOWEXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,150,209,138,10
    GROUPBOX        "Items to show",IDC_SHOWGROUP,7,174,287,61
    LTEXT           "",IDC_INFOLABEL,301,179,241,19,NOT WS_GROUP
    LTEXT           "",IDC_SUMMARYTEXT,301,201,241,17
    PUSHBUTTON      "&Refresh",IDC_REFRESH,310,221,67,14
    PUSHBUTTON      "C&heck repository",IDC_CHECKREPO,380,221,108,14
    DEFPUSHBUTTON   "&OK",IDOK,492,221,50,14
END

IDD_CHECKOUT DIALOGEX 0, 0, 301, 215
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Checkout"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "&URL of repository:",IDC_URLOFREPO,13,18,255,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,13,28,255,100
    PUSHBUTTON      "...",IDC_BROWSE,273,28,14,14
    LTEXT           "Checkout &directory:",IDC_EXPORT_CHECKOUTDIR,13,44,216,8
    EDITTEXT        IDC_CHECKOUTDIRECTORY,13,55,255,14,ES_AUTOHSCROLL
    PUSHBUTTON      "...",IDC_CHECKOUTDIRECTORY_BROWSE,273,55,14,14
    CONTROL         "Multiple, &independent working copies",IDC_INDEPENDENTWCS,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,72,274,10
    GROUPBOX        "Repository",IDC_GROUPTOP,7,7,287,82
    COMBOBOX        IDC_DEPTH,13,102,274,30,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    CONTROL         "Omit e&xternals",IDC_NOEXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,121,174,10
    PUSHBUTTON      "&Choose items...",IDC_SPARSE,195,118,92,14
    GROUPBOX        "Checkout D&epth",IDC_GROUPMIDDLE,7,91,287,48
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON,13,154,123,10
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,13,170,74,10
    EDITTEXT        IDC_REVISION_NUM,100,169,96,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Show &log",IDC_SHOW_LOG,208,169,79,14
    GROUPBOX        "Revision",IDC_GROUPBOTTOM,7,142,287,48
    DEFPUSHBUTTON   "&OK",IDOK,129,194,49,14
    PUSHBUTTON      "Cancel",IDCANCEL,187,194,49,14
    PUSHBUTTON      "Help",IDHELP,245,194,49,14
END

IDD_COPY DIALOGEX 0, 0, 359, 335
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Copy (Branch / Tag)"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "&From WC / URL:",IDC_COPYSTARTLABEL,13,18,223,8
    EDITTEXT        IDC_FROMURL,13,28,315,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "&To path:",IDC_TOURLLABEL,13,44,76,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,98,42,230,100
    PUSHBUTTON      "...",IDC_BROWSE,332,42,14,14
    LTEXT           "Destinatio&n URL:",IDC_DESTLABEL,13,57,315,8
    EDITTEXT        IDC_DESTURL,13,67,333,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    PUSHBUTTON      "&Recent messages",IDC_HISTORY,13,98,109,14
    PUSHBUTTON      "{BugTraq}",IDC_BUGTRAQBUTTON,124,98,78,14,NOT WS_VISIBLE | WS_DISABLED
    LTEXT           "Bug-&ID / Issue-Nr:",IDC_BUGIDLABEL,205,101,87,8,0,WS_EX_RIGHT
    EDITTEXT        IDC_BUGID,297,98,49,14,ES_AUTOHSCROLL
    LTEXT           "log text &editor",IDC_INVISIBLE,126,104,46,8,NOT WS_VISIBLE
    CONTROL         "Scintilla",IDC_LOGMESSAGE,"Scintilla",WS_TABSTOP,13,115,333,43,WS_EX_STATICEDGE
    GROUPBOX        "Create copy in the repository from:",IDC_FROMGROUP,13,166,333,53
    CONTROL         "&HEAD revision in the repository",IDC_COPYHEAD,"Button",BS_AUTORADIOBUTTON,19,178,309,10
    CONTROL         "&Specific revision in repository",IDC_COPYREV,"Button",BS_AUTORADIOBUTTON,19,191,174,10
    CONTROL         "&Working copy",IDC_COPYWC,"Button",BS_AUTORADIOBUTTON,19,204,169,10
    EDITTEXT        IDC_COPYREVTEXT,215,188,51,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Show &Log",IDC_BROWSEFROM,268,188,78,14
    GROUPBOX        "Set explicit revision for these externals:",IDC_EXTGROUP,13,220,333,84
    LTEXT           "Check:",IDC_SELECTLABEL,19,230,41,8
    LTEXT           "All",IDC_CHECKALL,61,230,14,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "None",IDC_CHECKNONE,77,230,18,8,SS_NOTIFY | WS_TABSTOP
    CONTROL         "",IDC_EXTERNALSLIST,"SysListView32",LVS_REPORT | LVS_ALIGNLEFT | LVS_OWNERDATA | WS_BORDER | WS_TABSTOP,19,242,320,56
    CONTROL         "Create intermediate folders",IDC_MAKEPARENTS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,307,187,10
    CONTROL         "Swit&ch working copy to new branch/tag",IDC_DOSWITCH,
                    "Button",BS_AUTOCHECKBOX | BS_VCENTER | BS_MULTILINE | WS_TABSTOP,7,319,185,8
    PUSHBUTTON      "&OK",IDOK,196,314,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,249,314,50,14
    PUSHBUTTON      "Help",IDHELP,302,314,50,14
    GROUPBOX        "Repository",IDC_REPOGROUP,7,7,345,77
    GROUPBOX        "Log message",IDC_MSGGROUP,7,87,345,76
END

IDD_IMPORT DIALOGEX 0, 0, 300, 190
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Import"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    GROUPBOX        "Repository",IDC_STATIC1,7,7,286,43
    LTEXT           "&URL of repository:",IDC_STATIC4,13,18,80,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,13,28,255,100
    PUSHBUTTON      "...",IDC_BROWSE,273,28,14,14
    GROUPBOX        "Import &message",IDC_MSGGROUP,7,55,286,104
    PUSHBUTTON      "&Recent messages",IDC_HISTORY,13,64,123,14
    CONTROL         "Scintilla",IDC_MESSAGE,"Scintilla",WS_TABSTOP,13,80,274,70,WS_EX_STATICEDGE
    CONTROL         "Include ignored files",IDC_IMPORTIGNORED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,162,111,10
    PUSHBUTTON      "&OK",IDOK,129,169,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,187,169,50,14
    PUSHBUTTON      "Help",IDHELP,243,169,50,14
    CONTROL         "Enable Auto-Properties",IDC_USEAUTOPROPS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,173,111,10
END

IDD_LOGMESSAGE DIALOGEX 0, 0, 421, 326
STYLE DS_SETFONT | DS_SETFOREGROUND | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
EXSTYLE WS_EX_APPWINDOW
CAPTION "Log Messages"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    EDITTEXT        IDC_SEARCHEDIT,7,7,196,14,ES_MULTILINE | ES_AUTOHSCROLL
    LTEXT           "From:",IDC_FROMLABEL,219,10,30,8
    CONTROL         "",IDC_DATEFROM,"SysDateTimePick32",DTS_RIGHTALIGN | WS_TABSTOP,250,7,61,15
    LTEXT           "To:",IDC_TOLABEL,318,9,26,8
    CONTROL         "",IDC_DATETO,"SysDateTimePick32",DTS_RIGHTALIGN | WS_TABSTOP,352,7,61,15
    CONTROL         "",IDC_LOGLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | LVS_OWNERDATA | WS_BORDER | WS_TABSTOP,7,24,406,57
    CONTROL         "",IDC_SPLITTERTOP,"Static",SS_BLACKFRAME,7,81,406,5
    CONTROL         "",IDC_MSGVIEW,"RichEdit20W",WS_BORDER | WS_VSCROLL | WS_TABSTOP | 0x1804,7,86,406,96
    CONTROL         "",IDC_SPLITTERBOTTOM,"Static",SS_BLACKFRAME,7,182,406,4
    CONTROL         "",IDC_LOGMSG,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | LVS_OWNERDATA | WS_BORDER | WS_TABSTOP,7,187,406,58
    LTEXT           "",IDC_LOGINFO,7,248,406,8
    CONTROL         "Show only a&ffected paths",IDC_SHOWPATHS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,259,293,10
    PUSHBUTTON      "S&tatistics",IDC_STATBUTTON,363,257,50,14,WS_DISABLED
    CONTROL         "&Stop on copy/rename",IDC_CHECK_STOPONCOPY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,270,293,10
    CONTROL         "Include merged revisions",IDC_INCLUDEMERGE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,282,293,10
    CONTROL         "Hide non-mergeable revisions",IDC_HIDENONMERGEABLE,
                    "Button",BS_AUTOCHECKBOX | NOT WS_VISIBLE | WS_TABSTOP,7,292,293,10
    CONTROL         "",IDC_PROGRESS,"msctls_progress32",NOT WS_VISIBLE | WS_BORDER,7,293,349,9
    PUSHBUTTON      "Help",IDHELP,363,284,50,14
    PUSHBUTTON      "Show &All",IDC_GETALL,7,304,109,14
    PUSHBUTTON      "&Next %ld",IDC_NEXTHUNDRED,121,304,64,14
    PUSHBUTTON      "Refresh",IDC_REFRESH,190,304,50,14
    PUSHBUTTON      "&OK",IDOK,304,304,52,14
    PUSHBUTTON      "Cancel",IDC_LOGCANCEL,363,304,50,14
END

IDD_COMMITDLG DIALOGEX 0, 0, 401, 298
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Commit"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Commit to:",IDC_COMMITLABEL,6,6,191,8
    EDITTEXT        IDC_COMMIT_TO,6,17,306,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "Bug-&ID / Issue-Nr:",IDC_BUGIDLABEL,148,6,191,8,0,WS_EX_RIGHT
    PUSHBUTTON      "{BugTraq}",IDC_BUGTRAQBUTTON,316,17,78,14,NOT WS_VISIBLE | WS_DISABLED
    EDITTEXT        IDC_BUGID,345,3,49,14,ES_AUTOHSCROLL
    PUSHBUTTON      "&Recent messages",IDC_HISTORY,14,41,134,14
    CTEXT           "",IDC_NEWVERSIONLINK,155,36,231,20,NOT WS_VISIBLE
    LTEXT           "log text &editor",IDC_INVISIBLE,376,50,9,8,NOT WS_VISIBLE
    CONTROL         "Scintilla",IDC_LOGMESSAGE,"Scintilla",WS_TABSTOP,14,59,372,64,WS_EX_STATICEDGE
    LTEXT           "Check:",IDC_SELECTLABEL,14,150,41,8
    LTEXT           "&All",IDC_CHECKALL,55,150,14,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "&None",IDC_CHECKNONE,72,150,18,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "Non-versioned",IDC_CHECKUNVERSIONED,92,150,48,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "Versioned",IDC_CHECKVERSIONED,141,150,34,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "Added",IDC_CHECKADDED,175,150,22,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "Deleted",IDC_CHECKDELETED,200,150,26,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "Modified",IDC_CHECKMODIFIED,229,150,28,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "Files",IDC_CHECKFILES,262,150,15,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "Directories",IDC_CHECKDIRECTORIES,281,150,35,8,SS_NOTIFY | WS_TABSTOP
    LTEXT           "&file list control",IDC_INVISIBLE2,339,150,45,8,NOT WS_VISIBLE
    CONTROL         "",IDC_FILELIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,14,160,372,76
    CONTROL         "Show &unversioned files",IDC_SHOWUNVERSIONED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,239,325,10
    LTEXT           "",IDC_STATISTICS,148,238,238,8,0,WS_EX_RIGHT
    CONTROL         "Show externals from &different repositories",IDC_SHOWEXTERNALS,
                    "Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,249,246,10
    ICON            IDI_WARNING_GENERAL,IDC_EXTERNALWARNING,365,253,20,20,SS_NOTIFY | SS_REALSIZEIMAGE | NOT WS_VISIBLE | WS_DISABLED,WS_EX_TRANSPARENT
    CONTROL         "Keep &locks",IDC_KEEPLOCK,"Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,270,149,10
    CONTROL         "Keep c&hangelists",IDC_KEEPLISTS,"Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,14,281,147,10
    PUSHBUTTON      "Show lo&g",IDC_LOG,158,277,72,14
    PUSHBUTTON      "&OK",IDOK,234,277,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,289,277,50,14
    PUSHBUTTON      "Help",IDHELP,344,277,50,14
    GROUPBOX        "Message:",IDC_MESSAGEGROUP,6,30,388,99
    CONTROL         "",IDC_SPLITTER,"Static",SS_OWNERDRAW,6,130,388,5,WS_EX_TRANSPARENT
    GROUPBOX        "Changes made (double-click on file for diff):",IDC_LISTGROUP,6,137,388,125
    LTEXT           "",IDC_DWM,14,262,11,3
END

IDD_PROMPT DIALOGEX 0, 0, 241, 54
STYLE DS_SETFONT | DS_SETFOREGROUND | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
EXSTYLE WS_EX_TOPMOST
CAPTION "Authentication"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "&Username:",IDC_INFOTEXT,7,9,64,9
    EDITTEXT        IDC_PASSEDIT,74,7,160,14,ES_AUTOHSCROLL
    CONTROL         "&Save authentication",IDC_SAVECHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,22,227,10
    DEFPUSHBUTTON   "&OK",IDOK,127,33,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,184,33,50,14
END

IDD_RELOCATE DIALOGEX 0, 0, 301, 89
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Relocate"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_TOURL,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,7,44,287,100
    DEFPUSHBUTTON   "&OK",IDOK,129,68,51,14
    PUSHBUTTON      "Cancel",IDCANCEL,186,68,51,14
    PUSHBUTTON      "Help",IDHELP,243,68,51,14
    LTEXT           "&From URL:",IDC_FROMURLLABEL,7,7,120,8
    EDITTEXT        IDC_FROMURL,7,17,268,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "&To URL:",IDC_TOURLLABEL,7,31,120,8
    LTEXT           "",IDC_DWM,7,58,24,6
    CONTROL         "&Include externals",IDC_INCLUDEEXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,72,116,10
END

IDD_RENAME DIALOGEX 0, 0, 235, 55
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Rename"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "New &name:",IDC_LABEL,7,10,67,8
    EDITTEXT        IDC_NAME,80,7,148,14,ES_AUTOHSCROLL
    DEFPUSHBUTTON   "&OK",IDOK,109,34,58,14
    PUSHBUTTON      "Cancel",IDCANCEL,170,34,58,14
    LTEXT           "",IDC_DWM,7,23,18,8
END

IDD_REPOSITORY_BROWSER DIALOGEX 0, 0, 415, 279
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Repository Browser"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_REPOS_BAR_CNR,"Static",SS_OWNERDRAW | WS_TABSTOP,7,6,401,16
    CONTROL         "",IDC_REPOTREE,"SysTreeView32",TVS_HASBUTTONS | TVS_LINESATROOT | TVS_EDITLABELS | TVS_SHOWSELALWAYS | TVS_TRACKSELECT | TVS_FULLROWSELECT | WS_BORDER | WS_HSCROLL | WS_TABSTOP,7,22,160,227,WS_EX_CLIENTEDGE
    CONTROL         "",IDC_REPOLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_EDITLABELS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,170,22,238,227,WS_EX_ACCEPTFILES | WS_EX_CLIENTEDGE
    LTEXT           "",IDC_INFOLABEL,7,256,234,16,0,WS_EX_RIGHT
    DEFPUSHBUTTON   "&OK",IDOK,246,258,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,302,258,50,14
    PUSHBUTTON      "Help",IDHELP,358,258,50,14
END

IDD_SETTINGSMAIN DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "General"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    LTEXT           "&Language:",IDC_STATIC,14,20,86,8
    COMBOBOX        IDC_LANGUAGECOMBO,132,18,152,64,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    LTEXT           "Check for updates",IDC_STATIC,14,41,182,8
    PUSHBUTTON      "C&heck now",IDC_CHECKNEWERBUTTON,202,38,82,14
    LTEXT           "System &sounds",IDC_STATIC,14,62,182,8
    PUSHBUTTON      "&Configure",IDC_SOUNDS,202,59,82,14
    CONTROL         "Use Aero dialogs",IDC_AERODWM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,80,270,10
    PUSHBUTTON      "Create &Library",IDC_CREATELIB,202,94,82,14
    LTEXT           "Global ignore &pattern:",IDC_TEMPEXTENSIONSLABEL,14,138,111,18,SS_NOTIFY | SS_CENTERIMAGE
    EDITTEXT        IDC_TEMPEXTENSIONS,132,140,152,14,ES_AUTOHSCROLL
    CONTROL         "Set file dates to the ""last commit &time""",IDC_COMMITFILETIMES,
                    "Button",BS_AUTOCHECKBOX | BS_MULTILINE | WS_TABSTOP,14,156,270,16
    LTEXT           "Subversion configuration &file:",IDC_STATIC,14,180,182,8
    PUSHBUTTON      "&Edit",IDC_EDITCONFIG,202,175,82,14
    GROUPBOX        "TortoiseSVN",IDC_STATIC,7,7,286,111
    GROUPBOX        "Subversion",IDC_STATIC,7,128,286,82
END

IDD_SETTINGSOVERLAY DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Icon Overlays"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Icon Overlays / Status Columns",IDC_STATIC,12,30,274,42
    CONTROL         "Show &overlays and context menu only in explorer",IDC_ONLYEXPLORER,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,45,260,10
    CONTROL         "Unversioned files mark parent folder as modified",IDC_UNVERSIONEDASMODIFIED,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,58,259,10
    GROUPBOX        "Drive Types",IDC_DRIVEGROUP,12,74,274,61
    CONTROL         "Re&movable drives",IDC_REMOVABLE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,97,130,10
    CONTROL         "Drives A: and B:",IDC_FLOPPY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,85,148,10
    CONTROL         "&Network drives",IDC_NETWORK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,109,130,10
    CONTROL         "&Fixed drives",IDC_FIXED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,121,127,10
    CONTROL         "&CD-ROM",IDC_CDROM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,166,86,118,10
    CONTROL         "R&AM drives",IDC_RAM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,166,109,112,10
    CONTROL         "&Unknown drives",IDC_UNKNOWN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,166,121,118,10
    LTEXT           "E&xclude paths:",IDC_EXCLUDEPATHSLABEL,18,147,95,8,SS_NOTIFY
    EDITTEXT        IDC_EXCLUDEPATHS,117,140,169,28,ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_WANTRETURN | WS_VSCROLL
    LTEXT           "I&nclude paths:",IDC_INCLUDEPATHSLABEL,17,179,95,8,SS_NOTIFY
    EDITTEXT        IDC_INCLUDEPATHS,117,171,169,25,ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_WANTRETURN | WS_VSCROLL
    CONTROL         "Show excluded root folders as normal",IDC_SHOWEXCLUDEDASNORMAL,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,200,268,10
    GROUPBOX        "Status cache",IDC_STATIC,12,7,274,22
    CONTROL         "&Default",IDC_CACHEDEFAULT,"Button",BS_AUTORADIOBUTTON | WS_GROUP,18,15,88,10
    CONTROL         "Shell",IDC_CACHESHELL,"Button",BS_AUTORADIOBUTTON,114,15,92,10
    CONTROL         "None",IDC_CACHENONE,"Button",BS_AUTORADIOBUTTON,213,15,70,10
END

IDD_SETTINGSPROXY DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Network"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    CONTROL         "&Enable Proxy Server",IDC_ENABLE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,7,286,10
    LTEXT           "Server &address:",IDC_PROXYLABEL1,17,36,101,8
    EDITTEXT        IDC_SERVERADDRESS,118,34,101,14,ES_AUTOHSCROLL
    LTEXT           "&Port:",IDC_PROXYLABEL6,231,37,21,8
    EDITTEXT        IDC_SERVERPORT,255,34,30,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER
    LTEXT           "&Username:",IDC_PROXYLABEL2,17,55,101,8
    EDITTEXT        IDC_USERNAME,118,52,101,14,ES_AUTOHSCROLL
    LTEXT           "&Password:",IDC_PROXYLABEL3,17,74,101,8
    EDITTEXT        IDC_PASSWORD,118,70,101,14,ES_PASSWORD | ES_AUTOHSCROLL
    LTEXT           "Proxy &timeout in seconds:",IDC_PROXYLABEL4,17,93,101,21
    EDITTEXT        IDC_TIMEOUT,118,92,101,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER
    LTEXT           "Exceptions:",IDC_PROXYLABEL5,17,120,94,8
    EDITTEXT        IDC_EXCEPTIONS,118,117,101,14,ES_AUTOHSCROLL
    LTEXT           "Subversion server file:",IDC_STATIC,17,148,101,15
    PUSHBUTTON      "Edit",IDC_EDITSERVERS,118,146,101,14
    LTEXT           "&SSH client:",IDC_STATIC,17,177,101,8
    EDITTEXT        IDC_SSHCLIENT,17,188,202,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Browse...",IDC_SSHBROWSE,235,187,50,14
    GROUPBOX        "Proxy Settings",IDC_PROXYGROUP,7,20,286,119
    GROUPBOX        "SSH",IDC_SSHGROUP,7,168,286,42
END

IDD_SVNPROGRESS DIALOGEX 0, 0, 434, 165
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Progress"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_SVNPROGRESS,"SysListView32",LVS_REPORT | LVS_ALIGNLEFT | LVS_OWNERDATA | WS_BORDER | WS_TABSTOP,7,7,420,113
    LTEXT           "",IDC_PROGRESSLABEL,7,123,225,8,NOT WS_VISIBLE
    CONTROL         "",IDC_PROGRESSBAR,"msctls_progress32",NOT WS_VISIBLE | WS_BORDER,237,123,190,9
    LTEXT           "",IDC_INFOTEXT,7,145,225,12
    LTEXT           "Jump to next &conflict",IDC_JUMPCONFLICT,238,123,77,8,NOT WS_VISIBLE
    PUSHBUTTON      "Show &log...",IDC_LOGBUTTON,237,143,79,14,NOT WS_VISIBLE
    DEFPUSHBUTTON   "&OK",IDOK,322,143,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,377,143,50,14
    CONTROL         "Merge non-interactive",IDC_NONINTERACTIVE,"Button",BS_AUTOCHECKBOX | NOT WS_VISIBLE | WS_TABSTOP,7,146,223,10
    PUSHBUTTON      "&Retry without hooks",IDC_RETRYNOHOOKS,316,123,111,14,NOT WS_VISIBLE
END

IDD_SWITCH DIALOGEX 0, 0, 351, 180
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Switch To Branch / Tag"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Switch:",IDC_SWITCHLABEL,7,7,337,8
    EDITTEXT        IDC_SWITCHPATH,7,17,337,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "&To path:",IDC_URLLABEL,7,35,44,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,56,34,269,141
    PUSHBUTTON      "...",IDC_BROWSE,330,33,14,14
    LTEXT           "Source URL:",IDC_SRCLABEL,7,51,337,8
    EDITTEXT        IDC_SRCURL,7,61,337,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "Destination URL:",IDC_DESTLABEL,7,75,337,8
    EDITTEXT        IDC_DESTURL,7,86,337,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    GROUPBOX        "Revision",IDC_REVGROUP,7,102,168,51
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON,13,116,80,10
    PUSHBUTTON      "Show &log",IDC_LOG,94,112,74,14
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,13,132,73,10
    EDITTEXT        IDC_REVISION_NUM,94,130,74,14,ES_AUTOHSCROLL
    GROUPBOX        "Switch Depth",IDC_GROUPMIDDLE,181,102,163,51
    COMBOBOX        IDC_DEPTH,187,113,152,30,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    CONTROL         "&Make depth sticky",IDC_STICKYDEPTH,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,187,129,149,10
    CONTROL         "Omit e&xternals",IDC_NOEXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,187,140,148,10
    CONTROL         "&Ignore ancestry",IDC_IGNOREANCESTRY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,160,139,10
    DEFPUSHBUTTON   "&OK",IDOK,170,159,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,232,159,50,14
    PUSHBUTTON      "Help",IDHELP,294,159,50,14
END

IDD_UPDATE DIALOGEX 0, 0, 247, 176
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Update"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    EDITTEXT        IDC_REVNUM,134,36,93,14,ES_AUTOHSCROLL
    GROUPBOX        "Revision",IDC_STATIC,7,7,233,51
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON,13,21,90,10
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,13,37,85,10
    PUSHBUTTON      "Show &log",IDC_LOG,134,18,93,14
    GROUPBOX        "Update Depth",IDC_GROUPMIDDLE,7,60,233,44
    COMBOBOX        IDC_DEPTH,13,71,115,63,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    PUSHBUTTON      "Choose items...",IDC_SPARSE,134,71,93,14
    CONTROL         "&Make depth sticky",IDC_STICKYDEPTH,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,88,214,10
    GROUPBOX        "Misc",IDC_GROUPMISC,7,109,233,39
    CONTROL         "Omit e&xternals",IDC_NOEXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,120,214,10
    DEFPUSHBUTTON   "&OK",IDOK,129,155,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,190,155,50,14
END

IDD_SIMPLEPROMPT DIALOGEX 0, 0, 220, 126
STYLE DS_SETFONT | DS_MODALFRAME | DS_SETFOREGROUND | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Authentication"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CTEXT           "",IDC_REALM,7,7,206,27
    CTEXT           "Requests a username and a password",IDC_STATIC,7,38,206,8
    LTEXT           "&Username:",IDC_STATIC,7,53,79,8
    EDITTEXT        IDC_USEREDIT,94,50,119,14,ES_AUTOHSCROLL
    LTEXT           "&Password:",IDC_STATIC,7,74,79,8
    EDITTEXT        IDC_PASSEDIT,94,71,119,14,ES_PASSWORD | ES_AUTOHSCROLL
    CONTROL         "&Save authentication",IDC_SAVECHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,92,206,10
    DEFPUSHBUTTON   "&OK",IDOK,106,105,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,163,105,50,14
END

IDD_INPUTDLG DIALOGEX 0, 0, 237, 113
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Input"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Enter log &message:",IDC_HINTTEXT,7,7,223,11
    CONTROL         "Scintilla",IDC_INPUTTEXT,"Scintilla",WS_TABSTOP,7,19,223,68,WS_EX_STATICEDGE
    CONTROL         "",IDC_CHECKBOX,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,96,104,10
    PUSHBUTTON      "&OK",IDOK,121,92,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,180,92,50,14
END

IDD_BLAME DIALOGEX 0, 0, 311, 181
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Blame"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    GROUPBOX        "&From revision",IDC_STATIC,7,7,123,46
    EDITTEXT        IDC_REVISON_START,13,24,105,14,ES_AUTOHSCROLL
    GROUPBOX        "&To Revision",IDC_STATIC,139,7,165,46
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON | WS_GROUP,145,18,81,10
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,145,34,63,10
    EDITTEXT        IDC_REVISION_END,215,31,79,14,ES_AUTOHSCROLL
    GROUPBOX        "Diff options",IDC_DIFFGROUP,7,60,297,64
    CONTROL         "Ignore line &endings",IDC_IGNOREEOL2,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,73,281,10
    CONTROL         "&Compare whitespaces",IDC_COMPAREWHITESPACES,"Button",BS_AUTORADIOBUTTON | WS_GROUP,13,87,281,10
    CONTROL         "Ignore whitespace changes",IDC_IGNOREWHITESPACECHANGES,
                    "Button",BS_AUTORADIOBUTTON,13,97,281,10
    CONTROL         "Ignore &all whitespaces",IDC_IGNOREALLWHITESPACES,
                    "Button",BS_AUTORADIOBUTTON,13,107,281,10
    CONTROL         "Use &text viewer to view blames",IDC_USETEXTVIEWER,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,133,297,10
    CONTROL         "&Include merge info",IDC_INCLUDEMERGEINFO,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,146,297,10
    DEFPUSHBUTTON   "&OK",IDOK,140,160,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,197,160,50,14
    PUSHBUTTON      "Help",IDHELP,254,160,50,14
END

IDD_SETTINGSPROGSADV DIALOGEX 0, 0, 319, 217
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Advanced Diff/Merge Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Extension/mime-type specific programs",IDC_GROUP,7,7,305,179
    CONTROL         "",IDC_TOOLLISTCTRL,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_SORTASCENDING | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,13,20,291,139
    PUSHBUTTON      "&Add...",IDC_ADDTOOL,14,165,51,14
    PUSHBUTTON      "&Edit...",IDC_EDITTOOL,69,165,51,14
    PUSHBUTTON      "&Remove",IDC_REMOVETOOL,124,165,51,14
    DEFPUSHBUTTON   "OK",IDOK,208,196,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,262,196,50,14
    PUSHBUTTON      "Re&store defaults",IDC_RESTOREDEFAULTS,179,165,103,14
END

IDD_URL DIALOGEX 0, 0, 235, 55
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "URL"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "&URL:",IDC_LABEL,7,14,35,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,42,12,186,100
    DEFPUSHBUTTON   "&OK",IDOK,105,34,58,14
    PUSHBUTTON      "Cancel",IDCANCEL,170,34,58,14
    LTEXT           "",IDC_DWM,7,24,8,8,NOT WS_VISIBLE
END

IDD_TOOLASSOC DIALOGEX 0, 0, 443, 79
STYLE DS_SETFONT | DS_SETFOREGROUND | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Add/Edit Extension Specific Diff/Merge Program"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Filename, extension or mime-type:",IDC_STATIC,7,10,173,8
    EDITTEXT        IDC_EXTEDIT,180,7,87,14,ES_LOWERCASE | ES_AUTOHSCROLL
    LTEXT           "External Program:",IDC_STATIC,7,30,173,8
    EDITTEXT        IDC_TOOLEDIT,180,27,228,14,ES_AUTOHSCROLL
    PUSHBUTTON      "...",IDC_TOOLBROWSE,422,27,14,14
    DEFPUSHBUTTON   "&OK",IDOK,272,58,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,386,58,50,14
END

IDD_REVISION DIALOGEX 0, 0, 203, 83
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Select Revision"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    EDITTEXT        IDC_REVNUM,104,36,85,14,ES_AUTOHSCROLL
    GROUPBOX        "Revision",IDC_REVGROUP,7,7,189,51
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON,13,21,91,10
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,13,37,85,10
    PUSHBUTTON      "&Show Log",IDC_LOG,104,15,85,14,NOT WS_VISIBLE
    DEFPUSHBUTTON   "&OK",IDOK,89,62,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,146,62,50,14
END

IDD_CHECKFORUPDATES DIALOGEX 0, 0, 186, 127
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Check For Updates"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Checking if a newer version of TortoiseSVN is available...",IDC_INFO,7,7,172,19,0,WS_EX_TRANSPARENT
    LTEXT           "Your version is:",IDC_YOURVERSION,7,28,172,8,0,WS_EX_TRANSPARENT
    LTEXT           "Current version is:",IDC_CURRENTVERSION,7,40,172,8,0,WS_EX_TRANSPARENT
    LTEXT           "",IDC_CHECKRESULT,7,55,172,37,SS_NOTIFY,WS_EX_TRANSPARENT
    CTEXT           "Click here to go to the website",IDC_LINK,7,95,172,8,SS_CENTERIMAGE | NOT WS_VISIBLE
    DEFPUSHBUTTON   "&OK",IDOK,65,106,50,14
END

IDD_REVERT DIALOGEX 0, 0, 333, 231
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Revert"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_REVERTLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,319,180
    CONTROL         "Select / deselect &all",IDC_SELECTALL,"Button",BS_AUTO3STATE | WS_TABSTOP,7,189,141,17
    LTEXT           "Note: the folder contains unversioned items",IDC_UNVERSIONEDITEMS,214,190,112,16,NOT WS_VISIBLE
    PUSHBUTTON      "&Delete unversioned items...",IDC_DELUNVERSIONED,7,209,123,14
    PUSHBUTTON      "&OK",ID_OK,170,209,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,223,209,50,14
    PUSHBUTTON      "Help",IDHELP,276,209,50,14
END

IDD_PROPERTIES DIALOGEX 0, 0, 247, 105
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Properties"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_PROPERTYLIST,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,7,7,233,71
    DEFPUSHBUTTON   "&OK",IDOK,97,84,50,14
END

IDD_STATGRAPH DIALOGEX 0, 0, 363, 233
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
EXSTYLE WS_EX_APPWINDOW
CAPTION "Statistics"
MENU IDR_STATGRAPH
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Graph type:",IDC_GRAPHTYPELABEL,7,9,112,8
    COMBOBOX        IDC_GRAPHCOMBO,202,7,154,114,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    LTEXT           "",IDC_GRAPH,7,23,349,157,SS_NOTIFY | WS_BORDER
    LTEXT           "Number of weeks:",IDC_NUMWEEK,7,29,128,8
    LTEXT           "",IDC_NUMWEEKVALUE,267,29,37,8,0,WS_EX_RIGHT
    LTEXT           "Number of authors:",IDC_NUMAUTHOR,7,41,128,8
    LTEXT           "",IDC_NUMAUTHORVALUE,267,41,37,8,0,WS_EX_RIGHT
    LTEXT           "Total commits analyzed:",IDC_NUMCOMMITS,7,53,128,8
    LTEXT           "",IDC_NUMCOMMITSVALUE,267,53,37,8,0,WS_EX_RIGHT
    LTEXT           "Total file changes:",IDC_NUMFILECHANGES,7,65,128,8
    LTEXT           "",IDC_NUMFILECHANGESVALUE,267,65,37,8,0,WS_EX_RIGHT
    LTEXT           "Average",IDC_AVG,202,84,38,8,0,WS_EX_RIGHT
    LTEXT           "Min",IDC_MIN,240,84,27,8,0,WS_EX_RIGHT
    LTEXT           "Max",IDC_MAX,267,84,37,8,0,WS_EX_RIGHT
    LTEXT           "Commits each week:",IDC_COMMITSEACHWEEK,7,100,115,8
    LTEXT           "",IDC_COMMITSEACHWEEKAVG,202,100,38,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_COMMITSEACHWEEKMIN,240,100,27,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_COMMITSEACHWEEKMAX,267,100,37,8,0,WS_EX_RIGHT
    LTEXT           "Most active author:",IDC_MOSTACTIVEAUTHOR,7,115,115,8
    LTEXT           "",IDC_MOSTACTIVEAUTHORNAME,122,115,80,8
    LTEXT           "",IDC_MOSTACTIVEAUTHORAVG,202,115,38,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_MOSTACTIVEAUTHORMIN,240,115,27,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_MOSTACTIVEAUTHORMAX,267,115,37,8,0,WS_EX_RIGHT
    LTEXT           "Least active author:",IDC_LEASTACTIVEAUTHOR,7,130,115,8
    LTEXT           "",IDC_LEASTACTIVEAUTHORNAME,122,130,80,8
    LTEXT           "",IDC_LEASTACTIVEAUTHORAVG,202,130,38,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_LEASTACTIVEAUTHORMIN,240,130,27,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_LEASTACTIVEAUTHORMAX,267,130,37,8,0,WS_EX_RIGHT
    LTEXT           "File changes each week:",IDC_FILECHANGESEACHWEEK,7,144,115,8
    LTEXT           "",IDC_FILECHANGESEACHWEEKAVG,202,144,38,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_FILECHANGESEACHWEEKMIN,240,144,27,8,0,WS_EX_RIGHT
    LTEXT           "",IDC_FILECHANGESEACHWEEKMAX,267,144,37,8,0,WS_EX_RIGHT
    CONTROL         "Authors case sensitive",IDC_AUTHORSCASESENSITIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,182,195,10
    LTEXT           "# authors shown individually:",IDC_SKIPPERLABEL,7,214,113,8
    CONTROL         "",IDC_SKIPPER,"msctls_trackbar32",TBS_AUTOTICKS | TBS_BOTH | TBS_NOTICKS | TBS_TOOLTIPS | WS_TABSTOP,120,210,139,15
    PUSHBUTTON      "",IDC_GRAPHPIEBUTTON,251,180,18,14,BS_ICON
    PUSHBUTTON      "",IDC_GRAPHLINESTACKEDBUTTON,273,180,18,14,BS_ICON
    PUSHBUTTON      "",IDC_GRAPHLINEBUTTON,295,180,18,14,BS_ICON
    PUSHBUTTON      "",IDC_GRAPHBARSTACKEDBUTTON,317,180,18,14,BS_ICON
    PUSHBUTTON      "",IDC_GRAPHBARBUTTON,338,180,18,14,BS_ICON
    DEFPUSHBUTTON   "&OK",IDOK,308,209,50,14
    CONTROL         "Sort by commit count",IDC_SORTBYCOMMITCOUNT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,192,195,10
END

IDD_PATCH_FILE_OPEN_CUSTOM DIALOGEX 0, 0, 122, 28
STYLE DS_SETFONT | DS_3DLOOK | DS_FIXEDSYS | DS_CONTROL | WS_CHILD | WS_CLIPSIBLINGS | WS_SYSMENU
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    PUSHBUTTON      "Save to clipboard",IDC_PATCH_TO_CLIPBOARD,7,7,108,14
END

IDD_REVISIONGRAPH DIALOGEX 0, 0, 264, 230
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Revision Graph"
MENU IDR_REVISIONGRAPH
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
END

IDD_SETOVERLAYICONS DIALOGEX 0, 0, 302, 214
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_CAPTION
CAPTION "Icon Overlays::Icon Set"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "&Icon Set:",IDC_ICONSETLABEL,7,9,77,8
    COMBOBOX        IDC_ICONSETCOMBO,137,7,158,70,CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
    CONTROL         "",IDC_ICONLIST,"SysListView32",LVS_LIST | LVS_AUTOARRANGE | LVS_ALIGNLEFT | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,7,28,288,156
    CONTROL         "&List View",IDC_LISTRADIO,"Button",BS_AUTORADIOBUTTON | WS_GROUP,7,191,118,10
    CONTROL         "&Symbol View",IDC_SYMBOLRADIO,"Button",BS_AUTORADIOBUTTON,138,191,157,10
END

IDD_LOCK DIALOGEX 0, 0, 303, 198
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Lock Files"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    PUSHBUTTON      "&Recent messages",IDC_HISTORY,7,7,119,14
    LTEXT           "&Enter a message describing why you are locking the file(s).",IDC_LOCKTITLELABEL,7,24,289,8
    CONTROL         "Scintilla",IDC_LOCKMESSAGE,"Scintilla",WS_TABSTOP,7,34,289,39,WS_EX_STATICEDGE
    CONTROL         "",IDC_FILELIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,77,289,85
    CONTROL         "Select / deselect &all",IDC_SELECTALL,"Button",BS_AUTO3STATE | WS_TABSTOP,7,167,289,10
    CONTROL         "&Steal the locks",IDC_STEALLOCKS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,178,117,10
    PUSHBUTTON      "&OK",IDOK,132,176,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,189,176,50,14
    PUSHBUTTON      "Help",IDHELP,246,176,50,14
END

IDD_SETTINGSPROGSDIFF DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Diff Viewer"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    CONTROL         "&TortoiseMerge",IDC_EXTDIFF_OFF,"Button",BS_AUTORADIOBUTTON | WS_GROUP,12,17,74,10
    CONTROL         "&External",IDC_EXTDIFF_ON,"Button",BS_AUTORADIOBUTTON,92,17,71,10
    EDITTEXT        IDC_EXTDIFF,12,29,258,14,ES_AUTOHSCROLL | WS_GROUP
    PUSHBUTTON      "...",IDC_EXTDIFFBROWSE,274,29,14,14
    LTEXT           "Click on ""Advanced"" to specify alternate diff programs based on file extension",IDC_STATIC,16,53,160,25
    PUSHBUTTON      "&Advanced...",IDC_EXTDIFFADVANCED,201,53,87,14
    CONTROL         "&TortoiseMerge",IDC_EXTDIFFPROPS_OFF,"Button",BS_AUTORADIOBUTTON | WS_GROUP,12,92,74,10
    CONTROL         "&External",IDC_EXTDIFFPROPS_ON,"Button",BS_AUTORADIOBUTTON,92,92,71,10
    EDITTEXT        IDC_EXTDIFFPROPS,12,105,258,14,ES_AUTOHSCROLL | WS_GROUP
    PUSHBUTTON      "...",IDC_EXTDIFFPROPSBROWSE,274,105,14,14
    CONTROL         "&Convert files when diffing against BASE",IDC_DONTCONVERT,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,200,286,10
    GROUPBOX        "Configure the program used for comparing different revisions of files",IDC_STATIC,7,7,286,73
    GROUPBOX        "Configure the program used for comparing different revisions of properties",IDC_STATIC,7,82,286,43
    GROUPBOX        "Configure viewer program for GNU diff files (patch files).",IDC_STATIC,8,131,285,57
    CONTROL         "&TortoiseUDiff",IDC_DIFFVIEWER_OFF,"Button",BS_AUTORADIOBUTTON | WS_GROUP,12,143,74,10
    CONTROL         "&Custom",IDC_DIFFVIEWER_ON,"Button",BS_AUTORADIOBUTTON,92,143,74,10
    EDITTEXT        IDC_DIFFVIEWER,12,161,258,14,ES_AUTOHSCROLL | WS_GROUP
    PUSHBUTTON      "...",IDC_DIFFVIEWERBROWSE,274,161,14,14
END

IDD_SETTINGSPROGSMERGE DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Diff Viewer::Merge Tool"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    LTEXT           "Configure the program used to resolve conflicted files.",IDC_STATIC,7,7,251,8
    CONTROL         "&TortoiseMerge",IDC_EXTMERGE_OFF,"Button",BS_AUTORADIOBUTTON | WS_GROUP,7,23,70,10
    CONTROL         "&External",IDC_EXTMERGE_ON,"Button",BS_AUTORADIOBUTTON,89,23,76,10
    EDITTEXT        IDC_EXTMERGE,7,41,263,14,ES_AUTOHSCROLL | WS_GROUP
    PUSHBUTTON      "...",IDC_EXTMERGEBROWSE,279,41,14,14
    LTEXT           "Click on ""Advanced"" to specify alternate merge programs based on file extension",IDC_STATIC,7,70,160,33
    PUSHBUTTON      "&Advanced...",IDC_EXTMERGEADVANCED,206,73,87,14
END

IDD_SETTINGSLOOKANDFEEL DIALOGEX 0, 0, 300, 225
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "General::Context Menu"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Cascaded context menu",IDC_STATIC,7,7,286,210
    CONTROL         "",IDC_MENULIST,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_ALIGNLEFT | LVS_NOCOLUMNHEADER | WS_BORDER | WS_TABSTOP,12,19,274,104
    CONTROL         "Put ""Get Lock"" on top menu when svn:needs-lock is set",IDC_GETLOCKTOP,
                    "Button",BS_AUTOCHECKBOX | BS_MULTILINE | WS_TABSTOP,12,128,274,20
    CONTROL         "Hide Menus for unversioned paths",IDC_HIDEMENUS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,148,274,10
    GROUPBOX        "Do not show the context menu for the following paths:",IDC_STATIC,7,161,286,56
    EDITTEXT        IDC_NOCONTEXTPATHS,12,173,274,36,ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_WANTRETURN | WS_VSCROLL
END

IDD_SETTINGSDIALOGS DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "General::Dialogs 1"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Log messages",IDC_STATIC,7,7,286,79
    LTEXT           "Default &number of log messages",IDC_STATIC,14,20,204,8
    EDITTEXT        IDC_DEFAULTLOG,229,17,55,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    LTEXT           "&Font for log messages:",IDC_STATIC,14,29,92,23,SS_CENTERIMAGE
    COMBOBOX        IDC_FONTNAMES,107,34,136,90,CBS_DROPDOWNLIST | CBS_OWNERDRAWVARIABLE | CBS_SORT | CBS_HASSTRINGS | WS_VSCROLL | WS_TABSTOP
    COMBOBOX        IDC_FONTSIZES,253,34,31,47,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
    CONTROL         "Short &date/time format in log messages",IDC_SHORTDATEFORMAT,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,50,271,10
    CONTROL         "Use system locale for date/time",IDC_SYSTEMLOCALEFORDATES,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,61,270,10
    CONTROL         "Can double-click in log list to compare with previous revision",IDC_DIFFBYDOUBLECLICK,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,72,270,10
    GROUPBOX        "Misc",IDC_STATIC,7,88,286,47
    LTEXT           "&Autoclose:",IDC_STATIC,14,96,85,13,SS_CENTERIMAGE
    COMBOBOX        IDC_AUTOCLOSECOMBO,107,97,177,75,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    CONTROL         "Always close dialogs for local operations",IDC_AUTOCLOSELOCAL,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,111,270,10
    CONTROL         "Use recycle bin when reverting",IDC_USERECYCLEBIN,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,123,270,10
    GROUPBOX        "Merge",IDC_STATIC,7,138,286,25
    CONTROL         "Use URL of &WC as the default ""From:"" URL",IDC_WCURLFROM,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,148,271,10
    GROUPBOX        "Checkout",IDC_STATIC,7,166,286,45
    LTEXT           "Default path:",IDC_CHECKOUTPATHLABEL,13,179,85,8,SS_NOTIFY
    EDITTEXT        IDC_CHECKOUTPATH,107,176,161,14,ES_AUTOHSCROLL
    PUSHBUTTON      "...",IDC_BROWSECHECKOUTPATH,271,176,12,14
    LTEXT           "Default URL:",IDC_CHECKOUTURLLABEL,13,195,85,8,SS_NOTIFY
    EDITTEXT        IDC_CHECKOUTURL,107,193,161,14,ES_AUTOHSCROLL
END

IDD_RESOLVE DIALOGEX 0, 0, 245, 153
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Resolve"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_RESOLVELIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,231,107
    CONTROL         "Select / deselect &all",IDC_SELECTALL,"Button",BS_AUTO3STATE | WS_TABSTOP,7,119,231,10
    PUSHBUTTON      "&OK",IDOK,74,132,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,131,132,50,14
    PUSHBUTTON      "Help",IDHELP,188,132,50,14
END

IDD_DIFFFILES DIALOGEX 0, 0, 255, 249
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Changed Files"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Difference between",IDC_DIFFSTATIC1,7,7,125,8
    PUSHBUTTON      "",IDC_SWITCHLEFTRIGHT,227,7,21,14,BS_ICON
    EDITTEXT        IDC_FIRSTURL,7,23,186,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    PUSHBUTTON      "HEAD",IDC_REV1BTN,198,23,50,14
    LTEXT           "and",IDC_DIFFSTATIC2,7,34,83,8
    EDITTEXT        IDC_SECONDURL,7,47,186,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    PUSHBUTTON      "HEAD",IDC_REV2BTN,198,47,50,14
    EDITTEXT        IDC_FILTER,7,67,241,14,ES_MULTILINE | ES_AUTOHSCROLL
    CONTROL         "",IDC_FILELIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | LVS_OWNERDATA | WS_BORDER | WS_TABSTOP,7,87,241,155
END

IDD_CREATEPATCH DIALOGEX 0, 0, 267, 218
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Create Patch"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_PATCHLIST,"SysListView32",LVS_REPORT | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,253,158
    CONTROL         "Show &unversioned files",IDC_SHOWUNVERSIONED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,167,253,10
    CONTROL         "Select / deselect &all",IDC_SELECTALL,"Button",BS_AUTO3STATE | WS_TABSTOP,7,180,253,10
    PUSHBUTTON      "O&ptions",IDC_DIFFOPTIONS,7,197,68,14
    PUSHBUTTON      "&OK",IDOK,93,197,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,151,197,50,14
    PUSHBUTTON      "Help",IDHELP,210,197,50,14
END

IDD_SETTINGSCOLORS DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "General::Colors"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Status and action colors",IDC_STATIC,7,7,286,103
    LTEXT           "possible or real conflict / obstructed",IDC_STATIC,14,23,137,8
    LTEXT           "added files",IDC_STATIC,14,40,135,8
    LTEXT           "missing / deleted / replaced",IDC_STATIC,14,57,137,8
    LTEXT           "merged",IDC_STATIC,14,74,137,8
    LTEXT           "modified / copied",IDC_STATIC,14,92,137,8
    PUSHBUTTON      "",IDC_CONFLICTCOLOR,158,20,101,14
    PUSHBUTTON      "",IDC_ADDEDCOLOR,158,37,101,14
    PUSHBUTTON      "",IDC_DELETEDCOLOR,158,54,101,14
    PUSHBUTTON      "",IDC_MERGEDCOLOR,158,71,101,14
    PUSHBUTTON      "",IDC_MODIFIEDCOLOR,158,88,101,14
    PUSHBUTTON      "Restore Default",IDC_RESTORE,184,196,109,14
    LTEXT           "Filter match",IDC_STATIC,14,123,136,8
    PUSHBUTTON      "",IDC_FILTERMATCHCOLOR,158,119,101,14
END

IDD_SETTINGSMISC DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "General::Dialogs 2"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    CONTROL         "Recurse into unversioned folders",IDC_UNVERSIONEDRECURSE,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,19,269,10
    CONTROL         "&Use auto-completion of file paths and keywords",IDC_AUTOCOMPLETION,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,50,271,10
    LTEXT           "&Timeout in seconds to stop the auto-completion parsing",IDC_AUTOCOMPLETIONTIMEOUTLABEL,14,67,231,8,SS_NOTIFY
    EDITTEXT        IDC_AUTOCOMPLETIONTIMEOUT,252,65,31,12,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    CONTROL         "Only use s&pellchecker when tsvn:projectlanguage is set",IDC_SPELL,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,83,271,10
    LTEXT           "Max. items to keep in the log message history",IDC_MAXHISTORYLABEL,14,100,226,8,SS_NOTIFY
    EDITTEXT        IDC_MAXHISTORY,252,96,31,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER
    CONTROL         "Select items automatically",IDC_SELECTFILESONCOMMIT,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,117,238,10
    CONTROL         "&Contact the repository on startup",IDC_REPOCHECK,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,160,271,10
    CONTROL         "Show Lock dialog before locking files",IDC_SHOWLOCKDLG,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,196,270,10
    GROUPBOX        "Status",IDC_STATIC,7,7,286,28
    GROUPBOX        "Commit",IDC_COMMITGROUP,7,39,286,98
    GROUPBOX        "Check for modifications",IDC_STATIC,7,142,286,36
    GROUPBOX        "Lock",IDC_STATIC,7,184,286,28
END

IDD_SETTINGSREVGRAPH DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Revision Graph"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Classification Patterns",IDC_STATIC,7,7,285,104
    LTEXT           "&Trunk",IDC_STATIC,14,21,271,8,SS_NOTIFY
    EDITTEXT        IDC_TRUNKPATTERN,14,32,271,12,ES_AUTOHSCROLL
    LTEXT           "&Branches",IDC_STATIC,14,49,271,8,SS_NOTIFY
    EDITTEXT        IDC_BRANCHESPATTERN,14,60,271,12,ES_AUTOHSCROLL
    LTEXT           "&Tags",IDC_STATIC,14,77,271,8,SS_NOTIFY
    EDITTEXT        IDC_TAGSPATTERN,14,88,271,12,ES_AUTOHSCROLL
    GROUPBOX        "Misc",IDC_STATIC,7,115,285,44
    CONTROL         "&Modify color for trunk copies",IDC_TWEAKTRUNKCOLORS,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,128,270,10
    CONTROL         "&Modify color for tag copies",IDC_TWEAKTAGSCOLORS,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,140,270,10
END

IDD_SETTINGSREVGRAPHCOLORS DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Revision Graph::Colors"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Node colors",IDC_STATIC,7,5,286,78
    LTEXT           "Deleted node",IDC_STATIC,14,18,75,8
    PUSHBUTTON      "",IDC_DELETEDNODECOLOR,90,15,54,14
    LTEXT           "Unchanged node",IDC_STATIC,158,18,75,8
    PUSHBUTTON      "",IDC_UNCHANGEDNODECOLOR,232,15,54,14
    LTEXT           "Added node",IDC_STATIC,14,34,75,8
    PUSHBUTTON      "",IDC_ADDEDNODECOLOR,90,31,54,14
    LTEXT           "HEAD node",IDC_STATIC,158,34,75,8
    PUSHBUTTON      "",IDC_LASTCOMMITNODECOLOR,232,31,54,14
    LTEXT           "Renamed node",IDC_STATIC,14,50,75,8
    PUSHBUTTON      "",IDC_RENAMEDNODECOLOR,90,47,54,14
    LTEXT           "WC node",IDC_STATIC,158,50,75,8
    PUSHBUTTON      "",IDC_WCNODECOLOR,232,47,54,14
    LTEXT           "Modified node",IDC_STATIC,14,66,75,8
    PUSHBUTTON      "",IDC_MODIFIEDNODECOLOR,90,63,54,14
    LTEXT           "WC node border",IDC_STATIC,158,66,75,8
    PUSHBUTTON      "",IDC_WCNODEBORDERCOLOR,232,63,54,14
    GROUPBOX        "Overlays",IDC_STATIC,7,86,286,30
    LTEXT           "Tag nodes",IDC_STATIC,14,99,75,8
    PUSHBUTTON      "",IDC_TAGOVERLAYCOLOR,90,96,54,14
    LTEXT           "Trunk nodes",IDC_STATIC,157,99,75,8
    PUSHBUTTON      "",IDC_TRUNKOVERLAYCOLOR,232,96,54,14
    GROUPBOX        "Markers",IDC_STATIC,7,119,286,30
    LTEXT           "Folded tag",IDC_STATIC,14,132,75,8
    PUSHBUTTON      "",IDC_TAGMARKERCOLOR,90,129,54,14
    LTEXT           "Selected node",IDC_STATIC,157,132,75,8
    PUSHBUTTON      "",IDC_TRUNKMARKERCOLOR,232,129,54,14
    GROUPBOX        "Stripes",IDC_STATIC,7,152,286,46
    LTEXT           "Color 1",IDC_STATIC,14,165,75,8
    PUSHBUTTON      "",IDC_STRIPECOLOR1,90,162,54,14
    LTEXT           "Opacity",IDC_STATIC,158,165,75,8
    EDITTEXT        IDC_STRIPEALPHA1,232,162,54,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    LTEXT           "Color 2",IDC_STATIC,14,181,75,8
    PUSHBUTTON      "",IDC_STRIPECOLOR2,90,178,54,14
    LTEXT           "Opacity",IDC_STATIC,158,181,75,8
    EDITTEXT        IDC_STRIPEALPHA2,232,178,54,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    PUSHBUTTON      "Restore Default",IDC_RESTORE,184,202,109,14
END

IDD_SETTINGSLOGCACHE DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Log Caching"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Global settings",IDC_STATIC,7,7,285,84
    CONTROL         "&Enable log caching",IDC_ENABLELOGCACHING,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,20,270,10
    CONTROL         "&Allow ambiguous URLs",IDC_SUPPORTAMBIGUOUSURL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,32,270,10
    CONTROL         "Allow ambiguous &UUIDs",IDC_SUPPORTAMBIGUOUSUUID,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,44,270,10
    LTEXT           "If the repository can not be contacted",IDC_CONNECTIVITYLABEL,14,59,270,8,SS_NOTIFY
    COMBOBOX        IDC_GOOFFLINESETTING,14,70,270,64,CBS_DROPDOWNLIST | WS_TABSTOP
    GROUPBOX        "Timeouts",IDC_STATIC,7,93,285,64
    LTEXT           "&Timeout in seconds before updating the HEAD revision",IDC_HEADAGELABEL,14,107,231,8,SS_NOTIFY
    EDITTEXT        IDC_MAXIMINHEADAGE,252,104,31,12,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    LTEXT           "&Days of inactivity until small caches get removed",IDC_CACHEDROPAGELABEL,14,123,231,8,SS_NOTIFY
    EDITTEXT        IDC_CACHEDROPAGE,252,120,31,12,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    LTEXT           "&Maximum size [kByte] of a removed inactive cache",IDC_CACHEDROPMAXSIZELABEL,14,139,231,8,SS_NOTIFY
    EDITTEXT        IDC_CACHEDROPMAXSIZE,252,136,31,12,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    GROUPBOX        "Expert settings",IDC_STATIC,7,159,285,32
    LTEXT           "Maximum number of tool &failures until cache removal",IDC_MAXFAILURESLABEL,14,173,231,8,SS_NOTIFY
    EDITTEXT        IDC_MAXFAILUESUNTILDROP,252,170,31,12,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    PUSHBUTTON      "&Restore defaults",IDC_CACHESTDDEFAULTS,7,202,141,14
    PUSHBUTTON      "&Power user defaults",IDC_CACHEPOWERDEFAULTS,152,202,141,14
END

IDD_SETTINGSLOGCACHELIST DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Log Caching::Cached Repositories"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Cached Repositories",IDC_REPOSITORIESGROUP,7,7,285,203
    CONTROL         "",IDC_REPOSITORYLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,14,20,270,164
    PUSHBUTTON      "D&etails",IDC_CACHEDETAILS,72,190,50,14,WS_DISABLED
    PUSHBUTTON      "U&pdate",IDC_CACHEUPDATE,126,190,50,14,WS_DISABLED
    PUSHBUTTON      "E&xport",IDC_CACHEEXPORT,180,190,50,14,WS_DISABLED
    PUSHBUTTON      "&Delete",IDC_CACHEDELETE,234,190,50,14,WS_DISABLED
END

IDD_SETTINGSSAVEDDATA DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Saved Data"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    LTEXT           "URL history",IDC_URLHISTORY,7,9,226,8
    PUSHBUTTON      "Clear",IDC_URLHISTCLEAR,243,7,50,14
    LTEXT           "Log messages (Input dialog)",IDC_LOGHISTORY,7,34,226,8
    PUSHBUTTON      "Clear",IDC_LOGHISTCLEAR,243,32,50,14
    LTEXT           "Log messages (Show log dialog)",IDC_REPOLOG,7,59,226,8
    PUSHBUTTON      "Clear",IDC_REPOLOGCLEAR,243,57,50,14
    LTEXT           "Dialog sizes and positions",IDC_RESIZABLEHISTORY,7,84,226,8
    PUSHBUTTON      "Clear",IDC_RESIZABLEHISTCLEAR,243,82,50,14
    LTEXT           "Authentication data",IDC_AUTHHISTORY,7,109,226,8
    PUSHBUTTON      "Clear",IDC_AUTHHISTCLEAR,243,107,50,14
    GROUPBOX        "Action log",IDC_STATIC,7,148,286,62
    LTEXT           "Max. lines in action log",IDC_STATIC,13,169,120,16
    EDITTEXT        IDC_MAXLINES,139,167,40,14,ES_RIGHT | ES_AUTOHSCROLL
    PUSHBUTTON      "Show",IDC_ACTIONLOGSHOW,183,166,50,14
    PUSHBUTTON      "Clear",IDC_ACTIONLOGCLEAR,236,166,50,14
    LTEXT           "Approved hook scripts",IDC_HOOKS,7,132,226,8
    PUSHBUTTON      "Clear",IDC_HOOKCLEAR,243,130,50,14
END

IDD_HISTORYDLG DIALOGEX 0, 0, 197, 116
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Log History"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LISTBOX         IDC_HISTORYLIST,7,7,183,79,LBS_HASSTRINGS | LBS_USETABSTOPS | LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
    DEFPUSHBUTTON   "&OK",IDOK,78,95,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,140,95,50,14
END

IDD_EDITPROPERTIES DIALOGEX 0, 0, 427, 159
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Properties"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    GROUPBOX        "Properties for",IDC_GROUP,7,7,411,125
    EDITTEXT        IDC_PROPPATH,14,17,397,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    CONTROL         "",IDC_EDITPROPLIST,"SysListView32",LVS_REPORT | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,14,30,397,75
    PUSHBUTTON      "&Import...",IDC_IMPORT,14,110,57,14
    PUSHBUTTON      "E&xport...",IDC_EXPORT,82,110,57,14,WS_DISABLED
    PUSHBUTTON      "&Save value...",IDC_SAVEPROP,150,110,57,14,WS_DISABLED
    PUSHBUTTON      "&Remove",IDC_REMOVEPROPS,218,110,57,14,WS_DISABLED
    PUSHBUTTON      "&Edit...",IDC_EDITPROPS,286,110,57,14,WS_DISABLED
    PUSHBUTTON      "&New...",IDC_ADDPROPS,354,110,57,14
    PUSHBUTTON      "&OK",IDOK,305,138,50,14
    PUSHBUTTON      "Help",IDHELP,361,138,50,14
END

IDD_EDITPROPERTYVALUE DIALOGEX 0, 0, 225, 169
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Edit Properties"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Property name:",IDC_PROPNAME,7,9,95,8
    COMBOBOX        IDC_PROPNAMECOMBO,119,7,99,94,CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP
    GROUPBOX        "Property value:",IDC_PROPVALUEGROUP,7,25,211,97
    EDITTEXT        IDC_PROPVALUE,15,38,194,59,ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_WANTRETURN | WS_VSCROLL | WS_HSCROLL
    PUSHBUTTON      "&Load...",IDC_LOADPROP,158,103,50,14
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,133,211,10
    PUSHBUTTON      "&OK",IDOK,53,148,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,110,148,50,14
    PUSHBUTTON      "Help",IDHELP,168,148,50,14
END

IDD_REVISIONRANGE DIALOGEX 0, 0, 212, 179
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Revision Range"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    GROUPBOX        "Start Revision",IDC_STATIC,7,7,198,68
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,13,19,106,10
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,13,37,85,10
    EDITTEXT        IDC_REVNUM,105,36,100,14,ES_AUTOHSCROLL
    CONTROL         "&Date",IDC_DATEREV,"Button",BS_AUTORADIOBUTTON,13,55,79,10
    CONTROL         "",IDC_REVDATE,"SysDateTimePick32",DTS_RIGHTALIGN | WS_TABSTOP,105,53,100,15
    GROUPBOX        "End Revision",IDC_ENDREVGROUP,7,81,198,69
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD1,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,13,94,106,10
    CONTROL         "&Revision",IDC_REVISION_N2,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,13,112,85,10
    EDITTEXT        IDC_REVNUM2,105,111,100,14,ES_AUTOHSCROLL
    CONTROL         "&Date",IDC_DATEREV2,"Button",BS_AUTORADIOBUTTON,13,130,79,10
    CONTROL         "",IDC_REVDATE2,"SysDateTimePick32",DTS_RIGHTALIGN | WS_TABSTOP,105,128,100,15
    DEFPUSHBUTTON   "&OK",IDOK,96,158,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,155,158,50,14
END

IDD_SETTINGSHOOKS DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Hook Scripts"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    CONTROL         "",IDC_HOOKLIST,"SysListView32",LVS_REPORT | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,286,180
    PUSHBUTTON      "Remove",IDC_HOOKREMOVEBUTTON,69,195,50,14,WS_DISABLED
    PUSHBUTTON      "Edit...",IDC_HOOKEDITBUTTON,127,195,50,14,WS_DISABLED
    PUSHBUTTON      "Add...",IDC_HOOKADDBUTTON,243,195,50,14
    PUSHBUTTON      "&Copy",IDC_HOOKCOPYBUTTON,185,195,50,14,WS_DISABLED
END

IDD_SETTINGSHOOKCONFIG DIALOGEX 0, 0, 395, 135
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Configure Hook Scripts"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Hook Type:",IDC_HOOKTYPELABEL,7,10,213,8
    COMBOBOX        IDC_HOOKTYPECOMBO,254,7,134,107,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    LTEXT           "Working Copy Path:",IDC_HOOKWCPATHLABEL,7,25,381,8
    EDITTEXT        IDC_HOOKPATH,7,36,351,14,ES_AUTOHSCROLL
    PUSHBUTTON      "...",IDC_HOOKBROWSE,366,36,22,14
    LTEXT           "Command Line To Execute:",IDC_HOOKCMLABEL,7,59,381,8
    EDITTEXT        IDC_HOOKCOMMANDLINE,7,72,351,14,ES_AUTOHSCROLL
    CONTROL         "Wait for the script to finish",IDC_WAITCHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,90,351,10
    CONTROL         "Hide the script while running",IDC_HIDECHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,101,198,10
    CONTROL         "Always execute the script",IDC_ENFORCECHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,112,198,10
    DEFPUSHBUTTON   "OK",IDOK,228,110,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,283,110,50,14
    PUSHBUTTON      "...",IDC_HOOKCOMMANDBROWSE,366,72,22,14
    PUSHBUTTON      "Help",IDHELP,338,110,50,14
    LTEXT           "",IDC_DWM,366,87,19,2,NOT WS_VISIBLE
END

IDD_EXPORT DIALOGEX 0, 0, 301, 210
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Export"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "&URL of repository:",IDC_REPOLABEL,13,18,255,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,13,28,255,100
    PUSHBUTTON      "...",IDC_BROWSE,273,28,14,14
    LTEXT           "Export &directory:",IDC_EXPORT_CHECKOUTDIR,13,42,255,8
    EDITTEXT        IDC_CHECKOUTDIRECTORY,13,52,255,14,ES_AUTOHSCROLL
    PUSHBUTTON      "...",IDC_CHECKOUTDIRECTORY_BROWSE,273,52,14,14
    COMBOBOX        IDC_DEPTH,13,73,255,30,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    CONTROL         "Omit e&xternals",IDC_NOEXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,93,274,10
    CONTROL         "Do not expand keywords",IDC_IGNOREKEYWORDS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,106,255,10
    LTEXT           "eol style",IDC_EOLLABEL,13,121,79,8
    COMBOBOX        IDC_EOLCOMBO,100,119,63,70,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON,13,151,123,10
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,13,167,74,10
    EDITTEXT        IDC_REVISION_NUM,100,166,96,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Show &log",IDC_SHOW_LOG,201,165,86,14
    DEFPUSHBUTTON   "&OK",IDOK,129,189,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,184,189,48,14
    PUSHBUTTON      "Help",IDHELP,236,189,58,14
    GROUPBOX        "Repository",IDC_REPOGROUP,7,7,287,132
    GROUPBOX        "Revision",IDC_REVISIONGROUP,7,139,287,48
END

IDD_REVGRAPHFILTER DIALOGEX 0, 0, 282, 135
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Revision Graph Filter"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Include only the following revision range:",IDC_STATIC,7,7,268,8
    LTEXT           "From:",IDC_STATIC,7,24,30,8
    EDITTEXT        IDC_FROMREV,40,21,80,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    CONTROL         "",IDC_FROMSPIN,"msctls_updown32",UDS_SETBUDDYINT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_HOTTRACK,120,21,11,14
    LTEXT           "To:",IDC_STATIC,151,24,30,8
    EDITTEXT        IDC_TOREV,184,21,80,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER,WS_EX_RIGHT
    CONTROL         "",IDC_TOSPIN,"msctls_updown32",UDS_SETBUDDYINT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_HOTTRACK,264,21,11,14
    LTEXT           "Filter out paths that contain one of the following strings\n(separate multiple paths with the '*' char):",IDC_STATIC,7,49,268,23
    EDITTEXT        IDC_PATHFILTER,7,71,268,14,ES_AUTOHSCROLL
    CONTROL         "Remove the whole subtree(s)",IDC_REMOVESUBTREE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,92,268,10
    DEFPUSHBUTTON   "&OK",IDOK,167,114,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,225,114,50,14
END

IDD_DELUNVERSIONED DIALOGEX 0, 0, 279, 225
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Delete Unversioned Items"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_ITEMLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,265,180
    CONTROL         "Select / deselect &all",IDC_SELECTALL,"Button",BS_AUTO3STATE | WS_TABSTOP,7,192,265,10
    CONTROL         "&Use recycle bin",IDC_USERECYCLEBIN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,207,148,10
    PUSHBUTTON      "&OK",IDOK,163,203,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,222,203,50,14
END

IDD_INPUTLOGDLG DIALOGEX 0, 0, 306, 182
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Enter Log Message"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    EDITTEXT        IDC_ACTIONLABEL,7,7,292,24,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER,WS_EX_TRANSPARENT
    PUSHBUTTON      "&Recent messages",IDC_HISTORY,15,47,143,14
    CONTROL         "Scintilla",IDC_INPUTTEXT,"Scintilla",WS_TABSTOP,15,68,276,78,WS_EX_STATICEDGE
    PUSHBUTTON      "&OK",IDOK,190,161,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,249,161,50,14
    GROUPBOX        "Message",IDC_GROUPBOX,7,35,292,120
    CONTROL         "",IDC_CHECKBOX,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,165,164,10
END

IDD_UNLOCK DIALOGEX 0, 0, 245, 155
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Unlock"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_UNLOCKLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,231,107
    CONTROL         "Select / deselect &all",IDC_SELECTALL,"Button",BS_AUTO3STATE | WS_TABSTOP,7,119,231,10
    PUSHBUTTON      "&OK",IDOK,73,134,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,130,134,50,14
    PUSHBUTTON      "Help",IDHELP,188,134,50,14
END

IDD_SETTINGSTBLAME DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "TortoiseBlame"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Colors",IDC_STATIC,7,7,286,140
    LTEXT           "Background",IDC_STATIC,126,15,76,8
    LTEXT           "Locator bar",IDC_STATIC,209,14,75,8
    LTEXT           "Recently modified lines",IDC_STATIC,14,32,112,8
    PUSHBUTTON      "",IDC_NEWLINESCOLOR,126,28,76,14
    PUSHBUTTON      "",IDC_NEWLINESCOLORBAR,208,29,76,14
    LTEXT           "Older lines",IDC_STATIC,14,48,112,8
    PUSHBUTTON      "",IDC_OLDLINESCOLOR,126,45,76,14
    PUSHBUTTON      "",IDC_OLDLINESCOLORBAR,208,45,76,14
    LTEXT           "Index colors:",IDC_STATIC,14,65,43,8
    PUSHBUTTON      "",IDC_INDEXCOLOR1,14,75,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR2,83,75,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR3,152,75,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR4,220,75,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR5,14,92,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR6,83,92,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR7,152,92,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR8,220,92,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR9,14,110,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR10,83,110,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR11,152,110,64,14
    PUSHBUTTON      "",IDC_INDEXCOLOR12,220,110,64,14
    PUSHBUTTON      "Restore Default",IDC_RESTORE,208,129,76,14
    GROUPBOX        "Font",IDC_STATIC,7,148,286,62
    LTEXT           "&Font:",IDC_STATIC,14,156,92,14,SS_CENTERIMAGE
    COMBOBOX        IDC_FONTNAMES,107,156,138,90,CBS_DROPDOWNLIST | CBS_OWNERDRAWVARIABLE | CBS_SORT | CBS_HASSTRINGS | WS_VSCROLL | WS_TABSTOP
    COMBOBOX        IDC_FONTSIZES,252,156,32,47,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
    LTEXT           "Tab size:",IDC_STATIC,14,174,92,8
    EDITTEXT        IDC_TABSIZE,252,172,32,12,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER
    LTEXT           "Note: the font settings also affect the TortoiseUDiff viewer",IDC_STATIC,15,183,269,21
END

IDD_CONFLICTRESOLVE DIALOGEX 0, 0, 316, 150
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Resolve Conflict"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_INFOLABEL,7,7,302,31
    GROUPBOX        "Please resolve the conflict by choosing one of the following options:",IDC_GROUP,7,41,302,83
    LTEXT           "Choose item:",IDC_CHOOSELABEL,15,57,76,8
    PUSHBUTTON      "Prefer &local",IDC_USELOCAL,100,55,96,14
    PUSHBUTTON      "Prefer &repository",IDC_USEREPO,204,55,96,14
    LTEXT           "Resolve conflict:",IDC_RESOLVELABEL,15,79,76,8
    PUSHBUTTON      "&Edit conflict",IDC_EDITCONFLICT,100,77,96,14
    PUSHBUTTON      "Re&solved",IDC_RESOLVED,204,77,96,14
    LTEXT           "Leave conflicted:",IDC_LEAVELABEL,15,101,76,8
    DEFPUSHBUTTON   "Resolve l&ater",IDCANCEL,100,99,96,14
    PUSHBUTTON      "Resolve all la&ter",IDC_RESOLVEALLLATER,204,99,96,14
    LTEXT           "or",IDC_ORLABEL,15,68,40,8
    LTEXT           "or",IDC_ORLABEL2,15,90,40,8
    PUSHBUTTON      "Abort &Merge",IDC_ABORT,121,129,119,14
    PUSHBUTTON      "Help",IDHELP,245,129,64,14
END

IDD_MERGEALL DIALOGEX 0, 0, 249, 145
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Merge all"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    GROUPBOX        "Merge options",IDC_MERGEOPTIONS,7,7,235,113
    LTEXT           "Merge &depth:",IDC_STATIC,14,21,88,8
    COMBOBOX        IDC_DEPTH,109,18,121,70,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    CONTROL         "Ignore &ancestry",IDC_IGNOREANCESTRY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,37,216,10
    CONTROL         "Ignore line &endings",IDC_IGNOREEOL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,52,216,10
    CONTROL         "&Compare whitespaces",IDC_COMPAREWHITESPACES,"Button",BS_AUTORADIOBUTTON | WS_GROUP,14,64,216,10
    CONTROL         "Ignore whitespace c&hanges",IDC_IGNOREWHITESPACECHANGES,
                    "Button",BS_AUTORADIOBUTTON,14,76,216,10
    CONTROL         "I&gnore all whitespaces",IDC_IGNOREALLWHITESPACES,
                    "Button",BS_AUTORADIOBUTTON,14,88,216,10
    CONTROL         "F&orce the merge",IDC_FORCE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,103,216,10
    DEFPUSHBUTTON   "&Merge",IDOK,84,124,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,138,124,50,14
    PUSHBUTTON      "Help",IDHELP,192,124,50,14
END

IDD_MERGEWIZARD_START DIALOGEX 0, 0, 322, 191
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Merge"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Merge type",IDC_MERGETYPEGROUP,7,7,308,177
    CONTROL         "Merge a &range of revisions",IDC_MERGE_REVRANGE,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,17,21,289,10
    CONTROL         "R&eintegrate a branch",IDC_MERGE_REINTEGRATE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,17,73,289,10
    CONTROL         "Merge two different &trees",IDC_MERGE_TREE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,17,122,289,10
    EDITTEXT        IDC_MERGERANGELABEL,28,32,278,38,ES_MULTILINE | ES_READONLY | NOT WS_BORDER | WS_GROUP | NOT WS_TABSTOP
    EDITTEXT        IDC_MERGEREINTEGRATELABEL,28,84,278,36,ES_MULTILINE | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP
    EDITTEXT        IDC_TREELABEL,28,136,278,40,ES_MULTILINE | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP
END

IDD_MERGEWIZARD_TREE DIALOGEX 0, 0, 322, 191
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Merge"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "&From: (start URL and revision of the range to merge)",IDC_MERGETREEFROMGROUP,7,7,308,61
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,13,17,269,100
    PUSHBUTTON      "...",IDC_BROWSE,287,17,19,14
    CONTROL         "&HEAD Revision",IDC_REVISION_HEAD1,"Button",BS_AUTORADIOBUTTON | WS_GROUP,13,36,89,10
    CONTROL         "&Revision",IDC_REVISION_N1,"Button",BS_AUTORADIOBUTTON,13,49,82,10
    EDITTEXT        IDC_REVISION_START,102,47,48,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Show &log",IDC_FINDBRANCHSTART,155,47,67,14
    GROUPBOX        "&To: (end URL and revision of the range to merge)",IDC_MERGETREETOGROUP,7,71,308,74
    CONTROL         "",IDC_URLCOMBO2,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,13,85,269,100
    PUSHBUTTON      "...",IDC_BROWSE2,287,84,19,14
    CONTROL         "H&EAD Revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON | WS_GROUP,13,103,89,10
    CONTROL         "Re&vision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,13,116,81,10
    EDITTEXT        IDC_REVISION_END,102,114,48,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Show l&og",IDC_FINDBRANCHEND,155,114,67,14
    GROUPBOX        "Working Copy",IDC_MERGETREEWCGROUP,7,149,308,35
    EDITTEXT        IDC_WCEDIT,13,162,220,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    PUSHBUTTON      "Show lo&g",IDC_SHOWLOGWC,239,162,67,14
END

IDD_MERGEWIZARD_REVRANGE DIALOGEX 0, 0, 322, 191
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Merge"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "URL to merge &from",IDC_MERGEREVRANGEFROMGROUP,7,7,308,33
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,13,18,273,141
    PUSHBUTTON      "...",IDC_BROWSE,289,17,19,14
    GROUPBOX        "Revision range to merge",IDC_MERGEREVRANGERANGEGROUP,7,44,308,111
    CONTROL         "all &revisions",IDC_MERGERADIO_ALL,"Button",BS_AUTORADIOBUTTON,13,54,88,10
    CONTROL         "specific r&ange",IDC_MERGERADIO_SPECIFIC,"Button",BS_AUTORADIOBUTTON,13,66,88,10
    EDITTEXT        IDC_REVISION_RANGE,111,64,121,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Show &log",IDC_SELLOG,241,64,67,14
    CONTROL         "R&everse merge",IDC_REVERSEMERGE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,80,295,10
    EDITTEXT        IDC_REVRANGELABEL,13,92,295,56,ES_MULTILINE | ES_READONLY | NOT WS_BORDER
    GROUPBOX        "Working Copy",IDC_MERGEREVRANGEWCGROUP,7,156,308,28
    EDITTEXT        IDC_WCEDIT,13,166,220,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    PUSHBUTTON      "Show l&og",IDC_SHOWLOGWC,241,166,67,14
END

IDD_MERGEWIZARD_OPTIONS DIALOGEX 0, 0, 322, 191
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Merge"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    GROUPBOX        "Merge options",IDC_MERGEOPTIONSGROUP,7,7,308,97
    LTEXT           "Merge &depth:",IDC_MERGEOPTIONSDEPTHLABEL,14,21,147,8
    COMBOBOX        IDC_DEPTH,183,18,121,70,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    CONTROL         "Ignore &ancestry",IDC_IGNOREANCESTRY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,37,290,10
    CONTROL         "Ignore line &endings",IDC_IGNOREEOL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,50,290,10
    CONTROL         "&Compare whitespaces",IDC_COMPAREWHITESPACES,"Button",BS_AUTORADIOBUTTON | WS_GROUP,14,64,290,10
    CONTROL         "Ignore whitespace c&hanges",IDC_IGNOREWHITESPACECHANGES,
                    "Button",BS_AUTORADIOBUTTON,14,76,290,10
    CONTROL         "I&gnore all whitespaces",IDC_IGNOREALLWHITESPACES,
                    "Button",BS_AUTORADIOBUTTON,14,88,290,10
    CONTROL         "F&orce the merge",IDC_FORCE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,111,290,10
    CONTROL         "Onl&y record the merge (block revisions from getting merged)",IDC_RECORDONLY,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,130,290,10
    PUSHBUTTON      "&Test merge",IDC_DRYRUN,254,143,50,14
END

IDD_URLDIFF DIALOGEX 0, 0, 301, 129
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Diff with URL"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "&To URL:",IDC_URLLABEL,7,10,44,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,7,20,267,141
    PUSHBUTTON      "...",IDC_BROWSE,280,20,14,14
    GROUPBOX        "Revision",IDC_REVGROUP,7,47,287,51
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON,13,60,73,10
    PUSHBUTTON      "Show &log",IDC_LOG,94,57,76,14
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,13,76,73,10
    EDITTEXT        IDC_REVISION_NUM,94,74,76,14,ES_AUTOHSCROLL
    DEFPUSHBUTTON   "&OK",IDOK,129,108,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,187,108,50,14
    PUSHBUTTON      "Help",IDHELP,244,108,50,14
END

IDD_CREATECHANGELIST DIALOGEX 0, 0, 186, 66
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Create Changelist"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Enter a &name for the changelist:",IDC_STATIC,7,7,172,8
    EDITTEXT        IDC_NAME,7,20,172,14,ES_AUTOHSCROLL
    DEFPUSHBUTTON   "&OK",IDOK,70,45,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,129,45,50,14
END

IDD_MERGEWIZARD_REINTEGRATE DIALOGEX 0, 0, 322, 191
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Merge"
FONT 8, "MS Shell Dlg", 400, 0, 0x0
BEGIN
    GROUPBOX        "&From URL:",IDC_MERGEREINTEGRATEFROMGROUP,7,7,308,61
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,13,17,269,100
    PUSHBUTTON      "...",IDC_BROWSE,287,17,19,14
    PUSHBUTTON      "Show &log",IDC_SHOWMERGELOG,239,41,67,14
    GROUPBOX        "Working Copy",IDC_MERGEREINTEGRATEWCGROUP,7,79,308,35
    EDITTEXT        IDC_WCEDIT,13,92,220,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    PUSHBUTTON      "Show l&og",IDC_SHOWLOGWC,241,92,67,14
END

IDD_SETTINGSBUGTRAQ DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Hook Scripts::Issue Tracker Integration"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
    CONTROL         "",IDC_BUGTRAQLIST,"SysListView32",LVS_REPORT | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,286,180
    PUSHBUTTON      "Edit...",IDC_BUGTRAQEDITBUTTON,127,195,50,14,WS_DISABLED
    PUSHBUTTON      "Remove",IDC_BUGTRAQREMOVEBUTTON,69,195,50,14,WS_DISABLED
    PUSHBUTTON      "&Copy",IDC_BUGTRAQCOPYBUTTON,185,195,50,14,WS_DISABLED
    PUSHBUTTON      "Add...",IDC_BUGTRAQADDBUTTON,243,195,50,14
END

IDD_SETTINGSBUGTRAQADV DIALOGEX 0, 0, 395, 121
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Configure Issue Tracker Integration"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Working Copy Path:",IDC_BUGTRAQWCPATHLABEL,7,7,381,8
    EDITTEXT        IDC_BUGTRAQPATH,7,18,351,14,ES_AUTOHSCROLL
    PUSHBUTTON      "...",IDC_BUGTRAQBROWSE,366,18,22,14
    LTEXT           "Provider:",IDC_BUGTRAQPROVIDERLABEL,7,36,381,8
    COMBOBOX        IDC_BUGTRAQPROVIDERCOMBO,7,47,351,103,CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
    LTEXT           "Parameters:",IDC_BUGTRAQPARAMETERSLABEL,7,67,381,8
    EDITTEXT        IDC_BUGTRAQPARAMETERS,7,78,325,14,ES_AUTOHSCROLL
    PUSHBUTTON      "&Options",IDC_OPTIONS,338,79,50,14,WS_DISABLED
    DEFPUSHBUTTON   "OK",IDOK,228,100,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,283,100,50,14
    PUSHBUTTON      "Help",IDHELP,338,100,50,14,WS_DISABLED
    LTEXT           "",IDC_DWM,7,92,15,4,NOT WS_VISIBLE
END

IDD_AUTOTEXTTESTDLG DIALOGEX 0, 0, 330, 323
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Autotext Tester"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Enter file content to test for below:",IDC_STATIC,7,7,316,8
    LTEXT           "Enter the regex string below:",IDC_STATIC,7,155,316,8
    EDITTEXT        IDC_AUTOTEXTREGEX,7,169,316,14,ES_AUTOHSCROLL
    DEFPUSHBUTTON   "Scan",IDC_AUTOTEXTSCAN,7,186,50,14
    LTEXT           "Found auto words:",IDC_STATIC,7,201,62,8
    EDITTEXT        IDC_TESTRESULT,7,214,316,83,ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_READONLY | ES_WANTRETURN | WS_VSCROLL | WS_HSCROLL
    LTEXT           "",IDC_TIMINGLABEL,7,308,202,8
    PUSHBUTTON      "Exit",IDCANCEL,273,302,50,14
    CONTROL         "",IDC_AUTOTEXTCONTENT,"RichEdit20W",WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP | 0x1004,7,22,316,129
END

IDD_SETTINGS_CONFIG DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Advanced"
FONT 8, "MS Shell Dlg", 400, 0, 0x0
BEGIN
    CONTROL         "",IDC_CONFIG,"SysListView32",LVS_REPORT | LVS_EDITLABELS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP,7,7,286,145
    LTEXT           "WARNING:\r\nOnly change these settings if you are absolutely sure what you are doing!\r\nTo set the values to their default, delete the value text.",IDC_STATIC,7,160,286,50
END

IDD_EDITPROPCONFLICT DIALOGEX 0, 0, 361, 91
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Edit Property Conflict"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_PROPINFO,7,7,347,17
    EDITTEXT        IDC_PROPCONFLICTINFO,7,30,347,34,ES_MULTILINE | ES_AUTOVSCROLL | ES_READONLY | NOT WS_BORDER | WS_VSCROLL
    PUSHBUTTON      "&Resolve using local property",IDC_RESOLVE,7,70,151,14
    PUSHBUTTON      "&Manually edit property",IDC_EDITPROPS,172,70,117,14
    PUSHBUTTON      "Cancel",IDCANCEL,303,70,50,14
END

IDD_TREECONFLICTEDITOR DIALOGEX 0, 0, 339, 198
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Edit Tree Conflicts"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_CONFLICTINFO,7,7,325,26
    GROUPBOX        "Conflict Sources",IDC_SOURCEGROUP,7,36,325,58
    LTEXT           "Source Left:",IDC_SOURCELEFT,14,54,76,8
    EDITTEXT        IDC_SOURCELEFTURL,98,51,224,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "Source Right:",IDC_SOURCERIGHT,14,71,76,8
    EDITTEXT        IDC_SOURCERIGHTURL,98,70,224,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "Please wait while we gather more information...",IDC_INFOLABEL,7,100,325,29
    PUSHBUTTON      "",IDC_RESOLVEUSINGTHEIRS,7,140,325,14,NOT WS_VISIBLE
    PUSHBUTTON      "",IDC_RESOLVEUSINGMINE,7,158,325,14,NOT WS_VISIBLE
    PUSHBUTTON      "Show &Log",IDC_LOG,7,177,83,14
    PUSHBUTTON      "Show Branch L&og",IDC_BRANCHLOG,98,177,84,14
    PUSHBUTTON      "Cancel",IDCANCEL,222,177,50,14
    PUSHBUTTON      "Help",IDHELP,282,177,50,14
END

IDD_SETTINGSOVERLAYHANDLERS DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Icon Overlays::Overlay Handlers"
FONT 8, "MS Shell Dlg", 400, 0, 0x0
BEGIN
    GROUPBOX        "Enabled Overlay Handlers",IDC_STATIC,7,7,286,203
    LTEXT           "You can disable specific Overlay handlers here.\nDisabled handlers won't use up an overlay slot and give other shell extensions a chance to show their overlays.",IDC_STATIC,14,18,270,32
    LTEXT           "Note: this affects all Tortoise clients, not just TortoiseSVN!",IDC_STATIC,14,54,270,8
    CONTROL         "Ignored",IDC_SHOWIGNOREDOVERLAY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,67,270,10
    CONTROL         "Unversioned",IDC_SHOWUNVERSIONEDOVERLAY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,82,270,10
    CONTROL         "Added",IDC_SHOWADDEDOVERLAY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,96,269,10
    CONTROL         "Locked",IDC_SHOWLOCKEDOVERLAY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,112,270,10
    CONTROL         "Needs-lock",IDC_SHOWREADONLYOVERLAY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,127,270,10
    CONTROL         "Deleted",IDC_SHOWDELETEDOVERLAY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,142,270,10
    LTEXT           "",IDC_HANDLERHINT,14,159,270,36
    PUSHBUTTON      "Start registry editor",IDC_REGEDT,172,196,121,14
END

IDD_EDITPROPEXECUTABLE DIALOGEX 0, 0, 308, 69
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "svn:executable"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "Note: this property has no effect on Windows",IDC_NOTE,
                    "Static",SS_LEFTNOWORDWRAP | WS_GROUP,7,7,294,8,WS_EX_TRANSPARENT
    CONTROL         "&Executable",IDC_PROPSET,"Button",BS_AUTORADIOBUTTON,7,21,294,10
    CONTROL         "&Not executable",IDC_PROPNOTSET,"Button",BS_AUTORADIOBUTTON,7,34,294,10
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,52,121,10
    DEFPUSHBUTTON   "&OK",IDOK,137,48,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,194,48,50,14
    PUSHBUTTON      "Help",IDHELP,251,48,50,14
END

IDD_EDITPROPNEEDSLOCK DIALOGEX 0, 0, 304, 55
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "svn:needs-lock"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "&Locking required (read-only update)",IDC_PROPSET,
                    "Button",BS_AUTORADIOBUTTON,7,7,290,10
    CONTROL         "&No locking required",IDC_PROPNOTSET,"Button",BS_AUTORADIOBUTTON,7,20,290,10
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,37,121,10
    DEFPUSHBUTTON   "&OK",IDOK,137,33,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,192,34,50,14
    PUSHBUTTON      "Help",IDHELP,247,34,50,14
END

IDD_EDITPROPMIMETYPE DIALOGEX 0, 0, 297, 79
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "svn:mime-type"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "&Text",IDC_MIMETEXT,"Button",BS_AUTORADIOBUTTON,7,7,283,10
    CONTROL         "&Binary",IDC_MIMEBIN,"Button",BS_AUTORADIOBUTTON,7,21,283,10
    CONTROL         "&Custom",IDC_MIMECUSTOM,"Button",BS_AUTORADIOBUTTON,7,35,71,10
    EDITTEXT        IDC_CUSTOMMIMETYPE,66,33,224,14,ES_AUTOHSCROLL
    LTEXT           "",IDC_DWM,7,46,12,8,NOT WS_VISIBLE
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,62,121,10
    DEFPUSHBUTTON   "&OK",IDOK,136,58,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,188,58,50,14
    PUSHBUTTON      "Help",IDHELP,240,58,50,14
END

IDD_EDITPROPBUGTRAQ DIALOGEX 0, 0, 367, 343
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Edit bugtraq properties"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    GROUPBOX        "Issue tracker",IDC_ISSUETRACKERGROUP,7,7,353,66
    LTEXT           "Specify the URL to access the issue tracker. Use %BUGID% as a placeholder for the real issue number.",IDC_URLLABEL,13,20,341,19
    LTEXT           "&URL:",IDC_URLLABEL2,13,43,62,8
    EDITTEXT        IDC_BUGTRAQURL,93,41,261,14,ES_AUTOHSCROLL
    CONTROL         "&Remind me to enter a bug-ID",IDC_BUGTRAQWARN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,58,341,10
    GROUPBOX        "Message",IDC_MESSAGEGROUP,7,75,353,111
    LTEXT           "Specify how the commit message should be built from the entered bug-ID. Use the placeholder %BUGID% for the real bug-ID. If you leave these settings empty, TortoiseSVN will use the regular expressions instead.",IDC_MESSAGEHINTLABEL,13,87,341,33
    LTEXT           "Message &pattern:",IDC_MESSAGEPATTERNLABEL,13,127,79,8
    EDITTEXT        IDC_BUGTRAQMESSAGE,100,123,254,14,ES_AUTOHSCROLL
    LTEXT           "Message &label:",IDC_MESSAGELABEL,13,143,79,8
    EDITTEXT        IDC_BUGTRAQLABEL,100,140,254,14,ES_AUTOHSCROLL
    LTEXT           "Bug-ID is:",IDC_BUGIDLABEL,13,158,79,8
    CONTROL         "Arb&itrary text",IDC_TEXTRADIO,"Button",BS_AUTORADIOBUTTON | WS_GROUP,100,157,90,10
    CONTROL         "&Numeric",IDC_NUMERICRADIO,"Button",BS_AUTORADIOBUTTON,205,157,101,10
    LTEXT           "Insert message at:",IDC_INSERTLABEL,13,172,79,8
    CONTROL         "&Top",IDC_TOPRADIO,"Button",BS_AUTORADIOBUTTON | WS_GROUP,100,171,93,10
    CONTROL         "&Bottom",IDC_BOTTOMRADIO,"Button",BS_AUTORADIOBUTTON,205,171,101,10
    GROUPBOX        "Regular Expression",IDC_REGEXGROUP,7,190,353,75
    LTEXT           "Enter the regular expression patterns for filtering out the bug-ID from a commit message.",IDC_REGEXLABEL,13,203,341,19
    LTEXT           "Message part &expression:",IDC_REGEXMSGLABEL,13,223,79,18
    EDITTEXT        IDC_BUGTRAQLOGREGEX2,100,223,244,14,ES_AUTOHSCROLL
    PUSHBUTTON      "",IDC_TESTREGEX,345,235,9,14
    LTEXT           "Bug-ID e&xpression:",IDC_REGEXIDLABEL,13,242,79,17
    EDITTEXT        IDC_BUGTRAQLOGREGEX1,100,242,244,14,ES_AUTOHSCROLL
    GROUPBOX        "IBugTraqProvider",IDC_IBUGTRAQPROVIDERGROUP,7,269,353,46
    LTEXT           "Provider uuid win&32:",IDC_UUIDLABEL32,13,281,79,8
    EDITTEXT        IDC_UUID32,100,278,108,14,ES_AUTOHSCROLL
    LTEXT           "uuid x6&4:",IDC_UUIDLABEL64,212,281,35,8
    EDITTEXT        IDC_UUID64,246,278,108,14,ES_AUTOHSCROLL
    LTEXT           "Provider para&meters:",IDC_PARAMSLABEL,13,297,79,8
    EDITTEXT        IDC_PARAMS,100,295,254,14,ES_AUTOHSCROLL
    LTEXT           "",IDC_DWM,13,312,17,8
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,326,142,10
    DEFPUSHBUTTON   "&OK",IDOK,193,322,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,249,322,50,14
    PUSHBUTTON      "Help",IDHELP,305,322,50,14
END

IDD_EDITPROPEOL DIALOGEX 0, 0, 303, 106
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "svn:eol-style"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "As &is (no specific EOL)",IDC_RADIONOEOL,"Button",BS_AUTORADIOBUTTON,7,7,289,10
    CONTROL         "&Platform dependent (native)",IDC_RADIONATIVE,"Button",BS_AUTORADIOBUTTON,7,21,289,10
    CONTROL         "&Windows (CRLF)",IDC_RADIOCRLF,"Button",BS_AUTORADIOBUTTON,7,35,289,10
    CONTROL         "&Linux (LF)",IDC_RADIOLF,"Button",BS_AUTORADIOBUTTON,7,49,289,10
    CONTROL         "&Mac (CR)",IDC_RADIOCR,"Button",BS_AUTORADIOBUTTON,7,63,289,10
    LTEXT           "",IDC_DWM,7,73,8,8
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,89,121,10
    DEFPUSHBUTTON   "&OK",IDOK,138,85,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,192,85,50,14
    PUSHBUTTON      "Help",IDHELP,246,85,50,14
END

IDD_EDITPROPKEYWORDS DIALOGEX 0, 0, 300, 105
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "svn:keywords"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    DEFPUSHBUTTON   "&OK",IDOK,137,84,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,190,84,50,14
    CONTROL         "Author",IDC_AUTHORKEY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,7,286,10
    CONTROL         "Date",IDC_DATE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,18,286,10
    CONTROL         "ID",IDC_ID,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,29,286,10
    CONTROL         "Revision",IDC_REV,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,40,286,10
    CONTROL         "URL",IDC_URL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,51,286,10
    CONTROL         "Header",IDC_HEADER,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,62,286,10
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,88,121,10
    LTEXT           "",IDC_DWM,7,73,10,8
    PUSHBUTTON      "Help",IDHELP,243,84,50,14
END

IDD_EDITPROPEXTERNALS DIALOGEX 0, 0, 427, 143
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "svn:externals"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "",IDC_EXTERNALSLIST,"SysListView32",LVS_REPORT | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | LVS_OWNERDATA | WS_BORDER | WS_TABSTOP,7,7,413,110
    PUSHBUTTON      "&New...",IDC_ADD,7,122,50,14
    PUSHBUTTON      "&Edit...",IDC_EDIT,63,122,50,14,WS_DISABLED
    PUSHBUTTON      "&Remove",IDC_REMOVE,119,122,50,14,WS_DISABLED
    PUSHBUTTON      "Find &HEAD-Revision",IDC_FINDHEAD,173,122,82,14
    DEFPUSHBUTTON   "&OK",IDOK,262,122,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,316,122,50,14
    PUSHBUTTON      "Help",IDHELP,370,122,50,14
END

IDD_EDITPROPEXTERNALSVALUE DIALOGEX 0, 0, 317, 113
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Edit External"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Lo&cal path:",IDC_WCLABEL,7,8,71,8
    EDITTEXT        IDC_WCPATH,86,7,224,14,ES_AUTOHSCROLL
    LTEXT           "&URL:",IDC_URLLABEL,7,27,71,8
    CONTROL         "",IDC_URLCOMBO,"ComboBoxEx32",CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP,86,25,206,69
    PUSHBUTTON      "...",IDC_BROWSE,296,25,14,14
    LTEXT           "&Peg:",IDC_PEGLABEL,94,52,53,8
    EDITTEXT        IDC_PEGREV,150,50,62,14,ES_AUTOHSCROLL
    GROUPBOX        "Revision",IDC_GROUPBOTTOM,7,41,303,47
    CONTROL         "&HEAD revision",IDC_REVISION_HEAD,"Button",BS_AUTORADIOBUTTON,17,52,69,10
    CONTROL         "&Revision",IDC_REVISION_N,"Button",BS_AUTORADIOBUTTON,17,69,69,10
    EDITTEXT        IDC_REVISION_NUM,150,68,62,14,ES_AUTOHSCROLL
    PUSHBUTTON      "Show &log",IDC_SHOW_LOG,215,68,86,14
    DEFPUSHBUTTON   "&OK",IDOK,145,92,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,202,92,50,14
    PUSHBUTTON      "Help",IDHELP,260,92,50,14
    LTEXT           "&Operative:",IDC_OPERATIVELABEL,95,70,51,8
END

IDD_EDITPROPTSVNSIZES DIALOGEX 0, 0, 306, 134
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Size of log messages"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Minimum number of chars for a commit message:",IDC_STATIC,7,7,292,8
    LTEXT           "&Limit:",IDC_STATIC,7,23,47,8
    EDITTEXT        IDC_LOGMINSIZE,59,21,40,14,ES_AUTOHSCROLL | ES_NUMBER
    LTEXT           "Minimum number of chars for a lock message:",IDC_STATIC,7,42,292,8
    LTEXT           "L&imit:",IDC_STATIC,7,59,47,8
    EDITTEXT        IDC_LOCKMINSIZE,59,57,40,14,ES_AUTOHSCROLL | ES_NUMBER
    LTEXT           "Char position where to show a border line in commit text boxes:",IDC_STATIC,7,78,292,8
    LTEXT           "&Border:",IDC_STATIC,7,94,47,8
    EDITTEXT        IDC_BORDER,59,92,40,14,ES_AUTOHSCROLL | ES_NUMBER
    LTEXT           "",IDC_DWM,7,103,12,8,NOT WS_VISIBLE
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,117,121,10
    DEFPUSHBUTTON   "&OK",IDOK,143,113,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,196,113,50,14
    PUSHBUTTON      "Help",IDHELP,249,113,50,14
END

IDD_EDITPROPTSVNLANG DIALOGEX 0, 0, 295, 101
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Edit language properties"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    DEFPUSHBUTTON   "&OK",IDOK,134,80,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,186,80,50,14
    LTEXT           "Select the language this project is using. This settings affects the spell checker used for commit messages.",IDC_STATIC,7,7,281,29
    COMBOBOX        IDC_LANGCOMBO,110,40,178,70,CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
    LTEXT           "Language:",IDC_STATIC,7,41,56,8
    CONTROL         "keep the file lists in English",IDC_FILELISTENGLISH,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,65,281,10
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,84,121,10
    LTEXT           "",IDC_DWM,7,49,8,8,NOT WS_VISIBLE
    PUSHBUTTON      "Help",IDHELP,238,80,50,14
END

IDD_REPOCREATEFINISHED DIALOGEX 0, 0, 246, 105
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Repository created"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    EDITTEXT        IDC_URL,7,7,232,14,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    LTEXT           "The repository was successfully created.\nDo you want to create the default folder structure (trunk/branches/tags) now?",IDC_STATIC,7,26,232,34
    PUSHBUTTON      "&Create folder structure",IDC_CREATEFOLDERS,7,66,139,14
    PUSHBUTTON      "&Start Repobrowser",IDC_REPOBROWSER,7,84,139,14
    DEFPUSHBUTTON   "&OK",IDOK,189,84,50,14
END

IDD_DIFFOPTIONS DIALOGEX 0, 0, 190, 72
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Diff Options"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    DEFPUSHBUTTON   "&OK",IDOK,77,51,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,133,51,50,14
    CONTROL         "Ignore &EOL changes",IDC_IGNOREEOL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,7,176,10
    CONTROL         "Ignore whitespace &changes",IDC_IGNOREWHITESPACE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,21,176,10
    CONTROL         "Ignore &all whitespaces",IDC_IGNOREALLWHITESPACE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,35,176,10
END

IDD_BUGTRAQREGEXTESTER DIALOGEX 0, 0, 317, 188
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Bugtraq Regex Tester - TortoiseSVN"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "Sample text:",IDC_SAMPLELABEL,7,7,303,8
    CONTROL         "Scintilla",IDC_LOGMESSAGE,"Scintilla",WS_TABSTOP,7,18,303,100,WS_EX_STATICEDGE
    LTEXT           "Message part &expression:",IDC_REGEXMSGLABEL,7,124,74,18
    EDITTEXT        IDC_BUGTRAQLOGREGEX2,88,123,222,14,ES_AUTOHSCROLL
    LTEXT           "Bug-ID e&xpression:",IDC_REGEXIDLABEL,7,144,74,17
    EDITTEXT        IDC_BUGTRAQLOGREGEX1,88,144,222,14,ES_AUTOHSCROLL
    LTEXT           "",IDC_DWM,7,160,23,5
    DEFPUSHBUTTON   "OK",IDOK,205,167,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,260,167,50,14
END

IDD_CLEANUP DIALOGEX 0, 0, 254, 120
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Cleanup"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    CONTROL         "&Clean up working copy status",IDC_CLEANUP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,7,240,10
    CONTROL         "&Revert all changes recursively",IDC_REVERT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,84,240,10
    CONTROL         "Delete &unversioned files and folders",IDC_DELETEUNVERSIONED,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,62,240,10
    CONTROL         "Delete &ignored files and folders",IDC_DELETEIGNORED,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,73,240,10
    CONTROL         "Refresh &shell overlays",IDC_REFRESHSHELL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,18,240,10
    CONTROL         "Include e&xternals",IDC_EXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,39,240,10
    DEFPUSHBUTTON   "&OK",IDOK,89,99,50,14,WS_DISABLED
    PUSHBUTTON      "Cancel",IDCANCEL,143,99,50,14
    PUSHBUTTON      "&Help",IDHELP,197,99,50,14
END

IDD_SETTINGSDIALOGS3 DIALOGEX 0, 0, 300, 217
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "General::Dialogs 3"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    GROUPBOX        "Repository browser",IDC_STATIC,7,7,286,46
    CONTROL         "Pre-fetch folders for faster browsing",IDC_ALLOWPREFETCH,
                    "Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,20,270,10
    CONTROL         "Show externals",IDC_SHOWEXTERNALS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,14,35,270,10
END

IDD_RECYCLEBIN DIALOGEX 0, 0, 316, 176
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Recycle bin"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_INFO,7,7,302,91
    PUSHBUTTON      "&Empty the recycle bin now",IDC_EMPTYBIN,7,105,302,14
    PUSHBUTTON      "Configure &TortoiseSVN to never use the recycle bin",IDC_DONTUSEBIN,7,121,302,14
    PUSHBUTTON      "&Ignore and proceed",IDCANCEL,7,138,302,14
    CONTROL         "&Do not ask again",IDC_DONTASKAGAIN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,159,302,10
END

IDD_EDITPROPLOCALHOOKS DIALOGEX 0, 0, 317, 135
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Dialog"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    DEFPUSHBUTTON   "OK",IDOK,151,113,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,205,113,50,14
    LTEXT           "Hook Type:",IDC_HOOKTYPELABEL,7,9,161,8
    COMBOBOX        IDC_HOOKTYPECOMBO,176,7,134,107,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
    EDITTEXT        IDC_HOOKCOMMANDLINE,7,64,303,14,ES_AUTOHSCROLL
    CONTROL         "Wait for the script to finish",IDC_WAITCHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,80,303,10
    CONTROL         "Hide the script while running",IDC_HIDECHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,91,303,10
    CONTROL         "Always execute the script",IDC_ENFORCECHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,102,303,10
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,117,134,10
    PUSHBUTTON      "Help",IDHELP,260,113,50,14
    EDITTEXT        IDC_HOOKCMLABEL,7,24,303,36,ES_MULTILINE | ES_READONLY | NOT WS_BORDER
END

IDD_EDITPROPUSERBOOL DIALOGEX 0, 0, 249, 80
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "user:bool"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_LABEL,7,7,235,29
    CONTROL         "user:bool",IDC_CHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,41,235,10
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,63,121,10
    DEFPUSHBUTTON   "OK",IDOK,136,59,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,192,59,50,14
END

IDD_EDITPROPUSERSTATE DIALOGEX 0, 0, 249, 99
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "user:state"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_LABEL,7,7,235,29
    CONTROL         "user:state",IDC_RADIO1,"Button",BS_AUTORADIOBUTTON | NOT WS_VISIBLE,7,41,235,10
    CONTROL         "user:state",IDC_RADIO2,"Button",BS_AUTORADIOBUTTON | NOT WS_VISIBLE,7,52,235,10
    CONTROL         "user:state",IDC_RADIO3,"Button",BS_AUTORADIOBUTTON | NOT WS_VISIBLE,7,63,235,10
    COMBOBOX        IDC_COMBO,7,48,235,30,CBS_DROPDOWNLIST | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,82,121,10
    DEFPUSHBUTTON   "OK",IDOK,136,78,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,190,78,50,14
END

IDD_EDITPROPUSERSINGLELINE DIALOGEX 0, 0, 249, 86
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "user:singleline"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_LABEL,7,7,235,29
    EDITTEXT        IDC_EDIT,7,44,235,14,ES_AUTOHSCROLL
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,69,121,10
    DEFPUSHBUTTON   "OK",IDOK,138,65,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,192,65,50,14
END

IDD_EDITPROPUSERMULTILINE DIALOGEX 0, 0, 249, 118
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "user:multiline"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    LTEXT           "",IDC_LABEL,7,7,235,29
    EDITTEXT        IDC_EDIT,7,44,235,44,ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_WANTRETURN | WS_VSCROLL
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,101,121,10
    DEFPUSHBUTTON   "OK",IDOK,138,97,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,192,97,50,14
END

IDD_EDITPROPMERGELOGTEMPLATE DIALOGEX 0, 0, 317, 269
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "Dialog"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
    DEFPUSHBUTTON   "OK",IDOK,149,248,50,14
    PUSHBUTTON      "Cancel",IDCANCEL,204,248,50,14
    EDITTEXT        IDC_TITLEHINT,7,7,303,45,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    EDITTEXT        IDC_TITLE,7,56,303,33,ES_MULTILINE | ES_AUTOHSCROLL | ES_WANTRETURN
    EDITTEXT        IDC_TITLEHINTREVERSE,7,92,303,15,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    EDITTEXT        IDC_TITLEREVERSE,7,110,303,33,ES_MULTILINE | ES_AUTOHSCROLL | ES_WANTRETURN
    EDITTEXT        IDC_MSGHINT,7,147,303,53,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
    EDITTEXT        IDC_MSG,7,203,303,33,ES_MULTILINE | ES_AUTOHSCROLL | ES_WANTRETURN
    PUSHBUTTON      "Help",IDHELP,260,248,50,14
    LTEXT           "",IDC_DWM,7,237,8,8
    CONTROL         "&Apply property recursively",IDC_PROPRECURSIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,247,138,10
END


/////////////////////////////////////////////////////////////////////////////
//
// DESIGNINFO
//

#ifdef APSTUDIO_INVOKED
GUIDELINES DESIGNINFO
BEGIN
    IDD_LOGCACHESTATISTICS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 291
        TOPMARGIN, 7
        BOTTOMMARGIN, 275
    END

    IDD_GOOFFLINE, DIALOG
    BEGIN
        VERTGUIDE, 7
        HORZGUIDE, 111
    END

    IDD_ABOUT, DIALOG
    BEGIN
    END

    IDD_ADD, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 238
        VERTGUIDE, 180
        TOPMARGIN, 7
        BOTTOMMARGIN, 163
    END

    IDD_CHANGEDFILES, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 542
        VERTGUIDE, 15
        VERTGUIDE, 147
        VERTGUIDE, 150
        VERTGUIDE, 288
        VERTGUIDE, 294
        VERTGUIDE, 301
        TOPMARGIN, 7
        BOTTOMMARGIN, 235
        HORZGUIDE, 188
    END

    IDD_CHECKOUT, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 294
        VERTGUIDE, 13
        VERTGUIDE, 100
        VERTGUIDE, 268
        VERTGUIDE, 287
        TOPMARGIN, 7
        BOTTOMMARGIN, 193
    END

    IDD_COPY, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 352
        VERTGUIDE, 13
        VERTGUIDE, 19
        VERTGUIDE, 328
        VERTGUIDE, 346
        TOPMARGIN, 7
        BOTTOMMARGIN, 328
    END

    IDD_IMPORT, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 13
        VERTGUIDE, 236
        VERTGUIDE, 268
        VERTGUIDE, 287
        TOPMARGIN, 7
        BOTTOMMARGIN, 183
    END

    IDD_LOGMESSAGE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 413
        VERTGUIDE, 300
        VERTGUIDE, 356
        TOPMARGIN, 7
        BOTTOMMARGIN, 319
    END

    IDD_COMMITDLG, DIALOG
    BEGIN
        LEFTMARGIN, 6
        RIGHTMARGIN, 394
        VERTGUIDE, 14
        VERTGUIDE, 148
        VERTGUIDE, 339
        VERTGUIDE, 386
        TOPMARGIN, 6
        BOTTOMMARGIN, 291
        HORZGUIDE, 158
    END

    IDD_PROMPT, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 234
        VERTGUIDE, 177
        TOPMARGIN, 7
        BOTTOMMARGIN, 47
    END

    IDD_RELOCATE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 294
        TOPMARGIN, 6
        BOTTOMMARGIN, 82
        HORZGUIDE, 56
    END

    IDD_RENAME, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 228
        TOPMARGIN, 7
        BOTTOMMARGIN, 48
    END

    IDD_REPOSITORY_BROWSER, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 408
        VERTGUIDE, 224
        VERTGUIDE, 352
        TOPMARGIN, 6
        BOTTOMMARGIN, 272
        HORZGUIDE, 22
        HORZGUIDE, 249
    END

    IDD_SETTINGSMAIN, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 132
        VERTGUIDE, 196
        VERTGUIDE, 202
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_SETTINGSOVERLAY, DIALOG
    BEGIN
        LEFTMARGIN, 12
        RIGHTMARGIN, 293
        VERTGUIDE, 12
        VERTGUIDE, 18
        VERTGUIDE, 113
        VERTGUIDE, 117
        VERTGUIDE, 166
        VERTGUIDE, 286
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_SETTINGSPROXY, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 17
        VERTGUIDE, 118
        VERTGUIDE, 219
        VERTGUIDE, 285
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_SVNPROGRESS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 427
        VERTGUIDE, 316
        VERTGUIDE, 372
        TOPMARGIN, 7
        BOTTOMMARGIN, 157
    END

    IDD_SWITCH, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 344
        VERTGUIDE, 13
        VERTGUIDE, 94
        VERTGUIDE, 168
        VERTGUIDE, 236
        VERTGUIDE, 325
        TOPMARGIN, 7
        BOTTOMMARGIN, 173
        HORZGUIDE, 102
        HORZGUIDE, 139
    END

    IDD_UPDATE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 240
        VERTGUIDE, 13
        VERTGUIDE, 134
        VERTGUIDE, 227
        TOPMARGIN, 7
        BOTTOMMARGIN, 169
    END

    IDD_SIMPLEPROMPT, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 213
        VERTGUIDE, 86
        VERTGUIDE, 94
        VERTGUIDE, 156
        TOPMARGIN, 7
        BOTTOMMARGIN, 119
    END

    IDD_INPUTDLG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 230
        TOPMARGIN, 7
        BOTTOMMARGIN, 106
    END

    IDD_BLAME, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 304
        VERTGUIDE, 13
        VERTGUIDE, 247
        VERTGUIDE, 294
        TOPMARGIN, 7
        BOTTOMMARGIN, 174
    END

    IDD_SETTINGSPROGSADV, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 312
        VERTGUIDE, 13
        VERTGUIDE, 304
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_URL, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 228
        VERTGUIDE, 42
        VERTGUIDE, 170
        TOPMARGIN, 7
        BOTTOMMARGIN, 48
    END

    IDD_TOOLASSOC, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 436
        VERTGUIDE, 180
        TOPMARGIN, 7
        BOTTOMMARGIN, 72
    END

    IDD_REVISION, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 196
        VERTGUIDE, 104
        VERTGUIDE, 139
        VERTGUIDE, 189
        TOPMARGIN, 7
        BOTTOMMARGIN, 76
    END

    IDD_CHECKFORUPDATES, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 179
        TOPMARGIN, 7
        BOTTOMMARGIN, 120
    END

    IDD_REVERT, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 326
        TOPMARGIN, 7
        BOTTOMMARGIN, 223
    END

    IDD_PROPERTIES, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 240
        TOPMARGIN, 7
        BOTTOMMARGIN, 98
    END

    IDD_STATGRAPH, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 358
        VERTGUIDE, 122
        VERTGUIDE, 202
        VERTGUIDE, 240
        VERTGUIDE, 267
        VERTGUIDE, 304
        TOPMARGIN, 7
        BOTTOMMARGIN, 225
        HORZGUIDE, 23
        HORZGUIDE, 29
        HORZGUIDE, 180
        HORZGUIDE, 192
        HORZGUIDE, 209
    END

    IDD_PATCH_FILE_OPEN_CUSTOM, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 87
        TOPMARGIN, 7
        BOTTOMMARGIN, 21
    END

    IDD_REVISIONGRAPH, DIALOG
    BEGIN
    END

    IDD_SETOVERLAYICONS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 295
        VERTGUIDE, 138
        TOPMARGIN, 7
        BOTTOMMARGIN, 207
    END

    IDD_LOCK, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 296
        TOPMARGIN, 7
        BOTTOMMARGIN, 191
    END

    IDD_SETTINGSPROGSDIFF, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 12
        VERTGUIDE, 92
        VERTGUIDE, 270
        VERTGUIDE, 274
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
        HORZGUIDE, 27
    END

    IDD_SETTINGSPROGSMERGE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
        HORZGUIDE, 33
    END

    IDD_SETTINGSLOOKANDFEEL, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 12
        VERTGUIDE, 286
        TOPMARGIN, 7
        BOTTOMMARGIN, 217
    END

    IDD_SETTINGSDIALOGS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 98
        VERTGUIDE, 107
        VERTGUIDE, 268
        VERTGUIDE, 272
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_RESOLVE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 238
        TOPMARGIN, 7
        BOTTOMMARGIN, 146
    END

    IDD_DIFFFILES, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 248
        VERTGUIDE, 193
        TOPMARGIN, 7
        BOTTOMMARGIN, 242
    END

    IDD_CREATEPATCH, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 260
        TOPMARGIN, 7
        BOTTOMMARGIN, 211
    END

    IDD_SETTINGSCOLORS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 150
        VERTGUIDE, 158
        VERTGUIDE, 259
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_SETTINGSMISC, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 252
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_SETTINGSLOGCACHE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 292
        VERTGUIDE, 14
        VERTGUIDE, 252
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_SETTINGSSAVEDDATA, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 13
        VERTGUIDE, 233
        VERTGUIDE, 286
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_HISTORYDLG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 190
        TOPMARGIN, 7
        BOTTOMMARGIN, 109
    END

    IDD_EDITPROPERTIES, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 418
        VERTGUIDE, 14
        VERTGUIDE, 411
        TOPMARGIN, 7
        BOTTOMMARGIN, 152
        HORZGUIDE, 124
    END

    IDD_EDITPROPERTYVALUE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 218
        TOPMARGIN, 7
        BOTTOMMARGIN, 162
    END

    IDD_REVISIONRANGE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 205
        VERTGUIDE, 13
        VERTGUIDE, 105
        TOPMARGIN, 7
        BOTTOMMARGIN, 172
    END

    IDD_SETTINGSHOOKS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        TOPMARGIN, 7
        BOTTOMMARGIN, 209
    END

    IDD_SETTINGSHOOKCONFIG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 388
        VERTGUIDE, 220
        VERTGUIDE, 254
        VERTGUIDE, 358
        VERTGUIDE, 366
        TOPMARGIN, 7
        BOTTOMMARGIN, 114
    END

    IDD_EXPORT, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 294
        VERTGUIDE, 13
        VERTGUIDE, 100
        VERTGUIDE, 268
        VERTGUIDE, 287
        TOPMARGIN, 7
        BOTTOMMARGIN, 203
    END

    IDD_REVGRAPHFILTER, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 275
        VERTGUIDE, 117
        VERTGUIDE, 127
        TOPMARGIN, 7
        BOTTOMMARGIN, 128
        HORZGUIDE, 33
    END

    IDD_DELUNVERSIONED, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 272
        TOPMARGIN, 7
        BOTTOMMARGIN, 217
    END

    IDD_INPUTLOGDLG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 299
        VERTGUIDE, 15
        VERTGUIDE, 66
        VERTGUIDE, 73
        VERTGUIDE, 291
        TOPMARGIN, 7
        BOTTOMMARGIN, 175
    END

    IDD_UNLOCK, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 238
        TOPMARGIN, 7
        BOTTOMMARGIN, 148
    END

    IDD_SETTINGSTBLAME, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 106
        VERTGUIDE, 126
        VERTGUIDE, 162
        VERTGUIDE, 202
        VERTGUIDE, 208
        VERTGUIDE, 252
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_CONFLICTRESOLVE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 309
        VERTGUIDE, 15
        VERTGUIDE, 91
        VERTGUIDE, 100
        VERTGUIDE, 204
        TOPMARGIN, 7
        BOTTOMMARGIN, 143
        HORZGUIDE, 69
        HORZGUIDE, 91
        HORZGUIDE, 113
    END

    IDD_MERGEALL, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 242
        VERTGUIDE, 14
        VERTGUIDE, 230
        TOPMARGIN, 7
        BOTTOMMARGIN, 138
    END

    IDD_MERGEWIZARD_START, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 315
        VERTGUIDE, 17
        VERTGUIDE, 28
        VERTGUIDE, 306
        TOPMARGIN, 7
        BOTTOMMARGIN, 184
        HORZGUIDE, 176
    END

    IDD_MERGEWIZARD_TREE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 315
        VERTGUIDE, 13
        VERTGUIDE, 282
        VERTGUIDE, 306
        TOPMARGIN, 7
        BOTTOMMARGIN, 184
    END

    IDD_MERGEWIZARD_REVRANGE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 315
        VERTGUIDE, 13
        VERTGUIDE, 101
        VERTGUIDE, 308
        TOPMARGIN, 7
        BOTTOMMARGIN, 184
    END

    IDD_MERGEWIZARD_OPTIONS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 315
        VERTGUIDE, 14
        VERTGUIDE, 304
        TOPMARGIN, 7
        BOTTOMMARGIN, 184
    END

    IDD_URLDIFF, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 294
        VERTGUIDE, 86
        VERTGUIDE, 94
        VERTGUIDE, 170
        TOPMARGIN, 7
        BOTTOMMARGIN, 122
    END

    IDD_CREATECHANGELIST, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 179
        TOPMARGIN, 7
        BOTTOMMARGIN, 59
    END

    IDD_MERGEWIZARD_REINTEGRATE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 315
        VERTGUIDE, 306
        TOPMARGIN, 7
        BOTTOMMARGIN, 184
    END

    IDD_SETTINGSBUGTRAQ, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 252
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_SETTINGSBUGTRAQADV, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 388
        VERTGUIDE, 220
        VERTGUIDE, 298
        VERTGUIDE, 358
        VERTGUIDE, 366
        TOPMARGIN, 7
        BOTTOMMARGIN, 114
    END

    IDD_AUTOTEXTTESTDLG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 323
        TOPMARGIN, 7
        BOTTOMMARGIN, 316
    END

    IDD_SETTINGS_CONFIG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_EDITPROPCONFLICT, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 354
        TOPMARGIN, 7
        BOTTOMMARGIN, 84
    END

    IDD_TREECONFLICTEDITOR, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 332
        VERTGUIDE, 14
        VERTGUIDE, 90
        VERTGUIDE, 98
        VERTGUIDE, 322
        TOPMARGIN, 7
        BOTTOMMARGIN, 191
    END

    IDD_SETTINGSOVERLAYHANDLERS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_EDITPROPEXECUTABLE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 301
        TOPMARGIN, 7
        BOTTOMMARGIN, 62
    END

    IDD_EDITPROPNEEDSLOCK, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 297
        TOPMARGIN, 7
        BOTTOMMARGIN, 48
    END

    IDD_EDITPROPMIMETYPE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 290
        TOPMARGIN, 7
        BOTTOMMARGIN, 72
    END

    IDD_EDITPROPBUGTRAQ, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 360
        VERTGUIDE, 13
        VERTGUIDE, 100
        VERTGUIDE, 344
        VERTGUIDE, 354
        TOPMARGIN, 7
        BOTTOMMARGIN, 336
    END

    IDD_EDITPROPEOL, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 296
        TOPMARGIN, 7
        BOTTOMMARGIN, 99
    END

    IDD_EDITPROPKEYWORDS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        TOPMARGIN, 7
        BOTTOMMARGIN, 98
    END

    IDD_EDITPROPEXTERNALS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 420
        TOPMARGIN, 7
        BOTTOMMARGIN, 136
    END

    IDD_EDITPROPEXTERNALSVALUE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 310
        VERTGUIDE, 17
        VERTGUIDE, 78
        VERTGUIDE, 86
        TOPMARGIN, 7
        BOTTOMMARGIN, 106
    END

    IDD_EDITPROPTSVNSIZES, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 299
        VERTGUIDE, 54
        TOPMARGIN, 7
        BOTTOMMARGIN, 127
    END

    IDD_EDITPROPTSVNLANG, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 288
        TOPMARGIN, 7
        BOTTOMMARGIN, 94
    END

    IDD_REPOCREATEFINISHED, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 239
        TOPMARGIN, 7
        BOTTOMMARGIN, 98
    END

    IDD_DIFFOPTIONS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 183
        TOPMARGIN, 7
        BOTTOMMARGIN, 65
    END

    IDD_BUGTRAQREGEXTESTER, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 310
        VERTGUIDE, 88
        TOPMARGIN, 7
        BOTTOMMARGIN, 181
    END

    IDD_CLEANUP, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 247
        TOPMARGIN, 7
        BOTTOMMARGIN, 113
    END

    IDD_SETTINGSDIALOGS3, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 293
        VERTGUIDE, 14
        VERTGUIDE, 284
        TOPMARGIN, 7
        BOTTOMMARGIN, 210
    END

    IDD_RECYCLEBIN, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 309
        TOPMARGIN, 7
        BOTTOMMARGIN, 169
    END

    IDD_EDITPROPLOCALHOOKS, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 310
        TOPMARGIN, 7
        BOTTOMMARGIN, 117
    END

    IDD_EDITPROPUSERBOOL, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 242
        TOPMARGIN, 7
        BOTTOMMARGIN, 73
    END

    IDD_EDITPROPUSERSTATE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 242
        TOPMARGIN, 7
        BOTTOMMARGIN, 92
    END

    IDD_EDITPROPUSERSINGLELINE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 242
        TOPMARGIN, 7
        BOTTOMMARGIN, 79
    END

    IDD_EDITPROPUSERMULTILINE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 242
        TOPMARGIN, 7
        BOTTOMMARGIN, 111
    END

    IDD_EDITPROPMERGELOGTEMPLATE, DIALOG
    BEGIN
        LEFTMARGIN, 7
        RIGHTMARGIN, 310
        TOPMARGIN, 7
        BOTTOMMARGIN, 262
    END
END
#endif    // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Toolbar
//

IDR_REVGRAPHBAR TOOLBAR 20, 20
BEGIN
    BUTTON      ID_VIEW_ZOOMIN
    BUTTON      ID_VIEW_ZOOMOUT
    BUTTON      ID_VIEW_ZOOM100
    BUTTON      ID_VIEW_ZOOMHEIGHT
    BUTTON      ID_VIEW_ZOOMWIDTH
    BUTTON      ID_VIEW_ZOOMALL
    SEPARATOR
    BUTTON      ID_REVGRAPH_ZOOMCOMBO
    SEPARATOR
    BUTTON      ID_VIEW_GROUPBRANCHES
    BUTTON      ID_VIEW_TOPDOWN
    BUTTON      ID_VIEW_TOPALIGNTREES
    BUTTON      ID_VIEW_SHOWDIFFPATHS
    SEPARATOR
    BUTTON      ID_VIEW_SHOWALLREVISIONS
    BUTTON      ID_VIEW_SHOWHEAD
    BUTTON      ID_VIEW_EXACTCOPYSOURCE
    BUTTON      ID_VIEW_FOLDTAGS
    BUTTON      ID_VIEW_REMOVEDELETEDONES
    BUTTON      ID_VIEW_REMOVEUNCHANGEDBRANCHES
    BUTTON      ID_VIEW_REMOVETAGS
    BUTTON      ID_VIEW_SHOWWCREV
    BUTTON      ID_VIEW_SHOWWCMODIFICATION
    SEPARATOR
    BUTTON      ID_VIEW_FILTER
    SEPARATOR
    BUTTON      ID_VIEW_SHOWTREESTRIPES
    BUTTON      ID_VIEW_SHOWOVERVIEW
END


/////////////////////////////////////////////////////////////////////////////
//
// Menu
//

IDR_REVISIONGRAPH MENU
BEGIN
    POPUP "&File"
    BEGIN
        MENUITEM "&Save graph as...",           ID_FILE_SAVEGRAPHAS
        MENUITEM SEPARATOR
        MENUITEM "&Exit",                       ID_MENUEXIT
    END
    POPUP "&View"
    BEGIN
        MENUITEM "Zoom &in\tCtrl-+",            ID_VIEW_ZOOMIN
        MENUITEM "Zoom &out\tCtrl--",           ID_VIEW_ZOOMOUT
        MENUITEM "Zoom to &100%",               ID_VIEW_ZOOM100
        MENUITEM "Fit height",                  ID_VIEW_ZOOMHEIGHT
        MENUITEM "Fit width",                   ID_VIEW_ZOOMWIDTH
        MENUITEM "Fit graph",                   ID_VIEW_ZOOMALL
        MENUITEM SEPARATOR
        MENUITEM "&Group by branch",            ID_VIEW_GROUPBRANCHES, CHECKED
        MENUITEM "Oldest on to&p",              ID_VIEW_TOPDOWN
        MENUITEM "Align trees on top",          ID_VIEW_TOPALIGNTREES
        MENUITEM "Reduce cross-&lines",         ID_VIEW_REDUCECROSSLINES, CHECKED
        MENUITEM "Differential path &names",    ID_VIEW_SHOWDIFFPATHS
        MENUITEM SEPARATOR
        MENUITEM "Show &all revisions",         ID_VIEW_SHOWALLREVISIONS
        MENUITEM "&Show HEAD revisions",        ID_VIEW_SHOWHEAD
        MENUITEM "E&xact copy sources",         ID_VIEW_EXACTCOPYSOURCE
        MENUITEM "Fold &tags",                  ID_VIEW_FOLDTAGS
        MENUITEM "Hide &deleted paths",         ID_VIEW_REMOVEDELETEDONES
        MENUITEM "Hide unused &branches",       ID_VIEW_REMOVEUNCHANGEDBRANCHES
        MENUITEM "Hide ta&gs",                  ID_VIEW_REMOVETAGS
        MENUITEM "Show &WC revision",           ID_VIEW_SHOWWCREV
        MENUITEM "Show WC &modifications",      ID_VIEW_SHOWWCMODIFICATION
        MENUITEM SEPARATOR
        MENUITEM "&Filter",                     ID_VIEW_FILTER
        MENUITEM SEPARATOR
        MENUITEM "Tr&ee stripes",               ID_VIEW_SHOWTREESTRIPES
        MENUITEM "Show Ove&rview",              ID_VIEW_SHOWOVERVIEW
    END
    POPUP "&SVN"
    BEGIN
        MENUITEM "&Compare revisions",          ID_VIEW_COMPAREREVISIONS, GRAYED
        MENUITEM "Compare &HEAD revisions",     ID_VIEW_COMPAREHEADREVISIONS, GRAYED
        MENUITEM "&Unified diff",               ID_VIEW_UNIFIEDDIFF, GRAYED
        MENUITEM "Unified &diff of HEAD revisions", ID_VIEW_UNIFIEDDIFFOFHEADREVISIONS, GRAYED
    END
    POPUP "&Help"
    BEGIN
        MENUITEM "&Help",                       ID_MENUHELP
    END
END

IDR_STATGRAPH MENU
BEGIN
    POPUP "&File"
    BEGIN
        MENUITEM "&Save graph as...",           ID_FILE_SAVESTATGRAPHAS, GRAYED
    END
END

IDR_PROPNEWMENU MENU
BEGIN
    POPUP "New"
    BEGIN
        MENUITEM "Ex&ternals",                  ID_NEW_EXTERNALS
        MENUITEM "&Keywords",                   ID_NEW_KEYWORDS
        MENUITEM "&EOL",                        ID_NEW_EOL
        MENUITEM "&Bugtraq (Issue tracker integration)", ID_NEW_BUGTRAQ
        MENUITEM "Local &Hooks",                ID_NEW_LOCALHOOKS
        MENUITEM "&Log Sizes",                  ID_NEW_LOGSIZES
        MENUITEM "Lan&guages",                  ID_NEW_LANGUAGES
        MENUITEM "&Mime-Type",                  ID_NEW_MIMETYPE
        MENUITEM "Needs-&Lock",                 ID_NEW_NEEDSLOCK
        MENUITEM "E&xecutable",                 ID_NEW_EXECUTABLE
        MENUITEM "Merge Log &Templates",        ID_NEW_MERGELOGTEMPLATES
        MENUITEM SEPARATOR
        MENUITEM "&Advanced",                   ID_NEW_ADVANCED
    END
END

IDR_PROPEDITMENU MENU
BEGIN
    POPUP "Edit"
    BEGIN
        MENUITEM "Default",                     ID_EDIT_DEFAULT
        MENUITEM "Advanced",                    ID_EDIT_ADVANCED
    END
END


/////////////////////////////////////////////////////////////////////////////
//
// Accelerator
//

IDR_ACC_LOGDLG ACCELERATORS
BEGIN
    "C",            ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
    VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
    "F",            ID_LOGDLG_FIND,         VIRTKEY, CONTROL, NOINVERT
    VK_F3,          ID_LOGDLG_FIND,         VIRTKEY, NOINVERT
    "D",            ID_LOGDLG_FOCUSFILTER,  VIRTKEY, ALT, NOINVERT
    "E",            ID_LOGDLG_FOCUSFILTER,  VIRTKEY, CONTROL, NOINVERT
    "K",            ID_LOGDLG_FOCUSFILTER,  VIRTKEY, CONTROL, NOINVERT
    "L",            ID_LOGDLG_FOCUSFILTER,  VIRTKEY, CONTROL, NOINVERT
    VK_F5,          ID_LOGDLG_REFRESH,      VIRTKEY, NOINVERT
    VK_F5,          ID_LOGDLG_REFRESH,      VIRTKEY, CONTROL, NOINVERT
    VK_F5,          ID_LOGDLG_REFRESH,      VIRTKEY, SHIFT, NOINVERT
    "C",            ID_EDIT_COPY,           VIRTKEY, SHIFT, CONTROL, NOINVERT
    VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, SHIFT, CONTROL, NOINVERT
END

IDR_ACC_REVISIONGRAPH ACCELERATORS
BEGIN
    VK_ESCAPE,      ID_MENUEXIT,            VIRTKEY, NOINVERT
    "A",            ID_VIEW_SHOWALLREVISIONS, VIRTKEY, CONTROL, NOINVERT
    "+",            ID_VIEW_ZOOMIN,         ASCII,  NOINVERT
    "+",            ID_VIEW_ZOOMIN,         ASCII,  NOINVERT
    VK_ADD,         ID_VIEW_ZOOMIN,         VIRTKEY, CONTROL, NOINVERT
    VK_ADD,         ID_VIEW_ZOOMIN,         VIRTKEY, SHIFT, NOINVERT
    VK_OEM_PLUS,    ID_VIEW_ZOOMIN,         VIRTKEY, CONTROL, NOINVERT
    VK_OEM_PLUS,    ID_VIEW_ZOOMIN,         VIRTKEY, SHIFT, NOINVERT
    VK_INSERT,      ID_VIEW_ZOOMOUT,        VIRTKEY, NOINVERT
    VK_INSERT,      ID_VIEW_ZOOMOUT,        VIRTKEY, NOINVERT
    VK_OEM_MINUS,   ID_VIEW_ZOOMOUT,        VIRTKEY, CONTROL, NOINVERT
    VK_OEM_MINUS,   ID_VIEW_ZOOMOUT,        VIRTKEY, SHIFT, NOINVERT
    VK_OEM_MINUS,   ID_VIEW_ZOOMOUT,        VIRTKEY, SHIFT, CONTROL, NOINVERT
    VK_SUBTRACT,    ID_VIEW_ZOOMOUT,        VIRTKEY, CONTROL, NOINVERT
    VK_SUBTRACT,    ID_VIEW_ZOOMOUT,        VIRTKEY, SHIFT, NOINVERT
    VK_SUBTRACT,    ID_VIEW_ZOOMOUT,        VIRTKEY, SHIFT, CONTROL, NOINVERT
    "F",            ID_VIEW_FILTER,         VIRTKEY, CONTROL, NOINVERT
END

IDR_ACC_REPOBROWSER ACCELERATORS
BEGIN
    VK_DELETE,      ID_DELETEBROWSERITEM,   VIRTKEY, NOINVERT
    "C",            ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
    VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
    VK_F2,          ID_INLINEEDIT,          VIRTKEY, NOINVERT
    VK_F5,          ID_REFRESHBROWSER,      VIRTKEY, NOINVERT
    VK_F5,          ID_REFRESHBROWSER,      VIRTKEY, CONTROL, NOINVERT
    "D",            ID_URL_FOCUS,           VIRTKEY, ALT, NOINVERT
    "L",            ID_URL_FOCUS,           VIRTKEY, CONTROL, NOINVERT
    VK_LEFT,        ID_URL_HISTORY_BACK,    VIRTKEY, ALT, NOINVERT
    VK_BACK,        ID_URL_UP,              VIRTKEY, NOINVERT
    VK_RIGHT,       ID_URL_HISTORY_FORWARD, VIRTKEY, ALT, NOINVERT
END


/////////////////////////////////////////////////////////////////////////////
//
// String Table
//

STRINGTABLE
BEGIN
    IDS_SVNACTION_ADD       "Added"
    IDS_SVNACTION_COPY      "Copied"
    IDS_SVNACTION_DELETE    "Deleted"
    IDS_SVNACTION_RESTORE   "Restored"
    IDS_SVNACTION_REVERT    "Reverted"
END

STRINGTABLE
BEGIN
    IDS_SVNACTION_RESOLVE   "Resolved"
    IDS_SVNACTION_UPDATE    "Updated"
    IDS_SVNACTION_COMPLETED "Completed"
    IDS_SVNACTION_EXTERNAL  "External"
    IDS_SVNACTION_MODIFIED  "Modified"
    IDS_SVNACTION_REPLACED  "Replacing"
    IDS_SVNACTION_POSTFIX   "Sending content"
    IDS_SVNACTION_FAILEDREVERT "Failed revert"
    IDS_SVNACTION_STATUS    "Status"
    IDS_SVNACTION_SKIP      "Skipped"
    IDS_PROGS_EXTCOL        "Filename/Extension"
    IDS_PROGS_TOOLCOL       "Program"
    IDS_LOG_FILE            "File"
    IDS_SVN_USERCANCELLED   "User cancelled"
    IDS_LOG_SIZE            "Size"
    IDS_ERR_INVALIDPATH     "The parameters '/path' and '/pathfile' are mutually exclusive.\nYou must only specify one of them."
END

STRINGTABLE
BEGIN
    IDS_SSL_CERTIFICATETYPE "Please specify the certificate type"
    IDS_SSL_ACCEPTQUESTION  "Do you want to proceed?"
    IDS_SSL_CLIENTCERTIFICATEFILENAME "Open client certificate file"
    IDS_SSL_PEM             "PEM"
    IDS_SSL_PKCS12          "PKCS12"
    IDS_IMPORT_DEFAULTMSG   "Initial import"
    IDS_LOG_COPYFROM        "Copy from path"
    IDS_LOG_MESSAGE         "Message"
    IDS_LOG_REVISION        "Revision"
    IDS_LOG_AUTHOR          "Author"
    IDS_LOG_DATE            "Date"
    IDS_LOG_REVERT_CONFIRM  "Do you really want to revert all changes in\n%s\nwhich were made in this revision? These changes will be reverted by reverse-merging the revision into your working copy."
    IDS_LOG_POPUP_COMPARE   "Compare with &working copy"
    IDS_LOG_POPUP_SAVE      "Save revision &to..."
    IDS_LOG_POPUP_COMPARETWO "&Compare revisions"
    IDS_LOG_POPUP_UPDATE    "&Update item to revision"
END

STRINGTABLE
BEGIN
    IDS_LOG_POPUP_COPY      "C&reate branch/tag from revision"
    IDS_COMMITDLG_FILE      "File"
    IDS_COMMITDLG_STATUS    "Status"
    IDS_COMMITDLG_ASKADD    "You selected an unversioned file.\nThe file will be added to version control when you commit."
    IDS_COMMITDLG_NOTHINGTOCOMMIT 
                            "No files were changed or added since\nthe last commit. There's nothing\nfor TortoiseSVN to do here..."
    IDS_PROGRS_ATREV        "At revision: %d"
    IDS_PROGRS_ACTION       "Action"
    IDS_PROGRS_PATH         "Path"
    IDS_PROGRS_TITLEFIN     "Finished!"
    IDS_PROGRS_TITLE_CHECKOUT "Checkout"
    IDS_PROGRS_TITLE_IMPORT "Import"
    IDS_PROGRS_TITLE_UPDATE "Update"
    IDS_PROGRS_TITLE_COMMIT "Commit"
    IDS_PROGRS_TITLE_ADD    "Add"
    IDS_PROGRS_TITLE_REVERT "Revert"
    IDS_PROGRS_TITLE_RESOLVE "Resolve"
END

STRINGTABLE
BEGIN
    IDS_PROGRS_TITLE_SWITCH "Switch"
    IDS_PROGRS_TITLE_EXPORT "Export"
    IDS_PROGRS_TITLE_MERGE  "Merge"
    IDS_PROGRS_TITLE_COPY   "Copy"
    IDS_PROGRS_MIMETYPE     "Mime type"
    IDS_PROGRS_COPY_WARNING "Please note:\nYour working copy remains on the previous path. If you want your next changes\nto be committed to the copy or branch you have just created,\nthen you need to switch your working copy over to the new URL.\nUse the Switch command to do that."
    IDS_PROGRS_COMMITT_TRUNK 
                            "Your working copy appears to be on a tag path!\nYou should first switch to a branch or the main trunk before committing.\n\nDo you want to commit anyway?"
    IDS_PROGRS_REVERTMARKERS 
                            "The selected file appears to still have one or more conflict markers in it.\nAre you sure you want to mark the file resolved?"
    IDS_SETTINGS_SELECTDIFF "Select diff application"
    IDS_SETTINGS_SELECTDIFFVIEWER "Select viewer for diff-files"
    IDS_SETTINGS_SELECTMERGE "Select merge application"
    IDS_SETTINGS_SELECTSSH  "Select SSH client"
    IDS_SETTINGS_EXTDIFF_TT "An external diff program used\r\nfor comparing different revisions of files\r\n\r\nYou can specify the following parameters to the path:\r\n%base : the base file\r\n%mine : the modified file"
    IDS_SETTINGS_EXTDIFFBROWSE_TT "Browse for the external diff program"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_TEMPEXTENSIONS_TT 
                            "Specify the files or folders which TortoiseSVN\r\nshould ignore in all working copies.\r\nSeparate the patterns with a space."
    IDS_SETTINGS_EXTMERGE_TT 
                            "An external merge program used\r\nto resolve conflicted files.\r\n\r\nYou can specify the following parameters to the path:\r\n%merged : the conflicted file, where to save\r\n%theirs : the file as it is in the repository\r\n%mine : your own file, with your changes\r\n%base : the original file without your changes"
    IDS_SETTINGS_PROXYSERVER_TT "Either the name or IP of the proxy server"
    IDS_SETTINGS_DIFFVIEWER_TT 
                            "A viewer program for GNU diff files (patch files).\r\nIf you don't have one use NotePad."
    IDS_SETTINGS_AUTOCLOSE_TT 
                            "Select the behaviour of the progress dialog at the end of the operation."
    IDS_UTILS_SELECTTEXTVIEWER "Select text editor application"
    IDS_SETTINGS_CONVERTBASE_TT 
                            "If checked, TortoiseSVN creates a temporary file of the BASE to do the diff\nwith the keywords expanded and the line endings adjusted."
    IDS_PROC_WARNREVERT     "Are you sure you want to revert %d item(s)? You will lose all changes since the last update!"
    IDS_PROC_CLEANUPFINISHED 
                            "Cleanup has successfully processed the following paths:\n%s"
    IDS_PROC_REPOCREATEERR  "Subversion reported an error while creating a repository!\nMake sure the folder is empty and not write protected."
    IDS_PROC_EXPORT_1       "Select folder to export to.\nYou might need to create a new folder before performing this export."
    IDS_PROC_EXPORT_2       "Export unversioned files too"
    IDS_PROC_EXPORT_3       "Exporting..."
    IDS_PROC_EXPORT_4       "exported\n%s\nto\n%s"
    IDS_PROC_COPY_SUCCESS   "Tagged the working copy to %s"
END

STRINGTABLE
BEGIN
    IDS_ERR_NOTENOUGHMEMORY "Not enough memory to complete operation."
    IDS_ERR_MUSTBEURL       "This is not a valid URL.\nPlease enter an URL here."
    IDS_ERR_INVALIDREVNOWC  "Invalid revision number! Valid revisions are:\nHEAD\npositive decimal numbers,\ndates in one of the following example forms:\n{2002-02-17}\n{15:30}\n{15:30:00.200000}\n{""2002-02-17 15:30""}\n{""2002-02-17 15:30 +0230""}\n{2002-02-17T15:30}\n{2002-02-17T15:30Z}\n{2002-02-17T15:30-04:00}\n{20020217T1530}\n{20020217T1530Z}\n{20020217T1530-0500}"
    IDS_ERR_MERGEIDENTICALREVISIONS 
                            "Merging requires different revisions or different URLs in 'From:' and 'To:'"
    IDS_ERR_NOHOOKTYPESPECIFIED "Please select a hook type"
    IDS_ERR_NOHOOKPATHSPECIFIED 
                            "Please enter a path where to apply the hook script to."
    IDS_ERR_NOHOOKCOMMANDPECIFIED "Please enter a hook script to execute."
    IDS_ERR_HOOKFAILED      "The hook script returned an error:\n%s"
    IDS_ERR_NOTHINGTOUNLOCK "There's nothing to unlock. No file has a lock in this working copy."
    IDS_ERR_INVALIDREVRANGE "Invalid revision range!\nValid revisions are numbers and HEAD, separated by commas.\nA range can be specified with a dash.\nExample: 2-5,7,10,44-70,300-HEAD"
    IDS_ERR_NOPREVREVISION  "Could not determine the last committed revision!"
    IDS_PROC_CLEANUPFINISHED_FAILED 
                            "Cleanup failed to process the following paths:\n%s"
    IDS_ERR_TWOLOGPARAMS    "Both /logmsg and /logmsgfile were specified!\nOnly one of those can be specified."
    IDS_ERR_TEXTVIEWSTART   "Could not start text viewer!\n%s"
    IDS_ERR_FAILEDISSUETRACKERCOM 
                            "Failed to start the issue tracker COM provider '%1!s!'.\n%2!s!"
END

STRINGTABLE
BEGIN
    IDS_PROC_SETTINGS_TITLE "Settings - TortoiseSVN"
    IDS_MSG_IMPORTEDSTRUCTURE "Imported folder structure"
    IDS_PROC_OVERWRITE_CONFIRM 
                            "The file\n%s\nalready exists! Do you want to overwrite it?"
    IDS_PROC_REPOCREATEFINISHED 
                            "The repository was successfully created.\nDo you want to create the default folder structure (trunk/branches/tags) now?"
    IDS_PROC_RELOCATEFINISHED "Working copy relocated to\n%s"
    IDS_PROC_MOVING         "Moving..."
    IDS_PROC_RELOCATING     "Relocating..."
    IDS_APPNAME             "TortoiseSVN"
    IDS_MSGBOX_DONOTSHOW    "Don't show this message again"
    IDS_PROC_COPYING        "Copying..."
    IDS_PROC_COPYINGPROG    "Copying %1!s!"
    IDS_PROC_MOVINGPROG     "Moving %1!s!"
    IDS_PROC_CPYMVPROG2     "to %1!s!"
    IDS_PROC_ENTERURL       "Enter URL"
    IDS_PROC_TASKS          "Tasks"
    IDS_SETTINGS_SHORTDATEFORMAT_TT 
                            "Check to use a less verbose date and time format in log messages"
END

STRINGTABLE
BEGIN
    IDS_MSG_IMPORTEDSTRUCTUREFINISHED 
                            "Default directory structure successfully created!"
    IDS_ERR_THREADSTARTFAILED "Could not start thread!"
    IDS_ERR_EXTDIFFSTART    "Could not start external diff program!\n%s"
    IDS_ERR_NOCOMMAND       "No command specified!\nTortoiseProc.exe is used by the Shell extension and should not be called directly!"
    IDS_ERR_NOCOMMANDVALUE  "No command value specified!"
    IDS_ERR_NOSTATUS        "Could not get the status!"
    IDS_ERR_CLEANUP         "Subversion reported an error while doing a cleanup!\n%s"
    IDS_ERR_NOURLOFFILE     "Could not retrieve URL of the file!\n%s"
    IDS_ERR_WCCHANGED       "The working copy has changed!\nPlease commit your changes first or revert."
    IDS_ERR_COPYFILES       "Could not copy the files!\n%s"
    IDS_ERR_EXTMERGESTART   "Could not start external merge program!\n%s"
    IDS_ERR_NOTUPTODATE     "The working copy is not up to date!\nPlease Update first."
    IDS_ERR_FAILEDIGNOREPROPERTY "Could not add %s to the ignore list!"
    IDS_ERR_DIFFVIEWSTART   "Could not start diff viewer!\n%s"
    IDS_ERR_SSL_VALIDATE    "Error validating server certificate for %s:"
    IDS_ERR_SSL_UNKNOWNCA   "Unknown certificate issuer.\n  Fingerprint: %1!s!\n  Distinguished name: %2!s!"
END

STRINGTABLE
BEGIN
    IDS_MSG_NEEDSUPDATE_TITLE "Command failed - Update needed"
    IDS_MSG_NEEDSUPDATE_QUESTION 
                            "%s\n\nShall I update the working copy now\nand then retry?"
    IDS_MSG_NEEDSUPDATE_TASK1 "Shall I update the working copy and retry?"
    IDS_MSG_NEEDSUPDATE_ERRORDETAILS "The returned error was:\n%s"
    IDS_DELUNVERSIONED      "Delete unversioned items"
END

STRINGTABLE
BEGIN
    IDS_WARN_FOLDERNOTEXIST "The folder \n%s\ndoes not exist.\nWould you like to create it first?"
    IDS_WARN_SHAREFILEACCESS 
                            "You are trying to access a repository via file:// on\na shared network drive.\nThis could lead to severe repository corruption!\nDo you really want to do that?"
    IDS_WARN_RELOCATEREALLY "It seems you are trying to relocate your working copy to a different path inside the same repository.\n\nFrom:\t%1!s!\nTo:\t%2!s!\n\nA relocate is only needed if the path to a repository has changed.\nChanging to a different path inside a repository is done by a switch operation.\n\nImproper use of relocate will corrupt your working copy!\nIf you are not sure what to do, please refer to our docs on relocate.\nDo you really want to relocate?"
    IDS_WARN_UPDATETOREV_WITHMODS 
                            "Your working copy has local modifications!\nNote: updating to another revision won't lose those modifications so the working copy\nwon't look exactly as it was in the revision you're updating to!"
    IDS_WARN_FOLDERNOTEMPTY "The target folder \n%s\nis not empty!\nAre you sure you want to checkout/export into that folder?"
    IDS_WARN_WARNING        "Warning"
    IDS_WARN_NOTE           "Notice"
    IDS_WARN_NOVALIDPATH    "The path/URL you've entered seems to be illegal on Windows!\nYou can try it anyway, but you might get an error later.\n\nA valid path on windows must not contain '<>|""?*:' or one of the following device names:\ncom1-com9, lpt1-lpt9, prn, aux, con, nul, clock$\n\nDo you want to proceed anyway?"
END

STRINGTABLE
BEGIN
    IDS_CHECKOUT_TT_DIR     "Location where the contents of the\nrepository URL(s) will be saved to."
    IDS_CHECKOUT_EXPORTDIR  "Export directory:"
    IDS_CHECKOUT_TT_MULTIWC "Don't make the checkout directory a sparse working copy.\nInstead, all URLs get checked out into a separate\nworking copies next to each other.\nThis works for directory URLs only."
END

STRINGTABLE
BEGIN
    IDS_EXPORT_TT_EOL       "Override the svn:eol-style property setting.\nFiles which don't have this property set are not affected."
    IDS_IMPORT_TT_MODULENAMECHECK 
                            "If checked then a new folder is created in the repository.\nIf not checked then the import goes directly to the specified URL."
    IDS_IMPORT_TT_TEMPFILES "Check the files which you want to\ndelete before importing."
END

STRINGTABLE
BEGIN
    IDS_REPOBROWSE_SAVEAS   "Save &as..."
    IDS_REPOBROWSE_SHOWLOG  "Show &log"
    IDS_REPOBROWSE_OPEN     "&Open"
    IDS_REPOBROWSE_COPY     "&Copy to..."
    IDS_REPOBROWSE_DELETE   "&Delete..."
    IDS_REPOBROWSE_IMPORT   "Add &file..."
    IDS_REPOBROWSE_RENAME   "&Rename"
    IDS_REPOBROWSE_MKDIR    "C&reate folder..."
    IDS_REPOBROWSE_IMPORTFOLDER "A&dd folder..."
    IDS_REPOBROWSE_REFRESH  "Refresh"
    IDS_REPOBROWSE_SHOWPROP "Sho&w properties"
    IDS_REPOBROWSE_COPYTOWC "Copy to working copy..."
    IDS_REPOBROWSE_URLTOCLIPBOARD "Copy URL to clipboard"
    IDS_REPOBROWSE_COPYERROR "Copy error message to clipboard"
    IDS_REPOBROWSE_SHOWDIFF "&Compare URLs"
    IDS_REPOBROWSE_PREPAREDIFF "Mark for comparison"
END

STRINGTABLE
BEGIN
    IDS_REPOBROWSE_TT_HEADREV "HEAD revision is %s"
    IDS_REPOBROWSE_TT_UPFOLDER "Up one folder"
    IDS_REPOBROWSE_TT_BACKWARD "Backwards in browsing history"
    IDS_REPOBROWSE_TT_FORWARD "Forwards in browsing history"
    IDS_REPOBROWSE_ERR_UNKNOWN "Unknown failure in SVN::List"
    IDS_REPOBROWSE_ERR_CANCEL "Request cancelled by TSVN"
    IDS_REPOBROWSE_EDITFILE "&Edit"
    IDS_WARN_CONFIRM_MOVE_SPECIAL_DIRECTORY_TASK1 
                            "One of the paths you are attempting to move appears to be a special path\n(one of 'branches', 'tags' or 'trunk')."
    IDS_WARN_CONFIRM_MOVE_SPECIAL_DIRECTORY_TASK2 
                            "Move special file or directory"
    IDS_WARN_CONFIRM_MOVE_SPECIAL_DIRECTORY_TASK3 
                            "Move\nThe items are moved to the target path."
END

STRINGTABLE
BEGIN
    IDS_WARN_CONFIRM_MOVE_SPECIAL_DIRECTORY_TASK4 
                            "Cancel\nThe items are not moved."
    IDS_ABOUTVERSION        "TortoiseSVN %d.%d.%d, Build %d - %s, %s\r\nSubversion %d.%d.%d, %s\r\napr %d.%d.%d\r\napr-utils %d.%d.%d\r\nneon %s\r\nserf %d.%d.%d\r\n%s\r\nzlib %s"
    IDS_ABOUTVERSIONBOX     "TortoiseSVN %d.%d.%d, Build %d - %s, %s"
END

STRINGTABLE
BEGIN
    IDS_LOG_POPUP_DIFF      "Show &changes"
    IDS_LOG_POPUP_REVERTREV "&Revert changes from this revision"
    IDS_LOG_POPUP_GNUDIFF   "Show differences as &unified diff"
    IDS_LOG_POPUP_FIND      "Search &log messages..."
    IDS_LOG_POPUP_OPEN      "&Open"
    IDS_LOG_POPUP_EDITAUTHOR "Edit author"
    IDS_LOG_POPUP_EDITLOG   "Edit log message"
    IDS_LOG_POPUP_OPENWITH  "Open with..."
END

STRINGTABLE
BEGIN
    IDS_LOG_ALREADYMERGEDREVERSED "Already reverse merged"
    IDS_LOG_REVERTTOREV_CONFIRM 
                            "Do you really want to revert all changes in\n%s\nand go back to this revision? These changes will be reverted by reverse-merging the revisions into your working copy."
    IDS_LOG_REVERTREV_ERROR "Unable to reconstruct working copy path!\nThis can happen if the file has been renamed.\nPlease start the log dialog on this specific file alone and then revert the changes\nfrom the top pane in the log dialog."
    IDS_LOG_STOPONCOPY_HINT "For complete history deselect 'Stop on copy/rename'"
    IDS_LOG_SAVEFOLDERTOHINT "Select folder to save the selected files to"
    IDS_LOG_MERGETO         "Select merge target"
    IDS_LOG_CLEARERROR      "(Double-click to clear error message)"
    IDS_LOG_ALREADYMERGED   "Already merged"
    IDS_LOG_REVERT_CONFIRM_TASK2 "Reverting changes"
    IDS_LOG_REVERT_CONFIRM_TASK3 
                            "Revert\nChanges will be applied to the working copy."
    IDS_LOG_REVERT_CONFIRM_TASK4 "Cancel\nDo not revert."
    IDS_PROGRESSGETFILE     "Getting file %1!s!"
    IDS_PROGRESSREVISION    "Revision %1!d!"
    IDS_PROGRESSWAIT        "Please wait..."
    IDS_PROGRESS_UNIFIEDDIFF "Getting unified diff"
END

STRINGTABLE
BEGIN
    IDS_CHSTAT_FILECOL      "File"
    IDS_CHSTAT_WCCOL        "Local status"
    IDS_CHSTAT_REPOCOL      "Remote status"
    IDS_WARN_CONFIRM_MOVE_SPECIAL_DIRECTORY 
                            "One of the paths you are attempting to move appears to be a special path\n(one of 'branches', 'tags' or 'trunk').\n\nAre you sure you want to move the selected paths?"
    IDS_SETTINGS_BUGTRAQ_PATHCOL "Path"
    IDS_SETTINGS_BUGTRAQ_PROVIDERCOL "Provider"
    IDS_SETTINGS_BUGTRAQ_PARAMETERSCOL "Parameters"
    IDS_ERR_MISSING_PROVIDER 
                            "The issue-tracker provider could not be created. Please check that it is installed correctly."
END

STRINGTABLE
BEGIN
    IDS_LOG_COPY_SUCCESS    "Branch / tag created successfully!"
    IDS_LOG_MESSAGEEDITTITLE "Edit log message"
    IDS_LOG_AUTHOREDITTITLE "Edit author name"
    IDS_LOG_SHOWALL         "Show &All"
    IDS_LOG_SHOWRANGE       "Show &Range..."
    IDS_LOG_LOGINFOSTRING   "Showing %1!ld! revision(s), from revision %2!ld! to revision %3!ld! - %4!ld! revision(s) selected, showing %5!ld! changed paths"
    IDS_LOG_SHOWNEXT        "&Next %ld"
    IDS_LOG_DLGTITLEOFFLINE "%1!s! (offline)"
END

STRINGTABLE
BEGIN
    IDS_AUTH_USERNAME       "Username:"
    IDS_AUTH_PASSWORD       "Password:"
END

STRINGTABLE
BEGIN
    IDS_ERR_SSL_CNMISMATCH  "Hostname mismatch (%s)"
    IDS_ERR_SSL_EXPIREDORNOTYETVALID "Certificate expired or not yet valid"
    IDS_SSL_ACCEPTALWAYS    "Accept permanently"
    IDS_SSL_ACCEPTTEMP      "Accept once"
    IDS_SSL_REJECT          "Reject"
    IDS_ERR_SSL_NOTYETVALID "Certificate not yet valid. Valid from: %s"
    IDS_ERR_SSL_EXPIRED     "Certificate expired. Valid until: %s"
    IDS_ERR_COPYITSELF      "Can't copy \n%1!s!\nto\n%2!s!"
    IDS_ERR_INVALIDREV      "Invalid revision number! Valid revisions are:\nHEAD, BASE, PREV, COMMITTED, WC,\npositive decimal numbers,\ndates in one of the following example forms:\n{2002-02-17}\n{15:30}\n{15:30:00.200000}\n{""2002-02-17 15:30""}\n{""2002-02-17 15:30 +0230""}\n{2002-02-17T15:30}\n{2002-02-17T15:30Z}\n{2002-02-17T15:30-04:00}\n{20020217T1530}\n{20020217T1530Z}\n{20020217T1530-0500}"
    IDS_ERR_EMPTYDIFF       "No differences found!"
    IDS_ERR_NOTHINGTOADD    "There is nothing to add. All the files and folders are either under version control or have been ignored using the svn:ignore property or the global ignore configuration setting."
    IDS_ERR_ERROR           "Error"
    IDS_ERR_NOVALIDPATH     "This is not a valid path!\nA valid path must not contain '<>|""?*:' or one of the following device names:\ncom1-com9, lpt1-lpt9, prn, aux, con, nul, clock$"
    IDS_ERR_FAILEDUNIGNOREPROPERTY "Could not remove %s from the ignore list"
    IDS_ERR_NOTHINGTOREVERT "No files or folders were modified. There is nothing for TortoiseSVN to revert!"
    IDS_ERR_NOCOMMONCOPYFROM 
                            "The two selected URL's are not created from the same root.\nIt's not possible to show the log messages between them!"
END

STRINGTABLE
BEGIN
    IDS_ERR_SVNEXCEPTION    "Subversion encountered a serious problem.\nPlease take the time to report this on the Subversion mailing list\nwith as much information as possible about what\nyou were trying to do.\nBut please first search the mailing list archives for the error message\nto avoid reporting the same problem repeatedly.\nYou can find the mailing list archives at\nhttp://subversion.apache.org/mailing-lists.html\n\nSubversion reported the following\n(you can copy the content of this dialog\nto the clipboard using Ctrl-C):"
    IDS_ERR_SVNFORMATEXCEPTION 
                            "Subversion encountered a serious problem.\nPlease take the time to report this on the Subversion mailing list\nwith as much information as possible about what\nyou were trying to do.\nBut please first search the mailing list archives for the error message\nto avoid reporting the same problem repeatedly.\nYou can find the mailing list archives at\nhttp://subversion.apache.org/mailing-lists.html\n\nSubversion encountered the problem in:\nfile %1!s!, line %2!ld!\nexpression = %3!s!\n\nyou can copy the content of this dialog\nto the clipboard using Ctrl-C."
    IDS_ERR_NOPATH          "No path or pathfile specified on the command line!"
    IDS_ERR_NOSUCHREVISION  "No such revision '%1!s!'"
    IDS_ERR_INVALIDREGEX    "The regular expression is invalid!\nPlease enter a valid regular expression."
    IDS_ERR_FILEEXISTS      "This file already exists!"
    IDS_ERR_CREATETEMPDIR   "Could not create temp folder!"
    IDS_ERR_NOPARENTFOUND   "Could not find a parent folder for\n%s"
    IDS_ERR_PATHPARAMMISSING 
                            "Neither /path nor /pathfile was specified or does not contain a valid path!"
    IDS_ERR_MUSTBEURLORPATH "'%s'\nis not a valid URL or path!"
    IDS_ERR_VALIDATIONFAILED "Validation of the property value failed!"
END

STRINGTABLE
BEGIN
    IDS_INPUT_ENTERLOG      "Enter log message:"
    IDS_INPUT_LOGTITLE      "Log"
    IDS_INPUT_REMOVELOGMSG  "Removed file/folder"
    IDS_INPUT_ADDLOGMSG     "Added a file remotely"
    IDS_INPUT_COPYLOGMSG    "Copied remotely"
    IDS_INPUT_MKDIRLOGMSG   "Created folder remotely"
    IDS_INPUT_MOVELOGMSG    "Moved remotely"
    IDS_INPUT_ADDFOLDERLOGMSG "Added a folder remotely"
    IDS_INPUT_ADDFILEFOLDERMSG "Added items remotely"
    IDS_INPUT_RENAMELOGMSG  "Renamed remotely"
    IDS_INPUT_IMPORTFOLDER  "Import folder %1!s!\r\nto %2!s!"
    IDS_INPUT_IMPORTFILE    "Import file to\r\n%s"
    IDS_INPUT_COPY          "Copy %1!s!\r\nto %2!s!"
    IDS_INPUT_MKDIR         "Create new directory:\r\n%s"
    IDS_INPUT_REMOVEONE     "Remove %s"
    IDS_INPUT_REMOVEMORE    "Remove %ld items"
END

STRINGTABLE
BEGIN
    IDS_BLAME_PROGRESSTITLE "Blame - TortoiseSVN"
    IDS_BLAME_PROGRESSINFO  "Please wait - this can take several minutes. Seriously!"
    IDS_BLAME_PROGRESSCANCEL "Cancelling TortoiseSVN Blame..."
    IDS_BLAME_PROGRESSINFO2 "Processing revision %1!d! of %2!d!..."
    IDS_BLAME_PROGRESSINFOSTART "Getting file info..."
    IDS_BLAME_PROGRESSLOGSTART "Getting log info..."
END

STRINGTABLE
BEGIN
    IDS_LOG_COMPAREWITHBASE "Compare with b&ase"
    IDS_LOG_BROWSEREPO      "&Browse repository"
END

STRINGTABLE
BEGIN
    IDS_PROC_ENTERURLLABEL  "URL:"
    IDS_PROC_PATCHTITLE     "Generating patchfile..."
    IDS_PROC_SAVEPATCHTO    "Saving patchfile to:"
    IDS_PROC_REPOCREATESHAREWARN 
                            "You are creating a repository on a network share.\nThis is safe, but once the repository is created you must access it by some other means.\nAccessing a repository via file:// on a network share may corrupt your data!\nCreate the repository anyway?"
END

STRINGTABLE
BEGIN
    IDS_MENUREFRESH         "Refresh"
END

STRINGTABLE
BEGIN
    IDS_REPO_BROWSEREV      "Revision: "
    IDS_REPO_BROWSEURL      "URL: "
END

STRINGTABLE
BEGIN
    IDS_DIFF_WCNAME         "%s : Working Copy"
    IDS_DIFF_BASENAME       "%s : Working Base"
    IDS_DIFF_WORKINGCOPY    ": working copy"
    IDS_DIFF_REVISIONPATCHED ": Revision %d"
    IDS_DIFF_REMOTENAME     "%s : Remote file"
    IDS_DIFF_WORKINGBASE    ": working base"
    IDS_DIFF_PROP_WCNAME    "Property %s : working copy"
    IDS_DIFF_PROP_BASENAME  "Property %s : working base"
    IDS_DIFF_PROP_REMOTENAME "Property %s : remote"
    IDS_DIFF_PROP_REVISIONNAME "Property %1!s! : Revision %2!s!"
    IDS_DIFF_BASENAMEREV    "%1!s! : Working Base, Revision %2!ld!"
    IDS_DIFF_PROP_BASENAMEREV "Property %1!s! : Working Base, Revision %2!ld!"
END

STRINGTABLE
BEGIN
    IDS_PROC_RENAME         "Rename %s"
    IDS_PROC_NEWNAME        "New name for %s"
END

STRINGTABLE
BEGIN
    IDS_COMMONFILEFILTER    "All Files (*.*)|*.*||"
    IDS_PROGRAMSFILEFILTER  "Programs (*.exe)|*.exe|All Files (*.*)|*.*||"
    IDS_CERTIFICATESFILEFILTER "Certificates|*.p12;*.pkcs12;*.pfx|All|*.*||"
    IDS_PATCHFILEFILTER     "Patchfiles (*.diff, *.patch)|*.diff;*.patch|All (*.*)|*.*||"
    IDS_PICTUREFILEFILTER   "Pictures (*.svg, *.wmf, *.jpg, *.png, *.bmp, *.gif)|*.svg;*.wmf;*.jpg;*.jpeg;*.png;*.bmp;*.gif|All (*.*)|*.*||"
    IDS_PROPSFILEFILTER     "Properties (*.svnprops)|*.svnprops|All Files (*.*)|*.*||"
END

STRINGTABLE
BEGIN
    IDS_DLGTITLE_ADD_DIFF_TOOL "Add extension specific diff program"
    IDS_DLGTITLE_ADD_MERGE_TOOL "Add extension specific merge program"
    IDS_DLGTITLE_EDIT_DIFF_TOOL "Edit extension specific diff program"
    IDS_DLGTITLE_EDIT_MERGE_TOOL "Edit extension specific merge program"
    IDS_DLGTITLE_ADV_DIFF   "Advanced diff settings"
    IDS_DLGTITLE_ADV_MERGE  "Advanced merge settings"
END

STRINGTABLE
BEGIN
    IDS_CHECKUPDATE_SUMMARY "Changed files: %d"
END

STRINGTABLE
BEGIN
    IDS_COMMITDLG_EXTERNALS "There are changes or unversioned items inside one or more directories which you have included with svn:externals.\nThose files are not listed for commit. You need to commit those files separately."
    IDS_COMMITDLG_STATISTICSFORMAT "%1!d! files selected, %2!d! files total"
    IDS_COMMITDLG_ONLYNUMBERS 
                            "Only numbers (optionally separated by commas)\nare allowed!"
    IDS_COMMITDLG_NOISSUEWARNING 
                            "You haven't entered an issue number!\nAre you sure you want to commit without an issue number?"
END

STRINGTABLE
BEGIN
    IDS_COMMITDLG_NOTHINGTOCOMMITUNVERSIONED 
                            "No files were changed or added since the last commit.\nThere's nothing for TortoiseSVN to do here...\nYou can show the unversioned items by enabling them\nwith the checkbox at the bottom."
    IDS_COMMITDLG_HISTORY_TT "Click here to select a recently typed message"
    IDS_COMMITDLG_HISTORYHINT_TT 
                            "Your previously entered log messages have been saved.\nClick here to read and insert them again."
    IDS_COMMITDLG_UNVERSIONEDFOLDERWARNING 
                            "Committing an unversioned folder will not recursively add its child items!\nYou might want to add these folders recursively by using the 'Add...' context menu item.\n\nAre you sure that you want to continue the commit?"
    IDS_COMMITDLG_COPYDEPTH "This commit is not recursive, and there are moved/renamed\nfolders selected for commit. Such moves/renames\nare always performed recursively in the repository.\n\nDo you want to commit anyway?"
    IDS_COMMITDLG_COPYDEPTH_TASK2 
                            "Non-recursive commit of moved/renamed folders."
    IDS_COMMITDLG_COPYDEPTH_TASK3 
                            "Proceed with the commit\nthe renamed/moved folders are committed recursively in the repository."
    IDS_COMMITDLG_COPYDEPTH_TASK4 
                            "Cancel\nChange the selection for the commit."
    IDS_COMMITDLG_COPYDEPTH_TASK1 
                            "This commit is not recursive, and there are moved/renamed folders selected for commit. Such moves/renames are always performed recursively in the repository. Do you want to commit anyway?"
END

STRINGTABLE
BEGIN
    IDS_SPELLEDIT_THESAURUS "Thesaurus"
    IDS_SPELLEDIT_CORRECTIONS "Corrections"
    IDS_SPELLEDIT_NOCORRECTIONS "No spell corrections"
    IDS_SPELLEDIT_NOTHESAURUS "No thesaurus suggestions"
END

STRINGTABLE
BEGIN
    IDS_PROC_CLEANUP        "Cleaning up"
    IDS_PROC_REMOVEFORCE    "%s\nDo you want to remove it anyway?"
    IDS_PROC_IGNORESUCCESS  "Added the file pattern(s)\n%s\nto the ignore list."
    IDS_PROC_RESOLVE        "Are you sure you want to mark the conflicted file(s) as resolved?"
    IDS_PROC_RTFM           "TortoiseSVN is a shell extension.\nThat means it is integrated into the Windows explorer.\nTo use TortoiseSVN please open the explorer and right-click on any folder you like\nto bring up the context menu where you will find all TortoiseSVN commands.\nAnd read the manual!"
    IDS_PROC_UNIGNORESUCCESS 
                            "Removed the file pattern(s)\n%s\nfrom the ignore list."
    IDS_PROC_FORCEMOVE      "Do you really want to move this file or folder?"
    IDS_PROC_OMMITEXTERNALS "Omit externals"
    IDS_PROC_ICONCACHEREBUILT "Shell Icon Cache was rebuilt!"
    IDS_PROC_ICONCACHENOTREBUILT "Error rebuilding Shell Icon Cache!"
    IDS_PROC_EXPORTFOLDERNAME "%1!s!\\%2!s! - Export"
    IDS_PROC_EXPORTFOLDERNAME2 "%1!s!\\%2!s! - Export (%3!d!)"
    IDS_PROC_REMOVEFORCEFOLDER 
                            "The folder %s\ncontains unversioned and/or modified file(s). Do you want to remove it anyway?"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_ONLYEXPLORER_TT 
                            "If activated, prevents the overlays and the context menu from showing in 'save as...' or 'open' dialogs"
    IDS_SETTINGS_MENULAYOUT_TT 
                            "Check those menu entries you want to appear in the top context menu instead of the TortoiseSVN submenu"
    IDS_SETTINGS_EXCLUDELIST_TT 
                            "A newline separated list of paths for which no icon overlays are shown.\r\nIf you add an '?' char at the end of a path, then only this path will be excluded.\r\nIf you add an '*' or no char at all at the end of a path, then all files and subdirs inside that path are excluded too.\r\nAn empty list will allow overlays on all paths."
END

STRINGTABLE
BEGIN
    IDS_CHECKNEWER_YOURVERSION "Your version is: %d.%d.%d.%d"
    IDS_CHECKNEWER_CURRENTVERSION "Current version is: %s"
    IDS_CHECKNEWER_YOURUPTODATE 
                            "You already have the latest version installed."
    IDS_CHECKNEWER_NEWERVERSIONAVAILABLE 
                            "A newer version is available.\r\nPlease go to http://tortoisesvn.net and download the current version."
    IDS_CHECKNEWER_NETERROR "Could not check for a newer version!"
END

STRINGTABLE
BEGIN
    IDS_STATUSLIST_COLSIZE  "Size"
    IDS_STATUSLIST_COLDEPTH "Depth"
    IDS_STATUSLIST_COLFILE  "Path"
    IDS_STATUSLIST_COLSTATUS "Status"
    IDS_STATUSLIST_COLREMOTESTATUS "Remote status"
    IDS_STATUSLIST_COLTEXTSTATUS "Text status"
    IDS_STATUSLIST_COLPROPSTATUS "Property status"
    IDS_STATUSLIST_COLREMOTETEXTSTATUS "Remote text status"
    IDS_STATUSLIST_COLREMOTEPROPSTATUS "Remote property status"
    IDS_STATUSLIST_COLURL   "URL"
    IDS_STATUSLIST_COLEXT   "Extension"
    IDS_STATUSLIST_COLLOCK  "Lock"
    IDS_STATUSLIST_COLLOCKCOMMENT "Lock comment"
    IDS_STATUSLIST_COLAUTHOR "Author"
END

STRINGTABLE
BEGIN
    IDS_STATUSLIST_COLDATE  "Date"
    IDS_STATUSLIST_COLREVISION "Revision"
    IDS_STATUSLIST_COLSVNLOCK "Needs lock"
    IDS_STATUSLIST_COLCOPYFROM "Copied from URL"
    IDS_STATUSLIST_COLMODIFICATIONDATE "Modification date"
    IDS_STATUSLIST_COLFILENAME "Filename"
    IDS_STATUSLIST_COLREMOTEREVISION "Remote revision"
    IDS_STATUSLIST_COLLOCKDATE "Lock Date"
    IDS_STATUSLIST_MULTIPLETARGETS "(multiple targets selected)"
    IDS_STATUSLIST_PROPONLY "(property change only)"
    IDS_STATUSLIST_COPYFROM "copied from\r\n%1!s! - revision %2!ld!"
    IDS_STATUSLIST_SWITCHEDTO "switched to\r\n%s"
    IDS_STATUSLIST_TREECONFLICT "tree conflict"
    IDS_STATUSLIST_COLCOPYFROMREV "Copied from revision"
END

STRINGTABLE
BEGIN
    IDS_SVNERR_CHECKPATHORURL "Check the path and/or URL you've entered."
    IDS_SVNERR_RUNCLEANUP   "Please execute the 'Cleanup' command."
    IDS_SVNERR_UPDATEFIRST  "You have to update your working copy first."
    IDS_SVNERR_CLEANUPORFRESHCHECKOUT 
                            "Try a 'Cleanup'. If that doesn't work you need to do a fresh checkout."
    IDS_SVNERR_UNLOCKFAILED "If you want to break the lock, use the 'Check For Modifications' dialog or the repository browser."
    IDS_SVNERR_UNLOCKFAILEDNOLOCK 
                            "The lock has already been broken from another working copy"
    IDS_SVNERR_POSTCOMMITHOOKFAILED 
                            "This error was generated by a custom post-commit hook script on the Subversion server.\nPlease contact your server administrator for help with resolving this issue."
    IDS_SVNERR_POSTLOCKHOOKFAILED 
                            "This error was generated by a custom post-lock hook script on the Subversion server.\nPlease contact your server administrator for help with resolving this issue."
    IDS_SVNERR_POSTUNLOCKHOOKFAILED 
                            "This error was generated by a custom post-unlock hook script on the Subversion server.\nPlease contact your server administrator for help with resolving this issue."
    IDS_SVNERR_HOOKFAILED   "This error was generated by a custom hook script on the Subversion server.\nPlease contact your server administrator for help with resolving this issue."
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_INCLUDELIST_TT 
                            "A newline separated list of paths for which icon overlays are shown.\r\nIf you add an '?' char at the end of a path, then only this path will be included.\r\nIf you add an '*' or no char at all at the end of a path, then all files and subdirs inside that path are included too."
    IDS_SETTINGS_CLEARAUTH_TT 
                            "Clears the stored authentication.\r\nYou will have to enter your username/password again for all repositories."
    IDS_SETTINGS_COMMITFILETIMES_TT 
                            "If set, TortoiseSVN will set the filetimes to the time they\r\nwere last committed. If not set, TortoiseSVN uses the current time."
    IDS_SETTINGS_PROXYEXCEPTIONS_TT 
                            "Use '*' as a wildcard character when specifying an exception.\r\nTo separate multiple exceptions, use commas (',').\r\nExample: *.mylan.com, *.company.com"
    IDS_SETTINGS_READONLYNAME "readonly"
    IDS_SETTINGS_LOCKEDNAME "locked"
    IDS_SETTINGS_AUTOCOMPLETION_TT 
                            "Auto-complete suggests words (usually class or member names)\r\nfrom the files that you have changed as you type a log message."
    IDS_SETTINGS_AUTOCOMPLETIONTIMEOUT_TT 
                            "The time in seconds after which the parsing of the selected files stops.\r\nA lower value will make the auto-completion list available sooner,\r\nbut maybe not scan all files."
    IDS_SETTINGS_RECURSIVE_TT 
                            "Disable this option if you have really big working copies and experience\r\ntoo much disk access when browsing the working copy."
    IDS_SETTINGS_USEWCURL_TT 
                            "If enabled, the Merge dialog initializes the 'From:' URL with the URL of the selected working copy\r\ninstead of the last used URL."
    IDS_SETTINGS_SPELLCHECKER_TT 
                            "Enables the spellchecker only if the\ntsvn:projectlanguage property is set."
    IDS_SETTINGS_REPOCHECK_TT 
                            "If enabled, the repository is contacted when the dialog starts up.\r\nYou don't have to click on 'Check Repository' anymore."
END

STRINGTABLE
BEGIN
    IDS_PROGRS_CONFLICTSOCCURED_WARNING "Warning!"
    IDS_PROGRS_CONFLICTSOCCURED "One or more files are in a conflicted state."
    IDS_PROGRS_DRYRUN       "Test Only"
    IDS_PROGRS_FINISHED     "Completed!"
END

STRINGTABLE
BEGIN
    IDS_PROGRS_PATHATREV    "%1!s! - at revision: %2!d!"
    IDS_PROGRS_UPDATEPATH   "Updating %s"
    IDS_PROGRS_TIME         "%1!ld! minute(s) and %2!ld! second(s)"
    IDS_PROGRS_FINALINFO    "%1!s! in %2!s!"
    IDS_PROGRS_EXTERNALSEXCLUDED "Externals excluded"
    IDS_PROGRS_EXTERNALSINCLUDED "Externals included"
    IDS_PROGRS_IGNOREDINCLUDED "Ignored items included"
    IDS_PROGRS_REVERTMARKERS_TASK2 "File contains conflict markers"
    IDS_PROGRS_REVERTMARKERS_TASK3 
                            "Mark as resolved\nThe conflict is resolved."
    IDS_PROGRS_REVERTMARKERS_TASK4 "Cancel\nThe conflict is not resolved."
    IDS_PROGRS_COPYDEPTH_WARNING 
                            "The depth of this commit is ""%s"", but copies are always performed recursively in the repository."
    IDS_PROGRS_STARTING_EXTERNALS "Starting externals..."
END

STRINGTABLE
BEGIN
    IDS_SSL_SAVE_CERTPATH   "Save client certificate path"
END

STRINGTABLE
BEGIN
    IDS_REPOSTATUS_HEADREV  "Lowest shown revision: %1!ld! - Highest shown revision: %2!ld!\nHEAD revision: %3!ld!"
    IDS_REPOSTATUS_WCINFO   "Lowest shown revision: %1!ld! - Highest shown revision: %2!ld!"
END

STRINGTABLE
BEGIN
    IDS_STATGRAPH_COMMITSBYAUTHOR "Commits by author"
    IDS_STATGRAPH_COMMITSBYDATE "Commits by date"
    IDS_STATGRAPH_COMMITSBYDATEY "commits"
END

STRINGTABLE
BEGIN
    IDS_STATGRAPH_COMMITSBYAUTHORX "author"
    IDS_STATGRAPH_COMMITSBYAUTHORY "commits"
    IDS_STATGRAPH_STATS     "Statistics"
    IDS_STATGRAPH_OTHERGROUP "Others"
    IDS_STATGRAPH_EMPTYAUTHOR "(unknown)"
    IDS_STATGRAPH_COMMITSBYDATEXWEEK "week"
    IDS_STATGRAPH_COMMITSBYDATEXMONTH "month"
    IDS_STATGRAPH_COMMITSBYDATEXQUARTER "quarter of year"
    IDS_STATGRAPH_COMMITSBYDATEXYEAR "year"
    IDS_STATGRAPH_PERCENTAGE_OF_AUTHORSHIP "Percent of authorship"
    IDS_STATGRAPH_PERCENTAGE_OF_AUTHORSHIPY "Percents"
END

STRINGTABLE
BEGIN
    IDS_STATGRAPH_COMMITSBYDATEXDAY "day"
    IDS_STATGRAPH_NUMBEROFUNIT "Number of %s"
    IDS_STATGRAPH_COMMITSBYUNIT "Commits each %s"
    IDS_STATGRAPH_FILECHANGESBYUNIT "File changes each %s"
END

STRINGTABLE
BEGIN
    IDS_CLIPBOARD_PROGRESS_DEST "Clipboard"
END

STRINGTABLE
BEGIN
    IDS_SVNACTION_FAILEDEXTERNAL "External failed"
    IDS_SVNACTION_SKIPMISSING "Skipped missing target"
    IDS_SVNACTION_ADDING    "Adding"
    IDS_SVNACTION_DELETING  "Deleting"
    IDS_SVNACTION_MERGED    "Merged"
    IDS_SVNACTION_CONFLICTED "Conflicted"
    IDS_SVNACTION_UNLOCKED  "Unlocked"
    IDS_SVNACTION_LOCKEDBY  "Locked by %s"
    IDS_SVNACTION_FAILEDLOCK "Lock failed"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_PROGTITLE  "Revision graph"
    IDS_REVGRAPH_PROGGETREVS "Getting information from repository..."
    IDS_REVGRAPH_PROGCURRENTREV "Revision %ld"
    IDS_REVGRAPH_PROGPREPARING "... checking cache and preparing log query"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_PROGCANCEL "Cancelling operation..."
    IDS_REVGRAPH_PROGREADINGWC "... reading working copy status"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_BOXTOOLTIP "Revision: %1!ld! %2!s!\r\nURL: %3!s!\r\n%4!s!Author: %5!s!\r\nDate: %6!s!\r\n\r\nLogmessage:\r\n%7!s!"
    IDS_REVGRAPH_STATUSBARURL "Showing graph for %s"
    IDS_REVGRAPH_STATUSBARNUMNODES "Showing %ld nodes"
    IDS_REVGRAPH_BOXTOOLTIP_TAGGED 
                            "Revision: %1!ld! %2!s!\r\nURL: %3!s!\r\n%4!s!Author: %5!s!\r\nDate: %6!s!\r\n\r\nTags (%7!d!):%8!s!\r\n\r\nLogmessage:\r\n%9!s!"
    IDS_REVGRAPH_TAG        "%s"
    IDS_REVGRAPH_TAGALIAS   "alias: %s"
    IDS_REVGRAPH_TAGDELETED "deleted"
    IDS_REVGRAPH_TAGMODIFIED "modified"
    IDS_REVGRAPH_TAGATTRIBUTED "(%1!s!) %2!s!"
    IDS_REVGRAPH_TAGALIASATTRIBUTED "alias (%1!s!): %2!s!"
    IDS_REVGRAPH_SAVEPIC    "&Save graph as..."
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_POPUP_EXPAND_ALL "E&xpand all"
    IDS_REVGRAPH_POPUP_JOIN_ALL "&Join all"
    IDS_REVGRAPH_POPUP_EXPAND_ABOVE "Exp&and source tree"
    IDS_REVGRAPH_POPUP_COLLAPSE_ABOVE "Coll&apse source tree"
    IDS_REVGRAPH_POPUP_EXPAND_RIGHT "E&xpand sub-trees"
    IDS_REVGRAPH_POPUP_COLLAPSE_RIGHT "C&ollapse sub-trees"
    IDS_REVGRAPH_POPUP_EXPAND_BELOW "Expand &following tree"
    IDS_REVGRAPH_POPUP_COLLAPSE_BELOW "Collapse &following tree"
    IDS_REVGRAPH_POPUP_JOIN_ABOVE "Join with source tree"
    IDS_REVGRAPH_POPUP_SPLIT_ABOVE "Split &source tree"
    IDS_REVGRAPH_POPUP_JOIN_RIGHT "&Join with sub-trees"
    IDS_REVGRAPH_POPUP_SPLIT_RIGHT "Split sub-trees"
    IDS_REVGRAPH_POPUP_JOIN_BELOW "Join with following &tree"
    IDS_REVGRAPH_POPUP_SPLIT_BELOW "Split following &tree"
    IDS_REVGRAPH_POPUP_UPDATE "Update WC to revision"
    IDS_REVGRAPH_POPUP_SWITCHTOHEAD "&Switch WC to path@HEAD"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_POPUP_SWITCH "&Switch WC to path and revision"
    IDS_REVGRAPH_POPUP_CFM  "Check for &modifications"
    IDS_REVGRAPH_BOXTOOLTIP_COPYSOURCE "Copied from: %1!s!@%2!ld!\r\n"
    IDS_REVGRAPH_BOXTOOLTIP_WC 
                            "Your working copy contains modifications.\nLowest revision in working copy: %1!ld!\nPath: %2!s!"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_NODEIS_TAG "(tagged)"
    IDS_REVGRAPH_NODEIS_BRANCH "(create branch)"
    IDS_REVGRAPH_NODEIS_COPY "(copy)"
    IDS_REVGRAPH_NODEIS_RENAME "(rename)"
    IDS_REVGRAPH_NODEIS_HEAD "(modified, HEAD revision)"
    IDS_REVGRAPH_NODEIS_MODIFIED "(modified)"
    IDS_REVGRAPH_NODEIS_COPYSOURCE 
                            "(no modification but copy created from here)"
    IDS_REVGRAPH_NODEIS_DELETE "(delete)"
    IDS_REVGRAPH_NODEIS_ADDED "(created)"
    IDS_REVGRAPH_NODEWC_LINE "Working copy: %s\n"
    IDS_REVGRAPH_NODEWC_COMMITTED "committed revision"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_NODEWC_MIN_COMMITTED "min. committed revision"
    IDS_REVGRAPH_NODEWC_MAX_COMMITTED "max. committed revision"
    IDS_REVGRAPH_NODEWC_AT  "at this revision"
    IDS_REVGRAPH_NODEWC_MIN_AT "min. at this revision"
    IDS_REVGRAPH_NODEWC_MAX_AT "max. at this revision"
    IDS_REVGRAPH_NODEIS_WORKINGCOPY 
                            "(no modification but relevant for working copy)"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_DLGTITLEOFFLINE "%s (offline)"
    IDS_WARN_LOCKOUTDATED_TASK2 "Locking failed"
    IDS_WARN_LOCKOUTDATED_TASK3 
                            "Update\nUpdate the file and try locking again."
    IDS_WARN_LOCKOUTDATED_TASK4 "Cancel"
END

STRINGTABLE
BEGIN
    IDS_STATUSLIST_CONTEXT_ADD "Add"
    IDS_STATUSLIST_CONTEXT_EXPLORE "Explore to"
    IDS_STATUSLIST_CONTEXT_RESOLVED "Resolved"
    IDS_STATUSLIST_CONTEXT_COMMIT "Commit..."
    IDS_STATUSLIST_CONTEXT_PROPERTIES "Properties..."
    IDS_STATUSLIST_CONTEXT_COPY "Copy paths to clipboard"
    IDS_STATUSLIST_CONTEXT_COPYEXT "Copy all information to clipboard"
    IDS_STATUSLIST_CONTEXT_REPAIRMOVE "Repair move"
    IDS_STATUSLIST_CONTEXT_REMOVEFROMCS "Remove from changelist"
    IDS_STATUSLIST_CONTEXT_CREATECS "<new changelist>"
    IDS_STATUSLIST_CONTEXT_MOVETOCS "Move to changelist"
    IDS_STATUSLIST_CONTEXT_ADD_RECURSIVE "Add..."
    IDS_STATUSLIST_CONTEXT_REPAIRCOPY "Repair copy"
    IDS_STATUSLIST_CONTEXT_COPYCOL "Copy column to clipboard"
END

STRINGTABLE
BEGIN
    IDS_SCIEDIT_UNDO        "&Undo"
    IDS_SCIEDIT_REDO        "&Redo"
    IDS_SCIEDIT_CUT         "Cu&t"
    IDS_SCIEDIT_COPY        "Cop&y"
    IDS_SCIEDIT_PASTE       "&Paste"
    IDS_SCIEDIT_SELECTALL   "Select &All"
    IDS_SCIEDIT_ADDWORD     "Add '%s' to dictionary"
    IDS_SCIEDIT_SPLITLINES  "Split lines"
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_ERR_GDIINIT "GDI+ couldn't be initialized!"
    IDS_REVGRAPH_ERR_NOBITMAP 
                            "GDI+ couldn't create a bitmap object. You probably don't have enough memory."
    IDS_REVGRAPH_ERR_NOENCODER "No image encoder found for %s."
    IDS_REVGRAPH_ERR_NOGRAPH "No graph available"
    IDS_REVGRAPH_ERR_NOMEMORY 
                            "Not enough memory!\nTry reducing the size of the revision graph by either\ncollapsing nodes or reducing the zoom factor."
    IDS_REVGRAPH_ERR_NOGRAPHFORROOT 
                            "Graphs for repository roots are always empty!"
END

STRINGTABLE
BEGIN
    IDS_PROGRS_COMMITT_TRUNK_TASK1 
                            "Your working copy points to %s which appears to be a tag!\nYou should first switch to a branch or the main trunk before committing."
    IDS_PROGRS_COMMITT_TRUNK_TASK2 "Committing to a tag"
    IDS_PROGRS_COMMITT_TRUNK_TASK3 "Commit\nCommit the changes to the target."
    IDS_PROGRS_COMMITT_TRUNK_TASK4 "Cancel\nDo not commit to a tag."
    IDS_PROGRS_TITLE_RENAME "Rename/move"
    IDS_PROGRS_TITLE_LOCK   "Lock"
    IDS_PROGRS_TITLE_UNLOCK "Unlock"
    IDS_PROGRS_TITLE_MERGEREINTEGRATE "Merge Reintegrate"
END

STRINGTABLE
BEGIN
    IDS_PROGRS_CLOSE_MANUAL "Close manually"
    IDS_PROGRS_CLOSE_NOERROR "Auto-close if no errors"
    IDS_PROGRS_CLOSE_NOCONFLICTS "Auto-close if no conflicts"
    IDS_PROGRS_CLOSE_NOMERGES "Auto-close if no merges, adds or deletes"
END

STRINGTABLE
BEGIN
    IDS_COMMITDLG_POPUP_PASTEFILELIST "Paste filename list"
    IDS_COMMITDLG_WARNNOISSUE_TASK1 
                            "Every commit should be assigned to an issue."
END

STRINGTABLE
BEGIN
    IDS_LOG_BUGIDS          "Bug-ID"
    IDS_LOG_FILTER_PATHS    "Paths"
    IDS_LOG_FILTER_AUTHORS  "Authors"
    IDS_LOG_FILTER_MESSAGES "Messages"
    IDS_LOG_FILTER_REVS     "Revisions"
    IDS_LOG_FILTER_REGEX    "Use regular expression"
END

STRINGTABLE
BEGIN
    IDS_LOG_FILTER_BUGIDS   "Bug-IDs"
    IDS_LOG_FILTER_CASESENSITIVE "Case-sensitive"
    IDS_LOG_FILTER_DATERANGE "Date Range"
    IDS_LOG_FILTER_BY       "Filter by"
    IDS_LOG_FILTER_REGEX_TT "Regular expressions filter:\r\n.   : any character\r\nc+   : match character c one or more times\r\nc*   : match character c zero or more times\r\n^   : start of line\r\n$   : end of line\r\n(string){n} : match string n times\r\n(abcd)   : subexpression\r\n[aei0-9]   : match a,e,i and 0..9\r\n[^aei0-9] : anything but a,e,i and 0..9\r\n\r\n\\w   : matches a-z,A-Z,0-9 and _\r\n\\W   : any non-alphanumeric character\r\n\\d   : digits 0-9\r\n\\s   : whitespaces"
    IDS_LOG_FILTER_SUBSTRING_TT 
                            "Sub-string filter:\r\n* Specify one or more strings, separated by spaces. They will be evaluated left to right.\r\n* Put a - in front of a sub-string to exclude revisions that contain this sub-string.\r\n* Put a + in front of a sub-string to include revisions that may not match the filter so far.\r\n* Enclose strings that contain spaces etc. with "".\r\n* Put a ! at the beginning of the line to invert the whole filter condition.\r\n\r\nExamples:\r\nmyname  2008    : my commits of 2008\r\n.h  -.cpp              : commits that changed headers but no implementations\r\n.doc +.xls 2010  : commits from 2010 with .doc or .xls files in it\r\n"" ""                        : commits with spaces (ex. when searching in paths only)\r\n-""""show all""""        : commits that don't contain the string ""show all""\r\n!myname  .cpp    : everything but my commits to .cpp files"
    IDS_LOG_ACTIONS         "Actions"
END

STRINGTABLE
BEGIN
    IDS_SVNACTION_FAILEDUNLOCK "Unlock failed"
    IDS_SVNACTION_EXISTS    "Versioned"
    IDS_SVNACTION_CHANGELISTSET "Assigned to changelist '%s'"
    IDS_SVNACTION_CHANGELISTCLEAR "Removed from changelist"
    IDS_SVNACTION_CHANGELISTFAILED "Failed to set/remove changelist '%s'"
    IDS_SVNACTION_MERGEBEGINMULTIPLE "Merging r%1!ld! through r%2!ld!"
    IDS_SVNACTION_MERGEBEGINSINGLE "Merging r%ld"
    IDS_SVNACTION_CHANGELISTMOVED "Changelist %s moved"
    IDS_SVNACTION_MERGEBEGINNONE "Merging differences between repository URLs"
    IDS_SVNACTION_MERGEBEGINSINGLEREVERSE "Reverse merging %ld"
    IDS_SVNACTION_MERGEBEGINMULTIPLEREVERSE 
                            "Reverse merging %1!ld! through %2!ld!"
    IDS_SVNACTION_TREECONFLICTED "Tree conflict"
    IDS_SVN_SUMMARIZENORMAL "Normal"
    IDS_SVN_SUMMARIZEADDED  "Added"
    IDS_SVN_SUMMARIZEMODIFIED "Modified"
    IDS_SVN_SUMMARIZEDELETED "Deleted"
END

STRINGTABLE
BEGIN
    IDS_LOCK_MESSAGEHINT    "Enter a lock message (optional):"
    IDS_LOCK_STEALCHECK     "Steal the lock"
END

STRINGTABLE
BEGIN
    IDS_REPOBROWSE_SAVEASPROGTITLE "Saving files"
    IDS_REPOBROWSE_SAVEAS_LINE1 "Saving file %s"
    IDS_REPOBROWSE_SAVEAS_LINE2 "to %s"
    IDS_REPOBROWSE_COPYTOWCPROGTITLE "Copy to working copy"
    IDS_REPOBROWSE_COPYTOWC_LINE1 "Copy %s"
    IDS_REPOBROWSE_COPYTOWC_LINE2 "to %s"
    IDS_REPOBROWSE_COPYDROP "Copy items to here"
    IDS_REPOBROWSE_MOVEDROP "Move items to here"
END

STRINGTABLE
BEGIN
    IDS_REPOBROWSE_COPYRENAMEDROP "Copy and rename item to here"
    IDS_REPOBROWSE_MOVERENAMEDROP "Move and rename item to here"
    IDS_REPOBROWSE_INITWAIT "Please wait while the repository browser is initializing..."
    IDS_REPOBROWSE_WAIT     "Please wait..."
    IDS_REPOBROWSE_LISTING  "Listing repository recursively..."
    IDS_REPOBROWSE_LISTINGURL "url: %1!s!"
END

STRINGTABLE
BEGIN
    IDS_REPOBROWSE_INFO     "%1!s!\r\nShowing %2!d! files and %3!d! folders, %4!d! items in total"
    IDS_REPOBROWSE_INFOEXT  "External ""%1!s!""\r\nRevision %2!s!"
    IDS_REPOBROWSE_INFODIR  "%1!s!\r\nRevision %2!s!, Author %3!s!, Date %4!s!"
    IDS_REPOBROWSE_INFOFILE "%1!s!\r\nRevision %2!s!, Author %3!s!, Size %4!s!, Date %5!s!"
    IDS_REPOBROWSE_QUERYFAILURE "Repository query failed. Refresh to retry."
    IDS_REPOBROWSE_MULTIIMPORT 
                            "You dropped more than one file or folder to add to the repository.\nIt's not possible to do that in one step, so TortoiseSVN will add each file/folder\nindividually, creating a new revision for every added item.\n\nDo you still want to do this?"
    IDS_REPOBROWSE_MULTIIMPORT_TASK1 
                            "You dropped more than one file or folder to add to the repository.\nIt's not possible to do that in one step, so TortoiseSVN will add each file/folder\nindividually, creating a new revision for every added item."
    IDS_REPOBROWSE_MULTIIMPORT_TASK2 "More than one item dropped."
    IDS_REPOBROWSE_MULTIIMPORT_TASK3 
                            "Import\nThe items are imported, creating a new revision for each item."
    IDS_REPOBROWSE_MULTIIMPORT_TASK4 "Cancel\nThe items are not imported."
END

STRINGTABLE
BEGIN
    IDS_LOG_POPUP_REVERTREVS "&Revert changes from these revisions"
    IDS_LOG_POPUP_COPYTOCLIPBOARD "Copy to clipboard"
    IDS_LOG_POPUP_REVERTTOREV "R&evert to this revision"
    IDS_LOG_POPUP_BLAMECOMPARE "Compare and &blame with working BASE"
    IDS_LOG_POPUP_BLAMEREVS "&Blame revisions"
    IDS_LOG_POPUP_BLAMEDIFF "&Blame changes"
    IDS_LOG_POPUP_VIEWREV   "View revision in &webviewer"
    IDS_LOG_POPUP_VIEWPATHREV "View revision for path in &webviewer"
    IDS_LOG_POPUP_COMPAREWITHPREVIOUS "Compare with previous revision"
    IDS_LOG_POPUP_BLAMEWITHPREVIOUS "Compare and blame with previous revision"
    IDS_LOG_POPUP_BLAME     "Blame..."
    IDS_LOG_POPUP_GNUDIFF_CH "Show changes as &unified diff"
    IDS_LOG_POPUP_GETMERGELOGS "Get merge logs"
    IDS_LOG_POPUP_MERGEREV  "Merge revision to..."
    IDS_LOG_POPUP_MERGEREVS "Merge revisions to..."
    IDS_LOG_POPUP_UPDATEREV "&Update item to revision..."
END

STRINGTABLE
BEGIN
    IDS_REVGRAPH_POPUP_COMPAREREVS "&Compare revisions"
    IDS_REVGRAPH_POPUP_COMPAREHEADS "Compare &HEAD revisions"
    IDS_REVGRAPH_POPUP_UNIDIFFREVS "&Unified diff"
    IDS_REVGRAPH_POPUP_UNIDIFFHEADS "Unified &diff of HEAD revisions"
END

STRINGTABLE
BEGIN
    IDS_REPOBROWSE_SHOWREVPROP "Show revision properties"
    IDS_REPOBROWSE_CREATELINK "Create shortcut"
    IDS_REPOBROWSE_URLALREADYEXISTS "The target URL\n%s\nalready exists!"
    IDS_REPOBROWSE_INVALIDDROPDATA "Invalid data object dropped!"
END

STRINGTABLE
BEGIN
    IDS_FILEDIFF_FILE       "File"
    IDS_FILEDIFF_ACTION     "Action"
    IDS_FILEDIFF_WAIT       "Please wait while differences are obtained..."
END

STRINGTABLE
BEGIN
    IDS_MERGE_SELECTRANGE   "Select revision range"
    IDS_MERGE_SELECTENDREVISION "Select end revision"
    IDS_MERGE_SELECTSTARTREVISION "Select start revision"
    IDS_MERGE_RECORDONLY    "Record Only"
    IDS_MERGE_MERGE         "&Merge"
    IDS_MERGE_FORCE         "Force"
    IDS_MERGE_WCDIRTY       "The target working copy has local modifications!"
    IDS_MERGE_WCDIRTYASK    "The target working copy has local modifications.\nDo you want to merge anyway?"
    IDS_MERGE_WCDIRTYASK_TASK1 
                            "The target working copy '%s' has local modifications. It is recommended to commit those changes first before merging new changes."
    IDS_MERGE_WCDIRTYASK_TASK2 "The target has local modifications"
    IDS_MERGE_WCDIRTYASK_TASK3 "Proceed with the merge."
    IDS_MERGE_WCDIRTYASK_TASK4 "Cancel"
END

STRINGTABLE
BEGIN
    IDS_SVNPROGRESS_MENUUSETHEIRS "Resolve conflict using 'theirs'"
    IDS_SVNPROGRESS_MENUUSEMINE "Resolve conflict using 'mine'"
    IDS_SVNPROGRESS_MENUOPENPARENT "Open parent folder"
    IDS_SVNPROGRESS_MENUMARKASRESOLVED "Mark as resolved"
    IDS_SVNPROGRESS_RESOLVED "Resolved:\n%s"
END

STRINGTABLE
BEGIN
    IDS_PROC_NEWNAMECOPY    "Copy: New name for %s"
    IDS_PROC_NEWNAMEMOVE    "Move: New name for %s"
    IDS_PROC_NEWNAMELABEL   "New name:"
    IDS_PROC_MULTIRENAME    "TortoiseSVN has detected similar filenames. Do you want the files:%s\nto be renamed too?"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_UNVERSIONEDRECURSE_TT 
                            "If set, files inside unversioned folders can be shown in the status control.\r\nThe status control is used for example in the commit dialog."
    IDS_SETTINGS_MAXHISTORY_TT 
                            "Specifies how many items you want to keep in the most recent log messages dialog."
    IDS_SETTINGS_CACHEDEFAULT_TT 
                            "Status cache kept in an external process, can show the overlay recursively"
    IDS_SETTINGS_CACHESHELL_TT 
                            "Status cache only for one folder, no recursive overlays"
    IDS_SETTINGS_CACHENONE_TT 
                            "No status cache. Only versioned folders get an overlay, files don't get an overlay"
    IDS_SETTINGS_SAVEDDATA_LOGHIST_TT 
                            "Clears %1!ld! log messages stored for %2!ld! working copies"
    IDS_SETTINGS_SAVEDDATA_URLHIST_TT 
                            "Clears %1!ld! URLs stored for %2!ld! working copies"
    IDS_SETTINGS_SAVEDDATA_RESIZABLE_TT 
                            "Clears the stored sizes and positions of %ld dialogs"
    IDS_SETTINGS_SAVEDDATA_AUTH_TT 
                            "Clears %1!ld! username/password pairs, %2!ld! ssl certificates and %3!ld! usernames"
    IDS_SETTINGS_RESTARTSYSTEM 
                            "You must restart your system for the changes to take effect."
    IDS_SETTINGS_UNVERSIONEDASMODIFIED_TT 
                            "If set, then unversioned files will mark the status of the parent directory as modified\r\ni.e. they get the modified overlay icon."
    IDS_SETTINGS_CHECKOUTPATH_TT 
                            "The default path to checkout to if nothing else is specified"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_REPOSITORY_URL "Repository URL"
    IDS_SETTINGS_REPOSITORY_SIZE "Cache size [kB]"
    IDS_SETTINGS_CONNECTIVITY_ASKUSER "Ask the user"
    IDS_SETTINGS_CONNECTIVITY_OFFLINENOW "Operate from log cache for now only"
    IDS_SETTINGS_CONNECTIVITY_OFFLINEFOREVER 
                            "Never try to contact the repository again"
    IDS_SETTINGS_LOGCACHE_UPDATETITLE "Updating log cache"
    IDS_SETTINGS_DELETEDCACHE "URL not known (UUID: %s)"
    IDS_SETTINGS_CACHEDELETEQUESTION 
                            "Are you sure you want to remove the cache of the selected %d items?"
    IDS_SETTINGS_MULTIPLEURLSFORUUID "multiple URLs (e.g. %s)"
    IDS_SETTINGS_CREATELIB_TT 
                            "Creates a library folder with special settings for Subversion working copies"
    IDS_SETTINGS_CACHEDELETEQUESTION_TASK2 "Delete Repository cache"
    IDS_SETTINGS_CACHEDELETEQUESTION_TASK3 "Delete\nRemove the cache files."
    IDS_SETTINGS_CACHEDELETEQUESTION_TASK4 "Cancel\nLeave the cache on disk."
    IDS_SETTINGS_REPOBROWSER_PREFETCH_TT 
                            "Fetches the contents of folders in the background so browsing is faster"
END

STRINGTABLE
BEGIN
    IDS_CONNECTIONSTATE_ONLINE "online"
    IDS_CONNECTIONSTATE_TEMPOFFLINE "temp. offline"
    IDS_CONNECTIONSTATE_OFFLINE "offline"
END

STRINGTABLE
BEGIN
    IDS_SVN_PROGRESS_SPEED  "Transferring at %s"
    IDS_SVN_PROGRESS_TOTALTRANSFERRED "%I64d kBytes transferred"
    IDS_SVN_PROGRESS_TOTALMBTRANSFERRED "%.2f MBytes transferred"
    IDS_SVN_PROGRESS_TOTALANDSPEED "%1!s!, at %2!s!"
    IDS_SVN_PROGRESS_TOTALBYTESTRANSFERRED "%I64d Bytes transferred"
    IDS_SVN_PROGRESS_BYTES_SEC "%I64d Bytes/s"
    IDS_SVN_PROGRESS_KBYTES_SEC "%.2f kBytes/s"
END

STRINGTABLE
BEGIN
    IDS_PROGRESS_COMPARE    "Comparing %1!s! to %2!s!"
    IDS_PROGRESS_INFO       "Getting information..."
    IDS_PROGRESSGETFILEREVISION "Getting file %1!s!, revision %2!s!"
    IDS_PROGRESSIMPORT      "Importing file %1!s!"
    IDS_PROGRESSREVISIONTEXT "Revision %1!s!"
    IDS_LOG_REVERT_CONFIRM_TASK5 
                            "The changes will be applied to your working copy with a reverse merge operation. The repository won't be affected. You can review the changes before you commit them."
    IDS_LOG_REVERT_CONFIRM_TASK1 
                            "Do you want to revert all changes in\n%s\nwhich were made in this revision?"
    IDS_LOG_REVERT_CONFIRM_TASK6 
                            "Do you want to revert all changes in\n%s\nand go back to this revision?"
END

STRINGTABLE
BEGIN
    IDS_COLOURPICKER_CUSTOMTEXT "More..."
    IDS_COLOURPICKER_DEFAULTTEXT "Automatic"
END

STRINGTABLE
BEGIN
    IDS_COPYDLG_FROMURL     "&From URL:"
    IDS_SWITCH_STICKYDEPTH_TT "Remember the depth for this working copy"
END

STRINGTABLE
BEGIN
    ID_VIEW_SHOWALLREVISIONS 
                            "Shows all revisions where changes were made to this item"
    ID_VIEW_GROUPBRANCHES   "Group by branch"
END

STRINGTABLE
BEGIN
    ID_VIEW_EXACTCOPYSOURCE "Branch at copy-from-rev even if there was no change in that revision"
    ID_VIEW_SHOWDIFFPATHS   "Show only the changed parts of the path name. Replace unchanged elements with dots."
    ID_VIEW_FOLDTAGS        "Show tags on the copy source, not as separate nodes"
    ID_VIEW_REDUCECROSSLINES 
                            "Prevents most cases in which connection lines cross revision nodes"
    ID_VIEW_REMOVEDELETEDONES "Hide deleted branches and tags"
    ID_VIEW_SHOWTREESTRIPES "If the graph contains multiple trees, separate them by slight variations in background color."
    ID_VIEW_TOPALIGNTREES   "Shift trees to the top of the window. Alignment to other trees will be lost."
    ID_VIEW_SHOWWCREV       "Mark current revision of your working copy"
    ID_VIEW_REMOVEUNCHANGEDBRANCHES 
                            "Hide all branches that did not modify the item"
    ID_VIEW_SHOWWCMODIFICATION "Check working copy for modifications"
END

STRINGTABLE
BEGIN
    ID_VIEW_REMOVETAGS      "Hide all tags"
END

STRINGTABLE
BEGIN
    ID_VIEW_ZOOM100         "Zoom 100%"
    ID_VIEW_ZOOMHEIGHT      "Zoom to fit in height"
    ID_VIEW_ZOOMWIDTH       "Zoom to fit in width"
    ID_VIEW_ZOOMALL         "Zoom to fit"
    ID_VIEW_SHOWOVERVIEW    "Show an overview of the whole graph"
    ID_VIEW_TOPDOWN         "Show oldest node at top"
    ID_VIEW_SHOWHEAD        "Show HEAD revision nodes"
END

STRINGTABLE
BEGIN
    IDS_EDITPROPS_NUMPATHS  "%ld paths"
    IDS_MSGBOX_OK           "&OK"
    IDS_MSGBOX_CANCEL       "&Cancel"
    IDS_MSGBOX_IGNORE       "Ignore"
    IDS_MSGBOX_RETRY        "Retry"
    IDS_MSGBOX_ABORT        "Abort"
    IDS_MSGBOX_HELP         "&Help"
    IDS_MSGBOX_YES          "Yes"
END

STRINGTABLE
BEGIN
    IDS_WARN_LOCKOUTDATED   "Locking failed because a newer version exists!\nDo you want to update and try again?"
    IDS_WARN_SVNNEEDSLOCK   "Getting a lock for files without the 'svn:needs-lock' property will not prevent others from editing them in their working copies.\nTo enable strict locking please add the 'svn:needs-lock' property to all files that need locking, and commit those files.\nEach file will have the file-system read-only flag set, and getting a lock will make the file writable.\nNote that other users will need to update their working copies before they see the files as read-only."
    IDS_WARN_RELOCATEREALLYTITLE "Relocate Warning"
    IDS_WARN_COPYHEADWITHLOCALMODS 
                            "Your working copy has local modifications.\nIf you branch/tag from the HEAD revision, your local changes won't\nshow up in the branch/tag!"
    IDS_WARN_ADDCASERENAMED "You're trying to add the item\n'%1!s!',\nbut the item\n'%2!s!'\nalready exists.\n\nIt seems the item got renamed outside Subversion but only with case changes.\nDo you really want to add it?"
    IDS_WARN_ADDCASERENAMED_RENAME "Fix case of item and do not add it"
    IDS_WARN_ADDCASERENAMED_ADD "Add the item anyway"
    IDS_WARN_NOVALIDPATH_TASK1 
                            "The path/URL '%s' seems to be illegal on Windows!\nYou can try it anyway, but you might get an error later."
    IDS_WARN_NOVALIDPATH_TASK2 "Illegal path"
    IDS_WARN_NOVALIDPATH_TASK3 
                            "Proceed with the entered path\nI'm aware of the possible problems."
    IDS_WARN_NOVALIDPATH_TASK4 "Cancel\nI will enter a different path/URL."
    IDS_WARN_NOVALIDPATH_TASK5 
                            "A valid path on windows must not contain '<>|""?*:' or one of the following device names:\ncom1-com9, lpt1-lpt9, prn, aux, con, nul, clock$\nSee the <a href=""http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx"">documentation</a> from Microsoft about this."
    IDS_WARN_RELOCATEREALLY_TASK1 
                            "It seems you are trying to relocate your working copy to a different path inside the same repository.\nFrom: %1!s!\nTo: %2!s!\n\nImproper use of relocate will corrupt your working copy!"
    IDS_WARN_RELOCATEREALLY_TASK2 "Relocate where a switch might be intended"
    IDS_WARN_RELOCATEREALLY_TASK3 
                            "Relocate\nThe working copy is relocated to the new URL."
    IDS_WARN_RELOCATEREALLY_TASK4 "Cancel\nKeep the current URL."
END

STRINGTABLE
BEGIN
    IDS_SVNPROGRESS_UPDATEANDRETRY "Updating and retrying the lock..."
END

STRINGTABLE
BEGIN
    IDS_REG_ERROR           "Error while reading/writing the registry key %1!s!\n%2!s!"
END

STRINGTABLE
BEGIN
    IDS_FILEDIFF_POPBLAME   "&Blame changes"
    IDS_FILEDIFF_POPSAVELIST "&Save list of selected files to..."
END

STRINGTABLE
BEGIN
    IDS_PROGRS_NONRECURSIVEHINT 
                            "To commit recursively and work around this error,\nmake sure that all child items of a checked folder\nare also checked in the commit dialog.\nOtherwise, TortoiseSVN must do a non-recursive commit\nwhich does not allow directory deletion."
END

STRINGTABLE
BEGIN
    IDS_PROC_DIFFTITLE      "Diff with URL"
    IDS_PROC_DIFFLABEL      "With URL:"
    IDS_PROC_CLEANUP_INFO1  "Cleaning up directory '%1!s!'"
    IDS_PROC_CLEANUP_INFO2  "Please wait..."
    IDS_PROC_UNVERSION      "Unversion"
    IDS_PROC_COPYRENAME     "Copy and rename"
END

STRINGTABLE
BEGIN
    IDS_FILEDIFF_SWITCHLEFTRIGHT_TT "Switches the comparison left<->right"
END

STRINGTABLE
BEGIN
    IDS_PROC_CHECKOUTTO     "Select directory to check out to"
    IDS_PROC_CHECKOUTTOPONLY "Only check out the &top folder"
    IDS_PROC_CHECKOUTNOEXTERNALS "Omit e&xternals"
    IDS_PROC_OVERWRITEEXPORT "The folder\n%s\nalready exists!"
    IDS_PROC_OVERWRITEEXPORT_OVERWRITE "Overwrite"
    IDS_PROC_OVERWRITEEXPORT_RENAME "Auto Rename"
    IDS_PROC_OVERWRITEEXPORT_CANCEL "Cancel"
    IDS_PROC_EXPORTUNVERSION 
                            "Do you want to make this working copy unversioned?\nThis will remove all Subversion admin directories from\n%s!"
    IDS_PROC_UPGRADE        "Upgrade working copy"
    IDS_PROC_UPGRADE_INFO   "Upgrading '%1!s!'"
    IDS_PROC_UPGRADECONFIRMATION 
                            "Notice: if you upgrade your working copy, you won't be able to access the upgraded working copy with pre 1.7 SVN clients anymore!\nDo you really want to upgrade this working copy?"
    IDS_PROC_UPGRADECONFIRMATION_TASK1 
                            "This will upgrade your working copy to the new 1.7 format and make it unusable for older clients."
    IDS_PROC_UPGRADECONFIRMATION_TASK2 "Upgrade working copy"
    IDS_PROC_UPGRADECONFIRMATION_TASK3 
                            "Upgrade the working copy\nto the new 1.7 format."
END

STRINGTABLE
BEGIN
    IDS_STATGRAPH_QUARTERLABEL "Q%d/%.2d"
    IDS_STATGRAPH_PIEBUTTON_TT "Pie Graph"
    IDS_STATGRAPH_LINESTACKEDBUTTON_TT "Stacked Line Graph"
    IDS_STATGRAPH_LINEBUTTON_TT "Line Graph"
    IDS_STATGRAPH_BARSTACKEDBUTTON_TT "Stacked Bar Graph"
    IDS_STATGRAPH_BARBUTTON_TT "Bar Graph"
    IDS_STATGRAPH_AUTHORSLIDER_TT 
                            "%1!d! most active author(s) with at least %2!d! commits each (%3!d! %%)"
END

STRINGTABLE
BEGIN
    IDS_FILEDIFF_CHANGEDLISTINTRO 
                            "Changed files between %1!s!, %2!s! and %3!s!, %4!s!"
END

STRINGTABLE
BEGIN
    IDS_FILEDIFF_POPEXPORT  "&Export selection to..."
    IDS_FILEDIFF_POPCLIPBOARD "Copy selection to cli&pboard"
END

STRINGTABLE
BEGIN
    IDS_HOOKTYPE_STARTCOMMIT "Start Commit Hook"
    IDS_HOOKTYPE_PRECOMMIT  "Pre-Commit Hook"
    IDS_HOOKTYPE_POSTCOMMIT "Post-Commit Hook"
    IDS_HOOKTYPE_STARTUPDATE "Start Update Hook"
END

STRINGTABLE
BEGIN
    IDS_HOOKTYPE_PREUPDATE  "Pre-Update Hook"
    IDS_HOOKTYPE_POSTUPDATE "Post-Update Hook"
    IDS_HOOKTYPE_PRECONNECT "Pre-Connect Hook"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_CHECKOUTURL_TT 
                            "The default URL to checkout from if nothing else is specified"
    IDS_SETTINGS_SHOWLOCKDLG_TT 
                            "When locking one or more selected files, shows a dialog\nasking for a descriptive message about the locking"
    IDS_SETTINGS_SHOWEXCLUDEDASNORMAL_TT 
                            "If enabled, working copy folders which are excluded from\nshowing overlays still show the overlay for status 'normal'"
    IDS_SETTINGS_SAVEDDATA_REPOLOGHIST_TT 
                            "Clears cached logs from %ld repositories"
    IDS_SETTINGS_CACHELOGS_TT 
                            "Caches the log messages to speed up log fetching"
    IDS_SETTINGS_SELECTFILESONCOMMIT_TT 
                            "When enabled, the versioned items listed in the commit dialog are automatically selected"
    IDS_SETTINGS_DIFFBYDOUBLECLICK_TT 
                            "If checked, double-clicking on a revision in the log list compares it with the previous revision"
    IDS_SETTINGS_USESYSTEMLOCALEFORDATES_TT 
                            "Always use the system locale settings to show times and dates"
    IDS_SETTINGS_USERECYCLEBIN_TT 
                            "Moves the modified files to the recycle bin first before reverting"
    IDS_SETTINGS_EXCLUDECONTEXTLIST_TT 
                            "A newline separated list of paths for which no context menu is shown.\r\nIf you add an '*' char at the end of a path, then all files and subdirs inside that path are excluded too.\r\nAn empty list will allow the context menu on all paths."
    IDS_SETTINGS_HOOKS_SELECTFOLDERPATH "Select folder to run script for"
    IDS_SETTINGS_HOOKS_SELECTSCRIPTFILE "Select hook script file"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_HOOKS_TYPECOL "Hook Type"
    IDS_SETTINGS_HOOKS_PATHCOL "Path"
    IDS_SETTINGS_HOOKS_COMMANDLINECOL "Command Line"
    IDS_SETTINGS_HOOKS_WAITCOL "Wait"
    IDS_SETTINGS_HOOKS_SHOWCOL "Show/Hide"
    IDS_SETTINGS_GETLOCKTOP_TT 
                            "If activated, the menu entry 'Get Lock' is always shown in the top level menu\nif the selected file has the svn:needs-lock property set"
    IDS_SETTINGS_SHOWACTIONLOG_TT 
                            "Shows the action log file in the default text editor"
    IDS_SETTINGS_CLEARACTIONLOG_TT "Deletes the action log file"
    IDS_SETTINGS_MAXACTIONLOGLINES_TT 
                            "The maximum number of action log lines to keep.\nAny lines added over this limit will remove the oldest lines from the file."
    IDS_SETTINGS_HIDEMENUS_TT 
                            "When activated, hold down the SHIFT key when right-clicking to get the TortoiseSVN menus added to the context menu"
    IDS_SETTINGS_CLEARHOOKS_TT 
                            "Clears all %ld approved client-side hook scripts"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_REPOBROWSER_EXTERNALS_TT 
                            "Shows folders and files included with the svn:externals property"
    IDS_SETTINGS_OVERLAYINFO 
                            "There are currently %d overlay handlers installed besides the ones Tortoise uses."
    IDS_SETTINGS_OVERLAYINFO2 
                            "TortoiseSVN will not show the following overlays: %s"
    IDS_SETTINGS_NEEDSLOCK  "Needs-lock"
    IDS_SETTINGS_HOOKS_ENFORCE "Enforce"
END

STRINGTABLE
BEGIN
    IDS_INPUT_IMPORTFILEFULL "Import file %1!s!\r\nto %2!s!"
    IDS_INPUT_IMPORTFILES   "Import %ld items"
    IDS_INPUT_RENAME        "Rename item from %1!s!\r\nto %2!s!"
    IDS_INPUT_MOVE          "Move %1!s!\r\nto %2!s!"
    IDS_INPUT_COPYMORE      "Copy %1!ld! items to\r\n%2!s!"
    IDS_INPUT_MOVEMORE      "Move %1!ld! items to\r\n%2!s!"
    IDS_INPUT_EDITPROP      "Edit property '%1!S!' on\r\n%2!s!"
    IDS_INPUT_REMOVEPROP    "Remove property '%1!S!' from\r\n%2!s!"
    IDS_INPUT_SETPROP       "Set property '%1!S!' on\r\n%2!s!"
END

STRINGTABLE
BEGIN
    IDS_PROGRS_TITLEFAILED  "Failed!"
    IDS_PROGRS_INFOFAILED   "The operation failed."
    IDS_PROGRS_CMDINFO      "Command"
    IDS_PROGRS_IGNOREANCESTRY "ignoring ancestry"
    IDS_PROGRS_RESPECTANCESTRY "respecting ancestry"
    IDS_PROGRS_MERGEALLNOSOURCES 
                            "Unable to determine merge source for\n%s\nPlease use the main merge dialog."
    IDS_PROGRS_INFOGETTINGINFO "Getting required information..."
END

STRINGTABLE
BEGIN
    IDS_SVNPROGRESS_EXPORTING "Exporting %1!s!"
    IDS_SVNPROGRESS_EXPORTINGTO "to %1!s!"
    IDS_SVNPROGRESS_EXPORTINGWAIT "Gathering information. Please wait..."
    IDS_SVNPROGRESS_LOCKHINT 
                            "To steal the lock, right-click on the parent folder of this item and select 'Get Lock' from the context menu.\nThis will bring up the locking dialog where you can enforce the lock, i.e., 'steal' it from the one currently holding it."
END

STRINGTABLE
BEGIN
    IDS_STATUSLIST_LOCKBROKEN "Lock broken!"
    IDS_STATUSLIST_LOCKSTOLEN "Lock stolen by %s"
    IDS_STATUSLIST_NESTED   "Nested"
    IDS_STATUSLIST_BUSYMSG  "Please wait..."
    IDS_STATUSLIST_EMPTYMSG "File list is empty"
    IDS_STATUSLIST_UNASSIGNED_CHANGESET "(no changelist)"
    IDS_STATUSLIST_CHECKGROUP "Select changelist"
    IDS_STATUSLIST_UNCHECKGROUP "Deselect changelist"
END

STRINGTABLE
BEGIN
    IDS_STATUSLIST_SHOWGROUPS "Group changelists"
    IDS_STATUSLIST_KEEPLOCAL "item kept locally"
    IDS_STATUSLIST_REMOVEUNUSEDPROPS "Shorten property list"
    IDS_STATUSLIST_RESETCOLUMNORDER "Reset columns"
    IDS_STATUSLIST_NOPROPVALUE "(no value)"
    IDS_STATUSLIST_NOEXTERNAL_GROUP "root project"
    IDS_STATUSLIST_EXTERNAL_GROUP "(externals)"
    IDS_STATUSLIST_WCBASESIZES 
                            "current size: %1!s!\r\nold size: %2!s!\r\nchange: %3!s!"
END

STRINGTABLE
BEGIN
    IDS_PROGRS_CMD_CHECKOUT "Checkout from %1!s!, revision %2!s!, %3!s!, %4!s!"
    IDS_PROGRS_CMD_IMPORT   "Import %1!s! to %2!s!%3!s!"
    IDS_PROGRS_CMD_SWITCH   "Switch %1!s! to %2!s!, Revision %3!s!"
    IDS_PROGRS_CMD_MERGEPEG "Merging revisions %1!s! of %2!s! into %3!s!, %4!s!%5!s!%6!s!"
    IDS_PROGRS_CMD_MERGEURL "Merging from %1!s!, revision %2!s! to %3!s!, revision %4!s! into %5!s!, %6!s!%7!s!%8!s!"
    IDS_PROGRS_CMD_COPY     "Copy %1!s! to %2!s!, Revision %3!s!"
    IDS_PROGRS_CMD_MERGEALL "Merging %1!s! into %2!s!, %3!s!%4!s!"
    IDS_PROGRS_CMD_ADD      "Add"
    IDS_PROGRS_CMD_COMMIT   "Commit"
    IDS_PROGRS_CMD_EXPORT   "Export"
    IDS_PROGRS_CMD_LOCK     "Lock"
    IDS_PROGRS_CMD_RENAME   "Move/Rename"
    IDS_PROGRS_CMD_RESOLVE  "Resolve"
    IDS_PROGRS_CMD_REVERT   "Revert"
END

STRINGTABLE
BEGIN
    ID_VIEW_ZOOMIN          "Zoom in"
    ID_VIEW_ZOOMOUT         "Zoom out"
END

STRINGTABLE
BEGIN
    IDS_SVNDIFF_ONEURL      "revisions %1!s!-%2!s!, %3!s!"
    IDS_SVNDIFF_TWOURLS     "revision %1!s!-%2!s!, revision %3!s!-%4!s!"
END

STRINGTABLE
BEGIN
    IDS_SVNPROGRESS_MERGELOGRANGE 
                            "Merged revision(s) {revrange} from {mergeurl}:\n"
    IDS_SVNPROGRESS_MERGELOGRANGEREVERSE 
                            "Reverse merged revision(s) {revrange} from {mergeurl}:\n"
    IDS_SVNPROGRESS_MERGELOGMSG "%s\nr%s | %s\n\n%s\n"
    IDS_SVNPROGRESS_UNVERSION "Unversioning %1!s!"
END

STRINGTABLE
BEGIN
    IDS_PROP_TT_IGNORE      "svn:ignore\r\nA newline separated list of file patterns to ignore."
    IDS_PROP_TT_KEYWORDS    "svn:keywords\r\nKeywords to be expanded. Valid keywords are:\r\nURL, HeadURL : The URL for the head revision of the object.\r\nAuthor, LastChangedBy : The last person to modify the file.\r\nDate, LastChangedDate : The date/time the object was last modified.\r\nRev, LastChangedRevision : The last revision the object changed.\r\nId : A compressed summary of the previous 4 keywords."
    IDS_PROP_TT_EXECUTABLE  "svn:executable\r\nIf present, make the file executable. This property cannot be set on a directory.\r\nA non-recursive attempt will fail, and a recursive attempt will set the property only on the file children of the directory."
    IDS_PROP_TT_EOLSTYLE    "svn:eol-style\r\nOne of 'native', 'LF', 'CR', 'CRLF'."
    IDS_PROP_TT_MIMETYPE    "svn:mime-type\r\nThe mime type of the file. Used to determine whether to merge the file, and how to serve it from Apache.\r\nA mime type beginning with 'text/' (or an absent mime type) is treated as text.\r\nAnything else is treated as binary."
    IDS_PROP_TT_EXTERNALS   "svn:externals\r\nA newline separated list of module specifiers, each of which consists of\r\nan optional revision, an URL with an optional peg revision and a relative directory path. For example\r\nhttp://example.com/repos/zig foo\r\n-r 1234 http://example.com/repos/zag@1234 foo/bar\r\n\r\nThe URLs can either be full URLs or relative. The format for\r\nthe relative URLs is:\r\n../ relative to the parent directory of the external\r\n^/ relative to the repository root\r\n// relative to the URL scheme\r\n/ relative to the server's hostname"
    IDS_PROP_TT_NEEDSLOCK   "svn:needs-lock\r\nSet this to any value (e.g. '*') to enforce locking for this file.\r\nThe file will be set to read-only when checked out or updated,\r\nindicating that a user must acquire a lock on the file\r\nbefore they can edit it and commit changes."
    IDS_PROP_TT_MERGEINFO   "svn:mergeinfo\r\nA newline separated list of merge tracking info. Each line consists of an absolute\r\npath followed by a colon and a list of comma separated revision numbers.\r\nFor example\r\n/trunk:123-125,129"
END

STRINGTABLE
BEGIN
    IDS_PROP_TT_BQLABEL     "bugtraq:label\r\nLabel text to show for the edit box where the user enters the issue number."
    IDS_PROP_TT_BQMESSAGE   "bugtraq:message\r\nString which is appended to a log message when an issue number is entered.\r\nThe string must contain '%BUGID%' which gets replaced with the issue number."
    IDS_PROP_TT_BQNUMBER    "bugtraq:number\r\nSet to 'false' if your bugtracking system has issues which are referenced not by numbers."
    IDS_PROP_TT_BQURL       "bugtraq:url\r\nURL pointing to the issue tracker. It must contain '%BUGID%' which\r\ngets replaced with the issue number."
    IDS_PROP_TT_BQWARNNOISSUE 
                            "tsvn:warnifnoissue\r\nSet to 'yes' if a warning shall be shown when no issue is entered in the commit dialog."
    IDS_PROP_TT_BQAPPEND    "bugtraq:append\r\nSet to 'false' if you want the bugtracking ID to be inserted at the top of the\r\nlog message. The default is 'true' which means the bugtracking ID\r\nis appended to the log message."
    IDS_PROP_TT_BQLOGREGEX  "bugtraq:logregex\r\ntwo regular expressions separated by a newline.\r\nThe first expression is used to find a string referring to an issue,\r\nthe second expression is used to extract the bare bug ID from that string."
    IDS_PROP_TT_BQPROVIDERUUID 
                            "bugtraq:provideruuid\r\nthe COM uuid of the IBugTraqProvider"
    IDS_PROP_TT_BQPROVIDERPARAMS 
                            "bugtraq:providerparams\r\nthe parameters passed to the IBugTraqProvider"
END

STRINGTABLE
BEGIN
    IDS_PROP_TT_TSVNLOGTEMPLATE 
                            "tsvn:logtemplate\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for users to fill in."
    IDS_PROP_TT_TSVNLOGWIDTHMARKER 
                            "tsvn:logwidthmarker\r\nSet this to the number of chars the log message should not exceed its width.\r\nA faded line is shown in the commit dialogs at that position. The default is 80 chars."
    IDS_PROP_TT_TSVNLOGMINSIZE 
                            "tsvn:logminsize\r\nMinimum size in chars a log message must have before a commit is allowed."
    IDS_PROP_TT_TSVNLOGFILELISTENGLISH 
                            "tsvn:logfilelistenglish\r\nSet to 'false' if you don't want the list of changed files to be pasted in English\r\nin the commit dialog."
    IDS_PROP_TT_TSVNLOCKMSGMINSIZE 
                            "tsvn:lockmsgminsize\r\nMinimum size in chars a lock message must have before a lock is allowed."
    IDS_PROP_TT_TSVNAUTOPROPS 
                            "tsvn:autoprops\r\nA list of properties separated by newlines which get applied automatically when adding/importing files.\r\nFormat: <filemask> = property=value;property=value\r\nExample: *.xml = svn:eol-style=native;svn:mime-type=text/xml"
    IDS_PROP_TT_TSVNPROJECTLANGUAGE 
                            "tsvn:projectlanguage\r\nSet this to the language number you want your log messages written in.\r\nTortoiseSVN will then load the appropriate spell checker module if available."
    IDS_PROP_TT_TSVNLOGSUMMARY 
                            "tsvn:logsummary\r\nA regex string which extracts a summary from a log message in its first group."
END

STRINGTABLE
BEGIN
    IDS_PROP_TT_TSVNUSERFILEPROPERTIES 
                            "A list of user defined properties for files to show in the combo box"
    IDS_PROP_TT_TSVNUSERFOLDERPROPERTIES 
                            "A list of user defined properties for folders to show in the combo box"
    IDS_PROP_TT_TSVNLOGREVREGEX 
                            "tsvn:logrevregex\r\nA regular expression matching revision numbers in a log message"
    IDS_PROP_TT_TSVNLOGTEMPLATECOMMIT 
                            "tsvn:logtemplatecommit\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for commits for users to fill in."
    IDS_PROP_TT_TSVNLOGTEMPLATEBRANCH 
                            "tsvn:logtemplatebranch\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for branch/tags/copies for users to fill in."
    IDS_PROP_TT_TSVNLOGTEMPLATEIMPORT 
                            "tsvn:logtemplateimport\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for imports for users to fill in."
    IDS_PROP_TT_TSVNLOGTEMPLATEDEL 
                            "tsvn:logtemplatedelete\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for deletes for users to fill in."
    IDS_PROP_TT_TSVNLOGTEMPLATEMOVE 
                            "tsvn:logtemplatemove\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for moves/renames for users to fill in."
    IDS_PROP_TT_TSVNLOGTEMPLATEMKDIR 
                            "tsvn:logtemplatemkdir\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for directory creations for users to fill in."
    IDS_PROP_TT_TSVNLOGTEMPLATEPROPSET 
                            "tsvn:logtemplatepropset\r\nString which is inserted in the log message boxes in the commit dialogs.\r\nUse this as a log message template for property modifications for users to fill in."
    IDS_PROP_TT_TSVNLOGTEMPLATELOCK 
                            "tsvn:logtemplatelock\r\nString which is inserted in the log message boxes in the get-lock dialogs.\r\nUse this as a log message template for get-locks for users to fill in."
    IDS_PROP_TT_WEBVIEWERREVISION 
                            "webviewer:revision\r\nURL pointing to the web viewer for the repository for a specific revision.\r\nThe string %REVISION% in that URL is replaced with the revision number."
    IDS_PROP_TT_WEBVIEWERPATHREVISION 
                            "webviewer:pathrevision\r\nURL pointing to the web viewer for the repository for a specific file and revision.\r\nThe string %REVISION% in the URL is replaced with the revision number,\r\nthe string %PATH% is replaced with the path to the file relative to the repository root."
END

STRINGTABLE
BEGIN
    IDS_PROP_TT_USERFILEPROPERTIES 
                            "tsvn:userfileproperties\r\nNewline separated list of user defined properties for files which will\r\nbe shown in the property dialog to choose from."
    IDS_PROP_TT_USERFOLDERPROPERTIES 
                            "tsvn:userfolderproperties\r\nNewline separated list of user defined properties for folders which will\r\nbe shown in the property dialog to choose from."
    IDS_PROP_TT_RECURSIVE   "Applies the properties recursively to all files/folders.\r\nbugtraq:, tsvn: and webviewer: properties are only applied to folders."
    IDS_PROP_TT_IMPORT      "Import a previously saved set of properties from a file"
    IDS_PROP_TT_EXPORT      "Exports a set of properties to a file"
    IDS_PROP_TT_SAVE        "Saves the selected property value to a file"
    IDS_PROP_TT_REMOVE      "Removes the selected properties"
    IDS_PROP_TT_EDIT        "Edits the selected property value"
END

STRINGTABLE
BEGIN
    IDS_FILEDIFF_FILTERCUE  "Filter paths"
END

STRINGTABLE
BEGIN
    IDS_PROP_TT_ADD         "Adds a new property"
    IDS_EDITCONFLICT_ACTIONINFO_ADD "Could not add '%s' because"
    IDS_EDITCONFLICT_ACTIONINFO_MODIFY "Could not merge '%s' because"
    IDS_EDITCONFLICT_ACTIONINFO_DELETE "Could not delete '%s' because"
    IDS_EDITCONFLICT_PROP_ACTIONINFO_ADD 
                            "Could not add property '%1!s!' on '%2!s!' because"
    IDS_EDITCONFLICT_PROP_ACTIONINFO_MODIFY 
                            "Could not merge property '%1!s!' on '%2!s!' because"
    IDS_EDITCONFLICT_PROP_ACTIONINFO_DELETE 
                            "Could not delete property '%1!s!' on '%2!s!' because"
    IDS_EDITCONFLICT_ACTIONINFO_REPLACE "Could not replace '%s' because"
    IDS_EDITCONFLICT_PROP_ACTIONINFO_REPLACE 
                            "Could not replace property '%1!s!' on '%2!s!' because"
END

STRINGTABLE
BEGIN
    IDS_EDITCONFLICT_REASONINFO_EDITED "there are conflicting modifications."
    IDS_EDITCONFLICT_REASONINFO_OBSTRUCTED 
                            "another item already exists in its place."
    IDS_EDITCONFLICT_REASONINFO_DELETED "it is already deleted."
    IDS_EDITCONFLICT_REASONINFO_MISSING "it does not exist."
    IDS_EDITCONFLICT_REASONINFO_UNVERSIONED "it is unversioned."
END

STRINGTABLE
BEGIN
    IDS_REPOSTATUS_EMPTYFILELIST 
                            "No files to show with the current setting.\nCheck one or more settings below to see unversioned, ignored and/or unmodified files.\nTo see remote changes, click on 'Check Repository'"
    IDS_REPOSTATUS_TT_REPOCHECK 
                            "Includes the repository for status check\nHold down the shift key when clicking to fetch everything."
END

STRINGTABLE
BEGIN
    IDS_MERGEWIZARD_REVRANGELABEL 
                            "This method covers the case when you have made one or more revisions to a branch (or to the trunk) and you want to port those changes across to a different branch."
    IDS_MERGEWIZARD_TREELABEL 
                            "This method covers the case when you want to merge the differences of two different branches into your working copy."
    IDS_MERGEWIZARD_REVRANGESTRING 
                            "Use the log dialog to select the revisions you want to merge, or enter the revisions to merge, separated by commas. A revision range can be specified by a dash.\r\n\r\nExample: 4-7,9,11,15-HEAD@pegrevision\r\n\r\nTo merge all revisions, leave the box empty."
    IDS_MERGEWIZARD_REINTEGRATELABEL 
                            "This method covers the case when you have made a feature branch as discussed in the Subversion book. Use this to merge all changes of a branch back to trunk."
END

STRINGTABLE
BEGIN
    IDS_MERGEWIZARD_STARTTITLE "Merge type"
    IDS_MERGEWIZARD_STARTSUBTITLE "Select the type of merge"
    IDS_MERGEWIZARD_TREETITLE "Tree merge"
    IDS_MERGEWIZARD_TREESUBTITLE "Select the URLs for the tree merge"
    IDS_MERGEWIZARD_REVRANGETITLE "Merge revision range"
    IDS_MERGEWIZARD_REVRANGESUBTITLE "Select the revisions to merge"
    IDS_MERGEWIZARD_OPTIONSTITLE "Merge options"
    IDS_MERGEWIZARD_OPTIONSSUBTITLE "Select the merge options"
    IDS_MERGEWIZARD_REINTEGRATETITLE "Reintegrate merge"
    IDS_MERGEWIZARD_REINTEGRATESUBTITLE 
                            "Select the URL from which to reintegrate"
END

STRINGTABLE
BEGIN
    IDS_PROPPAGE_BACK       "< &Back"
    IDS_PROPPAGE_NEXT       "&Next >"
    IDS_PROPPAGE_CANCEL     "Cancel"
    IDS_PROPPAGE_HELP       "Help"
END

STRINGTABLE
BEGIN
    IDS_PROGRS_CMD_UNLOCK   "Unlock"
    IDS_PROGRS_CMD_UPDATE   "Update"
    IDS_PROGRS_CMD_MERGEREINTEGRATE "Reintegrate merge %1!s! into %2!s!"
    IDS_PROGRS_CMD_TAGEXTERNALS "Changing externals to fixed revision"
    IDS_PROGRS_CMD_SPARSEUPDATE "Sparse update %1!s!, depth '%2!s!'"
END

STRINGTABLE
BEGIN
    IDS_MERGEWIZARD_OPTIONS_RECORDONLY_TT 
                            "Marks the revisions as merged, without actually doing the merge.\r\nThis blocks the revisions from getting merged in the future."
    IDS_MERGEWIZARD_OPTIONS_FORCE_TT 
                            "Discards local changes upon incoming deletes"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_LOGCACHESTATS_PAIRTOKENS 
                            "Internal value indicating compression quality"
    IDS_SETTINGS_LOGCACHESTATS_TEXTSIZE "Size of all cached text information"
    IDS_SETTINGS_LOGCACHESTATS_UNCOMPRESSEDSIZE 
                            "Size of the cache if it were not compressed"
    IDS_SETTINGS_LOGCACHESTATS_MAXREVISION 
                            "Highest revision number in the cache"
    IDS_SETTINGS_LOGCACHESTATS_REVISIONCOUNT "Number of cached revisions"
    IDS_SETTINGS_LOGCACHESTATS_CHANGESTOTAL 
                            "Total number of changes over all cached revisions"
    IDS_SETTINGS_LOGCACHESTATS_CHANGEDREVISIONS 
                            "Number of cached revisions that have a non-empty change list"
    IDS_SETTINGS_LOGCACHESTATS_CHANGESMISSING 
                            "Number of cached revisions whose change list is not cached yet"
    IDS_SETTINGS_LOGCACHESTATS_MERGESTOTAL "Total number of merged revisions"
    IDS_SETTINGS_LOGCACHESTATS_MERGESREVISIONS 
                            "Number of cached merged revisions"
    IDS_SETTINGS_LOGCACHESTATS_MERGESMISSING 
                            "Number of merged revisions that are not cached yet"
    IDS_SETTINGS_LOGCACHESTATS_USERREVPROPSTOTAL 
                            "Total number of user revision properties"
    IDS_SETTINGS_LOGCACHESTATS_USERREVPROPSREVISIONS 
                            "Number of cached revisions that have user revision properties"
    IDS_SETTINGS_LOGCACHESTATS_USERREVPROPSMISSING 
                            "Number of cached revisions whose user revision properties are not cached yet"
    IDS_SETTINGS_LOGCACHESTATS_RAM 
                            "Amount of memory required to load the cache"
    IDS_SETTINGS_LOGCACHESTATS_DISK "Size of the cache file on disk"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_LOGCACHESTATS_CONNECTION 
                            "ask repository first if 'online' -\nwork entirely from cache if 'offline'"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_LOGCACHESTATS_LASTREAD "Last time the cache was accessed"
    IDS_SETTINGS_LOGCACHESTATS_LASTWRITE 
                            "Last time the cache content was changed"
    IDS_SETTINGS_LOGCACHESTATS_LASTHEADUPDATE 
                            "Last time the repository was asked for the HEAD revision number"
    IDS_SETTINGS_LOGCACHESTATS_AUTHORS "Number of authors in the cache"
    IDS_SETTINGS_LOGCACHESTATS_PATHELEMENTS 
                            "Number of path elements. A path element is a folder or file name like 'foo.txt' or 'mybranch'."
    IDS_SETTINGS_LOGCACHESTATS_PATHS 
                            "Number of different paths shown in the log dialog, including parent paths"
    IDS_SETTINGS_LOGCACHESTATS_SKIPRANGES 
                            "'skip ranges' are used to mark revision ranges that have not been cached yet"
    IDS_SETTINGS_LOGCACHESTATS_WORDTOKENS 
                            "Number of different words used in log messages"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_LOGCACHE_ENABLE 
                            "Enable log caching to speed up log and revision graph dialogs"
    IDS_SETTINGS_LOGCACHE_GOOFFLINE 
                            "When connecting to the repository server is not possible,\nTSVN can switch to using cached data only.\nSelect the default behaviour here."
    IDS_SETTINGS_LOGCACHE_HEADAGE 
                            "Saves expensive server roundtrips when set to longer than 0 seconds"
    IDS_SETTINGS_LOGCACHE_CACHELIST 
                            "List of repositories for which log information has been cached"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_LOGCACHE_DETAILS "Show statistics for the selected log cache"
    IDS_SETTINGS_LOGCACHE_UPDATE 
                            "Connect to the repository server and download missing log data"
    IDS_SETTINGS_LOGCACHE_EXPORT 
                            "Export the selected cache as a set of Comma Separated Value (CSV) files"
    IDS_SETTINGS_LOGCACHE_DELETE "Remove the selected cache(s) from disk"
    IDS_SETTINGS_LOGCACHE_AMBIGUOUSURL 
                            "Allow different repositories to use the same URL, e.g. http://localhost/myrepos/"
    IDS_SETTINGS_LOGCACHE_DROPAGE 
                            "When a small log cache has not been used for the given\nnumber of days, it will be removed automatically."
    IDS_SETTINGS_LOGCACHE_DROPMAXSIZE 
                            "Unused log caches will only be removed if the respective\nfile is smaller than the given size in kBytes."
    IDS_SETTINGS_LOGCACHE_FAILURELIMIT 
                            "Number of times a log cache can fail to close properly\ndue to crashes etc. until it gets deleted automatically."
    IDS_SETTINGS_LOGCACHE_AMBIGUOUSUUID 
                            "Allow different repositories to use the same UUID, e.g. copied repositories"
    IDS_SETTINGS_LOGCACHE_STDDEFAULT 
                            "Revert to default settings. Recommended for unexperienced users."
    IDS_SETTINGS_LOGCACHE_POWERDEFAULT 
                            "Apply 'Power User' defaults. Those will provide a smoother experience.\nYou should know the meaning of all the settings above."
END

STRINGTABLE
BEGIN
    IDS_ERR_PROVIDER_VALIDATE_FAILED 
                            "The issue-tracker provider was unable to validate the parameter string"
    IDS_ERR_NO_AVAILABLE_BUGTRAQ_PROVIDERS 
                            "There are no issue-tracker providers available."
    IDS_SETTINGS_BUGTRAQ_SELECTFOLDERPATH 
                            "Select folder to associate with this issue tracker"
    IDS_SAMPLEBUGTRAQTESTMSG 
                            "Sample log message to test the bugtraq: regex strings.\n\nTesting mentions of issues inside a text: Mention issue #55. Mention issues #77, #78.\n\nUpdate issue #101\nFixes issue #202\nResolves issue #88.\nCloses issue #99.\n"
END

STRINGTABLE
BEGIN
    IDS_PROC_MOVERENAME     "Move and rename"
    IDS_PROC_REPLACEEXISTING 
                            "The target file\n%s\n already exists.\nDo you want to replace the file?"
    IDS_PROC_REPLACEEXISTING_TASK1 
                            "The target file\n%s\n already exists.\nDo you want to replace the file?"
    IDS_PROC_REPLACEEXISTING_TASK2 "The target already exists."
    IDS_PROC_REPLACEEXISTING_TASK3 "Overwrite\nThe target file gets replaced"
    IDS_PROC_REPLACEEXISTING_TASK4 "Cancel\nThe target file is left as is"
    IDS_PROC_REPLACEEXISTING_TASK5 "Do this for all existing items"
    IDS_PROC_REMOVEFORCE_TASK2 "Force removal"
    IDS_PROC_REMOVEFORCE_TASK3 "Remove\nForce the removal"
    IDS_PROC_REMOVEFORCE_TASK4 "Cancel\nDo not remove"
    IDS_PROC_REMOVEFORCE_TASK1 
                            "%s\nDo you want to remove the file '%s' anyway?"
    IDS_PROC_REMOVEFORCE_TASK1_1 
                            "%s\nDo you want to remove the %d files anyway?"
    IDS_PROC_REMOVEFORCE_TASK1_2 
                            "%s\nThe folder %s\ncontains unversioned and/or modified file(s). Do you want to remove it anyway?"
    IDS_PROC_WARNREVERT_TASK1 "Do you want to revert '%s'?"
    IDS_PROC_WARNREVERT_TASK2 "Confirm revert"
    IDS_PROC_WARNREVERT_TASK3 "Revert\nAll local modifications will be lost."
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_TRUNKPATTERN 
                            "If a component (part between two '/') of a given path matches one\nof these patterns, it is considered a 'trunk'."
    IDS_SETTINGS_BRANCHESPATTERN 
                            "If a component (part between two '/') of a given path matches one\nof these patterns, it is considered a 'branch'."
    IDS_SETTINGS_TAGSPATTERN 
                            "If a component (part between two '/') of a given path matches one\nof these patterns, it is considered a 'tag'."
    IDS_SETTINGS_PATTERN_INFO 
                            "\n\nPatterns match case-insensitively and must be specified in lower-case.\nWhitespaces will become part of the pattern.\nAllowed wildcards are '?' and '*'.\nSeparate patterns using ';'"
    IDS_SETTINGS_TWEAKTRUNKCOLORS 
                            "The color of creation, copy and rename nodes of the trunk will be shifted towards green."
    IDS_SETTINGS_TWEAKTAGSCOLORS 
                            "The color of creation, copy and rename nodes of tags will be shifted towards yellow."
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_REVGRAPH_OPACITY 
                            "Possible values: 0 (fully transparent) .. 255 (opaque)"
END

STRINGTABLE
BEGIN
    IDS_PROPCONFLICT_INFO   "The item '%s' has property conflicts:"
END

STRINGTABLE
BEGIN
    IDS_TREECONFLICT_REASON_DIR_EDITED 
                            "%s, but the directory was already edited."
    IDS_TREECONFLICT_REASON_DIR_OBSTRUCTED 
                            "%s, but the directory was obstructed in the working copy."
    IDS_TREECONFLICT_REASON_DIR_DELETED 
                            "%s, but the directory was deleted, moved or renamed locally."
    IDS_TREECONFLICT_REASON_DIR_ADDED 
                            "%s, but the directory was already added locally."
    IDS_TREECONFLICT_REASON_DIR_MISSING 
                            "%s, but the directory is missing locally."
    IDS_TREECONFLICT_REASON_DIR_UNVERSIONED 
                            "%s, but the directory already exists unversioned locally."
    IDS_TREECONFLICT_REASON_FILE_EDITED "%s, but the file was already edited."
    IDS_TREECONFLICT_REASON_FILE_OBSTRUCTED 
                            "%s, but the file was obstructed in the working copy."
    IDS_TREECONFLICT_REASON_FILE_DELETED 
                            "%s, but the file was deleted, moved or renamed locally."
    IDS_TREECONFLICT_REASON_FILE_ADDED 
                            "%s, but the file was already added locally."
    IDS_TREECONFLICT_REASON_FILE_MISSING 
                            "%s, but the file is missing locally."
    IDS_TREECONFLICT_REASON_FILE_UNVERSIONED 
                            "%s, but the file already exists unversioned locally."
    IDS_TREECONFLICT_REASON_DIR_REPLACED "%s, but the directory was replaced"
    IDS_TREECONFLICT_REASON_FILE_REPLACED "%s, but the file was replaced"
END

STRINGTABLE
BEGIN
    IDS_TREECONFLICT_FILEUPDATEEDIT 
                            "The last update operation tried to modify the file '%s'"
    IDS_TREECONFLICT_FILEUPDATEADD 
                            "The last update operation tried to add the file '%s'"
    IDS_TREECONFLICT_FILEUPDATEDELETE 
                            "The last update operation tried to delete/move/rename the file '%s'"
    IDS_TREECONFLICT_FILESWITCHEDIT 
                            "The last switch operation tried to modify the file '%s'"
    IDS_TREECONFLICT_FILESWITCHADD 
                            "The last switch operation tried to add the file '%s'"
    IDS_TREECONFLICT_FILESWITCHDELETE 
                            "The last switch operation tried to delete/move/rename the file '%s'"
    IDS_TREECONFLICT_FILEMERGEEDIT 
                            "The last merge operation tried to modify the file '%s'"
    IDS_TREECONFLICT_FILEMERGEADD 
                            "The last merge operation tried to add the file '%s'"
    IDS_TREECONFLICT_FILEMERGEDELETE 
                            "The last merge operation tried to delete/move/rename the file '%s'"
    IDS_TREECONFLICT_DIRUPDATEEDIT 
                            "The last update operation tried to modify the directory '%s'"
    IDS_TREECONFLICT_DIRUPDATEADD 
                            "The last update operation tried to add the directory '%s'"
    IDS_TREECONFLICT_DIRUPDATEDELETE 
                            "The last update operation tried to delete/move/rename the directory '%s'"
END

STRINGTABLE
BEGIN
    IDS_TREECONFLICT_DIRSWITCHEDIT 
                            "The last switch operation tried to modify the directory '%s'"
    IDS_TREECONFLICT_DIRSWITCHADD 
                            "The last switch operation tried to add the directory '%s'"
    IDS_TREECONFLICT_DIRSWITCHDELETE 
                            "The last switch operation tried to delete/move/rename the directory '%s'"
    IDS_TREECONFLICT_DIRMERGEEDIT 
                            "The last merge operation tried to modify the directory '%s'"
    IDS_TREECONFLICT_DIRMERGEADD 
                            "The last merge operation tried to add the directory '%s'"
    IDS_TREECONFLICT_DIRMERGEDELETE 
                            "The last merge operation tried to delete/move/rename the directory '%s'"
    IDS_TREECONFLICT_FILEUPDATEREPLACE 
                            "The last update operation tried to replace the file '%s'"
    IDS_TREECONFLICT_FILESWITCHREPLACE 
                            "The last switch operation tried to replace the file '%s'"
    IDS_TREECONFLICT_FILEMERGEREPLACE 
                            "The last merge operation tried to replace the file '%s'"
    IDS_TREECONFLICT_DIRUPDATEREPLACE 
                            "The last update operation tried to replace the directory '%s'"
    IDS_TREECONFLICT_DIRSWITCHREPLACE 
                            "The last switch operation tried to replace the directory '%s'"
    IDS_TREECONFLICT_DIRMERGEREPLACE 
                            "The last merge operation tried to replace the directory '%s'"
END

STRINGTABLE
BEGIN
    IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYFILE 
                            "Keep the file from the repository"
    IDS_TREECONFLICT_RESOLVE_REMOVEFILE "Remove the file"
    IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYDIR 
                            "Keep the directory from the repository"
    IDS_TREECONFLICT_RESOLVE_REMOVEDIR "Remove the directory"
    IDS_TREECONFLICT_RESOLVE_KEEPLOCALDIR "Keep the local directory"
    IDS_TREECONFLICT_RESOLVE_KEEPLOCALFILE "Keep the local file"
    IDS_TREECONFLICT_RESOLVE_MERGECHANGES "Merge the changes into '%s'"
    IDS_TREECONFLICT_RESOLVE_MARKASRESOLVED "Mark the conflict as resolved"
    IDC_TREECONFLICT_HOWTORESOLVE "How do you want to resolve this conflict?"
END

STRINGTABLE
BEGIN
    IDS_DROPDESC_NODROP     "Drop not possible on %1"
    IDS_DROPDESC_IMPORT     "Import to %1"
    IDS_DROPDESC_COPY       "Copy to %1"
    IDS_DROPDESC_MOVE       "Move to %1"
    IDS_DROPDESC_ADD        "Add to %1"
END

STRINGTABLE
BEGIN
    IDS_TREECONFLICT_RESOLVE_HINT_DELETEUPONDELETE 
                            "Check the log to find out how the file/folder got renamed/moved and decide whether you want to keep your rename/move or the one from the repository. Then mark the conflict as resolved."
    IDS_TREECONFLICT_RESOLVE_HINT_EDITUPONDELETE 
                            "Check the log to find out how the file/folder got renamed/moved and decide whether you want to merge the change into your renamed file, or restore the original file."
END

STRINGTABLE
BEGIN
    IDS_SVNACTION_PROPSET   "Property '%s' set"
    IDS_SVNACTION_PROPDEL   "Property '%s' deleted"
END

STRINGTABLE
BEGIN
    IDS_ACC_LOGENTRYALREADYMERGED "revision has already been merged"
    IDS_ACC_WCISATTHISREVISION "the working copy is at this revision"
    IDS_ACC_PROPONLYCHANGE  "Only properties changed"
END

STRINGTABLE
BEGIN
    IDS_SETTINGS_DELFILE    "Deleting file"
    IDS_SETTINGS_DELCACHE   "Deleting cached data"
    IDS_SETTINGS_CONF_NAMECOL "Option"
    IDS_SETTINGS_CONF_VALUECOL "Value"
END

STRINGTABLE
BEGIN
    IDS_COPY_WAITFOREXTERNALS 
                            "Please wait while the externals are gathered..."
    IDS_COPY_NOEXTERNALSFOUND "No externals found"
    IDS_COPY_COMMITMSG      "TortoiseSVN auto commit: changed externals to fixed revision."
    IDS_COPYEXTLIST_COLTAGGED "Fixed at rev"
END

STRINGTABLE
BEGIN
    IDS_PROP_SAVEVALUE      "&Save value..."
    IDS_PROP_REMOVE         "&Remove"
    IDS_PROP_EDIT           "&Edit..."
END

STRINGTABLE
BEGIN
    IDS_SVNACTION_OBSTRUCTED "Skipped obstructing working copy"
    IDS_SVNACTION_MERGEINFO "Recording mergeinfo for merge between URLs"
    IDS_SVNACTION_MERGERECORDBEGINSINGLE 
                            "Recording mergeinfo for merge of r%ld"
    IDS_SVNACTION_MERGERECORDBEGINSINGLEREVERSE 
                            "Recording mergeinfo for reverse merge of r%ld"
    IDS_SVNACTION_MERGERECORDBEGINMULTIPLE 
                            "Recording mergeinfo for merge of r%1!ld! through r%2!ld!"
    IDS_SVNACTION_MERGERECORDBEGINMULTIPLEREVERSE 
                            "Recording mergeinfo for reverse merge of r%1!ld! through r%2!ld!"
    IDS_SVNACTION_ELIDEMERGEINFO "Eliding mergeinfo"
    IDS_SVNACTION_URLREDIRECT "Redirecting to url"
    IDS_SVNACTION_UPDATING  "Updating"
    IDS_SVNACTION_SKIPNOPARENT "Skipped, no versioned parent"
    IDS_SVNACTION_PATHNOTEXIST "Not under version control"
    IDS_SVNACTION_SWITCHED  "Switched"
    IDS_SVNACTION_DRYRUN_CONFLICTED "Conflicted (maybe)"
END

STRINGTABLE
BEGIN
    IDS_PATCH_COPYTOCLIPBOARD "Save to clipboard"
    IDS_PATCH_SAVEGITFORMAT "Save in Git format"
END

STRINGTABLE
BEGIN
    IDS_EDITPROPS_DIFFERENTPROPVALUES "values are different"
    IDS_EDITPROPS_RECURSIVEREMOVEQUESTION 
                            "Do you want to remove the property %s recursively?"
    IDS_EDITPROPS_RECURSIVE "Recursive"
    IDS_EDITPROPS_NOTRECURSIVE "Not recursive"
    IDS_EDITPROPS_CANCEL    "Cancel"
    IDS_EDITPROPS_ADDTITLE  "Add Properties"
END

STRINGTABLE
BEGIN
    IDS_EDITPROPS_EDITTITLE "Edit Properties"
    IDS_EDITPROPS_RECURSIVEREMOVE_TASK2 "Recursive operation"
    IDS_EDITPROPS_RECURSIVEREMOVE_TASK3 
                            "Recursive\nRemove the property also from items in Subfolders."
    IDS_EDITPROPS_RECURSIVEREMOVE_TASK4 
                            "Remove\nRemove the property only from this item."
    IDS_EDITPROPS_RECURSIVEREMOVE_TASK5 "Cancel\nThe property is not removed."
    IDS_EDITPROPS_RECURSIVEREMOVE_TASK6 "Do this for all selected items"
    IDS_EDITPROPS_BINVALUE  "(binary value)"
END

STRINGTABLE
BEGIN
    IDS_EDITPROPS_ERRIMPORTFORMAT 
                            "Unrecognized or invalid property file format!"
    IDS_EDITPROPS_TESTREGEX_TT "Test the regex strings"
    IDS_EDITPROPS_LOCALHOOK_CMDLINELABEL 
                            "Command Line To Execute:\r\nTo specify a path inside a working copy, specify the url in the repository with the repository root url as %REPOROOT%"
    IDS_EDITPROPS_MERGETITLEHINT 
                            "Custom title string. Available keywords are:\r\n{mergeurl}:\tthe source url of the merge\r\n{revisions}:\tA comma separated list of the merged revisions, e.g., 3, 5, 6, 7\r\n{revisionsr}:\tLike {revisions} but with an 'r' in front of the revisions\r\n{revrange}:\tA comma separated list of the merged revisions, grouped into ranges if possible, e.g., 3, 5-7"
    IDS_EDITPROPS_MERGETITLEHINTREVERSE 
                            "Like above, but used for reverse merges"
    IDS_EDITPROPS_MERGEMSGHINT 
                            "Specifies how the text for each merged revision should look like.\r\nThe following keywords can be used:\r\n{msg}:\tThe log message of the merged revision, as it was entered.\r\n{msgoneline}:\tThe log message force onto one line\r\n{author}:\tThe author of the merged revision\r\n{rev}:\tThe merged revision itself\r\n{bugid}:\tThe bug ids of the merged revision"
END

STRINGTABLE
BEGIN
    IDS_MSGBOX_NO           "No"
    IDS_MSGBOX_CONTINUE     "Continue"
    IDS_MSGBOX_DONOTASKAGAIN "Don't ask me again"
    IDS_MSGBOX_DONOTTELLAGAIN "Don't tell me again"
    IDS_MSGBOX_DONOTSHOWAGAIN "Don't show this message again"
    IDS_MSGBOX_YESTOALL     "Yes to all"
    IDS_MSGBOX_NOTOALL      "No to all"
    IDS_MSGBOX_TRYAGAIN     "Try again"
    IDS_MSGBOX_REPORT       "Report"
    IDS_MSGBOX_IGNOREALL    "Ignore all"
    IDS_MSGBOX_SKIP         "Skip"
    IDS_MSGBOX_SKIPALL      "Skip all"
END

STRINGTABLE
BEGIN
    IDS_COMMITDLG_WARNNOISSUE_TASK2 "You haven't entered an issue number."
    IDS_COMMITDLG_WARNNOISSUE_TASK3 
                            "Proceed without an issue number\nThe commit won't be assigned to an issue."
    IDS_COMMITDLG_WARNNOISSUE_TASK4 
                            "Cancel\nGo back and enter an issue number."
    IDS_COMMITDLG_WARNUNVERSIONEDFOLDER_TASK1 
                            "Committing an unversioned folder will not recursively add its child items!\nYou might want to add these folders recursively by using the 'Add...' context menu item."
    IDS_COMMITDLG_WARNUNVERSIONEDFOLDER_TASK2 
                            "You selected an unversioned folder for a commit!"
    IDS_COMMITDLG_WARNUNVERSIONEDFOLDER_TASK3 
                            "Commit only the folder\nFiles inside the folder won't get committed."
    IDS_COMMITDLG_WARNUNVERSIONEDFOLDER_TASK4 
                            "Cancel\nYou have to add the folder manually."
    IDS_COMMITDLG_WARNUNVERSIONEDFOLDER_TASK5 
                            "Do this for all selected unversioned folders"
    IDS_COMMITDLG_CHECKCOMMIT_TASK1 "Hook script failed!"
    IDS_COMMITDLG_MSGLENGTH "Log message is too short!"
    IDS_COMMITDLG_NOTHINGSELECTED "Nothing is selected for commit!"
END

STRINGTABLE
BEGIN
    IDS_PROC_UPGRADECONFIRMATION_TASK4 "Cancel\nkeep the current format."
    IDS_PROC_UPGRADECONFIRMATION_TASK5 
                            "If you use other SVN clients besides TortoiseSVN on this computer, you have to upgrade those clients too. Otherwise those clients won't be able to access the working copy with the new format."
    IDS_PROC_EXPORTUNVERSION_TASK2 "Unversion working copy"
    IDS_PROC_EXPORTUNVERSION_TASK3 
                            "Remove from version control\nAll .svn folders are removed"
    IDS_PROC_EXPORTUNVERSION_TASK4 
                            "Cancel\nChoose a different folder to export to"
END

STRINGTABLE
BEGIN
    IDS_WARN_RELOCATEREALLY_TASK5 
                            "A relocate is only needed if the path to a repository has changed.\nChanging to a different path inside a repository is done by a switch operation.\n\nIf you are not sure what to do, try a switch operation first."
    IDS_WARN_ADDCASERENAMED_TASK2 "File already exists"
    IDS_WARN_ADDCASERENAMED_TASK3 "Adjust case\nThe file is not added."
    IDS_WARN_ADDCASERENAMED_TASK4 
                            "Add item\nThis will lead to problems on Windows."
    IDS_WARN_FOLDERNOTEMPTY_TASK2 "Target folder is not empty"
    IDS_WARN_FOLDERNOTEMPTY_TASK3 
                            "Checkout\nCheckout into the non empty folder."
    IDS_WARN_FOLDERNOTEMPTY_TASK4 
                            "Cancel\nGo back and select a different folder."
    IDS_WARN_FOLDERNOTEMPTY_TASK3_1 
                            "Export\nExport into the non-empty folder."
    IDS_MSG_NEEDSUPDATE_TASK3 
                            "Update\nUpdate the working copy and reopen the commit dialog to try again."
    IDS_MSG_NEEDSUPDATE_TASK4 "Cancel\nDo not update the working copy."
    IDS_PROC_OVERWRITE_CONFIRM_TASK2 "File already exists"
    IDS_PROC_OVERWRITE_CONFIRM_TASK3 "Overwrite\nThe target file is replaced."
    IDS_PROC_OVERWRITE_CONFIRM_TASK4 "Cancel\nThe file is not copied."
    IDS_PROC_OVERWRITE_CONFIRM_TASK5 "Do this for all existing files"
    IDS_PROC_OVERWRITEEXPORT_TASK2 "Exporting: Target folder exists."
END

STRINGTABLE
BEGIN
    IDS_PROC_WARNREVERT_TASK4 "Cancel\nLocal modifications are kept."
    IDS_PROC_RESOLVE_TASK1  "Do you want to mark '%s' as resolved?"
    IDS_PROC_RESOLVE_TASK2  "Mark as resolved"
    IDS_PROC_RESOLVE_TASK3  "Resolve\nThe item is marked as resolved."
    IDS_PROC_RESOLVE_TASK4  "Cancel\nDon't resolve the item."
    IDS_PROC_REMOVEFORCE_TASK5 "Do this for all unversioned/modified items"
    IDS_SSL_ACCEPTALWAYS_TASK 
                            "Accept the certificate permanently\nYou won't get asked about this certificate again."
    IDS_SSL_ACCEPTTEMP_TASK "Accept the certificate\nThe certificate is accepted only this one time."
    IDS_SSL_REJECT_TASK     "Reject the certificate\nCancel the connection."
    IDS_SSL_ACCEPTQUESTION_TASK "Certificate validation failed"
    IDS_PROC_CLEANUP_INFOFETCHSTATUS "Fetching status of %1!s!"
    IDS_PROC_CLEANUP_INFOREVERT "Reverting %1!s!"
    IDS_PROC_CLEANUP_INFODELUNVERSIONED "Removing unversioned items in %1!s!"
    IDS_PROC_CLEANUP_INFOREFRESHSHELL "Refreshing shell for %1!s!"
    IDS_PROC_CLEANUP_INFODELIGNORED "Removing ignored items. in %1!s!"
END

STRINGTABLE
BEGIN
    IDS_PROC_OVERWRITEEXPORT_TASK3 "Overwrite\nReplace the target folder."
    IDS_PROC_OVERWRITEEXPORT_TASK4 "Rename\nThe folder is exported as '%s'."
    IDS_PROC_OVERWRITEEXPORT_TASK5 "Cancel\nThe folder is not exported."
    IDS_PROC_OVERWRITEEXPORT_TASK6 "Do this for all existing folders"
END

STRINGTABLE
BEGIN
    IDS_MENUSWITCHTOPARENT  "Switch back to parent"
    IDS_MENUCREATERESTORE   "Restore after commit"
    IDS_MENURESTORE         "Restore"
END

STRINGTABLE
BEGIN
    IDS_STATUSLIST_CONTEXT_COMPARETWO "Compare two files"
END

STRINGTABLE
BEGIN
    IDS_EXTERNALS_PEG       "Peg"
    IDS_EXTERNALS_OPERATIVE "Operative"
    IDS_EXTERNALS_HEADREV   "HEAD"
END

STRINGTABLE
BEGIN
    IDS_RECYCLEBINSLOWDOWN  "TortoiseSVN detected a serious slowdown when moving %1!ld! items to the recycle bin. The recycle bin currently contains %2!ld! items, which most likely is the reason for this slowdown.\nTo fix this, you should empty the recycle bin now."
END

STRINGTABLE
BEGIN
    IDS_HOOKS_APPROVE_TASK1 "This working copy has a client-side hook script configured. Do you want this script to run?\nThe command line to run is:\n%s"
    IDS_HOOKS_APPROVE_TASK2 "Approve or reject client-side hook script"
    IDS_HOOKS_APPROVE_TASK3 "Run\nRun the hook script"
    IDS_HOOKS_APPROVE_TASK4 "Don't run\nDo not run the script"
    IDS_HOOKS_APPROVE_TASK5 "Do not ask again for this script"
END

STRINGTABLE
BEGIN
    IDS_EDITPROPS_PROG_FINDHEADTITLE "Find HEAD revisions"
    IDS_EDITPROPS_PROG_FINDHEADROOTS "get repository root URLs:"
    IDS_EDITPROPS_PROG_FINDHEADREVS "get HEAD revision:"
    IDS_EDITPROPS_ADJUST_TO_HEAD "Adjust to HEAD revision"
    IDS_EDITPROPS_FETCH_AND_ADJUST_TO_HEAD 
                            "Fetch HEAD revision and adjust to it"
END

#endif    // English (United States) resources
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
// German (Switzerland) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DES)
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN_SWISS

/////////////////////////////////////////////////////////////////////////////
//
// Icon
//

// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDI_SVNFOLDER           ICON                    "svnfolder.ico"

#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE 
BEGIN
    "..\\TortoiseProc\\resource.h\0"
END

2 TEXTINCLUDE 
BEGIN
    "#include ""afxres.h""\r\n"
    "\0"
END

3 TEXTINCLUDE 
BEGIN
    "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
    "#define _AFX_NO_OLE_RESOURCES\r\n"
    "#define _AFX_NO_TRACKER_RESOURCES\r\n"
    "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
    "\r\n"
    "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
    "LANGUAGE 9, 1\r\n"
    "#pragma code_page(1252)\r\n"
    "#include ""TortoiseProc.rc2""  // non-Microsoft Visual C++ edited resources\r\n"
    "#include ""afxres.rc""         // Standard components\r\n"
    "#include ""afxprint.rc""  // printing/print preview resources\r\n"
    "#include ""afxribbon.rc"" // ribbon and control bar resources\r\n"
    "#include ""afxolecl.rc""  // OLE container resources\r\n"
    "#endif\r\n"
    "\0"
END

#endif    // APSTUDIO_INVOKED

#endif    // German (Switzerland) resources
/////////////////////////////////////////////////////////////////////////////



#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
#define _AFX_NO_SPLITTER_RESOURCES
#define _AFX_NO_OLE_RESOURCES
#define _AFX_NO_TRACKER_RESOURCES
#define _AFX_NO_PROPERTY_RESOURCES

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE 9, 1
#pragma code_page(1252)
#include "TortoiseProc.rc2"  // non-Microsoft Visual C++ edited resources
#include "afxres.rc"         // Standard components
#include "afxprint.rc"  // printing/print preview resources
#include "afxribbon.rc" // ribbon and control bar resources
#include "afxolecl.rc"  // OLE container resources
#endif

/////////////////////////////////////////////////////////////////////////////
#endif    // not APSTUDIO_INVOKED

Added extern/TortoiseSVNResources/TortoiseSVN_Error.wav.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/TortoiseSVN_Notification.wav.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/TortoiseSVN_warning.wav.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/TortoiseShell.rc2.




































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
//
// TortoiseProc.RC2 - resources Microsoft Visual C++ does not edit directly
//

#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
// Add manually edited resources here...
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
#include "..\version.h"
VS_VERSION_INFO VERSIONINFO
 FILEVERSION FILEVER
 PRODUCTVERSION PRODUCTVER
 FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x4L
 FILETYPE VFT_DLL
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040004e4"
        BEGIN
            VALUE "CompanyName", "http://tortoisesvn.net\0"
            VALUE "FileDescription", "TortoiseSVN shell extension client\0"
            VALUE "FileVersion", STRFILEVER
            VALUE "InternalName", "TortoiseSVN.dll\0"
            VALUE "LegalCopyright", "Copyright (C) 2003-2012 - TortoiseSVN\0"
            VALUE "OriginalFilename", "TortoiseSVN.dll\0"
            VALUE "ProductName", "TortoiseSVN\0"
            VALUE "ProductVersion", STRPRODUCTVER
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x400, 1252
    END
END

/////////////////////////////////////////////////////////////////////////////
Added extern/TortoiseSVNResources/TortoiseSmall.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/UnlockBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/UpdateBackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/actionadded.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/actiondeleted.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/actionmerged.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/actionmodified.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/actionreplaced.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/actionreversemerged.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/aerobackground.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/backward.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/bin167.avi.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/bin168.avi.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/bugtraq.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/cache.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/cancel-normal.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/cancel-pressed.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/cleananim.avi.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/clippaste.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/copy.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/depthemptyovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/depthfilesovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/depthimmediatesovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/dialogs.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/download.avi.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/explorer.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/externalovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/externalpeggedovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/filteredit.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/forward.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/general.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/graph-bar-stacked.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/graph-bar.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/graph-line-stacked.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/graph-line.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/graph-pie.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/hook.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/iconset.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/license.txt.














































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
The icons in these folders are available either under the terms
of the GNU General Public License, or under the terms of the TortoiseSVN
Icon License below, unless the folder contains an alternative
license file.

====================================================================
Copyright (c) 2006-2012 The TortoiseSVN Project.  All rights reserved.

Redistribution and use of these icons, with or without modification,
are permitted provided that the following conditions are met:

1. Redistributions of these icons as part of a source or binary
   distribution must retain the above copyright notice and this
   list of conditions.

2. The icons may only be used for a Subversion client application,
   or for an application with Subversion support (e.g. an IDE).
   You may not use these icons for to represent actions which are
   not directly related to Subversion. If the application supports
   other version control systems besides Subversion, the icons may
   be used for those other version control systems too.

3. Software using these icons must provide an acknowledgement
   that the icons were derived from the TortoiseSVN project,
   with a link to the project website (tortoisesvn.net)
   in one or more of the following places:
   a) an "about" box.
   b) the product user manual.
   c) a textfile in the installation folder of the application.
   d) a contributors page on the product web page.

4. The name "TortoiseSVN" must not be used to endorse or
   promote products using these icons without prior written
   permission. For written permission, please contact
   dev@tortoisesvn.tigris.org.

5. If you provide additional icon sets for Subversion actions or
   status besides those you use from us, you must give us
   permission to use your icon sets too.
Added extern/TortoiseSVNResources/lineadded.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/lineconflicted.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/lineconflictedignored.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/lineedited.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/lineequal.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/lineremoved.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/linewhitespace.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/link.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/logfilter.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/lookandfeel.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuabout.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuadd.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menublame.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menucheckout.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menucleanup.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menucommit.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menucompare.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuconflict.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menucopy.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menucreaterepos.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menudelete.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menudelunversioned.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menudiff.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuexport.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuhelp.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuignore.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuimport.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menulock.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menulog.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menumerge.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menupatch.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuproperties.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menurelocate.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menurename.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menurepobrowse.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuresolve.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menurevert.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menurevisiongraph.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menusettings.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menushowchanged.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuswitch.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuunlock.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/menuupdate.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/mergeinfoovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/misc.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/moved.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/nestedovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/newfolder.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/16x16turtle3.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/ball.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/doc.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/egg.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/external1.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/nestedidea2.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/question1.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/question2.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/not used/readme.txt.




>
>
1
2
This directory contains icons that are not used in TSVN.
We'll keep those icons in here for a possible future use.
Added extern/TortoiseSVNResources/open.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/pan.cur.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/pandown.cur.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/proxy.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/refresh.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/repo_file.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/repo_http.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/repo_https.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/repo_svn+ssh.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/repo_svn.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/repo_unknown.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/restore.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/restoreovl.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraph_added.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraph_addedplus.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraph_deleted.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraph_lastcommit.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraph_renamed.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraph_replaced.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraph_tag.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraphbar.bmp.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/revgraphglyphs.bmp.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon.mfcribbon-ms.




>
>
1
2
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AFX_RIBBON><HEADER><VERSION>1</VERSION></HEADER><RIBBON_BAR><ELEMENT_NAME>RibbonBar</ELEMENT_NAME><ENABLE_TOOLTIPS>TRUE</ENABLE_TOOLTIPS><ENABLE_TOOLTIPS_DESCRIPTION>TRUE</ENABLE_TOOLTIPS_DESCRIPTION><ENABLE_KEYS>TRUE</ENABLE_KEYS><ENABLE_PRINTPREVIEW>TRUE</ENABLE_PRINTPREVIEW><ENABLE_DRAWUSINGFONT>FALSE</ENABLE_DRAWUSINGFONT><IMAGE><ID><NAME>IDB_RIBBONSMALL</NAME><VALUE>158</VALUE></ID></IMAGE><BUTTON_MAIN><ELEMENT_NAME>Button_Main</ELEMENT_NAME><ID><NAME>ID_LOGOBUTTON</NAME><VALUE>32897</VALUE></ID><KEYS>T</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><IMAGE><ID><NAME>IDB_LOGO</NAME><VALUE>159</VALUE></ID><ID_HDPI><NAME>IDB_LOGO</NAME><VALUE>159</VALUE></ID_HDPI></IMAGE></BUTTON_MAIN><CATEGORY_MAIN><ELEMENT_NAME>Category_Main</ELEMENT_NAME><NAME>TortoiseMerge</NAME><IMAGE_SMALL><ID><NAME>IDB_RIBBONSMALL</NAME><VALUE>158</VALUE></ID></IMAGE_SMALL><IMAGE_LARGE><ID><NAME>IDB_RIBBONLARGE</NAME><VALUE>157</VALUE></ID></IMAGE_LARGE><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_SHOWFILELIST</NAME><VALUE>32817</VALUE></ID><TEXT>Hide/Show the patch file list</TEXT><KEYS>H</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>30</INDEX_SMALL><INDEX_LARGE>30</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_OPTIONS</NAME><VALUE>32782</VALUE></ID><TEXT>Settings</TEXT><KEYS>S</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>42</INDEX_SMALL><INDEX_LARGE>42</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button_Main_Panel</ELEMENT_NAME><ID><NAME>ID_APP_EXIT</NAME><VALUE>57665</VALUE></ID><TEXT>Exit</TEXT><KEYS>X</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>40</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND></ELEMENT></ELEMENTS><RECENT_FILE_LIST><ENABLE>FALSE</ENABLE><WIDTH>300</WIDTH></RECENT_FILE_LIST></CATEGORY_MAIN><TAB_ELEMENTS><ELEMENT_NAME>Group</ELEMENT_NAME><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>IDC_STYLEBUTTON</NAME><VALUE>10000</VALUE></ID><TEXT>Style</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>FALSE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_WIN_2000</NAME><VALUE>10003</VALUE></ID><TEXT>Windows 2000</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_OFF_XP</NAME><VALUE>10004</VALUE></ID><TEXT>Office XP</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_WIN_XP</NAME><VALUE>10005</VALUE></ID><TEXT>Windows XP</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_OFF_2003</NAME><VALUE>10006</VALUE></ID><TEXT>Office 2003</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_VS_2005</NAME><VALUE>10007</VALUE></ID><TEXT>Visual Studio 2005</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_VS_2008</NAME><VALUE>10002</VALUE></ID><TEXT>Visual Studio 2008</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_WIN7</NAME><VALUE>10001</VALUE></ID><TEXT>Windows 7</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_OFFICE2007</NAME><VALUE>10008</VALUE></ID><TEXT>Office 2007</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_OFF_2007_BLUE</NAME><VALUE>10009</VALUE></ID><TEXT>Blue Style</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_OFF_2007_BLACK</NAME><VALUE>10010</VALUE></ID><TEXT>Black Style</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_OFF_2007_SILVER</NAME><VALUE>10011</VALUE></ID><TEXT>Silver Style</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_APPLOOK_OFF_2007_AQUA</NAME><VALUE>10012</VALUE></ID><TEXT>Aqua Style</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT></ELEMENTS></ELEMENT></ELEMENTS></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_HELP</NAME><VALUE>57670</VALUE></ID><TEXT>Help</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>41</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_APP_ABOUT</NAME><VALUE>57664</VALUE></ID><TEXT>About</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>39</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT></ELEMENTS></TAB_ELEMENTS><CATEGORIES><CATEGORY><ELEMENT_NAME>Category</ELEMENT_NAME><NAME>Main</NAME><KEYS>M</KEYS><IMAGE_SMALL><ID><NAME>IDB_RIBBONSMALL</NAME><VALUE>158</VALUE></ID><ID_HDPI><NAME>IDB_RIBBONSMALL</NAME><VALUE>158</VALUE></ID_HDPI></IMAGE_SMALL><IMAGE_LARGE><ID><NAME>IDB_RIBBONLARGE</NAME><VALUE>157</VALUE></ID><ID_HDPI><NAME>IDB_RIBBONLARGE</NAME><VALUE>157</VALUE></ID_HDPI></IMAGE_LARGE><PANELS><PANEL><ELEMENT_NAME>Panel</ELEMENT_NAME><NAME>Files</NAME><KEYS>F</KEYS><INDEX>-1</INDEX><JUSTIFY_COLUMNS>FALSE</JUSTIFY_COLUMNS><CENTER_COLUMN_VERT>FALSE</CENTER_COLUMN_VERT><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_FILE_OPEN</NAME><VALUE>57601</VALUE></ID><TEXT>Open</TEXT><KEYS>O</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>0</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_FILE_SAVE</NAME><VALUE>57603</VALUE></ID><TEXT>Save</TEXT><KEYS>S</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_FILE_SAVE_AS</NAME><VALUE>57604</VALUE></ID><TEXT>Save as</TEXT><KEYS>A</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>43</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT></ELEMENTS></PANEL><PANEL><ELEMENT_NAME>Panel</ELEMENT_NAME><NAME>Edit</NAME><KEYS>E</KEYS><INDEX>-1</INDEX><JUSTIFY_COLUMNS>FALSE</JUSTIFY_COLUMNS><CENTER_COLUMN_VERT>FALSE</CENTER_COLUMN_VERT><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_FILE_RELOAD</NAME><VALUE>32794</VALUE></ID><TEXT>Reload</TEXT><KEYS>R</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>2</INDEX_SMALL><INDEX_LARGE>2</INDEX_LARGE><DEFAULT_COMMAND>FALSE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_UNDO</NAME><VALUE>57643</VALUE></ID><TEXT>Undo</TEXT><KEYS>Z</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>3</INDEX_SMALL><INDEX_LARGE>3</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Separator</ELEMENT_NAME><HORIZ>FALSE</HORIZ></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_COPY</NAME><VALUE>57634</VALUE></ID><TEXT>Copy</TEXT><KEYS>C</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>27</INDEX_SMALL><INDEX_LARGE>27</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_PASTE</NAME><VALUE>57637</VALUE></ID><TEXT>Paste</TEXT><KEYS>P</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>28</INDEX_SMALL><INDEX_LARGE>28</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_USEBLOCKS</NAME><VALUE>32914</VALUE></ID><TEXT>Use Blocks</TEXT><KEYS>B</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>18</INDEX_SMALL><INDEX_LARGE>18</INDEX_LARGE><DEFAULT_COMMAND>FALSE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USELEFTBLOCK</NAME><VALUE>32855</VALUE></ID><TEXT>Use left block</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USELEFTFILE</NAME><VALUE>32856</VALUE></ID><TEXT>Use left file</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USEBLOCKFROMLEFTBEFORERIGHT</NAME><VALUE>32857</VALUE></ID><TEXT>Use block from left before right</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USEBLOCKFROMRIGHTBEFORELEFT</NAME><VALUE>32859</VALUE></ID><TEXT>Use block from right before left</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Separator</ELEMENT_NAME><HORIZ>TRUE</HORIZ></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USETHEIRBLOCK</NAME><VALUE>32819</VALUE></ID><TEXT>Use 'theirs' text block</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USEMYBLOCK</NAME><VALUE>32820</VALUE></ID><TEXT>Use 'mine' text block</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USETHEIRTHENMYBLOCK</NAME><VALUE>32821</VALUE></ID><TEXT>Use 'theirs' text block then 'mine'</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_USEMINETHENTHEIRBLOCK</NAME><VALUE>32822</VALUE></ID><TEXT>Use 'mine' text block then 'theirs'</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>-1</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT></ELEMENTS></ELEMENT><ELEMENT><ELEMENT_NAME>Separator</ELEMENT_NAME><HORIZ>FALSE</HORIZ></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_FIND</NAME><VALUE>57636</VALUE></ID><TEXT>Find</TEXT><KEYS>F</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>24</INDEX_SMALL><INDEX_LARGE>24</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_GOTOLINE</NAME><VALUE>32893</VALUE></ID><TEXT>Goto Line</TEXT><KEYS>G</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>25</INDEX_SMALL><INDEX_LARGE>25</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_MARKASRESOLVED</NAME><VALUE>32808</VALUE></ID><TEXT>Mark as resolved</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>20</INDEX_SMALL><INDEX_LARGE>20</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Separator</ELEMENT_NAME><HORIZ>FALSE</HORIZ></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_EDIT_CREATEUNIFIEDDIFFFILE</NAME><VALUE>32828</VALUE></ID><TEXT>Create patch file</TEXT><KEYS>P</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>26</INDEX_SMALL><INDEX_LARGE>26</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT></ELEMENTS></PANEL><PANEL><ELEMENT_NAME>Panel</ELEMENT_NAME><NAME>Navigate</NAME><KEYS>N</KEYS><INDEX>-1</INDEX><JUSTIFY_COLUMNS>TRUE</JUSTIFY_COLUMNS><CENTER_COLUMN_VERT>FALSE</CENTER_COLUMN_VERT><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_NAVIGATE_PREVIOUSDIFFERENCE</NAME><VALUE>32780</VALUE></ID><TEXT>Previous difference</TEXT><KEYS>PD</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>5</INDEX_SMALL><INDEX_LARGE>5</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_NAVIGATE_NEXTDIFFERENCE</NAME><VALUE>32779</VALUE></ID><TEXT>Next difference</TEXT><KEYS>ND</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>7</INDEX_SMALL><INDEX_LARGE>7</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_NAVIGATE_PREVIOUSCONFLICT</NAME><VALUE>32802</VALUE></ID><TEXT>Previous conflict</TEXT><KEYS>PC</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>13</INDEX_SMALL><INDEX_LARGE>13</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_NAVIGATE_NEXTCONFLICT</NAME><VALUE>32804</VALUE></ID><TEXT>Next conflict</TEXT><KEYS>NC</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>15</INDEX_SMALL><INDEX_LARGE>15</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_NAVIGATE_NEXTINLINEDIFF</NAME><VALUE>32875</VALUE></ID><TEXT>Previous inline difference</TEXT><KEYS>PI</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>9</INDEX_SMALL><INDEX_LARGE>9</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_NAVIGATE_PREVINLINEDIFF</NAME><VALUE>32876</VALUE></ID><TEXT>Next inline difference</TEXT><KEYS>NI</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>11</INDEX_SMALL><INDEX_LARGE>11</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT></ELEMENTS></PANEL><PANEL><ELEMENT_NAME>Panel</ELEMENT_NAME><NAME>View</NAME><KEYS>V</KEYS><INDEX>-1</INDEX><JUSTIFY_COLUMNS>FALSE</JUSTIFY_COLUMNS><CENTER_COLUMN_VERT>FALSE</CENTER_COLUMN_VERT><ELEMENTS><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_WHITESPACES</NAME><VALUE>32774</VALUE></ID><TEXT>Show Whitespaces</TEXT><KEYS>W</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>23</INDEX_SMALL><INDEX_LARGE>23</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_WRAPLONGLINES</NAME><VALUE>32881</VALUE></ID><TEXT>Wrap long lines</TEXT><KEYS>L</KEYS><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>38</INDEX_SMALL><INDEX_LARGE>38</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_INLINEDIFF</NAME><VALUE>32889</VALUE></ID><TEXT>Inline diff</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>31</INDEX_SMALL><INDEX_LARGE>31</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_INLINEDIFFWORD</NAME><VALUE>32825</VALUE></ID><TEXT>Inline diff word-wise</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>32</INDEX_SMALL><INDEX_LARGE>32</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Separator</ELEMENT_NAME><HORIZ>FALSE</HORIZ></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_COMPAREWHITESPACES</NAME><VALUE>32871</VALUE></ID><TEXT>Compare whitespaces</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>35</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_IGNOREWHITESPACECHANGES</NAME><VALUE>32872</VALUE></ID><TEXT>Ignore whitespace changes</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>36</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_IGNOREALLWHITESPACECHANGES</NAME><VALUE>32873</VALUE></ID><TEXT>Ignore all whitespace changes</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>37</INDEX_SMALL><INDEX_LARGE>-1</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Separator</ELEMENT_NAME><HORIZ>FALSE</HORIZ></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_ONEWAYDIFF</NAME><VALUE>32775</VALUE></ID><TEXT>Switch between single and double pane view</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>33</INDEX_SMALL><INDEX_LARGE>33</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_SWITCHLEFT</NAME><VALUE>32811</VALUE></ID><TEXT>Switch left and right view</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>34</INDEX_SMALL><INDEX_LARGE>34</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT><ELEMENT><ELEMENT_NAME>Button</ELEMENT_NAME><ID><NAME>ID_VIEW_COLLAPSED</NAME><VALUE>32870</VALUE></ID><TEXT>Collapse</TEXT><PALETTE_TOP>FALSE</PALETTE_TOP><ALWAYS_LARGE>FALSE</ALWAYS_LARGE><INDEX_SMALL>29</INDEX_SMALL><INDEX_LARGE>29</INDEX_LARGE><DEFAULT_COMMAND>TRUE</DEFAULT_COMMAND><ALWAYS_DESCRIPTION>FALSE</ALWAYS_DESCRIPTION></ELEMENT></ELEMENTS></PANEL></PANELS></CATEGORY></CATEGORIES></RIBBON_BAR></AFX_RIBBON>
Added extern/TortoiseSVNResources/ribbon/About.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Check.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Collapse.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Copy.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/DownGreen.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/DownGreenDots.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/DownRed.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Exit.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/FileList.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Goto.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Help.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/InlineDiff.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/InlineDiffWord.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/LeftGreen.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/LeftGreenDots.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/LeftRed.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/OneWayDiff.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Open.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/OrangeDotDown.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/OrangeDotLeft.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/OrangeDotRight.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/OrangeDotUp.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Paste.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Pilcrow.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Refresh.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/RightGreen.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/RightGreenDots.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/RightRed.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Save.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/SaveAs.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Search.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Settings.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Switch.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/TortoiseMerge.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/Undo.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/UniDiff.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/UpGreen.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/UpGreenDots.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/UpRed.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/WhiteSpace1.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/WhiteSpace2.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/WhiteSpace3.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/WrapLines.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/createribbonimglist.bat.








>
>
>
>
1
2
3
4
..\tools\convert.exe -resize 32x32 @ribbonimagelist.txt +append ribbonlarge.png
..\tools\convert.exe -resize 16x16 @ribbonimagelist.txt +append ribbonsmall.png
del ..\*.aps

Added extern/TortoiseSVNResources/ribbon/ribbonimagelist.txt.
























































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
Open.png
Save.png
Refresh.png
Undo.png
DownGreen.png
LeftGreen.png
UpGreen.png
RightGreen.png
DownGreenDots.png
LeftGreenDots.png
UpGreenDots.png
RightGreenDots.png
DownRed.png
LeftRed.png
UpRed.png
RightRed.png
OrangeDotDown.png
OrangeDotLeft.png
OrangeDotRight.png
OrangeDotUp.png
Check.png
Refresh.png
Undo.png
Pilcrow.png
Search.png
Goto.png
UniDiff.png
Copy.png
Paste.png
Collapse.png
FileList.png
InlineDiff.png
InlineDiffWord.png
OneWayDiff.png
Switch.png
WhiteSpace1.png
WhiteSpace2.png
WhiteSpace3.png
WrapLines.png
About.png
Exit.png
Help.png
Settings.png
SaveAs.png
Added extern/TortoiseSVNResources/ribbon/ribbonlarge.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ribbon/ribbonsmall.png.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/save.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/saveas.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/saveddata.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/search.avi.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ssh.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/svg/Checkout.svg.
























































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="453.58005"
   height="492.67197"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="Checkout.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.90509668"
     inkscape:cx="370.33648"
     inkscape:cy="220.82648"
     inkscape:document-units="px"
     inkscape:current-layer="g2187"
     inkscape:window-width="937"
     inkscape:window-height="1064"
     inkscape:window-x="960"
     inkscape:window-y="3" />
  <defs
     id="defs4">
    <linearGradient
       id="linearGradient3149">
      <stop
         style="stop-color:#4f6b47;stop-opacity:0;"
         offset="0"
         id="stop3151" />
      <stop
         style="stop-color:#529a3f;stop-opacity:1;"
         offset="1"
         id="stop3153" />
    </linearGradient>
    <linearGradient
       id="linearGradient5185">
      <stop
         style="stop-color:#125609;stop-opacity:1;"
         offset="0"
         id="stop5187" />
      <stop
         style="stop-color:#5ff900;stop-opacity:0;"
         offset="1"
         id="stop5189" />
    </linearGradient>
    <linearGradient
       id="linearGradient4174">
      <stop
         style="stop-color:#b27c42;stop-opacity:0;"
         offset="0"
         id="stop4176" />
      <stop
         style="stop-color:#feff00;stop-opacity:1"
         offset="1"
         id="stop4178" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4174"
       id="radialGradient4180"
       cx="306.42856"
       cy="350.93362"
       fx="306.42856"
       fy="350.93362"
       r="145.0625"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,143.52101,-917.50959)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5185"
       id="linearGradient5195"
       x1="244.72736"
       y1="347.5466"
       x2="517.41266"
       y2="347.5466"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-139.73305)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient3155"
       x1="242.42725"
       y1="350.86115"
       x2="519.71277"
       y2="350.86115"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-144.01614)" />
  </defs>
  <metadata
     id="metadata7">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-217.54174,-5.6176643)" />
  <g
     id="g2187"
     inkscape:groupmode="layer"
     inkscape:label="fill text"
     transform="translate(-217.54174,-5.6176643)">
    <rect
       style="opacity:1;fill:url(#radialGradient4180);fill-opacity:1;fill-rule:evenodd;stroke:#f7882e;stroke-width:8;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55882353"
       id="rect3203"
       width="290"
       height="468.57144"
       x="377.1218"
       y="9.6176643"
       ry="37.857143"
       rx="37.857143" />
    <path
       style="fill:url(#linearGradient5195);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3155);stroke-width:6.95952702;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 621.19415,218.62593 C 520.66044,209.06851 527.703,125.41031 523.48286,85.378433 C 446.08994,101.11087 326.22337,270.25382 298.28291,351.77504 L 221.0215,197.725 L 221.70561,494.80988 L 504.48663,494.04887 L 354.33743,404.45605 C 377.33501,311.59245 532.54413,240.37549 621.19415,218.62593 z "
       id="path4214"
       sodipodi:nodetypes="cccccccc" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Copy.svg.




















































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="130.03604"
   height="101.51018"
   id="svg3321"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="Copy.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape">
  <defs
     id="defs3323">
    <linearGradient
       id="linearGradient5301">
      <stop
         style="stop-color:#effb00;stop-opacity:1;"
         offset="0"
         id="stop5303" />
      <stop
         style="stop-color:#ff8d88;stop-opacity:0.41290322;"
         offset="1"
         id="stop5305" />
    </linearGradient>
    <linearGradient
       id="linearGradient4300">
      <stop
         style="stop-color:#1221c8;stop-opacity:1;"
         offset="0"
         id="stop4302" />
      <stop
         style="stop-color:#1221c8;stop-opacity:0.3548387;"
         offset="1"
         id="stop4304" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4300"
       id="radialGradient4308"
       cx="91.040001"
       cy="72.261673"
       fx="91.040001"
       fy="72.261673"
       r="46.840752"
       gradientTransform="matrix(1,0,0,1.0835669,0,-6.0386851)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5301"
       id="radialGradient5307"
       cx="149.75513"
       cy="49.280704"
       fx="149.75513"
       fy="49.280704"
       r="22.113146"
       gradientTransform="matrix(1,0,0,1.1086829,0,-5.3559677)"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="5.6"
     inkscape:cx="70.004624"
     inkscape:cy="49.917074"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1238"
     inkscape:window-height="1040"
     inkscape:window-x="277"
     inkscape:window-y="19" />
  <metadata
     id="metadata3326">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-44.19925,-21.506586)">
    <path
       style="fill:url(#radialGradient4308);fill-opacity:1;fill-rule:evenodd;stroke:#13135c;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 78.286822,22.006586 C 63.954461,27.483553 54.457356,35.084721 44.69925,46.502784 C 55.221673,39.490556 63.72379,35.077735 73.23606,35.643645 L 72.730983,122.51676 L 82.579971,122.51676 L 82.832509,94.990107 L 129.55207,59.129691 C 131.37603,65.336533 129.13902,70.731181 127.7843,76.302285 C 131.67376,69.002398 137.39864,60.365865 138.13836,51.806085 C 132.18888,46.455086 127.03325,44.197407 120.46069,41.957098 C 123.40735,44.920136 126.12467,47.929043 125.764,51.553547 L 82.579971,84.130967 L 82.579971,35.643645 C 88.955934,35.031696 100.1214,38.106045 108.84394,44.482479 C 96.839679,31.438116 91.447014,25.087393 78.286822,22.006586 z "
       id="path3329"
       sodipodi:nodetypes="ccccccccccccccc" />
    <path
       sodipodi:type="star"
       style="opacity:1;fill:url(#radialGradient5307);fill-opacity:1;fill-rule:nonzero;stroke:#f3502f;stroke-width:1.47299993;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="path4312"
       sodipodi:sides="6"
       sodipodi:cx="149.75513"
       sodipodi:cy="49.280704"
       sodipodi:r1="23.323917"
       sodipodi:r2="11.661959"
       sodipodi:arg1="0.58499961"
       sodipodi:arg2="1.1085984"
       inkscape:flatsided="false"
       inkscape:rounded="0"
       inkscape:randomized="0"
       d="M 169.20056,62.16015 L 154.95539,59.719027 L 148.32392,72.560669 L 143.3154,59.003423 L 128.87848,59.681224 L 138.11514,48.5651 L 130.30969,36.401259 L 144.55487,38.842382 L 151.18634,26.00074 L 156.19485,39.557986 L 170.63177,38.880185 L 161.39511,49.996309 L 169.20056,62.16015 z "
       transform="matrix(0.9152852,-0.4028065,0.4028065,0.9152852,-6.4064907,62.2243)" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Export.svg.








































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="378.87219"
   height="313.27179"
   id="svg2242"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="Export.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape">
  <defs
     id="defs2244">
    <linearGradient
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-144.01614)"
       gradientUnits="userSpaceOnUse"
       y2="350.86115"
       x2="519.71277"
       y1="350.86115"
       x1="242.42725"
       id="linearGradient3155"
       xlink:href="#linearGradient3149"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-139.73305)"
       gradientUnits="userSpaceOnUse"
       y2="347.5466"
       x2="517.41266"
       y1="347.5466"
       x1="244.72736"
       id="linearGradient5195"
       xlink:href="#linearGradient5185"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,143.52101,-917.50959)"
       r="145.0625"
       fy="350.93362"
       fx="306.42856"
       cy="350.93362"
       cx="306.42856"
       id="radialGradient4180"
       xlink:href="#linearGradient4174"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient4174">
      <stop
         id="stop4176"
         offset="0"
         style="stop-color:#b27c42;stop-opacity:0;" />
      <stop
         id="stop4178"
         offset="1"
         style="stop-color:#feff00;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient5185">
      <stop
         id="stop5187"
         offset="0"
         style="stop-color:#125609;stop-opacity:1;" />
      <stop
         id="stop5189"
         offset="1"
         style="stop-color:#5ff900;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3149">
      <stop
         id="stop3151"
         offset="0"
         style="stop-color:#4f6b47;stop-opacity:0;" />
      <stop
         id="stop3153"
         offset="1"
         style="stop-color:#529a3f;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4174"
       id="radialGradient3357"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,143.52101,-917.50959)"
       cx="306.42856"
       cy="350.93362"
       fx="306.42856"
       fy="350.93362"
       r="145.0625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5185"
       id="linearGradient3359"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-139.73305)"
       x1="244.72736"
       y1="347.5466"
       x2="517.41266"
       y2="347.5466" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient3361"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-144.01614)"
       x1="242.42725"
       y1="350.86115"
       x2="519.71277"
       y2="350.86115" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5185"
       id="linearGradient3364"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.8238358,-9.5921004e-5,-1.1490497e-4,0.8217928,634.25965,-14.510942)"
       x1="244.72736"
       y1="347.5466"
       x2="517.41266"
       y2="347.5466" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient3366"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.8238358,-9.5921004e-5,-1.1490497e-4,0.8217928,634.26004,-17.234832)"
       x1="242.42725"
       y1="350.86115"
       x2="519.71277"
       y2="350.86115" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4174"
       id="radialGradient3369"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,8.1864,-516.36631)"
       cx="306.42856"
       cy="350.93362"
       fx="306.42856"
       fy="350.93362"
       r="145.0625" />
  </defs>
  <sodipodi:namedview
     inkscape:document-units="in"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.72"
     inkscape:cx="263.16383"
     inkscape:cy="264.68085"
     inkscape:current-layer="layer1"
     id="namedview2246"
     inkscape:window-width="1178"
     inkscape:window-height="1048"
     inkscape:window-x="545"
     inkscape:window-y="47" />
  <metadata
     id="metadata2248">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-56.111111,-78.055558)">
    <g
       id="g3236">
      <rect
         ry="0"
         rx="37.857143"
         y="82.916672"
         x="60.972225"
         height="212.77771"
         width="212.77777"
         id="rect2261"
         style="opacity:1;fill:#dbddf4;fill-opacity:1;fill-rule:nonzero;stroke:#141417;stroke-width:9.72222805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <rect
         rx="0"
         y="82.281479"
         x="61.725918"
         height="87.659264"
         width="211.2704"
         id="rect3234"
         style="opacity:1;fill:#9da2dc;fill-opacity:1;fill-rule:nonzero;stroke:#141417;stroke-width:8.45183754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       inkscape:label="Ebene 1"
       id="g3348"
       transform="translate(-57.55683,315.03217)" />
    <path
       sodipodi:nodetypes="cccccccc"
       id="path4214"
       d="M 153.77618,213.33581 C 223.84106,207.26581 218.94039,154.06179 221.88506,128.60338 C 275.82039,138.6149 359.34285,246.19312 378.80788,298.03978 L 432.66666,200.07608 L 432.16348,389.01071 L 235.08759,388.5038 L 339.73765,331.53835 C 323.71841,272.47876 215.55629,227.1749 153.77618,213.33581 z "
       style="fill:url(#linearGradient3364);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3366);stroke-width:4.63326359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Import.svg.
























































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="548.59753"
   height="537.97101"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="Import.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.90509668"
     inkscape:cx="370.33648"
     inkscape:cy="220.82648"
     inkscape:document-units="px"
     inkscape:current-layer="g2187"
     inkscape:window-width="937"
     inkscape:window-height="1064"
     inkscape:window-x="960"
     inkscape:window-y="3" />
  <defs
     id="defs4">
    <linearGradient
       id="linearGradient3149">
      <stop
         style="stop-color:#4f6b47;stop-opacity:0;"
         offset="0"
         id="stop3151" />
      <stop
         style="stop-color:#529a3f;stop-opacity:1;"
         offset="1"
         id="stop3153" />
    </linearGradient>
    <linearGradient
       id="linearGradient5185">
      <stop
         style="stop-color:#125609;stop-opacity:1;"
         offset="0"
         id="stop5187" />
      <stop
         style="stop-color:#5ff900;stop-opacity:0;"
         offset="1"
         id="stop5189" />
    </linearGradient>
    <linearGradient
       id="linearGradient4174">
      <stop
         style="stop-color:#b27c42;stop-opacity:0;"
         offset="0"
         id="stop4176" />
      <stop
         style="stop-color:#feff00;stop-opacity:1"
         offset="1"
         id="stop4178" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4174"
       id="radialGradient4180"
       cx="306.42856"
       cy="350.93362"
       fx="306.42856"
       fy="350.93362"
       r="145.0625"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,143.52101,-917.50959)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient5195"
       x1="244.72736"
       y1="347.5466"
       x2="517.41266"
       y2="347.5466"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.1821085,0,0,-1.2922042,815.3961,765.22039)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5185"
       id="linearGradient3155"
       x1="242.42725"
       y1="350.86115"
       x2="519.71277"
       y2="350.86115"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1.1821085,0,0,-1.2922042,815.3961,769.50348)" />
  </defs>
  <metadata
     id="metadata7">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-122.52427,-5.6176643)" />
  <g
     id="g2187"
     inkscape:groupmode="layer"
     inkscape:label="fill text"
     transform="translate(-122.52427,-5.6176643)">
    <rect
       style="opacity:1;fill:url(#radialGradient4180);fill-opacity:1;fill-rule:evenodd;stroke:#f7882e;stroke-width:8;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.55882353"
       id="rect3203"
       width="290"
       height="468.57144"
       x="377.1218"
       y="9.6176643"
       ry="37.857143"
       rx="37.857143" />
    <path
       style="fill:url(#linearGradient5195);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3155);stroke-width:6.95952702;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 126.00403,406.86141 C 226.53774,416.41883 219.49518,500.07703 223.71532,540.10891 C 301.10824,524.37647 420.97481,355.23352 448.91527,273.7123 L 526.17668,427.76234 L 525.49257,130.67746 L 242.71155,131.43847 L 392.86075,221.03129 C 369.86317,313.89489 214.65405,385.11185 126.00403,406.86141 z "
       id="path4214"
       sodipodi:nodetypes="cccccccc" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Merge.svg.








































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="147.28612"
   height="157.64325"
   id="svg2314"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="Merge.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <defs
     id="defs2316">
    <linearGradient
       id="linearGradient3293">
      <stop
         style="stop-color:#1221c8;stop-opacity:1;"
         offset="0"
         id="stop3295" />
      <stop
         style="stop-color:#1221c8;stop-opacity:0.47096774;"
         offset="1"
         id="stop3297" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3293"
       id="radialGradient3301"
       cx="267.85715"
       cy="172.71931"
       fx="267.85715"
       fy="172.71931"
       r="72.64286"
       gradientTransform="matrix(1,0,0,1.0737462,0,-12.737396)"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.8"
     inkscape:cx="104.75287"
     inkscape:cy="57.914594"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1205"
     inkscape:window-height="892"
     inkscape:window-x="162"
     inkscape:window-y="113" />
  <metadata
     id="metadata2319">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-194.21408,-93.719128)">
    <path
       style="fill:url(#radialGradient3301);fill-opacity:1;fill-rule:evenodd;stroke:#353589;stroke-width:2.47300005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       d="M 210.33416,94.955628 C 210.80976,104.35085 206.36941,105.2137 195.45058,103.73769 L 254.98488,150.1976 L 252.57131,220.45405 C 241.62715,220.60809 239.89148,218.41605 225.36959,203.08028 C 231.53258,226.97475 241.23925,237.41635 258.46606,250.12588 C 280.69551,236.8495 292.43729,223.88102 298.27391,204.81081 C 283.30613,217.37125 283.34891,224.20317 266.24811,221.02064 L 267.85715,172.86097 L 340.2637,135.4664 C 333.05943,133.6877 327.36485,135.8356 329.62451,126.22248 L 270.27069,158.12978 L 270.27069,140.56567 L 210.33416,94.955628 z "
       id="path2322"
       sodipodi:nodetypes="cccccccccccccc" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/AddedIcon.svg.






















































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="TortoiseAdded.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseAdded.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient3179">
      <stop
         style="stop-color:#0085ff;stop-opacity:1;"
         offset="0"
         id="stop3181" />
      <stop
         id="stop3189"
         offset="1"
         style="stop-color:#0000b1;stop-opacity:0.95342463;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3179"
       id="radialGradient3187"
       cx="47.5"
       cy="211"
       fx="47.5"
       fy="211"
       r="48"
       gradientTransform="matrix(1.6661909,0,0,1.6671553,0.8559243,-175.76975)"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.75"
     inkscape:cx="104.91578"
     inkscape:cy="127.13627"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1191"
     inkscape:window-height="1067"
     inkscape:window-x="523"
     inkscape:window-y="29" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       style="fill:url(#radialGradient3187);fill-opacity:1;fill-rule:evenodd;stroke:#00005d;stroke-width:1.7118485px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.7982833"
       d="M 50.841654,96.855932 L 50.841654,149.61865 L 0.8559243,149.61865 L 0.8559243,211.17514 L 50.841654,211.17514 L 50.841654,255.14408 L 109.15834,255.14408 L 109.15834,211.17514 L 159.14407,211.17514 L 159.14407,149.61865 L 109.15834,149.61865 L 109.15834,96.855932 L 50.841654,96.855932 z "
       id="rect2196" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/ConflictIcon.svg.




































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="TortoiseConflict.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseConflict.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient3213">
      <stop
         style="stop-color:#ffff00;stop-opacity:1;"
         offset="0"
         id="stop3215" />
      <stop
         style="stop-color:#ff7e00;stop-opacity:1;"
         offset="1"
         id="stop3217" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3213"
       id="radialGradient3219"
       cx="49.258492"
       cy="185.39777"
       fx="49.258492"
       fy="185.39777"
       r="46.746149"
       gradientTransform="matrix(1.2183687,-2.3328274e-2,2.0681441e-2,0.8724897,-14.066658,22.826651)"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.9445436"
     inkscape:cx="151.15973"
     inkscape:cy="59.680568"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1128"
     inkscape:window-height="963"
     inkscape:window-x="678"
     inkscape:window-y="104" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       sodipodi:type="star"
       style="fill:url(#radialGradient3219);fill-opacity:1;stroke:#e05e22;stroke-opacity:0.49785408"
       id="path3211"
       sodipodi:sides="3"
       sodipodi:cx="48"
       sodipodi:cy="183.27274"
       sodipodi:r1="53.403809"
       sodipodi:r2="26.701904"
       sodipodi:arg1="0.51238946"
       sodipodi:arg2="1.559587"
       inkscape:flatsided="false"
       inkscape:rounded="0"
       inkscape:randomized="0"
       d="M 94.545453,209.45455 L 48.299304,209.97296 L 2.0531544,210.49137 L 24.727273,170.18183 L 47.401392,129.87228 L 70.973423,169.66342 L 94.545453,209.45455 z "
       transform="matrix(1.7097836,2.3674872e-2,-2.0514225e-2,1.9732115,1.7249503,-160.45999)"
       inkscape:transform-center-y="-18.104477" />
    <path
       style="fill:#000000;fill-opacity:1;stroke:#e05e22;stroke-width:1.73571444;stroke-opacity:0.49785408"
       id="path3234"
       d="M 86.792406,126.45453 C 87.690625,155.51772 88.089467,183.08852 88.216139,211.58738 L 73.674387,216.92377 C 73.626091,186.22764 72.163762,161.91581 71.973032,133.55168 L 86.792406,126.45453 z "
       sodipodi:nodetypes="ccccc" />
    <path
       style="fill:#000000;fill-opacity:1;stroke:#e05e22;stroke-width:1.57869995;stroke-opacity:0.49785408"
       id="path3236"
       d="M 87.185096,223.31084 C 87.167613,226.76143 87.262161,234.80822 87.390026,237.79632 L 72.711061,242.16963 C 73.278425,234.47118 73.958711,235.23778 74.074237,227.18738 L 87.185096,223.31084 z "
       sodipodi:nodetypes="ccccc" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/DeletedIcon.svg.






















































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="TortoiseDeleted.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseDeleted.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient3145">
      <stop
         style="stop-color:#f03300;stop-opacity:0.83013701;"
         offset="0"
         id="stop3147" />
      <stop
         style="stop-color:#910000;stop-opacity:1;"
         offset="1"
         id="stop3149" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3145"
       id="radialGradient3151"
       cx="47.5"
       cy="211.14063"
       fx="47.5"
       fy="211.14063"
       r="47.5"
       gradientTransform="matrix(1.6662189,0,0,1.6662192,0.8546043,-175.80653)"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.75"
     inkscape:cx="101.89545"
     inkscape:cy="84.758378"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1191"
     inkscape:window-height="1067"
     inkscape:window-x="523"
     inkscape:window-y="29" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       style="fill:url(#radialGradient3151);fill-opacity:1;fill-rule:evenodd;stroke:#740000;stroke-width:1.70920873px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.76394851"
       d="M 31.211027,96.854604 L 1.1670204,124.57875 C 13.677871,155.30823 31.995287,170.92366 52.090834,184.51998 C 39.882584,197.33379 24.158526,208.5845 0.85460434,215.91514 L 24.1296,255.1454 C 52.129391,237.83098 68.751151,220.84447 81.926562,204.2447 C 98.679658,216.05168 115.38971,230.65475 129.93449,254.81668 L 159.04125,227.47603 C 144.55184,197.32969 126.36664,181.85606 107.64881,169.4525 C 119.96023,153.35121 134.45042,137.68069 159.1454,122.6063 L 137.38041,96.909387 C 106.65384,107.01262 92.405444,128.18801 77.708948,150.44006 C 60.253314,138.65777 43.835212,124.12405 31.211027,96.854604 z "
       id="path2162" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/IgnoredIcon.svg.
































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="IgnoredIcon.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\IgnoredIcon.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient4154">
      <stop
         style="stop-color:#c8c8dc;stop-opacity:0.56470591;"
         offset="0"
         id="stop4156" />
      <stop
         style="stop-color:#b4b4b4;stop-opacity:1;"
         offset="1"
         id="stop4158" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient4162"
       cx="47.119026"
       cy="208.49529"
       fx="47.119026"
       fy="208.49529"
       r="47.490459"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.375"
     inkscape:cx="143.83462"
     inkscape:cy="39.748835"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1191"
     inkscape:window-height="1067"
     inkscape:window-x="523"
     inkscape:window-y="29" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       sodipodi:type="arc"
       style="fill:url(#radialGradient4162);fill-opacity:1;stroke:none;stroke-opacity:0.76394851"
       id="path3183"
       sodipodi:cx="47.119026"
       sodipodi:cy="208.49529"
       sodipodi:rx="46.990459"
       sodipodi:ry="46.990459"
       d="M 94.109486 208.49529 A 46.990459 46.990459 0 1 1  0.12856674,208.49529 A 46.990459 46.990459 0 1 1  94.109486 208.49529 z"
       transform="matrix(1.7024427,0,0,1.7046498,0.1838529,-180.09038)" />
    <path
       sodipodi:type="star"
       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#c8c8c8;stroke-opacity:1"
       id="path2165"
       sodipodi:sides="4"
       sodipodi:cx="23.272726"
       sodipodi:cy="167.27274"
       sodipodi:r1="34.984764"
       sodipodi:r2="24.737967"
       sodipodi:arg1="0.75599488"
       sodipodi:arg2="1.541393"
       inkscape:flatsided="true"
       inkscape:rounded="0"
       inkscape:randomized="0"
       d="M 48.72727,191.27273 L -0.72727244,192.72728 L -2.1818176,143.27274 L 47.272725,141.81819 L 48.72727,191.27273 z "
       transform="matrix(2.5374314,0,-9.4597228e-2,0.988533,35.316047,12.8272)" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/LockedIcon.svg.












































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- This file was created using the SVG export filter from Karbon14, a free vector drawing app. -->
<!-- It is part of koffice, the free, integrated office suite for KDE (http://www.koffice.org/). -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg1"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docname="TortoiseLocked.svg"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseLocked.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <metadata
     id="metadata54">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.8284271"
     inkscape:cx="69.795824"
     inkscape:cy="105.7186"
     inkscape:window-width="1241"
     inkscape:window-height="1096"
     inkscape:window-x="115"
     inkscape:window-y="68"
     inkscape:current-layer="svg1"
     showgrid="true"
     gridspacingx="1.0000000mm"
     gridspacingy="1.0000000mm"
     width="256px"
     height="256px" />
  <defs
     id="defs2">
    <radialGradient
       id="defitem0"
       gradientUnits="userSpaceOnUse"
       cx="14.1732"
       cy="23.0315"
       fx="8.1807604"
       fy="63.338699"
       r="42.259998">
      <stop
         stop-color="#cd9749"
         offset="0"
         stop-opacity="1"
         id="stop4" />
      <stop
         stop-color="#ffd100"
         offset="0.5"
         stop-opacity="1"
         id="stop5" />
      <stop
         stop-color="#ba8e42"
         offset="1"
         stop-opacity="1"
         id="stop6" />
    </radialGradient>
    <radialGradient
       id="defitem1"
       gradientUnits="userSpaceOnUse"
       cx="32.902199"
       cy="55.7985"
       fx="33.143398"
       fy="55.556801"
       r="16.8745">
      <stop
         stop-color="#545454"
         offset="0"
         stop-opacity="1"
         id="stop8" />
      <stop
         stop-color="#808080"
         offset="0.882353"
         stop-opacity="1"
         id="stop9" />
      <stop
         stop-color="#d6d6d6"
         offset="1"
         stop-opacity="1"
         id="stop10" />
    </radialGradient>
    <radialGradient
       id="defitem2"
       gradientUnits="userSpaceOnUse"
       cx="6.3278298"
       cy="30.263599"
       fx="8.0911102"
       fy="63.375702"
       r="34.321301">
      <stop
         stop-color="#cd9749"
         offset="0"
         stop-opacity="1"
         id="stop12" />
      <stop
         stop-color="#ffd100"
         offset="0.5"
         stop-opacity="1"
         id="stop13" />
      <stop
         stop-color="#ba8e42"
         offset="1"
         stop-opacity="1"
         id="stop14" />
    </radialGradient>
    <linearGradient
       id="defitem3"
       gradientUnits="userSpaceOnUse"
       x1="21.4874"
       y1="31.8431"
       x2="25.5508"
       y2="23.521">
      <stop
         stop-color="#ffffff"
         offset="0"
         stop-opacity="1"
         id="stop16" />
      <stop
         stop-color="#ffffff"
         offset="1"
         stop-opacity="0.137363"
         id="stop17" />
    </linearGradient>
    <radialGradient
       id="defitem4"
       gradientUnits="userSpaceOnUse"
       cx="59.195999"
       cy="27.4373"
       fx="8.1807604"
       fy="63.338699"
       r="44.697701">
      <stop
         stop-color="#cd9749"
         offset="0"
         stop-opacity="1"
         id="stop19" />
      <stop
         stop-color="#ffd100"
         offset="0.5"
         stop-opacity="1"
         id="stop20" />
      <stop
         stop-color="#ba8e42"
         offset="1"
         stop-opacity="1"
         id="stop21" />
    </radialGradient>
    <linearGradient
       id="defitem6"
       gradientUnits="userSpaceOnUse"
       x1="45.405899"
       y1="13.5207"
       x2="45.405899"
       y2="27.8696">
      <stop
         stop-color="#000000"
         offset="0"
         stop-opacity="1"
         id="stop26" />
      <stop
         stop-color="#000000"
         offset="1"
         stop-opacity="0"
         id="stop27" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem1"
       id="radialGradient2430"
       gradientUnits="userSpaceOnUse"
       cx="32.902199"
       cy="55.7985"
       fx="33.143398"
       fy="55.556801"
       r="16.8745" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem6"
       id="linearGradient2448"
       gradientUnits="userSpaceOnUse"
       x1="45.405899"
       y1="13.5207"
       x2="45.405899"
       y2="27.8696"
       gradientTransform="matrix(2.3641717,0,0,-2.1973997,-31.103516,277.14997)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem4"
       id="radialGradient2455"
       gradientUnits="userSpaceOnUse"
       cx="46.53162"
       cy="13.547031"
       fx="46.53162"
       fy="13.547031"
       r="28.275072"
       gradientTransform="matrix(2.4493518,0,0,-2.4497942,-33.573925,282.53452)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem3"
       id="linearGradient2462"
       gradientUnits="userSpaceOnUse"
       x1="21.4874"
       y1="31.8431"
       x2="25.5508"
       y2="23.521"
       gradientTransform="matrix(2.3641717,0,0,-2.1973997,-31.103516,277.14997)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem2"
       id="radialGradient2465"
       gradientUnits="userSpaceOnUse"
       cx="50.274826"
       cy="11.036184"
       fx="50.274826"
       fy="11.036184"
       r="21.547291"
       gradientTransform="matrix(2.3641717,0,0,-2.1973997,-31.103516,277.14997)" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem0"
       id="radialGradient2476"
       gradientUnits="userSpaceOnUse"
       cx="14.1732"
       cy="23.0315"
       fx="8.1807604"
       fy="63.338699"
       r="42.259998"
       gradientTransform="matrix(2.3641717,0,0,-2.1973997,-31.103516,277.14997)" />
  </defs>
  <g
     id="g2478"
     transform="matrix(1.8062222,0,0,1.5051852,1.0131462e-7,-129.32742)">
    <path
       id="path1902"
       d="M 11.763645,199.28929 L 76.815012,199.28929 C 82.000113,199.28929 86.174295,203.16924 86.174295,207.98835 L 86.174295,245.09276 C 86.174295,249.91188 82.000113,253.79183 76.815012,253.79183 L 11.763645,253.79183 C 6.5787803,253.79183 2.4043623,249.91188 2.4043623,245.09276 L 2.4043623,207.98835 C 2.4043623,203.16924 6.5787803,199.28929 11.763645,199.28929 z "
       style="fill:url(#radialGradient2476);stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
    <g
       transform="matrix(2.3641717,0,0,-2.1973997,-31.103516,277.14997)"
       id="g34">
      <path
         id="path1788"
         d="M 32.375,58 C 24.0259,58 17.2422,51.142 17.1875,42.8125 L 17.1875,20.3438 C 17.1905,19.8048 17.6176,19.3639 18.1562,19.3438 L 22.1875,19.2812 C 22.4576,19.2746 22.719,19.3768 22.913,19.5648 C 23.1069,19.7529 23.2171,20.0111 23.2188,20.2812 L 23.2188,42.8125 C 23.2679,47.8957 27.2868,51.9375 32.375,51.9375 C 37.4632,51.9375 41.5134,47.892 41.5625,42.8125 L 41.5,23.3125 C 41.5014,23.1243 41.5555,22.9402 41.6562,22.7812 L 42.875,20.75 C 43.0562,20.4388 43.3899,20.2481 43.75,20.25 L 45.25,20.25 C 45.5927,20.2524 45.9107,20.429 46.0938,20.7188 L 47.375,22.7812 C 47.4703,22.9312 47.5242,23.1037 47.5312,23.2812 L 47.6562,42.8125 C 47.6011,51.1501 40.7242,58 32.375,58 z M 32.375,56 C 39.6231,56 45.6084,50.0495 45.6562,42.8125 L 45.5312,23.5938 L 44.6875,22.25 L 44.3125,22.25 L 43.5312,23.5625 L 43.5625,42.8125 C 43.5627,42.8229 43.5627,42.8333 43.5625,42.8438 C 43.5031,48.99 38.5392,53.9375 32.375,53.9375 C 26.2108,53.9375 21.2782,48.9862 21.2188,42.8438 C 21.2186,42.8333 21.2186,42.8229 21.2188,42.8125 L 21.1875,21.3125 L 19.1875,21.3438 L 19.1875,42.8125 C 19.2351,50.0574 25.127,56 32.375,56 z "
         style="fill:#575757;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
      <path
         id="path1784"
         d="M 32.3728,57.0066 C 24.5742,57.0066 18.2364,50.6063 18.1853,42.8191 L 18.1853,20.3343 L 22.2067,20.2789 L 22.2165,42.8191 C 22.2708,48.432 26.7466,52.9441 32.3728,52.9441 C 37.999,52.9441 42.506,48.432 42.5603,42.8191 L 42.5197,23.303 L 43.7437,21.2591 L 45.2439,21.2591 L 46.5317,23.303 L 46.654,42.8191 C 46.6025,50.6064 40.1714,57.0066 32.3728,57.0066 z "
         style="fill:url(#radialGradient2430);stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
      <path
         id="path1794"
         d="M 32.375,56 C 25.127,56 19.2351,50.0574 19.1875,42.8125 L 19.1875,21.3438 L 21.1875,21.3125 L 21.2188,42.8125 C 21.2186,42.8229 21.2186,42.8333 21.2188,42.8438 C 21.2782,48.9862 26.2108,53.9375 32.375,53.9375 C 38.5392,53.9375 43.5031,48.99 43.5625,42.8438 C 43.5627,42.8333 43.5627,42.8229 43.5625,42.8125 L 43.5312,23.5625 L 44.3125,22.25 L 44.6875,22.25 L 45.5312,23.5938 L 45.6562,42.8125 C 45.6084,50.0495 39.6231,56 32.375,56 z "
         style="fill:#e6e6e6;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
      <path
         id="rect1810"
         d="M 18.6719,43.125 L 19.6484,43.125 L 19.6484,36.875 L 18.6719,36.875 L 18.6719,43.125 z "
         style="fill:#ffffff;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
      <path
         id="path1812"
         d="M 42.7344,43.3594 L 43.7109,43.3594 L 43.7109,37.1094 L 42.7344,37.1094 L 42.7344,43.3594 z "
         style="fill:#ffffff;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
      <path
         id="path1813"
         d="M 29.769,56.5903 C 30.2344,56.6548 30.6217,56.1192 30.4508,55.8911 C 27.4238,54.846 23.347,51.9764 21.1699,49.539 C 20.9376,49.374 20.3548,49.9703 20.4881,50.2382 C 21.8605,52.9949 26.8929,56.1921 29.769,56.5903 z "
         style="fill:#ffffff;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
      <path
         id="path1814"
         d="M 35.3336,56.5903 C 34.8682,56.6548 34.481,56.1192 34.6518,55.8911 C 37.6788,54.846 41.7556,51.9764 43.9327,49.539 C 44.165,49.374 44.7479,49.9703 44.6145,50.2382 C 43.2421,52.9949 38.2097,56.1921 35.3336,56.5903 z "
         style="fill:#ffffff;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
    </g>
    <path
       id="path1882"
       d="M 11.747096,197.08222 C 5.285342,197.08222 -2.8046e-007,201.99451 -2.8046e-007,208.00044 L -2.8046e-007,245.08156 C -2.8046e-007,251.08771 5.285342,256 11.747096,256 L 76.83558,256 C 83.29757,256 88.582676,251.08771 88.582676,245.08156 L 88.582676,208.00044 C 88.582676,201.99451 83.29757,197.08222 76.83558,197.08222 L 11.747096,197.08222 z M 11.747096,201.47702 L 76.83558,201.47702 C 80.744029,201.47702 83.780571,204.36792 83.780571,208.00044 L 83.780571,245.08156 C 83.780334,248.7143 80.744029,251.6052 76.83558,251.6052 L 11.747096,251.6052 C 7.8388838,251.6052 4.8023417,248.7143 4.8023417,245.08156 L 4.8023417,208.00044 C 4.8023417,204.36792 7.8388838,201.47702 11.747096,201.47702 z "
       style="fill:url(#radialGradient2465);fill-opacity:1;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="rect1234"
       d="M 11.763645,199.28929 L 76.815012,199.28929 C 82.000113,199.28929 86.174295,203.16924 86.174295,207.98835 L 86.174295,245.09276 C 86.174295,249.91188 82.000113,253.79183 76.815012,253.79183 L 11.763645,253.79183 C 6.5787803,253.79183 2.4043623,249.91188 2.4043623,245.09276 L 2.4043623,207.98835 C 2.4043623,203.16924 6.5787803,199.28929 11.763645,199.28929 z "
       style="fill:url(#linearGradient2462);stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="path1897"
       d="M 13.239801,199.93898 L 74.492947,199.93898 C 79.864865,199.93898 84.189441,204.26433 84.189441,209.63723 L 84.189441,242.75845 C 84.189441,248.13134 79.864865,252.45669 74.492947,252.45669 L 13.239801,252.45669 C 7.8678828,252.45669 3.5433071,248.13134 3.5433071,242.75845 L 3.5433071,209.63723 C 3.5433071,204.26433 7.8678828,199.93898 13.239801,199.93898 z "
       style="opacity:0.9;fill:url(#radialGradient2455);fill-opacity:1;stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="path1878"
       d="M 74.50758,202.25687 C 79.692681,202.25687 83.890505,206.30778 83.890505,211.31148 L 83.890505,242.61058 C 83.890505,248.94964 81.262491,251.66519 74.50758,251.66519 L 67.267304,251.66519 C 72.452406,251.66519 76.650229,247.61428 76.650229,242.61058 L 76.650229,211.31148 C 76.650229,206.30778 72.452406,202.25687 67.267304,202.25687 L 74.50758,202.25687 z "
       style="opacity:0.5;fill:url(#linearGradient2448);stroke-width:2.01250005;stroke-linecap:round;stroke-linejoin:round" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/ModifiedIcon.svg.






























































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="TortoiseModified.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseModified.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient4154">
      <stop
         style="stop-color:#f6833d;stop-opacity:0.61176473;"
         offset="0"
         id="stop4156" />
      <stop
         style="stop-color:#b00400;stop-opacity:1;"
         offset="1"
         id="stop4158" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient4162"
       cx="47.119026"
       cy="208.49529"
       fx="47.119026"
       fy="208.49529"
       r="47.490459"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.9445436"
     inkscape:cx="84.700639"
     inkscape:cy="99.210147"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1191"
     inkscape:window-height="1067"
     inkscape:window-x="523"
     inkscape:window-y="29" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       sodipodi:type="arc"
       style="fill:url(#radialGradient4162);fill-opacity:1;stroke:none;stroke-opacity:0.76394851"
       id="path3183"
       sodipodi:cx="47.119026"
       sodipodi:cy="208.49529"
       sodipodi:rx="46.990459"
       sodipodi:ry="46.990459"
       d="M 94.109486 208.49529 A 46.990459 46.990459 0 1 1  0.12856674,208.49529 A 46.990459 46.990459 0 1 1  94.109486 208.49529 z"
       transform="matrix(1.7024809,0,0,1.7046963,0.281369,-179.98661)" />
    <path
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#c8c8c8;stroke-width:1.80496562px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 74.876099,114.24837 C 66.159408,144.87776 64.620625,176.89655 73.026032,210.30089 L 85.359815,209.95163 C 94.149732,176.90487 92.880627,148.03847 84.434782,113.89906 L 74.876099,114.24837 z "
       id="path3158"
       sodipodi:nodetypes="ccccc" />
    <path
       sodipodi:type="arc"
       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#c8c8c8;stroke-opacity:1"
       id="path3160"
       sodipodi:cx="47.272728"
       sodipodi:cy="243.63637"
       sodipodi:rx="5.2727275"
       sodipodi:ry="4.909091"
       d="M 52.545455 243.63637 A 5.2727275 4.909091 0 1 1  42,243.63637 A 5.2727275 4.909091 0 1 1  52.545455 243.63637 z"
       transform="matrix(1.7021375,0,0,1.7046113,-4.1445146e-2,-177.49443)" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/NormalIcon.svg.










































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="TortoiseInSubversion.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseInSubversion.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient4154">
      <stop
         style="stop-color:#20f500;stop-opacity:0.56470591;"
         offset="0"
         id="stop4156" />
      <stop
         style="stop-color:#207e00;stop-opacity:1;"
         offset="1"
         id="stop4158" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient4162"
       cx="47.119026"
       cy="208.49529"
       fx="47.119026"
       fy="208.49529"
       r="47.490459"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.375"
     inkscape:cx="65.445743"
     inkscape:cy="4.3886351"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1191"
     inkscape:window-height="1067"
     inkscape:window-x="523"
     inkscape:window-y="29" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       sodipodi:type="arc"
       style="fill:url(#radialGradient4162);fill-opacity:1;stroke:none;stroke-opacity:0.76394851"
       id="path3183"
       sodipodi:cx="47.119026"
       sodipodi:cy="208.49529"
       sodipodi:rx="46.990459"
       sodipodi:ry="46.990459"
       d="M 94.109486 208.49529 A 46.990459 46.990459 0 1 1  0.12856674,208.49529 A 46.990459 46.990459 0 1 1  94.109486 208.49529 z"
       transform="matrix(1.7024732,0,0,1.7024732,0.2816999,-179.4404)" />
    <path
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.63082826px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 25.02511,187.43217 L 14.673078,199.75093 C 24.486827,217.08069 32.002614,228.22008 52.354477,240.09309 C 88.404264,210.96629 114.1908,165.88585 135.37777,124.51005 C 122.1118,126.24675 87.084983,183.59043 50.284072,209.51799 C 43.387215,215.52228 30.448772,201.39082 25.02511,187.43217 z "
       id="path4164"
       sodipodi:nodetypes="cccccc" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/ReadOnlyIcon.svg.










































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="TortoiseReadOnly.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseReadOnly.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient4154">
      <stop
         style="stop-color:#c8c8c8;stop-opacity:0.56470591;"
         offset="0"
         id="stop4156" />
      <stop
         style="stop-color:#646464;stop-opacity:1;"
         offset="1"
         id="stop4158" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient4162"
       cx="47.119026"
       cy="208.49529"
       fx="47.119026"
       fy="208.49529"
       r="47.490459"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.375"
     inkscape:cx="143.83462"
     inkscape:cy="39.748835"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1191"
     inkscape:window-height="1067"
     inkscape:window-x="523"
     inkscape:window-y="29" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       sodipodi:type="arc"
       style="fill:url(#radialGradient4162);fill-opacity:1;stroke:none;stroke-opacity:0.76394851"
       id="path3183"
       sodipodi:cx="47.119026"
       sodipodi:cy="208.49529"
       sodipodi:rx="46.990459"
       sodipodi:ry="46.990459"
       d="M 94.109486 208.49529 A 46.990459 46.990459 0 1 1  0.12856674,208.49529 A 46.990459 46.990459 0 1 1  94.109486 208.49529 z"
       transform="matrix(1.7024427,0,0,1.7046498,0.1838529,-180.09038)" />
    <path
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.70333159px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 22.52874,189.23714 L 11.587232,201.9516 C 21.959806,219.83798 29.903564,231.33519 51.414323,243.58955 C 89.51689,213.52719 116.77179,166.99873 139.16521,124.29393 C 125.14384,126.08642 88.122487,185.272 49.226022,212.03238 C 41.936438,218.22953 28.261241,203.64415 22.52874,189.23714 z "
       id="path4164"
       sodipodi:nodetypes="cccccc" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Overlays/UnversionedIcon.svg.












































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="256"
   height="256"
   id="svg2183"
   sodipodi:version="0.32"
   inkscape:version="0.46"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays"
   sodipodi:docname="UnversionedIcon.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Overlays\TortoiseModified.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs2185">
    <linearGradient
       id="linearGradient4154">
      <stop
         style="stop-color:#0000f8;stop-opacity:0.61176473;"
         offset="0"
         id="stop4156" />
      <stop
         style="stop-color:#000445;stop-opacity:1;"
         offset="1"
         id="stop4158" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient3183"
       cx="47.119026"
       cy="208.49529"
       fx="47.119026"
       fy="208.49529"
       r="46.990459"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.9445436"
     inkscape:cx="84.700639"
     inkscape:cy="99.210147"
     inkscape:current-layer="layer1"
     showgrid="true"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     width="256px"
     height="256px"
     showguides="true"
     inkscape:guide-bbox="true"
     inkscape:window-width="1191"
     inkscape:window-height="764"
     inkscape:window-x="69"
     inkscape:window-y="0" />
  <metadata
     id="metadata2188">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:label="Layer 1"
     inkscape:groupmode="layer">
    <path
       sodipodi:type="arc"
       style="fill:url(#radialGradient3183);fill-opacity:1.0;stroke:none;stroke-opacity:0.76394850999999986"
       id="path3183"
       sodipodi:cx="47.119026"
       sodipodi:cy="208.49529"
       sodipodi:rx="46.990459"
       sodipodi:ry="46.990459"
       d="M 94.109486 208.49529 A 46.990459 46.990459 0 1 1  0.12856674,208.49529 A 46.990459 46.990459 0 1 1  94.109486 208.49529 z"
       transform="matrix(1.7024809,0,0,1.7046963,0.281369,-179.98661)" />
    <text
       xml:space="preserve"
       style="font-size:177.27957153px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
       x="31.102913"
       y="239.30307"
       id="text2387"
       transform="scale(1.0033034,0.9967074)"><tspan
         sodipodi:role="line"
         id="tspan2389"
         x="31.102913"
         y="239.30307"
         style="fill:#ffffff">?</tspan></text>
    <flowRoot
       xml:space="preserve"
       id="flowRoot2391"
       style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:22"><flowRegion
         id="flowRegion2393"><rect
           id="rect2395"
           width="22.627417"
           height="34.969646"
           x="44.226315"
           y="156.23366" /></flowRegion><flowPara
         id="flowPara2397"></flowPara></flowRoot>  </g>
</svg>
Added extern/TortoiseSVNResources/svg/Rename.svg.
































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   sodipodi:docname="Rename.svg"
   height="60.0000000"
   sodipodi:version="0.32"
   width="60.0000000"
   _SVGFile__filename="scalable/actions/item_rename.svg"
   version="1.0"
   y="0"
   x="0"
   inkscape:version="0.45.1"
   id="svg1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:export-filename="D:\Development\SVN\TortoiseSVN\src\Resources\svg\Rename.png"
   inkscape:export-xdpi="261.76993"
   inkscape:export-ydpi="261.76993">
  <sodipodi:namedview
     bordercolor="#666666"
     inkscape:pageshadow="2"
     inkscape:window-y="184"
     pagecolor="#ffffff"
     inkscape:window-height="685"
     inkscape:zoom="6.9465338"
     inkscape:window-x="184"
     borderopacity="1.0"
     inkscape:cx="33.307957"
     inkscape:cy="28.943"
     inkscape:window-width="1016"
     inkscape:pageopacity="0.0"
     id="base"
     inkscape:current-layer="svg1" />
  <defs
     id="defs3" />
  <path
     style="fill:#b30000;fill-opacity:0.2;fill-rule:evenodd;stroke:#b30000;stroke-width:4.3453285;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:0.2;opacity:0.51145038"
     d="M 38.710354,12.794888 L 48.446225,12.794888 M 43.810096,12.794888 L 43.810096,45.803382 M 38.710354,46.695502 L 48.678031,46.695502"
     sodipodi:nodetypes="cccccc"
     transform="matrix(1.150661,0.000000,0.000000,1.150661,-1.880879,-3.851635)"
     sodipodi:stroke-cmyk="(0.0000000 0.0000000 0.0000000 0.80000001)"
     id="path862" />
  <path
     id="path837"
     style="font-size:12.000000;font-weight:900;stroke-width:1.0000000pt;font-family:VAG Rounded Black SSi;fill:#b30000;fill-opacity:0.2;stroke:none;stroke-opacity:0.2;opacity:0.51526718"
     transform="scale(4.132782,4.132782)"
     d="M 1.3728005,9.8524771 L 3.2478005,4.7548208 C 3.4157692,4.3056021 3.5544411,3.9735708 3.6638161,3.7587271 C 3.7731911,3.5399771 3.9235817,3.3563833 4.1149880,3.2079458 C 4.3063942,3.0556021 4.5563942,2.9794302 4.8649880,2.9794302 C 5.1813942,2.9794302 5.4372536,3.0556021 5.6325661,3.2079458 C 5.8317848,3.3602896 5.9880348,3.5516958 6.1013161,3.7821646 C 6.2185036,4.0087271 6.3552223,4.3329458 6.5114723,4.7548208 L 8.3806130,9.8524771 C 8.4978005,10.161071 8.5739723,10.399352 8.6091286,10.567321 C 8.6481911,10.731383 8.6677223,10.897399 8.6677223,11.065368 C 8.6677223,11.307555 8.5817848,11.502868 8.4099098,11.651305 C 8.2419411,11.795836 8.0173317,11.868102 7.7360817,11.868102 C 7.5407692,11.868102 7.3767067,11.829040 7.2438942,11.750915 C 7.1110817,11.672790 7.0036598,11.563415 6.9216286,11.422790 C 6.8435036,11.282165 6.7731911,11.110290 6.7106911,10.907165 L 6.4763161,10.139586 L 3.2829567,10.139586 L 3.0427223,10.907165 C 2.9411598,11.223571 2.8181130,11.463805 2.6735817,11.627868 C 2.5329567,11.788024 2.3161598,11.868102 2.0231911,11.868102 C 1.7458473,11.868102 1.5192848,11.795836 1.3435036,11.651305 C 1.1716286,11.502868 1.0856911,11.307555 1.0856911,11.065368 C 1.0856911,10.920836 1.1013161,10.770446 1.1325661,10.614196 C 1.1677223,10.454040 1.2478005,10.200133 1.3728005,9.8524771 z M 5.8962380,8.3173208 L 4.9235817,5.1591177 L 4.9001442,5.1591177 L 3.8571755,8.3173208 L 5.8962380,8.3173208 z " />
  <metadata
     id="metadata11">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:title>Part of the Flat Icon Collection (Thu Aug 26 14:38:01 2004)</dc:title>
        <dc:description />
        <dc:subject>
          <rdf:Bag>
            <rdf:li />
          </rdf:Bag>
        </dc:subject>
        <dc:publisher>
          <cc:Agent
             rdf:about="">
            <dc:title />
          </cc:Agent>
        </dc:publisher>
        <dc:creator>
          <cc:Agent
             rdf:about="">
            <dc:title>Danny Allen</dc:title>
          </cc:Agent>
        </dc:creator>
        <dc:rights>
          <cc:Agent
             rdf:about="">
            <dc:title>Danny Allen</dc:title>
          </cc:Agent>
        </dc:rights>
        <dc:date />
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <cc:license
           rdf:resource="http://creativecommons.org/licenses/LGPL/2.1/">
          <dc:date />
        </cc:license>
        <dc:language>en</dc:language>
      </cc:Work>
    </rdf:RDF>
  </metadata>
</svg>
Added extern/TortoiseSVNResources/svg/Switch.svg.


















































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="474.58334"
   height="454.12988"
   id="svg2242"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   version="1.0"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="Switch.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape">
  <defs
     id="defs2244">
    <linearGradient
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-144.01614)"
       gradientUnits="userSpaceOnUse"
       y2="350.86115"
       x2="519.71277"
       y1="350.86115"
       x1="242.42725"
       id="linearGradient3155"
       xlink:href="#linearGradient3149"
       inkscape:collect="always" />
    <linearGradient
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-139.73305)"
       gradientUnits="userSpaceOnUse"
       y2="347.5466"
       x2="517.41266"
       y1="347.5466"
       x1="244.72736"
       id="linearGradient5195"
       xlink:href="#linearGradient5185"
       inkscape:collect="always" />
    <radialGradient
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,143.52101,-917.50959)"
       r="145.0625"
       fy="350.93362"
       fx="306.42856"
       cy="350.93362"
       cx="306.42856"
       id="radialGradient4180"
       xlink:href="#linearGradient4174"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient4174">
      <stop
         id="stop4176"
         offset="0"
         style="stop-color:#b27c42;stop-opacity:0;" />
      <stop
         id="stop4178"
         offset="1"
         style="stop-color:#feff00;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient5185">
      <stop
         id="stop5187"
         offset="0"
         style="stop-color:#125609;stop-opacity:1;" />
      <stop
         id="stop5189"
         offset="1"
         style="stop-color:#5ff900;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3149">
      <stop
         id="stop3151"
         offset="0"
         style="stop-color:#4f6b47;stop-opacity:0;" />
      <stop
         id="stop3153"
         offset="1"
         style="stop-color:#529a3f;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4174"
       id="radialGradient3357"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,143.52101,-917.50959)"
       cx="306.42856"
       cy="350.93362"
       fx="306.42856"
       fy="350.93362"
       r="145.0625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5185"
       id="linearGradient3359"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-139.73305)"
       x1="244.72736"
       y1="347.5466"
       x2="517.41266"
       y2="347.5466" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient3361"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1821085,0,0,1.2922042,-68.197921,-144.01614)"
       x1="242.42725"
       y1="350.86115"
       x2="519.71277"
       y2="350.86115" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5185"
       id="linearGradient3364"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.8238358,-9.5921004e-5,-1.1490497e-4,0.8217928,618.98187,-129.78872)"
       x1="244.72736"
       y1="347.5466"
       x2="517.41266"
       y2="347.5466" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient3366"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.8238358,-9.5921004e-5,-1.1490497e-4,0.8217928,618.98226,-132.51261)"
       x1="242.42725"
       y1="350.86115"
       x2="519.71277"
       y2="350.86115" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4174"
       id="radialGradient3369"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2355273,9.6777634e-8,-2.5922943e-7,3.3094946,8.1864,-516.36631)"
       cx="306.42856"
       cy="350.93362"
       fx="306.42856"
       fy="350.93362"
       r="145.0625" />
  </defs>
  <sodipodi:namedview
     inkscape:document-units="in"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.72"
     inkscape:cx="263.16383"
     inkscape:cy="264.68085"
     inkscape:current-layer="layer1"
     id="namedview2246"
     inkscape:window-width="1178"
     inkscape:window-height="1048"
     inkscape:window-x="545"
     inkscape:window-y="47" />
  <metadata
     id="metadata2248">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-56.111111,-11.008974)">
    <g
       id="g3236">
      <rect
         ry="0"
         rx="37.857143"
         y="82.916672"
         x="60.972225"
         height="212.77771"
         width="212.77777"
         id="rect2261"
         style="opacity:1;fill:#dbddf4;fill-opacity:1;fill-rule:nonzero;stroke:#141417;stroke-width:9.72222805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <rect
         rx="0"
         y="82.281479"
         x="61.725918"
         height="87.659264"
         width="211.2704"
         id="rect3234"
         style="opacity:1;fill:#9da2dc;fill-opacity:1;fill-rule:nonzero;stroke:#141417;stroke-width:8.45183754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       id="g3240"
       transform="translate(252.08333,164.58336)">
      <rect
         ry="0"
         rx="37.857143"
         y="82.916672"
         x="60.972225"
         height="212.77771"
         width="212.77777"
         id="rect3242"
         style="opacity:1;fill:#dbddf4;fill-opacity:1;fill-rule:nonzero;stroke:#141417;stroke-width:9.72222805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <rect
         rx="0"
         y="82.281479"
         x="61.725918"
         height="87.659264"
         width="211.2704"
         id="rect3244"
         style="opacity:1;fill:#9da2dc;fill-opacity:1;fill-rule:nonzero;stroke:#141417;stroke-width:8.45183754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    </g>
    <g
       inkscape:label="Ebene 1"
       id="g3348"
       transform="translate(-57.55683,315.03217)" />
    <path
       sodipodi:nodetypes="cccccccc"
       id="path4214"
       d="M 138.4984,98.058028 C 208.56328,91.988028 203.66261,38.784017 206.60728,13.325606 C 260.54261,23.337123 344.06507,130.91534 363.5301,182.762 L 417.38888,84.798298 L 416.8857,273.73293 L 219.80981,273.22602 L 324.45987,216.26057 C 308.44063,157.20098 200.27851,111.89712 138.4984,98.058028 z "
       style="fill:url(#linearGradient3364);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3366);stroke-width:4.63326359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/readme.txt.










>
>
>
>
>
1
2
3
4
5
These svg files are used as the source for the icons we need in
TortoiseSVN.

Do _not_ just edit the icon files but these svg files and then create
the icon files from these svg files.
Added extern/TortoiseSVNResources/svg/repo.svg.
































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="124.22071"
   height="124.23133"
   id="svg3389"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="repo.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="3.959798"
     inkscape:cx="49.249886"
     inkscape:cy="78.368474"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1114"
     inkscape:window-height="966"
     inkscape:window-x="399"
     inkscape:window-y="148" />
  <defs
     id="defs3391">
    <radialGradient
       r="3.1789999"
       id="defitem14"
       fx="38.584499"
       fy="48.691898"
       gradientUnits="userSpaceOnUse"
       cy="48.691898"
       cx="38.584499">
      <stop
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0.84516132;"
         id="stop89"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop91"
         stop-opacity="0"
         stop-color="#ffffff" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="defitem12"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       cy="114.505"
       cx="61.052898">
      <stop
         offset="0"
         id="stop73"
         stop-opacity="1"
         stop-color="#3b5bb1" />
      <stop
         offset="0.333333"
         id="stop75"
         stop-opacity="1"
         stop-color="#9cacd8" />
      <stop
         offset="0.5"
         id="stop77"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="0.819444"
         id="stop79"
         stop-opacity="1"
         stop-color="#b1bcd8" />
      <stop
         offset="1"
         id="stop81"
         stop-opacity="1"
         stop-color="#3b5bb1" />
    </radialGradient>
    <linearGradient
       id="defitem11"
       gradientUnits="userSpaceOnUse"
       x1="73.041199"
       x2="32.438499"
       y1="58.562698"
       y2="118.927">
      <stop
         offset="0"
         id="stop68"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop70"
         stop-opacity="0"
         stop-color="#ffffff" />
    </linearGradient>
    <radialGradient
       r="90.017502"
       id="defitem10"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       cy="103.471"
       cx="63.869499">
      <stop
         offset="0"
         id="stop57"
         stop-opacity="1"
         stop-color="#b1c3e9" />
      <stop
         offset="0.375"
         id="stop59"
         stop-opacity="1"
         stop-color="#576eb1" />
      <stop
         offset="0.5"
         id="stop61"
         stop-opacity="1"
         stop-color="#001a7b" />
      <stop
         offset="0.666667"
         id="stop63"
         stop-opacity="1"
         stop-color="#8597cf" />
      <stop
         offset="1"
         id="stop65"
         stop-opacity="1"
         stop-color="#b1c3e9" />
    </radialGradient>
    <radialGradient
       r="56.158001"
       id="defitem9"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       cy="4.9972801"
       cx="59.563">
      <stop
         offset="0"
         id="stop52"
         stop-opacity="1"
         stop-color="#a3cdeb" />
      <stop
         offset="1"
         id="stop54"
         stop-opacity="1"
         stop-color="#002f82" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="radialGradient3633"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="114.505"
       cx="61.052898"
       xlink:href="#defitem12"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <linearGradient
       id="linearGradient3636"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       x1="73.041199"
       x2="32.438499"
       xlink:href="#defitem11"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       y1="58.562698"
       y2="118.927" />
    <radialGradient
       r="90.017502"
       id="radialGradient3642"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="103.471"
       cx="63.869499"
       xlink:href="#defitem10"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="56.158001"
       id="radialGradient3645"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="4.9972801"
       cx="59.563"
       xlink:href="#defitem9"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="3.9704101"
       id="radialGradient4974"
       fx="224.32378"
       fy="181.94157"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="181.94157"
       cx="224.32378"
       xlink:href="#defitem14"
       gradientTransform="matrix(0.3703421,0,0,0.4602932,142.67581,99.266526)" />
  </defs>
  <metadata
     id="metadata3394">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-157.88964,-158.81795)">
    <path
       style="fill:#000000"
       id="path87"
       d="" />
    <path
       style="fill:url(#radialGradient3645)"
       d="M 219.9975,283.04928 C 254.29676,283.04928 282.11035,255.1023 282.11035,220.82502 C 282.11035,186.76318 254.29801,158.81795 219.9975,158.81795 C 185.94665,158.81795 157.88964,186.76318 157.88964,220.82502 C 157.88964,255.1023 185.94665,283.04928 219.9975,283.04928 z "
       id="path67" />
    <path
       style="fill:url(#radialGradient3642)"
       d="M 219.99762,279.39848 C 252.28058,279.39848 278.47092,253.09911 278.47092,220.83164 C 278.47092,188.76899 252.28058,162.45863 219.99762,162.45863 C 187.94909,162.45863 161.53657,188.76899 161.53657,220.83164 C 161.53657,253.09911 187.94909,279.39848 219.99762,279.39848 z "
       id="path74" />
    <path
       style="fill:none"
       d="M 169.08696,199.40791 C 169.08209,199.13015 169.06124,198.85613 169.06124,198.57836 C 169.06124,197.70485 169.11994,196.83733 169.20324,195.98454 C 167.64568,198.12574 166.42096,202.08978 166.57395,203.09918 L 166.97524,205.79691 C 165.77125,206.7611 165.1534,209.28635 166.37325,209.6473 C 168.45687,210.25541 170.50003,210.95395 172.4344,211.66722 C 170.59919,208.23049 169.45765,204.54172 169.15054,200.69745 C 168.70766,200.21299 168.38593,199.83131 168.38593,199.83131 L 169.08696,199.40791 z "
       id="path85" />
    <path
       style="fill:#ffffff;fill-opacity:0.13636397"
       d="M 219.9975,265.87386 C 191.68395,265.87386 168.12965,249.74093 165.97496,224.50517 C 165.86343,225.74587 165.79036,226.9987 165.79036,228.25401 C 165.79036,255.24905 190.28038,277.25228 219.99625,277.25228 C 249.92744,277.25228 274.20576,255.24905 274.20576,228.25401 C 274.20576,226.99745 274.14081,225.74587 274.03215,224.50517 C 271.8902,249.74093 248.52249,265.87386 219.9975,265.87386 z "
       id="path89" />
    <path
       style="opacity:0.7171717;fill:url(#linearGradient3636)"
       d="M 216.58774,162.82832 C 216.19257,162.85205 215.8099,162.9145 215.41673,162.94572 C 212.0056,167.3695 209.16087,175.35653 207.25959,186.05128 C 200.78891,185.07585 195.22372,183.40226 191.02325,181.25032 C 195.49162,173.55804 201.22629,167.72795 207.57183,163.88243 C 205.9171,164.24713 204.3719,164.86411 202.77112,165.36618 C 197.76958,169.13551 193.29384,174.26744 189.65715,180.62584 C 187.20996,179.21203 185.45532,177.57591 184.31015,175.82613 C 185.90756,174.23997 187.60301,172.80742 189.34492,171.41609 C 185.55061,173.78285 181.9625,176.43062 178.80703,179.57298 C 178.702,179.67664 178.63793,179.81902 178.53376,179.92393 C 177.47603,180.99303 176.6195,182.25073 175.64557,183.39726 C 173.54521,186.39724 171.64943,189.5908 170.06439,192.99893 C 169.84633,192.69606 169.71181,192.37084 169.51785,192.06222 C 169.38971,192.28428 169.25295,192.50173 169.12768,192.72566 C 169.31902,193.07787 169.45366,193.43257 169.67397,193.77952 C 166.98124,199.77998 165.23908,206.2629 164.44412,213.13823 C 163.68876,212.38524 163.12723,211.58704 162.5707,210.79646 C 162.50288,211.17888 162.51375,211.58242 162.45355,211.96722 C 163.00845,212.81014 163.54838,213.65917 164.32697,214.46512 C 164.12427,216.58546 163.74146,218.65122 163.74146,220.82701 C 163.74146,224.37753 164.15374,227.81851 164.67817,231.2089 C 163.72048,230.56857 163.15108,229.85717 162.37549,229.17936 C 162.44655,229.66807 162.44843,230.17777 162.53161,230.66249 C 163.32319,231.36565 163.86236,232.1019 164.83429,232.77009 C 165.70968,237.67883 167.18719,242.31643 169.0495,246.74271 C 168.24405,246.14396 167.56849,245.49763 166.86384,244.86928 C 167.35605,245.95012 167.98751,246.94678 168.54217,247.99166 C 169.15591,248.46388 169.70045,248.94398 170.37663,249.39672 C 171.80693,252.40069 173.3811,255.25205 175.21631,257.94428 C 179.08493,262.61198 183.53468,266.75549 188.64251,270.04335 C 186.52791,268.31967 184.51586,266.47847 182.63182,264.46217 C 186.46359,266.32285 190.61922,267.9325 195.1604,269.18482 C 197.44897,271.95437 199.91802,274.37458 202.53707,276.40524 C 204.02094,276.8781 205.45549,277.45649 206.98632,277.81031 C 203.67761,275.72469 200.51889,273.11926 197.6583,269.88723 C 202.03149,270.94746 206.69657,271.62165 211.51376,272.03392 C 212.6267,274.89776 213.89538,277.15699 215.22164,278.90314 C 215.61431,278.93587 215.99786,278.99544 216.39253,279.02029 C 215.11898,277.22955 213.93248,274.96795 212.87986,272.11198 C 215.21003,272.27872 217.5011,272.54125 219.9052,272.54125 C 224.52469,272.54125 228.96932,272.13272 233.29244,271.5266 C 231.9653,274.37545 230.47718,276.62681 228.92111,278.47375 C 229.40658,278.39844 229.92265,278.44403 230.40412,278.35673 C 232.04948,276.50291 233.59231,274.1429 235.00974,271.21436 C 240.00316,270.41591 244.71183,269.24677 249.09938,267.74066 C 246.61048,270.71965 243.82445,273.14811 240.94225,275.31241 C 242.98653,274.52096 244.90953,273.5489 246.83566,272.54125 C 248.70634,270.76312 250.51994,268.87021 252.18279,266.72589 C 255.58817,265.39189 258.60064,263.75114 261.47172,262.04233 C 262.93636,260.56457 264.15097,258.86775 265.45312,257.24162 C 262.25169,259.55492 258.71704,261.67214 254.64159,263.4474 C 256.52576,260.61728 258.22595,257.56672 259.71545,254.27537 C 264.7025,252.29016 268.72911,249.86395 271.93142,247.21106 C 272.37355,246.34267 272.89811,245.52773 273.29777,244.6351 C 270.13543,247.59262 265.75911,250.23002 260.41798,252.40194 C 262.38483,247.71251 263.89581,242.67101 264.9448,237.29753 C 270.68497,235.0162 274.94513,232.29686 277.63037,229.33548 C 277.70531,228.82191 277.72405,228.29198 277.78649,227.77429 C 275.18868,230.66299 270.99221,233.2603 265.33572,235.42411 C 266.14129,230.72219 266.70207,225.87252 266.70207,220.82701 C 266.70207,220.70662 266.66335,220.59608 266.66335,220.47581 C 271.87772,218.00626 275.60583,215.12356 277.59166,212.00631 C 277.53545,211.64686 277.53545,211.27081 277.47426,210.91348 C 275.4597,213.93207 271.73534,216.65902 266.58467,218.95359 C 266.4348,212.05789 265.44813,205.49055 263.8135,199.32161 C 267.03429,197.07338 269.30613,194.56362 270.44892,191.9061 C 270.33152,191.70527 270.25533,191.48171 270.13668,191.28188 C 268.8665,193.70821 266.60715,195.95257 263.54036,197.95564 C 261.59799,191.10702 258.74177,184.93846 255.30516,179.53426 C 256.33567,178.62253 257.09228,177.63711 257.72487,176.64544 C 257.57026,176.51305 257.41264,176.38566 257.25652,176.25452 C 256.58871,177.13378 255.87131,177.99556 254.87577,178.79239 C 252.47717,175.13297 249.69513,172.04182 246.7576,169.26915 C 244.94938,168.32744 243.167,167.367 241.25448,166.61513 C 245.79679,170.05224 249.92993,174.46977 253.39265,179.8465 C 250.08293,182.02966 245.49342,183.78818 240.00554,185.03713 C 237.55622,175.24287 234.09688,167.87407 230.13097,163.49276 C 229.64725,163.40658 229.13556,163.40908 228.64784,163.33664 C 232.57904,167.82786 235.9191,175.37276 238.21005,185.4268 C 233.02216,186.46343 227.23928,187.06667 221.037,187.06667 C 216.72887,187.06667 212.72537,186.67825 208.85975,186.16868 C 210.59129,175.39649 213.26754,167.32703 216.58774,162.82832 z M 183.88077,176.2158 C 184.91327,178.11171 186.71088,179.90395 189.1888,181.48512 C 185.98,187.30148 183.45288,193.93639 181.81226,201.23413 C 177.28482,199.32086 173.75266,197.078 171.35231,194.52103 C 174.49416,187.63619 178.72211,181.43391 183.88077,176.2158 z M 253.861,180.62584 C 257.25777,186.07126 260.01008,192.2618 261.90111,199.08756 C 257.14199,201.78379 250.69591,203.88077 243.32299,205.37127 C 242.69927,198.55438 241.74095,192.11193 240.39571,186.40348 C 245.98388,184.98468 250.594,183.01134 253.861,180.62584 z M 190.47684,182.18703 C 194.68817,184.57752 200.37364,186.45469 207.02541,187.57375 C 206.05111,193.41258 205.33047,199.88176 204.91781,206.81531 C 196.58545,205.8666 189.06253,204.16891 183.06121,201.81951 C 184.71781,194.59309 187.23544,187.9884 190.47684,182.18703 z M 238.56138,186.83187 C 239.7836,192.54706 240.62876,198.99326 241.1763,205.80066 C 234.58522,206.98042 227.34382,207.71305 219.63193,207.71305 C 215.26486,207.71305 211.0795,207.43866 207.02541,207.04961 C 207.38474,200.24009 207.76529,193.51887 208.62569,187.76858 C 212.5394,188.34435 216.66892,188.74401 221.037,188.74401 C 227.37854,188.74401 233.28419,188.01088 238.56138,186.83187 z M 170.88395,195.37968 C 173.22848,198.16346 176.81871,200.69283 181.50002,202.83441 C 180.32451,208.57395 179.50944,214.53256 179.50944,220.82701 C 179.50944,220.98738 179.54779,221.13525 179.54854,221.29537 C 173.89991,219.47615 169.23122,217.29636 166.00531,214.77736 C 166.66613,207.93436 168.24854,201.39849 170.88395,195.37968 z M 262.21335,200.49263 C 263.76754,206.52905 264.7687,212.90968 264.86736,219.61703 C 259.13331,221.94407 252.08013,223.81912 243.9085,225.04222 C 243.94247,223.62454 244.06462,222.26868 244.06462,220.82701 C 244.06462,216.19629 243.86079,211.71193 243.51808,207.36185 C 250.95882,205.70387 257.46147,203.38981 262.21335,200.49263 z M 182.71,203.45888 C 188.74854,206.02784 196.35527,207.89415 204.80066,208.962 C 204.60945,212.80939 204.48842,216.7693 204.48842,220.82701 C 204.48842,222.58878 204.56923,224.25351 204.60558,225.97893 C 195.63525,225.16511 187.54656,223.70247 180.79748,221.64657 C 180.79486,221.36731 180.75839,221.10715 180.75839,220.82701 C 180.75839,214.76187 181.5556,209.01071 182.71,203.45888 z M 241.37151,207.86917 C 241.6584,212.06351 241.83987,216.37339 241.83987,220.82701 C 241.83987,222.37696 241.71909,223.83261 241.68375,225.35445 C 234.97664,226.2462 227.68291,226.75952 220.06132,226.75952 C 215.4196,226.75952 210.97222,226.5502 206.63512,226.21311 C 206.59815,224.34918 206.40094,222.73428 206.40094,220.82701 C 206.40094,216.72771 206.73741,213.11813 206.90839,209.23527 C 210.99407,209.67203 215.22939,209.97677 219.63193,209.97677 C 227.42362,209.97677 234.72286,209.18481 241.37151,207.86917 z M 165.88816,216.0654 C 169.14816,218.74602 173.87381,221.10565 179.66556,223.09073 C 179.79208,228.26201 180.38546,233.22133 181.30493,238.00006 C 175.39053,236.45137 170.39924,234.54709 166.5516,232.34083 C 165.8703,228.6011 165.4198,224.76845 165.4198,220.82701 C 165.4198,219.19701 165.76651,217.6648 165.88816,216.0654 z M 264.90608,221.2564 C 264.87985,226.44116 264.25038,231.3925 263.34515,236.2047 C 257.54415,238.20701 250.64096,239.82852 242.81567,240.88826 C 243.3436,236.50232 243.65859,231.91181 243.83032,227.14982 C 252.04665,225.80982 259.14443,223.73994 264.90608,221.2564 z M 180.9536,223.48103 C 187.69268,225.66532 195.75889,227.31418 204.68363,228.20356 C 204.82701,232.93907 205.06157,237.51322 205.46423,241.86406 C 197.07816,241.23634 189.43122,240.0316 182.74897,238.39036 C 181.75368,233.61288 181.11135,228.65955 180.9536,223.48103 z M 241.64466,227.46206 C 241.48379,232.18621 241.15082,236.7345 240.66898,241.08347 C 234.00334,241.89266 226.86872,242.41035 219.35879,242.41035 C 215.239,242.41035 211.23237,242.26897 207.33765,242.02018 C 206.98183,237.74803 206.88341,233.0877 206.75227,228.43786 C 211.05715,228.80443 215.45919,229.02324 220.06132,229.02324 C 227.68041,229.02324 234.93518,228.43998 241.64466,227.46206 z M 166.94202,234.13606 C 170.82513,236.39092 175.82829,238.32704 181.6951,239.95155 C 182.84114,245.24572 184.30965,250.29209 186.30073,254.86087 C 180.88079,253.26934 176.10368,251.30312 172.21096,249.00643 C 169.90877,244.32799 168.06033,239.40588 166.94202,234.13606 z M 262.91588,238.15618 C 261.77422,243.48819 260.22365,248.54606 258.15426,253.18254 C 252.74744,255.16961 246.56477,256.75703 239.73227,257.78816 C 240.91215,253.2606 241.90082,248.34811 242.62046,242.99586 C 250.27315,241.87043 257.17384,240.21632 262.91588,238.15618 z M 183.17836,240.38081 C 189.81477,242.10373 197.38628,243.37654 205.65944,244.04972 C 206.21547,249.41708 207.00768,254.25726 207.92303,258.76384 C 200.75169,258.15123 194.10504,256.98084 188.13506,255.3682 C 186.00335,250.7918 184.42481,245.70545 183.17836,240.38081 z M 240.4348,243.23004 C 239.76898,248.5934 238.88685,253.49702 237.78078,258.02221 C 232.10394,258.7852 226.16993,259.31026 219.9052,259.31026 C 216.34357,259.31026 212.87399,259.09244 209.48422,258.8419 C 208.65055,254.36404 207.95126,249.54135 207.45468,244.20584 C 211.31118,244.47561 215.28384,244.6742 219.35879,244.6742 C 226.78878,244.6742 233.82474,244.10105 240.4348,243.23004 z M 173.30379,251.11403 C 177.26758,253.33254 181.87345,255.28115 187.27641,256.81236 C 188.90341,260.24684 190.73762,263.3902 192.77953,266.25753 C 188.09647,264.81837 183.70491,263.08221 179.86077,260.98847 C 177.38286,257.93092 175.20419,254.63969 173.30379,251.11403 z M 257.41264,255.09505 C 255.71607,258.61934 253.71275,261.84125 251.55831,264.8135 C 246.80419,266.61498 241.52925,267.89353 235.98542,268.83349 C 237.17792,266.04734 238.26025,262.9447 239.22494,259.50547 C 245.94241,258.50568 252.04053,257.02256 257.41264,255.09505 z M 189.1888,257.28071 C 195.00903,258.79956 201.40464,259.94047 208.31346,260.52011 C 209.06632,263.95098 209.86752,267.06436 210.81135,269.8093 C 205.36094,269.30922 200.2089,268.3539 195.35561,267.03813 C 193.08714,264.09111 191.00115,260.8647 189.1888,257.28071 z M 237.31243,259.77861 C 236.40294,263.22521 235.36969,266.36644 234.22915,269.14573 C 229.61453,269.83552 224.8694,270.31662 219.9052,270.31662 C 217.2643,270.31662 214.72743,270.08581 212.17733,269.88723 C 211.29395,267.15141 210.48663,264.02079 209.79646,260.5983 C 213.09543,260.83884 216.44586,261.02756 219.9052,261.02756 C 225.99857,261.02756 231.76834,260.51337 237.31243,259.77861 z "
       id="path1388" />
    <path
       style="fill:url(#radialGradient3633);fill-rule:evenodd;stroke-width:0.3125"
       d="M 213.93123,194.48143 C 211.68949,195.97593 201.97516,200.99907 201.97516,205.19205 C 201.97516,209.51129 206.37571,212.53999 209.44775,214.40817 C 212.51979,216.27622 219.70162,211.95885 222.4001,215.65362 C 225.09846,219.34826 224.30974,231.5119 225.63813,236.57664 C 226.96663,241.64137 228.1705,244.79647 230.37077,246.04192 C 232.57104,247.28725 236.5979,245.91728 238.83964,244.04922 C 241.08138,242.18104 241.82863,236.90873 243.82132,234.8331 C 245.81402,232.75735 249.50879,233.08945 250.79571,231.59495 C 252.08262,230.10046 249.84088,228.39839 251.54295,225.86602 C 253.24502,223.33365 259.63814,218.31051 261.00811,216.40086 C 262.37808,214.49122 260.88359,214.61574 259.76279,214.40817 C 258.64185,214.20059 256.89832,217.77084 254.2829,215.15541 C 251.66747,212.53999 245.48193,201.28971 244.07037,198.71587 C 242.65893,196.14191 245.56498,199.83668 245.81402,199.71216 C 246.06306,199.58764 243.73827,195.60224 245.56498,197.96862 C 247.39157,200.33488 253.99227,211.66822 256.77368,213.90996 C 259.55521,216.1517 261.79695,212.41547 262.25356,211.41918 C 262.71018,210.42277 260.38551,208.67924 259.51362,207.93199 C 258.64185,207.18474 257.56251,207.97346 257.02284,206.93558 C 256.48317,205.8977 255.23772,200.83309 256.27559,201.70486 C 257.31347,202.57662 261.88,210.3813 263.24998,212.16643 C 264.62007,213.95155 264.32907,212.78915 264.49518,212.41547 C 264.66129,212.04178 263.95563,210.25678 264.24664,209.92456 C 264.53639,209.59247 266.11382,209.17732 266.23871,210.42277 C 266.36361,211.66822 264.8274,216.02718 264.99351,217.39715 C 265.15962,218.76712 265.86527,219.26533 267.23537,218.6426 C 268.60547,218.01988 272.09253,213.61933 273.21284,213.66092 C 274.3344,213.70238 274.25072,217.64619 273.96096,218.89164 C 273.66996,220.13709 271.92642,220.05404 271.46931,221.13338 C 271.01344,222.21285 271.55299,224.86974 271.22077,225.36782 C 270.88855,225.86602 269.85067,224.86974 269.47724,224.12249 C 269.1038,223.37512 269.43602,221.34096 268.9789,220.88434 C 268.52179,220.42773 267.06926,220.55225 266.73704,221.38255 C 266.40482,222.21285 265.99017,225.07731 266.98558,225.86602 C 267.98224,226.65474 271.42809,226.48875 272.71451,226.11506 C 274.00218,225.7415 274.12707,225.20183 274.70783,223.62429 C 275.28859,222.04674 275.56586,217.03558 276.20283,216.6499 C 276.88725,216.23475 278.01755,219.04926 278.88057,224.18469 C 279.17033,201.01981 270.058,185.99133 261.13276,178.29031 C 252.21601,170.59803 240.62476,166.36035 236.0997,164.46694 C 231.57463,162.57229 235.60162,166.83245 233.60892,167.17591 C 233.11071,167.26084 232.01838,165.12014 231.19008,165.04396 C 230.36165,164.96652 232.28816,167.95026 231.35157,167.82162 C 229.47827,167.56434 225.11931,166.31913 224.14363,166.52146 C 222.19253,166.92612 221.71505,168.47232 221.9019,169.60387 C 221.99532,170.16964 225.90802,167.77666 226.82912,168.45733 C 227.75022,169.13926 225.67972,172.8961 225.26457,173.3095 C 224.43426,174.13381 218.14493,173.68294 216.92021,174.5547 C 215.69562,175.42647 218.04114,177.66833 217.91662,178.5401 C 217.79198,179.41187 215.88234,178.70621 216.17297,179.7853 C 216.4636,180.86439 219.66016,183.7707 219.66016,185.0159 C 219.66016,186.2611 217.08632,186.46968 216.17297,187.25776 C 215.25961,188.0471 213.76512,188.75275 214.18027,189.74817 C 214.59542,190.74483 217.2939,193.27745 218.66387,193.23598 C 220.03372,193.19439 221.11318,190.12285 222.4001,189.49963 C 223.68702,188.8764 225.18151,189.08498 226.38537,189.49963 C 227.58936,189.91428 229.0008,191.28437 229.62352,191.99053 C 230.24625,192.69631 229.70658,193.60954 230.12173,193.73419 C 230.53688,193.85871 232.52945,193.6926 232.11443,192.73778 C 231.69928,191.78271 227.42325,188.21321 227.63082,188.00463 C 227.8384,187.79731 231.8238,190.6624 233.35975,191.49295 C 234.89584,192.32263 235.85066,192.98694 236.84694,192.98694 C 237.84336,192.98694 238.67353,191.78271 239.33785,191.49295 C 240.00204,191.20194 240.62476,191.65781 240.83234,191.24316 C 241.03992,190.82851 240.25108,189.45841 240.5833,189.0013 C 240.9154,188.54543 242.24378,188.75275 242.82504,188.50297 C 243.40617,188.25442 243.57228,187.29898 244.07037,187.50755 C 244.56857,187.71488 246.27064,189.04251 245.81402,189.74817 C 245.35741,190.45507 241.53812,191.28437 241.33055,191.74149 C 241.12297,192.19811 244.31953,191.99053 244.56857,192.48874 C 244.81774,192.98694 243.86291,194.39838 242.82504,194.73047 C 241.78716,195.06257 239.00575,194.31532 238.34144,194.48143 C 237.67725,194.64742 239.50383,195.3532 238.83964,195.72676 C 238.17545,196.10045 235.68455,196.68158 234.35616,196.72317 C 233.02766,196.76464 231.69928,196.39108 230.86897,195.97593 C 230.03867,195.56078 231.61622,194.31532 229.37448,194.23227 C 227.13274,194.14934 219.99225,195.43626 217.41842,195.47772 C 214.84446,195.51919 216.17297,192.98694 213.93123,194.48143 z M 217.16925,172.81117 L 220.4074,172.56138 L 219.28647,170.94274 L 219.9092,166.08558 L 217.79198,169.07431 C 217.79198,169.07431 216.54665,167.82911 216.42201,168.32744 C 216.29749,168.82577 215.79941,171.31618 215.79941,171.31618 L 217.16925,170.32077 L 217.16925,172.81117 z M 209.57227,170.6942 C 211.66863,169.90487 219.12049,164.34205 220.15836,163.22174 C 221.19611,162.10018 216.81642,164.00983 215.79941,163.96861 C 214.78226,163.9274 215.42572,162.30751 214.05575,162.97195 C 212.68578,163.63639 208.32682,166.66634 207.57957,167.95401 C 206.83233,169.24042 207.47578,171.48229 209.57227,170.6942 z M 224.01911,163.47028 L 226.01181,164.96527 L 227.5063,164.21715 L 224.01911,163.47028 z M 208.94954,174.05637 C 209.57227,175.84112 203.34514,177.95934 203.46966,178.29031 C 203.59418,178.62253 204.75657,180.07631 204.2169,180.28363 C 203.67723,180.49096 201.06181,179.99263 200.23151,179.53676 C 199.40133,179.07964 199.73343,177.08757 199.23522,177.54344 C 198.73701,178.00055 198.44651,181.4464 197.24252,182.27571 C 196.03866,183.10626 195.20836,181.1554 192.0118,182.5255 C 188.81524,183.89559 181.63328,187.67366 178.06304,190.49629 C 174.49279,193.31904 171.37929,197.71946 170.59057,199.46312 C 169.80174,201.20665 173.16441,200.50087 173.33039,200.95761 C 173.4965,201.41423 172.41716,202.36905 171.58686,202.20306 C 170.75656,202.03695 168.47336,200.83309 168.34871,199.9612 C 168.22419,199.08943 170.50752,197.92703 170.83961,196.97221 C 171.17171,196.01739 171.04719,193.48502 170.34141,194.23227 C 169.63575,194.97952 167.43548,199.04797 166.60518,201.45569 C 165.77488,203.86354 162.32928,206.14687 165.35973,208.67924 C 168.3903,211.21161 181.50876,214.6988 184.78838,216.6499 C 188.06799,218.60101 183.70891,218.60101 185.03742,220.38614 C 186.36592,222.17126 192.71758,225.40941 192.75904,227.36052 C 192.80051,229.31175 186.5735,230.26657 185.28646,232.09316 C 183.99954,233.91975 185.82613,237.19936 185.03742,238.32029 C 184.24871,239.4411 182.54651,236.82568 180.55394,238.81837 C 178.56124,240.81107 173.4965,246.83063 173.08135,250.27636 C 172.6662,253.72196 177.73094,257.79028 178.06304,259.49248 C 178.39513,261.19454 177.28107,261.99225 173.66499,258.02296 C 170.13758,254.15085 164.49683,243.81542 162.00592,236.25978 C 159.51514,228.70426 159.237,219.93839 159.77667,216.03605 C 162.95837,213.71887 164.15586,211.08696 164.36344,209.67552 C 164.57101,208.26409 162.97174,209.4075 161.37445,206.68654 C 162.24622,199.71216 171.42075,183.89559 181.55023,176.79657 C 191.7981,169.61511 195.87255,168.0789 198.23893,167.08224 C 200.60519,166.08558 195.33288,170.23709 195.74803,170.81785 C 196.16318,171.39986 198.94459,171.48229 200.72971,170.56931 C 202.51483,169.65632 206.08508,165.0477 206.45864,165.33871 C 206.83233,165.62971 202.5563,170.86031 202.97145,172.31284 C 203.3866,173.76537 208.32682,172.27162 208.94954,174.05637 z M 248.78327,234.68061 C 248.98885,233.97607 247.22758,236.61798 246.4937,236.97018 C 245.75982,237.32251 244.84983,236.26577 244.3801,236.79408 C 243.91037,237.32251 244.23335,239.08378 243.67557,240.14051 C 243.11779,241.19737 240.76939,242.95864 241.03367,243.13474 C 241.29782,243.31084 243.96908,242.60644 245.26074,241.19737 C 246.5524,239.78831 248.57782,235.38501 248.78327,234.68061 z M 254.94784,251.06057 C 255.27082,250.53214 255.35887,249.41671 255.65237,248.06634 C 255.94587,246.7161 257.09078,243.13474 256.7091,242.95864 C 256.32755,242.78254 253.86175,245.62989 253.36267,247.00961 C 252.86372,248.38932 253.45072,250.56149 253.715,251.23667 C 253.97915,251.91186 254.62498,251.589 254.94784,251.06057 z M 261.99303,245.60054 C 261.20045,244.04473 261.84628,237.05836 262.34524,234.85671 C 262.84432,232.65506 264.13598,232.42026 264.98726,232.39091 C 265.83905,232.36156 266.66086,234.68061 267.45269,234.68061 C 268.24577,234.68061 268.77408,232.15598 269.74326,232.39091 C 270.7112,232.62571 272.09129,235.73734 273.2653,236.08955 C 274.43931,236.44187 276.20033,234.76866 276.78733,234.50438 C 277.37559,234.24023 271.85648,248.94698 270.62377,249.1232 C 269.39106,249.2993 267.71747,250.35604 267.62879,249.47541 C 267.54136,248.59477 268.03969,244.83731 267.10049,244.19148 C 266.16128,243.54577 262.78562,247.15636 261.99303,245.60054 z M 265.51557,226.75478 C 265.33947,227.25373 262.25719,230.04251 261.81693,230.10121 C 261.37655,230.15991 262.25719,227.66476 262.87367,227.10698 C 263.49015,226.5492 265.69167,226.2557 265.51557,226.75478 z M 194.35932,275.19027 C 205.83716,281.64833 228.49909,283.4096 238.39164,278.71293 C 231.72813,278.0671 231.46397,275.86545 229.40908,275.5426 C 227.35431,275.21962 227.11938,276.92218 226.06264,276.77543 C 225.00591,276.62868 224.71228,274.80871 223.06841,274.66196 C 221.42455,274.51509 218.19551,277.33321 215.84712,276.95154 C 213.49872,276.56998 210.62201,272.92992 208.97815,272.37226 C 207.33428,271.81448 206.7765,272.51902 206.33612,272.54837 C 205.89586,272.57772 205.27938,276.24713 204.22265,275.8948 C 203.16591,275.5426 200.46518,272.01994 200.69999,271.66773 C 200.93491,271.3154 202.54943,269.55414 202.10905,269.55414 C 201.6688,269.55414 198.99742,271.96123 197.70588,272.90057 C 196.41422,273.8399 190.80744,273.3116 194.35932,275.19027 z "
       id="path2168" />
    <path
       style="fill:#000000"
       id="path3892"
       d="" />
    <path
       style="fill:url(#radialGradient4974);fill-opacity:1;stroke-width:0.505198;stroke-linecap:round;stroke-linejoin:round"
       d="M 227.22276,183.013 C 227.22276,184.02181 226.56401,184.84055 225.75235,184.84055 C 224.94069,184.84055 224.28194,184.02181 224.28194,183.013 C 224.28194,182.00419 224.94069,181.18545 225.75235,181.18545 C 226.56401,181.18545 227.22276,182.00419 227.22276,183.013 z "
       id="path2134" />
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/repo_file.svg.










































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="124.22071"
   height="124.23133"
   id="svg3389"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="repo_file.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.979899"
     inkscape:cx="4.6528455"
     inkscape:cy="12.866727"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1114"
     inkscape:window-height="966"
     inkscape:window-x="63"
     inkscape:window-y="101" />
  <defs
     id="defs3391">
    <radialGradient
       r="3.1789999"
       id="defitem14"
       fx="38.584499"
       fy="48.691898"
       gradientUnits="userSpaceOnUse"
       cy="48.691898"
       cx="38.584499">
      <stop
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0.84516132;"
         id="stop89"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop91"
         stop-opacity="0"
         stop-color="#ffffff" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="defitem12"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       cy="114.505"
       cx="61.052898">
      <stop
         offset="0"
         id="stop73"
         stop-opacity="1"
         stop-color="#3b5bb1" />
      <stop
         offset="0.333333"
         id="stop75"
         stop-opacity="1"
         stop-color="#9cacd8" />
      <stop
         offset="0.5"
         id="stop77"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="0.819444"
         id="stop79"
         stop-opacity="1"
         stop-color="#b1bcd8" />
      <stop
         offset="1"
         id="stop81"
         stop-opacity="1"
         stop-color="#3b5bb1" />
    </radialGradient>
    <linearGradient
       id="defitem11"
       gradientUnits="userSpaceOnUse"
       x1="73.041199"
       x2="32.438499"
       y1="58.562698"
       y2="118.927">
      <stop
         offset="0"
         id="stop68"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop70"
         stop-opacity="0"
         stop-color="#ffffff" />
    </linearGradient>
    <radialGradient
       r="90.017502"
       id="defitem10"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       cy="103.471"
       cx="63.869499">
      <stop
         offset="0"
         id="stop57"
         stop-opacity="1"
         stop-color="#b1c3e9" />
      <stop
         offset="0.375"
         id="stop59"
         stop-opacity="1"
         stop-color="#576eb1" />
      <stop
         offset="0.5"
         id="stop61"
         stop-opacity="1"
         stop-color="#001a7b" />
      <stop
         offset="0.666667"
         id="stop63"
         stop-opacity="1"
         stop-color="#8597cf" />
      <stop
         offset="1"
         id="stop65"
         stop-opacity="1"
         stop-color="#b1c3e9" />
    </radialGradient>
    <radialGradient
       r="56.158001"
       id="defitem9"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       cy="4.9972801"
       cx="59.563">
      <stop
         offset="0"
         id="stop52"
         stop-opacity="1"
         stop-color="#a3cdeb" />
      <stop
         offset="1"
         id="stop54"
         stop-opacity="1"
         stop-color="#002f82" />
    </radialGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem9"
       id="radialGradient2766"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       cx="59.563"
       cy="4.9972801"
       fx="59.563"
       fy="4.9972801"
       r="56.158001" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem10"
       id="radialGradient2768"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       cx="63.869499"
       cy="103.471"
       fx="63.869499"
       fy="104.901"
       r="90.017502" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#defitem11"
       id="linearGradient2770"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       x1="73.041199"
       y1="58.562698"
       x2="32.438499"
       y2="118.927" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem12"
       id="radialGradient2772"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       cx="61.052898"
       cy="114.505"
       fx="62.500599"
       fy="114.505"
       r="64.772102" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#defitem14"
       id="radialGradient2774"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3703421,0,0,0.4602932,142.67581,99.266526)"
       cx="224.32378"
       cy="181.94157"
       fx="224.32378"
       fy="181.94157"
       r="3.9704101" />
  </defs>
  <metadata
     id="metadata3394">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-157.88964,-158.81795)">
    <path
       style="fill:#000000"
       id="path87"
       d="" />
    <path
       style="fill:#000000"
       id="path3892"
       d="" />
    <g
       transform="translate(1.4024875e-2,-8.7152548e-3)"
       id="g2753"
       inkscape:label="Ebene 1">
      <path
         d=""
         id="path2755"
         style="fill:#000000" />
      <path
         id="path67"
         d="M 219.9975,283.04928 C 254.29676,283.04928 282.11035,255.1023 282.11035,220.82502 C 282.11035,186.76318 254.29801,158.81795 219.9975,158.81795 C 185.94665,158.81795 157.88964,186.76318 157.88964,220.82502 C 157.88964,255.1023 185.94665,283.04928 219.9975,283.04928 z "
         style="fill:url(#radialGradient2766)" />
      <path
         id="path74"
         d="M 219.99762,279.39848 C 252.28058,279.39848 278.47092,253.09911 278.47092,220.83164 C 278.47092,188.76899 252.28058,162.45863 219.99762,162.45863 C 187.94909,162.45863 161.53657,188.76899 161.53657,220.83164 C 161.53657,253.09911 187.94909,279.39848 219.99762,279.39848 z "
         style="fill:url(#radialGradient2768)" />
      <path
         id="path85"
         d="M 169.08696,199.40791 C 169.08209,199.13015 169.06124,198.85613 169.06124,198.57836 C 169.06124,197.70485 169.11994,196.83733 169.20324,195.98454 C 167.64568,198.12574 166.42096,202.08978 166.57395,203.09918 L 166.97524,205.79691 C 165.77125,206.7611 165.1534,209.28635 166.37325,209.6473 C 168.45687,210.25541 170.50003,210.95395 172.4344,211.66722 C 170.59919,208.23049 169.45765,204.54172 169.15054,200.69745 C 168.70766,200.21299 168.38593,199.83131 168.38593,199.83131 L 169.08696,199.40791 z "
         style="fill:none" />
      <path
         id="path89"
         d="M 219.9975,265.87386 C 191.68395,265.87386 168.12965,249.74093 165.97496,224.50517 C 165.86343,225.74587 165.79036,226.9987 165.79036,228.25401 C 165.79036,255.24905 190.28038,277.25228 219.99625,277.25228 C 249.92744,277.25228 274.20576,255.24905 274.20576,228.25401 C 274.20576,226.99745 274.14081,225.74587 274.03215,224.50517 C 271.8902,249.74093 248.52249,265.87386 219.9975,265.87386 z "
         style="fill:#ffffff;fill-opacity:0.13636397" />
      <path
         id="path1388"
         d="M 216.58774,162.82832 C 216.19257,162.85205 215.8099,162.9145 215.41673,162.94572 C 212.0056,167.3695 209.16087,175.35653 207.25959,186.05128 C 200.78891,185.07585 195.22372,183.40226 191.02325,181.25032 C 195.49162,173.55804 201.22629,167.72795 207.57183,163.88243 C 205.9171,164.24713 204.3719,164.86411 202.77112,165.36618 C 197.76958,169.13551 193.29384,174.26744 189.65715,180.62584 C 187.20996,179.21203 185.45532,177.57591 184.31015,175.82613 C 185.90756,174.23997 187.60301,172.80742 189.34492,171.41609 C 185.55061,173.78285 181.9625,176.43062 178.80703,179.57298 C 178.702,179.67664 178.63793,179.81902 178.53376,179.92393 C 177.47603,180.99303 176.6195,182.25073 175.64557,183.39726 C 173.54521,186.39724 171.64943,189.5908 170.06439,192.99893 C 169.84633,192.69606 169.71181,192.37084 169.51785,192.06222 C 169.38971,192.28428 169.25295,192.50173 169.12768,192.72566 C 169.31902,193.07787 169.45366,193.43257 169.67397,193.77952 C 166.98124,199.77998 165.23908,206.2629 164.44412,213.13823 C 163.68876,212.38524 163.12723,211.58704 162.5707,210.79646 C 162.50288,211.17888 162.51375,211.58242 162.45355,211.96722 C 163.00845,212.81014 163.54838,213.65917 164.32697,214.46512 C 164.12427,216.58546 163.74146,218.65122 163.74146,220.82701 C 163.74146,224.37753 164.15374,227.81851 164.67817,231.2089 C 163.72048,230.56857 163.15108,229.85717 162.37549,229.17936 C 162.44655,229.66807 162.44843,230.17777 162.53161,230.66249 C 163.32319,231.36565 163.86236,232.1019 164.83429,232.77009 C 165.70968,237.67883 167.18719,242.31643 169.0495,246.74271 C 168.24405,246.14396 167.56849,245.49763 166.86384,244.86928 C 167.35605,245.95012 167.98751,246.94678 168.54217,247.99166 C 169.15591,248.46388 169.70045,248.94398 170.37663,249.39672 C 171.80693,252.40069 173.3811,255.25205 175.21631,257.94428 C 179.08493,262.61198 183.53468,266.75549 188.64251,270.04335 C 186.52791,268.31967 184.51586,266.47847 182.63182,264.46217 C 186.46359,266.32285 190.61922,267.9325 195.1604,269.18482 C 197.44897,271.95437 199.91802,274.37458 202.53707,276.40524 C 204.02094,276.8781 205.45549,277.45649 206.98632,277.81031 C 203.67761,275.72469 200.51889,273.11926 197.6583,269.88723 C 202.03149,270.94746 206.69657,271.62165 211.51376,272.03392 C 212.6267,274.89776 213.89538,277.15699 215.22164,278.90314 C 215.61431,278.93587 215.99786,278.99544 216.39253,279.02029 C 215.11898,277.22955 213.93248,274.96795 212.87986,272.11198 C 215.21003,272.27872 217.5011,272.54125 219.9052,272.54125 C 224.52469,272.54125 228.96932,272.13272 233.29244,271.5266 C 231.9653,274.37545 230.47718,276.62681 228.92111,278.47375 C 229.40658,278.39844 229.92265,278.44403 230.40412,278.35673 C 232.04948,276.50291 233.59231,274.1429 235.00974,271.21436 C 240.00316,270.41591 244.71183,269.24677 249.09938,267.74066 C 246.61048,270.71965 243.82445,273.14811 240.94225,275.31241 C 242.98653,274.52096 244.90953,273.5489 246.83566,272.54125 C 248.70634,270.76312 250.51994,268.87021 252.18279,266.72589 C 255.58817,265.39189 258.60064,263.75114 261.47172,262.04233 C 262.93636,260.56457 264.15097,258.86775 265.45312,257.24162 C 262.25169,259.55492 258.71704,261.67214 254.64159,263.4474 C 256.52576,260.61728 258.22595,257.56672 259.71545,254.27537 C 264.7025,252.29016 268.72911,249.86395 271.93142,247.21106 C 272.37355,246.34267 272.89811,245.52773 273.29777,244.6351 C 270.13543,247.59262 265.75911,250.23002 260.41798,252.40194 C 262.38483,247.71251 263.89581,242.67101 264.9448,237.29753 C 270.68497,235.0162 274.94513,232.29686 277.63037,229.33548 C 277.70531,228.82191 277.72405,228.29198 277.78649,227.77429 C 275.18868,230.66299 270.99221,233.2603 265.33572,235.42411 C 266.14129,230.72219 266.70207,225.87252 266.70207,220.82701 C 266.70207,220.70662 266.66335,220.59608 266.66335,220.47581 C 271.87772,218.00626 275.60583,215.12356 277.59166,212.00631 C 277.53545,211.64686 277.53545,211.27081 277.47426,210.91348 C 275.4597,213.93207 271.73534,216.65902 266.58467,218.95359 C 266.4348,212.05789 265.44813,205.49055 263.8135,199.32161 C 267.03429,197.07338 269.30613,194.56362 270.44892,191.9061 C 270.33152,191.70527 270.25533,191.48171 270.13668,191.28188 C 268.8665,193.70821 266.60715,195.95257 263.54036,197.95564 C 261.59799,191.10702 258.74177,184.93846 255.30516,179.53426 C 256.33567,178.62253 257.09228,177.63711 257.72487,176.64544 C 257.57026,176.51305 257.41264,176.38566 257.25652,176.25452 C 256.58871,177.13378 255.87131,177.99556 254.87577,178.79239 C 252.47717,175.13297 249.69513,172.04182 246.7576,169.26915 C 244.94938,168.32744 243.167,167.367 241.25448,166.61513 C 245.79679,170.05224 249.92993,174.46977 253.39265,179.8465 C 250.08293,182.02966 245.49342,183.78818 240.00554,185.03713 C 237.55622,175.24287 234.09688,167.87407 230.13097,163.49276 C 229.64725,163.40658 229.13556,163.40908 228.64784,163.33664 C 232.57904,167.82786 235.9191,175.37276 238.21005,185.4268 C 233.02216,186.46343 227.23928,187.06667 221.037,187.06667 C 216.72887,187.06667 212.72537,186.67825 208.85975,186.16868 C 210.59129,175.39649 213.26754,167.32703 216.58774,162.82832 z M 183.88077,176.2158 C 184.91327,178.11171 186.71088,179.90395 189.1888,181.48512 C 185.98,187.30148 183.45288,193.93639 181.81226,201.23413 C 177.28482,199.32086 173.75266,197.078 171.35231,194.52103 C 174.49416,187.63619 178.72211,181.43391 183.88077,176.2158 z M 253.861,180.62584 C 257.25777,186.07126 260.01008,192.2618 261.90111,199.08756 C 257.14199,201.78379 250.69591,203.88077 243.32299,205.37127 C 242.69927,198.55438 241.74095,192.11193 240.39571,186.40348 C 245.98388,184.98468 250.594,183.01134 253.861,180.62584 z M 190.47684,182.18703 C 194.68817,184.57752 200.37364,186.45469 207.02541,187.57375 C 206.05111,193.41258 205.33047,199.88176 204.91781,206.81531 C 196.58545,205.8666 189.06253,204.16891 183.06121,201.81951 C 184.71781,194.59309 187.23544,187.9884 190.47684,182.18703 z M 238.56138,186.83187 C 239.7836,192.54706 240.62876,198.99326 241.1763,205.80066 C 234.58522,206.98042 227.34382,207.71305 219.63193,207.71305 C 215.26486,207.71305 211.0795,207.43866 207.02541,207.04961 C 207.38474,200.24009 207.76529,193.51887 208.62569,187.76858 C 212.5394,188.34435 216.66892,188.74401 221.037,188.74401 C 227.37854,188.74401 233.28419,188.01088 238.56138,186.83187 z M 170.88395,195.37968 C 173.22848,198.16346 176.81871,200.69283 181.50002,202.83441 C 180.32451,208.57395 179.50944,214.53256 179.50944,220.82701 C 179.50944,220.98738 179.54779,221.13525 179.54854,221.29537 C 173.89991,219.47615 169.23122,217.29636 166.00531,214.77736 C 166.66613,207.93436 168.24854,201.39849 170.88395,195.37968 z M 262.21335,200.49263 C 263.76754,206.52905 264.7687,212.90968 264.86736,219.61703 C 259.13331,221.94407 252.08013,223.81912 243.9085,225.04222 C 243.94247,223.62454 244.06462,222.26868 244.06462,220.82701 C 244.06462,216.19629 243.86079,211.71193 243.51808,207.36185 C 250.95882,205.70387 257.46147,203.38981 262.21335,200.49263 z M 182.71,203.45888 C 188.74854,206.02784 196.35527,207.89415 204.80066,208.962 C 204.60945,212.80939 204.48842,216.7693 204.48842,220.82701 C 204.48842,222.58878 204.56923,224.25351 204.60558,225.97893 C 195.63525,225.16511 187.54656,223.70247 180.79748,221.64657 C 180.79486,221.36731 180.75839,221.10715 180.75839,220.82701 C 180.75839,214.76187 181.5556,209.01071 182.71,203.45888 z M 241.37151,207.86917 C 241.6584,212.06351 241.83987,216.37339 241.83987,220.82701 C 241.83987,222.37696 241.71909,223.83261 241.68375,225.35445 C 234.97664,226.2462 227.68291,226.75952 220.06132,226.75952 C 215.4196,226.75952 210.97222,226.5502 206.63512,226.21311 C 206.59815,224.34918 206.40094,222.73428 206.40094,220.82701 C 206.40094,216.72771 206.73741,213.11813 206.90839,209.23527 C 210.99407,209.67203 215.22939,209.97677 219.63193,209.97677 C 227.42362,209.97677 234.72286,209.18481 241.37151,207.86917 z M 165.88816,216.0654 C 169.14816,218.74602 173.87381,221.10565 179.66556,223.09073 C 179.79208,228.26201 180.38546,233.22133 181.30493,238.00006 C 175.39053,236.45137 170.39924,234.54709 166.5516,232.34083 C 165.8703,228.6011 165.4198,224.76845 165.4198,220.82701 C 165.4198,219.19701 165.76651,217.6648 165.88816,216.0654 z M 264.90608,221.2564 C 264.87985,226.44116 264.25038,231.3925 263.34515,236.2047 C 257.54415,238.20701 250.64096,239.82852 242.81567,240.88826 C 243.3436,236.50232 243.65859,231.91181 243.83032,227.14982 C 252.04665,225.80982 259.14443,223.73994 264.90608,221.2564 z M 180.9536,223.48103 C 187.69268,225.66532 195.75889,227.31418 204.68363,228.20356 C 204.82701,232.93907 205.06157,237.51322 205.46423,241.86406 C 197.07816,241.23634 189.43122,240.0316 182.74897,238.39036 C 181.75368,233.61288 181.11135,228.65955 180.9536,223.48103 z M 241.64466,227.46206 C 241.48379,232.18621 241.15082,236.7345 240.66898,241.08347 C 234.00334,241.89266 226.86872,242.41035 219.35879,242.41035 C 215.239,242.41035 211.23237,242.26897 207.33765,242.02018 C 206.98183,237.74803 206.88341,233.0877 206.75227,228.43786 C 211.05715,228.80443 215.45919,229.02324 220.06132,229.02324 C 227.68041,229.02324 234.93518,228.43998 241.64466,227.46206 z M 166.94202,234.13606 C 170.82513,236.39092 175.82829,238.32704 181.6951,239.95155 C 182.84114,245.24572 184.30965,250.29209 186.30073,254.86087 C 180.88079,253.26934 176.10368,251.30312 172.21096,249.00643 C 169.90877,244.32799 168.06033,239.40588 166.94202,234.13606 z M 262.91588,238.15618 C 261.77422,243.48819 260.22365,248.54606 258.15426,253.18254 C 252.74744,255.16961 246.56477,256.75703 239.73227,257.78816 C 240.91215,253.2606 241.90082,248.34811 242.62046,242.99586 C 250.27315,241.87043 257.17384,240.21632 262.91588,238.15618 z M 183.17836,240.38081 C 189.81477,242.10373 197.38628,243.37654 205.65944,244.04972 C 206.21547,249.41708 207.00768,254.25726 207.92303,258.76384 C 200.75169,258.15123 194.10504,256.98084 188.13506,255.3682 C 186.00335,250.7918 184.42481,245.70545 183.17836,240.38081 z M 240.4348,243.23004 C 239.76898,248.5934 238.88685,253.49702 237.78078,258.02221 C 232.10394,258.7852 226.16993,259.31026 219.9052,259.31026 C 216.34357,259.31026 212.87399,259.09244 209.48422,258.8419 C 208.65055,254.36404 207.95126,249.54135 207.45468,244.20584 C 211.31118,244.47561 215.28384,244.6742 219.35879,244.6742 C 226.78878,244.6742 233.82474,244.10105 240.4348,243.23004 z M 173.30379,251.11403 C 177.26758,253.33254 181.87345,255.28115 187.27641,256.81236 C 188.90341,260.24684 190.73762,263.3902 192.77953,266.25753 C 188.09647,264.81837 183.70491,263.08221 179.86077,260.98847 C 177.38286,257.93092 175.20419,254.63969 173.30379,251.11403 z M 257.41264,255.09505 C 255.71607,258.61934 253.71275,261.84125 251.55831,264.8135 C 246.80419,266.61498 241.52925,267.89353 235.98542,268.83349 C 237.17792,266.04734 238.26025,262.9447 239.22494,259.50547 C 245.94241,258.50568 252.04053,257.02256 257.41264,255.09505 z M 189.1888,257.28071 C 195.00903,258.79956 201.40464,259.94047 208.31346,260.52011 C 209.06632,263.95098 209.86752,267.06436 210.81135,269.8093 C 205.36094,269.30922 200.2089,268.3539 195.35561,267.03813 C 193.08714,264.09111 191.00115,260.8647 189.1888,257.28071 z M 237.31243,259.77861 C 236.40294,263.22521 235.36969,266.36644 234.22915,269.14573 C 229.61453,269.83552 224.8694,270.31662 219.9052,270.31662 C 217.2643,270.31662 214.72743,270.08581 212.17733,269.88723 C 211.29395,267.15141 210.48663,264.02079 209.79646,260.5983 C 213.09543,260.83884 216.44586,261.02756 219.9052,261.02756 C 225.99857,261.02756 231.76834,260.51337 237.31243,259.77861 z "
         style="opacity:0.7171717;fill:url(#linearGradient2770)" />
      <path
         id="path2168"
         d="M 213.93123,194.48143 C 211.68949,195.97593 201.97516,200.99907 201.97516,205.19205 C 201.97516,209.51129 206.37571,212.53999 209.44775,214.40817 C 212.51979,216.27622 219.70162,211.95885 222.4001,215.65362 C 225.09846,219.34826 224.30974,231.5119 225.63813,236.57664 C 226.96663,241.64137 228.1705,244.79647 230.37077,246.04192 C 232.57104,247.28725 236.5979,245.91728 238.83964,244.04922 C 241.08138,242.18104 241.82863,236.90873 243.82132,234.8331 C 245.81402,232.75735 249.50879,233.08945 250.79571,231.59495 C 252.08262,230.10046 249.84088,228.39839 251.54295,225.86602 C 253.24502,223.33365 259.63814,218.31051 261.00811,216.40086 C 262.37808,214.49122 260.88359,214.61574 259.76279,214.40817 C 258.64185,214.20059 256.89832,217.77084 254.2829,215.15541 C 251.66747,212.53999 245.48193,201.28971 244.07037,198.71587 C 242.65893,196.14191 245.56498,199.83668 245.81402,199.71216 C 246.06306,199.58764 243.73827,195.60224 245.56498,197.96862 C 247.39157,200.33488 253.99227,211.66822 256.77368,213.90996 C 259.55521,216.1517 261.79695,212.41547 262.25356,211.41918 C 262.71018,210.42277 260.38551,208.67924 259.51362,207.93199 C 258.64185,207.18474 257.56251,207.97346 257.02284,206.93558 C 256.48317,205.8977 255.23772,200.83309 256.27559,201.70486 C 257.31347,202.57662 261.88,210.3813 263.24998,212.16643 C 264.62007,213.95155 264.32907,212.78915 264.49518,212.41547 C 264.66129,212.04178 263.95563,210.25678 264.24664,209.92456 C 264.53639,209.59247 266.11382,209.17732 266.23871,210.42277 C 266.36361,211.66822 264.8274,216.02718 264.99351,217.39715 C 265.15962,218.76712 265.86527,219.26533 267.23537,218.6426 C 268.60547,218.01988 272.09253,213.61933 273.21284,213.66092 C 274.3344,213.70238 274.25072,217.64619 273.96096,218.89164 C 273.66996,220.13709 271.92642,220.05404 271.46931,221.13338 C 271.01344,222.21285 271.55299,224.86974 271.22077,225.36782 C 270.88855,225.86602 269.85067,224.86974 269.47724,224.12249 C 269.1038,223.37512 269.43602,221.34096 268.9789,220.88434 C 268.52179,220.42773 267.06926,220.55225 266.73704,221.38255 C 266.40482,222.21285 265.99017,225.07731 266.98558,225.86602 C 267.98224,226.65474 271.42809,226.48875 272.71451,226.11506 C 274.00218,225.7415 274.12707,225.20183 274.70783,223.62429 C 275.28859,222.04674 275.56586,217.03558 276.20283,216.6499 C 276.88725,216.23475 278.01755,219.04926 278.88057,224.18469 C 279.17033,201.01981 270.058,185.99133 261.13276,178.29031 C 252.21601,170.59803 240.62476,166.36035 236.0997,164.46694 C 231.57463,162.57229 235.60162,166.83245 233.60892,167.17591 C 233.11071,167.26084 232.01838,165.12014 231.19008,165.04396 C 230.36165,164.96652 232.28816,167.95026 231.35157,167.82162 C 229.47827,167.56434 225.11931,166.31913 224.14363,166.52146 C 222.19253,166.92612 221.71505,168.47232 221.9019,169.60387 C 221.99532,170.16964 225.90802,167.77666 226.82912,168.45733 C 227.75022,169.13926 225.67972,172.8961 225.26457,173.3095 C 224.43426,174.13381 218.14493,173.68294 216.92021,174.5547 C 215.69562,175.42647 218.04114,177.66833 217.91662,178.5401 C 217.79198,179.41187 215.88234,178.70621 216.17297,179.7853 C 216.4636,180.86439 219.66016,183.7707 219.66016,185.0159 C 219.66016,186.2611 217.08632,186.46968 216.17297,187.25776 C 215.25961,188.0471 213.76512,188.75275 214.18027,189.74817 C 214.59542,190.74483 217.2939,193.27745 218.66387,193.23598 C 220.03372,193.19439 221.11318,190.12285 222.4001,189.49963 C 223.68702,188.8764 225.18151,189.08498 226.38537,189.49963 C 227.58936,189.91428 229.0008,191.28437 229.62352,191.99053 C 230.24625,192.69631 229.70658,193.60954 230.12173,193.73419 C 230.53688,193.85871 232.52945,193.6926 232.11443,192.73778 C 231.69928,191.78271 227.42325,188.21321 227.63082,188.00463 C 227.8384,187.79731 231.8238,190.6624 233.35975,191.49295 C 234.89584,192.32263 235.85066,192.98694 236.84694,192.98694 C 237.84336,192.98694 238.67353,191.78271 239.33785,191.49295 C 240.00204,191.20194 240.62476,191.65781 240.83234,191.24316 C 241.03992,190.82851 240.25108,189.45841 240.5833,189.0013 C 240.9154,188.54543 242.24378,188.75275 242.82504,188.50297 C 243.40617,188.25442 243.57228,187.29898 244.07037,187.50755 C 244.56857,187.71488 246.27064,189.04251 245.81402,189.74817 C 245.35741,190.45507 241.53812,191.28437 241.33055,191.74149 C 241.12297,192.19811 244.31953,191.99053 244.56857,192.48874 C 244.81774,192.98694 243.86291,194.39838 242.82504,194.73047 C 241.78716,195.06257 239.00575,194.31532 238.34144,194.48143 C 237.67725,194.64742 239.50383,195.3532 238.83964,195.72676 C 238.17545,196.10045 235.68455,196.68158 234.35616,196.72317 C 233.02766,196.76464 231.69928,196.39108 230.86897,195.97593 C 230.03867,195.56078 231.61622,194.31532 229.37448,194.23227 C 227.13274,194.14934 219.99225,195.43626 217.41842,195.47772 C 214.84446,195.51919 216.17297,192.98694 213.93123,194.48143 z M 217.16925,172.81117 L 220.4074,172.56138 L 219.28647,170.94274 L 219.9092,166.08558 L 217.79198,169.07431 C 217.79198,169.07431 216.54665,167.82911 216.42201,168.32744 C 216.29749,168.82577 215.79941,171.31618 215.79941,171.31618 L 217.16925,170.32077 L 217.16925,172.81117 z M 209.57227,170.6942 C 211.66863,169.90487 219.12049,164.34205 220.15836,163.22174 C 221.19611,162.10018 216.81642,164.00983 215.79941,163.96861 C 214.78226,163.9274 215.42572,162.30751 214.05575,162.97195 C 212.68578,163.63639 208.32682,166.66634 207.57957,167.95401 C 206.83233,169.24042 207.47578,171.48229 209.57227,170.6942 z M 224.01911,163.47028 L 226.01181,164.96527 L 227.5063,164.21715 L 224.01911,163.47028 z M 208.94954,174.05637 C 209.57227,175.84112 203.34514,177.95934 203.46966,178.29031 C 203.59418,178.62253 204.75657,180.07631 204.2169,180.28363 C 203.67723,180.49096 201.06181,179.99263 200.23151,179.53676 C 199.40133,179.07964 199.73343,177.08757 199.23522,177.54344 C 198.73701,178.00055 198.44651,181.4464 197.24252,182.27571 C 196.03866,183.10626 195.20836,181.1554 192.0118,182.5255 C 188.81524,183.89559 181.63328,187.67366 178.06304,190.49629 C 174.49279,193.31904 171.37929,197.71946 170.59057,199.46312 C 169.80174,201.20665 173.16441,200.50087 173.33039,200.95761 C 173.4965,201.41423 172.41716,202.36905 171.58686,202.20306 C 170.75656,202.03695 168.47336,200.83309 168.34871,199.9612 C 168.22419,199.08943 170.50752,197.92703 170.83961,196.97221 C 171.17171,196.01739 171.04719,193.48502 170.34141,194.23227 C 169.63575,194.97952 167.43548,199.04797 166.60518,201.45569 C 165.77488,203.86354 162.32928,206.14687 165.35973,208.67924 C 168.3903,211.21161 181.50876,214.6988 184.78838,216.6499 C 188.06799,218.60101 183.70891,218.60101 185.03742,220.38614 C 186.36592,222.17126 192.71758,225.40941 192.75904,227.36052 C 192.80051,229.31175 186.5735,230.26657 185.28646,232.09316 C 183.99954,233.91975 185.82613,237.19936 185.03742,238.32029 C 184.24871,239.4411 182.54651,236.82568 180.55394,238.81837 C 178.56124,240.81107 173.4965,246.83063 173.08135,250.27636 C 172.6662,253.72196 177.73094,257.79028 178.06304,259.49248 C 178.39513,261.19454 177.28107,261.99225 173.66499,258.02296 C 170.13758,254.15085 164.49683,243.81542 162.00592,236.25978 C 159.51514,228.70426 159.237,219.93839 159.77667,216.03605 C 162.95837,213.71887 164.15586,211.08696 164.36344,209.67552 C 164.57101,208.26409 162.97174,209.4075 161.37445,206.68654 C 162.24622,199.71216 171.42075,183.89559 181.55023,176.79657 C 191.7981,169.61511 195.87255,168.0789 198.23893,167.08224 C 200.60519,166.08558 195.33288,170.23709 195.74803,170.81785 C 196.16318,171.39986 198.94459,171.48229 200.72971,170.56931 C 202.51483,169.65632 206.08508,165.0477 206.45864,165.33871 C 206.83233,165.62971 202.5563,170.86031 202.97145,172.31284 C 203.3866,173.76537 208.32682,172.27162 208.94954,174.05637 z M 248.78327,234.68061 C 248.98885,233.97607 247.22758,236.61798 246.4937,236.97018 C 245.75982,237.32251 244.84983,236.26577 244.3801,236.79408 C 243.91037,237.32251 244.23335,239.08378 243.67557,240.14051 C 243.11779,241.19737 240.76939,242.95864 241.03367,243.13474 C 241.29782,243.31084 243.96908,242.60644 245.26074,241.19737 C 246.5524,239.78831 248.57782,235.38501 248.78327,234.68061 z M 254.94784,251.06057 C 255.27082,250.53214 255.35887,249.41671 255.65237,248.06634 C 255.94587,246.7161 257.09078,243.13474 256.7091,242.95864 C 256.32755,242.78254 253.86175,245.62989 253.36267,247.00961 C 252.86372,248.38932 253.45072,250.56149 253.715,251.23667 C 253.97915,251.91186 254.62498,251.589 254.94784,251.06057 z M 261.99303,245.60054 C 261.20045,244.04473 261.84628,237.05836 262.34524,234.85671 C 262.84432,232.65506 264.13598,232.42026 264.98726,232.39091 C 265.83905,232.36156 266.66086,234.68061 267.45269,234.68061 C 268.24577,234.68061 268.77408,232.15598 269.74326,232.39091 C 270.7112,232.62571 272.09129,235.73734 273.2653,236.08955 C 274.43931,236.44187 276.20033,234.76866 276.78733,234.50438 C 277.37559,234.24023 271.85648,248.94698 270.62377,249.1232 C 269.39106,249.2993 267.71747,250.35604 267.62879,249.47541 C 267.54136,248.59477 268.03969,244.83731 267.10049,244.19148 C 266.16128,243.54577 262.78562,247.15636 261.99303,245.60054 z M 265.51557,226.75478 C 265.33947,227.25373 262.25719,230.04251 261.81693,230.10121 C 261.37655,230.15991 262.25719,227.66476 262.87367,227.10698 C 263.49015,226.5492 265.69167,226.2557 265.51557,226.75478 z M 194.35932,275.19027 C 205.83716,281.64833 228.49909,283.4096 238.39164,278.71293 C 231.72813,278.0671 231.46397,275.86545 229.40908,275.5426 C 227.35431,275.21962 227.11938,276.92218 226.06264,276.77543 C 225.00591,276.62868 224.71228,274.80871 223.06841,274.66196 C 221.42455,274.51509 218.19551,277.33321 215.84712,276.95154 C 213.49872,276.56998 210.62201,272.92992 208.97815,272.37226 C 207.33428,271.81448 206.7765,272.51902 206.33612,272.54837 C 205.89586,272.57772 205.27938,276.24713 204.22265,275.8948 C 203.16591,275.5426 200.46518,272.01994 200.69999,271.66773 C 200.93491,271.3154 202.54943,269.55414 202.10905,269.55414 C 201.6688,269.55414 198.99742,271.96123 197.70588,272.90057 C 196.41422,273.8399 190.80744,273.3116 194.35932,275.19027 z "
         style="fill:url(#radialGradient2772);fill-rule:evenodd;stroke-width:0.3125" />
      <path
         d=""
         id="path2763"
         style="fill:#000000" />
      <path
         id="path2134"
         d="M 227.22276,183.013 C 227.22276,184.02181 226.56401,184.84055 225.75235,184.84055 C 224.94069,184.84055 224.28194,184.02181 224.28194,183.013 C 224.28194,182.00419 224.94069,181.18545 225.75235,181.18545 C 226.56401,181.18545 227.22276,182.00419 227.22276,183.013 z "
         style="fill:url(#radialGradient2774);fill-opacity:1;stroke-width:0.505198;stroke-linecap:round;stroke-linejoin:round" />
    </g>
    <g
       id="g3359"
       transform="translate(109.60155,83.337584)">
      <text
         id="text3355"
         y="146.14232"
         x="70.494019"
         style="font-size:37.2778511px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:0.11397059;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
         xml:space="preserve"><tspan
           y="146.14232"
           x="70.494019"
           id="tspan3357"
           sodipodi:role="line">file</tspan></text>
      <text
         id="text3351"
         y="142.56586"
         x="65.336082"
         style="font-size:37.2778511px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
         xml:space="preserve"><tspan
           y="142.56586"
           x="65.336082"
           id="tspan3353"
           sodipodi:role="line">file</tspan></text>
    </g>
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/repo_http.svg.
















































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="124.22071"
   height="124.23133"
   id="svg3389"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="repo_http.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="1.979899"
     inkscape:cx="74.530527"
     inkscape:cy="103.00949"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1114"
     inkscape:window-height="966"
     inkscape:window-x="518"
     inkscape:window-y="121" />
  <defs
     id="defs3391">
    <radialGradient
       r="3.1789999"
       id="defitem14"
       fx="38.584499"
       fy="48.691898"
       gradientUnits="userSpaceOnUse"
       cy="48.691898"
       cx="38.584499">
      <stop
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0.84516132;"
         id="stop89"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop91"
         stop-opacity="0"
         stop-color="#ffffff" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="defitem12"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       cy="114.505"
       cx="61.052898">
      <stop
         offset="0"
         id="stop73"
         stop-opacity="1"
         stop-color="#3b5bb1" />
      <stop
         offset="0.333333"
         id="stop75"
         stop-opacity="1"
         stop-color="#9cacd8" />
      <stop
         offset="0.5"
         id="stop77"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="0.819444"
         id="stop79"
         stop-opacity="1"
         stop-color="#b1bcd8" />
      <stop
         offset="1"
         id="stop81"
         stop-opacity="1"
         stop-color="#3b5bb1" />
    </radialGradient>
    <linearGradient
       id="defitem11"
       gradientUnits="userSpaceOnUse"
       x1="73.041199"
       x2="32.438499"
       y1="58.562698"
       y2="118.927">
      <stop
         offset="0"
         id="stop68"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop70"
         stop-opacity="0"
         stop-color="#ffffff" />
    </linearGradient>
    <radialGradient
       r="90.017502"
       id="defitem10"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       cy="103.471"
       cx="63.869499">
      <stop
         offset="0"
         id="stop57"
         stop-opacity="1"
         stop-color="#b1c3e9" />
      <stop
         offset="0.375"
         id="stop59"
         stop-opacity="1"
         stop-color="#576eb1" />
      <stop
         offset="0.5"
         id="stop61"
         stop-opacity="1"
         stop-color="#001a7b" />
      <stop
         offset="0.666667"
         id="stop63"
         stop-opacity="1"
         stop-color="#8597cf" />
      <stop
         offset="1"
         id="stop65"
         stop-opacity="1"
         stop-color="#b1c3e9" />
    </radialGradient>
    <radialGradient
       r="56.158001"
       id="defitem9"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       cy="4.9972801"
       cx="59.563">
      <stop
         offset="0"
         id="stop52"
         stop-opacity="1"
         stop-color="#a3cdeb" />
      <stop
         offset="1"
         id="stop54"
         stop-opacity="1"
         stop-color="#002f82" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="radialGradient3633"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="114.505"
       cx="61.052898"
       xlink:href="#defitem12"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <linearGradient
       id="linearGradient3636"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       x1="73.041199"
       x2="32.438499"
       xlink:href="#defitem11"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       y1="58.562698"
       y2="118.927" />
    <radialGradient
       r="90.017502"
       id="radialGradient3642"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="103.471"
       cx="63.869499"
       xlink:href="#defitem10"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="56.158001"
       id="radialGradient3645"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="4.9972801"
       cx="59.563"
       xlink:href="#defitem9"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="3.9704101"
       id="radialGradient4974"
       fx="224.32378"
       fy="181.94157"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="181.94157"
       cx="224.32378"
       xlink:href="#defitem14"
       gradientTransform="matrix(0.3703421,0,0,0.4602932,142.67581,99.266526)" />
  </defs>
  <metadata
     id="metadata3394">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-157.88964,-158.81795)">
    <path
       style="fill:#000000"
       id="path87"
       d="" />
    <path
       style="fill:url(#radialGradient3645)"
       d="M 219.9975,283.04928 C 254.29676,283.04928 282.11035,255.1023 282.11035,220.82502 C 282.11035,186.76318 254.29801,158.81795 219.9975,158.81795 C 185.94665,158.81795 157.88964,186.76318 157.88964,220.82502 C 157.88964,255.1023 185.94665,283.04928 219.9975,283.04928 z "
       id="path67" />
    <path
       style="fill:url(#radialGradient3642)"
       d="M 219.99762,279.39848 C 252.28058,279.39848 278.47092,253.09911 278.47092,220.83164 C 278.47092,188.76899 252.28058,162.45863 219.99762,162.45863 C 187.94909,162.45863 161.53657,188.76899 161.53657,220.83164 C 161.53657,253.09911 187.94909,279.39848 219.99762,279.39848 z "
       id="path74" />
    <path
       style="fill:none"
       d="M 169.08696,199.40791 C 169.08209,199.13015 169.06124,198.85613 169.06124,198.57836 C 169.06124,197.70485 169.11994,196.83733 169.20324,195.98454 C 167.64568,198.12574 166.42096,202.08978 166.57395,203.09918 L 166.97524,205.79691 C 165.77125,206.7611 165.1534,209.28635 166.37325,209.6473 C 168.45687,210.25541 170.50003,210.95395 172.4344,211.66722 C 170.59919,208.23049 169.45765,204.54172 169.15054,200.69745 C 168.70766,200.21299 168.38593,199.83131 168.38593,199.83131 L 169.08696,199.40791 z "
       id="path85" />
    <path
       style="fill:#ffffff;fill-opacity:0.13636397"
       d="M 219.9975,265.87386 C 191.68395,265.87386 168.12965,249.74093 165.97496,224.50517 C 165.86343,225.74587 165.79036,226.9987 165.79036,228.25401 C 165.79036,255.24905 190.28038,277.25228 219.99625,277.25228 C 249.92744,277.25228 274.20576,255.24905 274.20576,228.25401 C 274.20576,226.99745 274.14081,225.74587 274.03215,224.50517 C 271.8902,249.74093 248.52249,265.87386 219.9975,265.87386 z "
       id="path89" />
    <path
       style="opacity:0.7171717;fill:url(#linearGradient3636)"
       d="M 216.58774,162.82832 C 216.19257,162.85205 215.8099,162.9145 215.41673,162.94572 C 212.0056,167.3695 209.16087,175.35653 207.25959,186.05128 C 200.78891,185.07585 195.22372,183.40226 191.02325,181.25032 C 195.49162,173.55804 201.22629,167.72795 207.57183,163.88243 C 205.9171,164.24713 204.3719,164.86411 202.77112,165.36618 C 197.76958,169.13551 193.29384,174.26744 189.65715,180.62584 C 187.20996,179.21203 185.45532,177.57591 184.31015,175.82613 C 185.90756,174.23997 187.60301,172.80742 189.34492,171.41609 C 185.55061,173.78285 181.9625,176.43062 178.80703,179.57298 C 178.702,179.67664 178.63793,179.81902 178.53376,179.92393 C 177.47603,180.99303 176.6195,182.25073 175.64557,183.39726 C 173.54521,186.39724 171.64943,189.5908 170.06439,192.99893 C 169.84633,192.69606 169.71181,192.37084 169.51785,192.06222 C 169.38971,192.28428 169.25295,192.50173 169.12768,192.72566 C 169.31902,193.07787 169.45366,193.43257 169.67397,193.77952 C 166.98124,199.77998 165.23908,206.2629 164.44412,213.13823 C 163.68876,212.38524 163.12723,211.58704 162.5707,210.79646 C 162.50288,211.17888 162.51375,211.58242 162.45355,211.96722 C 163.00845,212.81014 163.54838,213.65917 164.32697,214.46512 C 164.12427,216.58546 163.74146,218.65122 163.74146,220.82701 C 163.74146,224.37753 164.15374,227.81851 164.67817,231.2089 C 163.72048,230.56857 163.15108,229.85717 162.37549,229.17936 C 162.44655,229.66807 162.44843,230.17777 162.53161,230.66249 C 163.32319,231.36565 163.86236,232.1019 164.83429,232.77009 C 165.70968,237.67883 167.18719,242.31643 169.0495,246.74271 C 168.24405,246.14396 167.56849,245.49763 166.86384,244.86928 C 167.35605,245.95012 167.98751,246.94678 168.54217,247.99166 C 169.15591,248.46388 169.70045,248.94398 170.37663,249.39672 C 171.80693,252.40069 173.3811,255.25205 175.21631,257.94428 C 179.08493,262.61198 183.53468,266.75549 188.64251,270.04335 C 186.52791,268.31967 184.51586,266.47847 182.63182,264.46217 C 186.46359,266.32285 190.61922,267.9325 195.1604,269.18482 C 197.44897,271.95437 199.91802,274.37458 202.53707,276.40524 C 204.02094,276.8781 205.45549,277.45649 206.98632,277.81031 C 203.67761,275.72469 200.51889,273.11926 197.6583,269.88723 C 202.03149,270.94746 206.69657,271.62165 211.51376,272.03392 C 212.6267,274.89776 213.89538,277.15699 215.22164,278.90314 C 215.61431,278.93587 215.99786,278.99544 216.39253,279.02029 C 215.11898,277.22955 213.93248,274.96795 212.87986,272.11198 C 215.21003,272.27872 217.5011,272.54125 219.9052,272.54125 C 224.52469,272.54125 228.96932,272.13272 233.29244,271.5266 C 231.9653,274.37545 230.47718,276.62681 228.92111,278.47375 C 229.40658,278.39844 229.92265,278.44403 230.40412,278.35673 C 232.04948,276.50291 233.59231,274.1429 235.00974,271.21436 C 240.00316,270.41591 244.71183,269.24677 249.09938,267.74066 C 246.61048,270.71965 243.82445,273.14811 240.94225,275.31241 C 242.98653,274.52096 244.90953,273.5489 246.83566,272.54125 C 248.70634,270.76312 250.51994,268.87021 252.18279,266.72589 C 255.58817,265.39189 258.60064,263.75114 261.47172,262.04233 C 262.93636,260.56457 264.15097,258.86775 265.45312,257.24162 C 262.25169,259.55492 258.71704,261.67214 254.64159,263.4474 C 256.52576,260.61728 258.22595,257.56672 259.71545,254.27537 C 264.7025,252.29016 268.72911,249.86395 271.93142,247.21106 C 272.37355,246.34267 272.89811,245.52773 273.29777,244.6351 C 270.13543,247.59262 265.75911,250.23002 260.41798,252.40194 C 262.38483,247.71251 263.89581,242.67101 264.9448,237.29753 C 270.68497,235.0162 274.94513,232.29686 277.63037,229.33548 C 277.70531,228.82191 277.72405,228.29198 277.78649,227.77429 C 275.18868,230.66299 270.99221,233.2603 265.33572,235.42411 C 266.14129,230.72219 266.70207,225.87252 266.70207,220.82701 C 266.70207,220.70662 266.66335,220.59608 266.66335,220.47581 C 271.87772,218.00626 275.60583,215.12356 277.59166,212.00631 C 277.53545,211.64686 277.53545,211.27081 277.47426,210.91348 C 275.4597,213.93207 271.73534,216.65902 266.58467,218.95359 C 266.4348,212.05789 265.44813,205.49055 263.8135,199.32161 C 267.03429,197.07338 269.30613,194.56362 270.44892,191.9061 C 270.33152,191.70527 270.25533,191.48171 270.13668,191.28188 C 268.8665,193.70821 266.60715,195.95257 263.54036,197.95564 C 261.59799,191.10702 258.74177,184.93846 255.30516,179.53426 C 256.33567,178.62253 257.09228,177.63711 257.72487,176.64544 C 257.57026,176.51305 257.41264,176.38566 257.25652,176.25452 C 256.58871,177.13378 255.87131,177.99556 254.87577,178.79239 C 252.47717,175.13297 249.69513,172.04182 246.7576,169.26915 C 244.94938,168.32744 243.167,167.367 241.25448,166.61513 C 245.79679,170.05224 249.92993,174.46977 253.39265,179.8465 C 250.08293,182.02966 245.49342,183.78818 240.00554,185.03713 C 237.55622,175.24287 234.09688,167.87407 230.13097,163.49276 C 229.64725,163.40658 229.13556,163.40908 228.64784,163.33664 C 232.57904,167.82786 235.9191,175.37276 238.21005,185.4268 C 233.02216,186.46343 227.23928,187.06667 221.037,187.06667 C 216.72887,187.06667 212.72537,186.67825 208.85975,186.16868 C 210.59129,175.39649 213.26754,167.32703 216.58774,162.82832 z M 183.88077,176.2158 C 184.91327,178.11171 186.71088,179.90395 189.1888,181.48512 C 185.98,187.30148 183.45288,193.93639 181.81226,201.23413 C 177.28482,199.32086 173.75266,197.078 171.35231,194.52103 C 174.49416,187.63619 178.72211,181.43391 183.88077,176.2158 z M 253.861,180.62584 C 257.25777,186.07126 260.01008,192.2618 261.90111,199.08756 C 257.14199,201.78379 250.69591,203.88077 243.32299,205.37127 C 242.69927,198.55438 241.74095,192.11193 240.39571,186.40348 C 245.98388,184.98468 250.594,183.01134 253.861,180.62584 z M 190.47684,182.18703 C 194.68817,184.57752 200.37364,186.45469 207.02541,187.57375 C 206.05111,193.41258 205.33047,199.88176 204.91781,206.81531 C 196.58545,205.8666 189.06253,204.16891 183.06121,201.81951 C 184.71781,194.59309 187.23544,187.9884 190.47684,182.18703 z M 238.56138,186.83187 C 239.7836,192.54706 240.62876,198.99326 241.1763,205.80066 C 234.58522,206.98042 227.34382,207.71305 219.63193,207.71305 C 215.26486,207.71305 211.0795,207.43866 207.02541,207.04961 C 207.38474,200.24009 207.76529,193.51887 208.62569,187.76858 C 212.5394,188.34435 216.66892,188.74401 221.037,188.74401 C 227.37854,188.74401 233.28419,188.01088 238.56138,186.83187 z M 170.88395,195.37968 C 173.22848,198.16346 176.81871,200.69283 181.50002,202.83441 C 180.32451,208.57395 179.50944,214.53256 179.50944,220.82701 C 179.50944,220.98738 179.54779,221.13525 179.54854,221.29537 C 173.89991,219.47615 169.23122,217.29636 166.00531,214.77736 C 166.66613,207.93436 168.24854,201.39849 170.88395,195.37968 z M 262.21335,200.49263 C 263.76754,206.52905 264.7687,212.90968 264.86736,219.61703 C 259.13331,221.94407 252.08013,223.81912 243.9085,225.04222 C 243.94247,223.62454 244.06462,222.26868 244.06462,220.82701 C 244.06462,216.19629 243.86079,211.71193 243.51808,207.36185 C 250.95882,205.70387 257.46147,203.38981 262.21335,200.49263 z M 182.71,203.45888 C 188.74854,206.02784 196.35527,207.89415 204.80066,208.962 C 204.60945,212.80939 204.48842,216.7693 204.48842,220.82701 C 204.48842,222.58878 204.56923,224.25351 204.60558,225.97893 C 195.63525,225.16511 187.54656,223.70247 180.79748,221.64657 C 180.79486,221.36731 180.75839,221.10715 180.75839,220.82701 C 180.75839,214.76187 181.5556,209.01071 182.71,203.45888 z M 241.37151,207.86917 C 241.6584,212.06351 241.83987,216.37339 241.83987,220.82701 C 241.83987,222.37696 241.71909,223.83261 241.68375,225.35445 C 234.97664,226.2462 227.68291,226.75952 220.06132,226.75952 C 215.4196,226.75952 210.97222,226.5502 206.63512,226.21311 C 206.59815,224.34918 206.40094,222.73428 206.40094,220.82701 C 206.40094,216.72771 206.73741,213.11813 206.90839,209.23527 C 210.99407,209.67203 215.22939,209.97677 219.63193,209.97677 C 227.42362,209.97677 234.72286,209.18481 241.37151,207.86917 z M 165.88816,216.0654 C 169.14816,218.74602 173.87381,221.10565 179.66556,223.09073 C 179.79208,228.26201 180.38546,233.22133 181.30493,238.00006 C 175.39053,236.45137 170.39924,234.54709 166.5516,232.34083 C 165.8703,228.6011 165.4198,224.76845 165.4198,220.82701 C 165.4198,219.19701 165.76651,217.6648 165.88816,216.0654 z M 264.90608,221.2564 C 264.87985,226.44116 264.25038,231.3925 263.34515,236.2047 C 257.54415,238.20701 250.64096,239.82852 242.81567,240.88826 C 243.3436,236.50232 243.65859,231.91181 243.83032,227.14982 C 252.04665,225.80982 259.14443,223.73994 264.90608,221.2564 z M 180.9536,223.48103 C 187.69268,225.66532 195.75889,227.31418 204.68363,228.20356 C 204.82701,232.93907 205.06157,237.51322 205.46423,241.86406 C 197.07816,241.23634 189.43122,240.0316 182.74897,238.39036 C 181.75368,233.61288 181.11135,228.65955 180.9536,223.48103 z M 241.64466,227.46206 C 241.48379,232.18621 241.15082,236.7345 240.66898,241.08347 C 234.00334,241.89266 226.86872,242.41035 219.35879,242.41035 C 215.239,242.41035 211.23237,242.26897 207.33765,242.02018 C 206.98183,237.74803 206.88341,233.0877 206.75227,228.43786 C 211.05715,228.80443 215.45919,229.02324 220.06132,229.02324 C 227.68041,229.02324 234.93518,228.43998 241.64466,227.46206 z M 166.94202,234.13606 C 170.82513,236.39092 175.82829,238.32704 181.6951,239.95155 C 182.84114,245.24572 184.30965,250.29209 186.30073,254.86087 C 180.88079,253.26934 176.10368,251.30312 172.21096,249.00643 C 169.90877,244.32799 168.06033,239.40588 166.94202,234.13606 z M 262.91588,238.15618 C 261.77422,243.48819 260.22365,248.54606 258.15426,253.18254 C 252.74744,255.16961 246.56477,256.75703 239.73227,257.78816 C 240.91215,253.2606 241.90082,248.34811 242.62046,242.99586 C 250.27315,241.87043 257.17384,240.21632 262.91588,238.15618 z M 183.17836,240.38081 C 189.81477,242.10373 197.38628,243.37654 205.65944,244.04972 C 206.21547,249.41708 207.00768,254.25726 207.92303,258.76384 C 200.75169,258.15123 194.10504,256.98084 188.13506,255.3682 C 186.00335,250.7918 184.42481,245.70545 183.17836,240.38081 z M 240.4348,243.23004 C 239.76898,248.5934 238.88685,253.49702 237.78078,258.02221 C 232.10394,258.7852 226.16993,259.31026 219.9052,259.31026 C 216.34357,259.31026 212.87399,259.09244 209.48422,258.8419 C 208.65055,254.36404 207.95126,249.54135 207.45468,244.20584 C 211.31118,244.47561 215.28384,244.6742 219.35879,244.6742 C 226.78878,244.6742 233.82474,244.10105 240.4348,243.23004 z M 173.30379,251.11403 C 177.26758,253.33254 181.87345,255.28115 187.27641,256.81236 C 188.90341,260.24684 190.73762,263.3902 192.77953,266.25753 C 188.09647,264.81837 183.70491,263.08221 179.86077,260.98847 C 177.38286,257.93092 175.20419,254.63969 173.30379,251.11403 z M 257.41264,255.09505 C 255.71607,258.61934 253.71275,261.84125 251.55831,264.8135 C 246.80419,266.61498 241.52925,267.89353 235.98542,268.83349 C 237.17792,266.04734 238.26025,262.9447 239.22494,259.50547 C 245.94241,258.50568 252.04053,257.02256 257.41264,255.09505 z M 189.1888,257.28071 C 195.00903,258.79956 201.40464,259.94047 208.31346,260.52011 C 209.06632,263.95098 209.86752,267.06436 210.81135,269.8093 C 205.36094,269.30922 200.2089,268.3539 195.35561,267.03813 C 193.08714,264.09111 191.00115,260.8647 189.1888,257.28071 z M 237.31243,259.77861 C 236.40294,263.22521 235.36969,266.36644 234.22915,269.14573 C 229.61453,269.83552 224.8694,270.31662 219.9052,270.31662 C 217.2643,270.31662 214.72743,270.08581 212.17733,269.88723 C 211.29395,267.15141 210.48663,264.02079 209.79646,260.5983 C 213.09543,260.83884 216.44586,261.02756 219.9052,261.02756 C 225.99857,261.02756 231.76834,260.51337 237.31243,259.77861 z "
       id="path1388" />
    <path
       style="fill:url(#radialGradient3633);fill-rule:evenodd;stroke-width:0.3125"
       d="M 213.93123,194.48143 C 211.68949,195.97593 201.97516,200.99907 201.97516,205.19205 C 201.97516,209.51129 206.37571,212.53999 209.44775,214.40817 C 212.51979,216.27622 219.70162,211.95885 222.4001,215.65362 C 225.09846,219.34826 224.30974,231.5119 225.63813,236.57664 C 226.96663,241.64137 228.1705,244.79647 230.37077,246.04192 C 232.57104,247.28725 236.5979,245.91728 238.83964,244.04922 C 241.08138,242.18104 241.82863,236.90873 243.82132,234.8331 C 245.81402,232.75735 249.50879,233.08945 250.79571,231.59495 C 252.08262,230.10046 249.84088,228.39839 251.54295,225.86602 C 253.24502,223.33365 259.63814,218.31051 261.00811,216.40086 C 262.37808,214.49122 260.88359,214.61574 259.76279,214.40817 C 258.64185,214.20059 256.89832,217.77084 254.2829,215.15541 C 251.66747,212.53999 245.48193,201.28971 244.07037,198.71587 C 242.65893,196.14191 245.56498,199.83668 245.81402,199.71216 C 246.06306,199.58764 243.73827,195.60224 245.56498,197.96862 C 247.39157,200.33488 253.99227,211.66822 256.77368,213.90996 C 259.55521,216.1517 261.79695,212.41547 262.25356,211.41918 C 262.71018,210.42277 260.38551,208.67924 259.51362,207.93199 C 258.64185,207.18474 257.56251,207.97346 257.02284,206.93558 C 256.48317,205.8977 255.23772,200.83309 256.27559,201.70486 C 257.31347,202.57662 261.88,210.3813 263.24998,212.16643 C 264.62007,213.95155 264.32907,212.78915 264.49518,212.41547 C 264.66129,212.04178 263.95563,210.25678 264.24664,209.92456 C 264.53639,209.59247 266.11382,209.17732 266.23871,210.42277 C 266.36361,211.66822 264.8274,216.02718 264.99351,217.39715 C 265.15962,218.76712 265.86527,219.26533 267.23537,218.6426 C 268.60547,218.01988 272.09253,213.61933 273.21284,213.66092 C 274.3344,213.70238 274.25072,217.64619 273.96096,218.89164 C 273.66996,220.13709 271.92642,220.05404 271.46931,221.13338 C 271.01344,222.21285 271.55299,224.86974 271.22077,225.36782 C 270.88855,225.86602 269.85067,224.86974 269.47724,224.12249 C 269.1038,223.37512 269.43602,221.34096 268.9789,220.88434 C 268.52179,220.42773 267.06926,220.55225 266.73704,221.38255 C 266.40482,222.21285 265.99017,225.07731 266.98558,225.86602 C 267.98224,226.65474 271.42809,226.48875 272.71451,226.11506 C 274.00218,225.7415 274.12707,225.20183 274.70783,223.62429 C 275.28859,222.04674 275.56586,217.03558 276.20283,216.6499 C 276.88725,216.23475 278.01755,219.04926 278.88057,224.18469 C 279.17033,201.01981 270.058,185.99133 261.13276,178.29031 C 252.21601,170.59803 240.62476,166.36035 236.0997,164.46694 C 231.57463,162.57229 235.60162,166.83245 233.60892,167.17591 C 233.11071,167.26084 232.01838,165.12014 231.19008,165.04396 C 230.36165,164.96652 232.28816,167.95026 231.35157,167.82162 C 229.47827,167.56434 225.11931,166.31913 224.14363,166.52146 C 222.19253,166.92612 221.71505,168.47232 221.9019,169.60387 C 221.99532,170.16964 225.90802,167.77666 226.82912,168.45733 C 227.75022,169.13926 225.67972,172.8961 225.26457,173.3095 C 224.43426,174.13381 218.14493,173.68294 216.92021,174.5547 C 215.69562,175.42647 218.04114,177.66833 217.91662,178.5401 C 217.79198,179.41187 215.88234,178.70621 216.17297,179.7853 C 216.4636,180.86439 219.66016,183.7707 219.66016,185.0159 C 219.66016,186.2611 217.08632,186.46968 216.17297,187.25776 C 215.25961,188.0471 213.76512,188.75275 214.18027,189.74817 C 214.59542,190.74483 217.2939,193.27745 218.66387,193.23598 C 220.03372,193.19439 221.11318,190.12285 222.4001,189.49963 C 223.68702,188.8764 225.18151,189.08498 226.38537,189.49963 C 227.58936,189.91428 229.0008,191.28437 229.62352,191.99053 C 230.24625,192.69631 229.70658,193.60954 230.12173,193.73419 C 230.53688,193.85871 232.52945,193.6926 232.11443,192.73778 C 231.69928,191.78271 227.42325,188.21321 227.63082,188.00463 C 227.8384,187.79731 231.8238,190.6624 233.35975,191.49295 C 234.89584,192.32263 235.85066,192.98694 236.84694,192.98694 C 237.84336,192.98694 238.67353,191.78271 239.33785,191.49295 C 240.00204,191.20194 240.62476,191.65781 240.83234,191.24316 C 241.03992,190.82851 240.25108,189.45841 240.5833,189.0013 C 240.9154,188.54543 242.24378,188.75275 242.82504,188.50297 C 243.40617,188.25442 243.57228,187.29898 244.07037,187.50755 C 244.56857,187.71488 246.27064,189.04251 245.81402,189.74817 C 245.35741,190.45507 241.53812,191.28437 241.33055,191.74149 C 241.12297,192.19811 244.31953,191.99053 244.56857,192.48874 C 244.81774,192.98694 243.86291,194.39838 242.82504,194.73047 C 241.78716,195.06257 239.00575,194.31532 238.34144,194.48143 C 237.67725,194.64742 239.50383,195.3532 238.83964,195.72676 C 238.17545,196.10045 235.68455,196.68158 234.35616,196.72317 C 233.02766,196.76464 231.69928,196.39108 230.86897,195.97593 C 230.03867,195.56078 231.61622,194.31532 229.37448,194.23227 C 227.13274,194.14934 219.99225,195.43626 217.41842,195.47772 C 214.84446,195.51919 216.17297,192.98694 213.93123,194.48143 z M 217.16925,172.81117 L 220.4074,172.56138 L 219.28647,170.94274 L 219.9092,166.08558 L 217.79198,169.07431 C 217.79198,169.07431 216.54665,167.82911 216.42201,168.32744 C 216.29749,168.82577 215.79941,171.31618 215.79941,171.31618 L 217.16925,170.32077 L 217.16925,172.81117 z M 209.57227,170.6942 C 211.66863,169.90487 219.12049,164.34205 220.15836,163.22174 C 221.19611,162.10018 216.81642,164.00983 215.79941,163.96861 C 214.78226,163.9274 215.42572,162.30751 214.05575,162.97195 C 212.68578,163.63639 208.32682,166.66634 207.57957,167.95401 C 206.83233,169.24042 207.47578,171.48229 209.57227,170.6942 z M 224.01911,163.47028 L 226.01181,164.96527 L 227.5063,164.21715 L 224.01911,163.47028 z M 208.94954,174.05637 C 209.57227,175.84112 203.34514,177.95934 203.46966,178.29031 C 203.59418,178.62253 204.75657,180.07631 204.2169,180.28363 C 203.67723,180.49096 201.06181,179.99263 200.23151,179.53676 C 199.40133,179.07964 199.73343,177.08757 199.23522,177.54344 C 198.73701,178.00055 198.44651,181.4464 197.24252,182.27571 C 196.03866,183.10626 195.20836,181.1554 192.0118,182.5255 C 188.81524,183.89559 181.63328,187.67366 178.06304,190.49629 C 174.49279,193.31904 171.37929,197.71946 170.59057,199.46312 C 169.80174,201.20665 173.16441,200.50087 173.33039,200.95761 C 173.4965,201.41423 172.41716,202.36905 171.58686,202.20306 C 170.75656,202.03695 168.47336,200.83309 168.34871,199.9612 C 168.22419,199.08943 170.50752,197.92703 170.83961,196.97221 C 171.17171,196.01739 171.04719,193.48502 170.34141,194.23227 C 169.63575,194.97952 167.43548,199.04797 166.60518,201.45569 C 165.77488,203.86354 162.32928,206.14687 165.35973,208.67924 C 168.3903,211.21161 181.50876,214.6988 184.78838,216.6499 C 188.06799,218.60101 183.70891,218.60101 185.03742,220.38614 C 186.36592,222.17126 192.71758,225.40941 192.75904,227.36052 C 192.80051,229.31175 186.5735,230.26657 185.28646,232.09316 C 183.99954,233.91975 185.82613,237.19936 185.03742,238.32029 C 184.24871,239.4411 182.54651,236.82568 180.55394,238.81837 C 178.56124,240.81107 173.4965,246.83063 173.08135,250.27636 C 172.6662,253.72196 177.73094,257.79028 178.06304,259.49248 C 178.39513,261.19454 177.28107,261.99225 173.66499,258.02296 C 170.13758,254.15085 164.49683,243.81542 162.00592,236.25978 C 159.51514,228.70426 159.237,219.93839 159.77667,216.03605 C 162.95837,213.71887 164.15586,211.08696 164.36344,209.67552 C 164.57101,208.26409 162.97174,209.4075 161.37445,206.68654 C 162.24622,199.71216 171.42075,183.89559 181.55023,176.79657 C 191.7981,169.61511 195.87255,168.0789 198.23893,167.08224 C 200.60519,166.08558 195.33288,170.23709 195.74803,170.81785 C 196.16318,171.39986 198.94459,171.48229 200.72971,170.56931 C 202.51483,169.65632 206.08508,165.0477 206.45864,165.33871 C 206.83233,165.62971 202.5563,170.86031 202.97145,172.31284 C 203.3866,173.76537 208.32682,172.27162 208.94954,174.05637 z M 248.78327,234.68061 C 248.98885,233.97607 247.22758,236.61798 246.4937,236.97018 C 245.75982,237.32251 244.84983,236.26577 244.3801,236.79408 C 243.91037,237.32251 244.23335,239.08378 243.67557,240.14051 C 243.11779,241.19737 240.76939,242.95864 241.03367,243.13474 C 241.29782,243.31084 243.96908,242.60644 245.26074,241.19737 C 246.5524,239.78831 248.57782,235.38501 248.78327,234.68061 z M 254.94784,251.06057 C 255.27082,250.53214 255.35887,249.41671 255.65237,248.06634 C 255.94587,246.7161 257.09078,243.13474 256.7091,242.95864 C 256.32755,242.78254 253.86175,245.62989 253.36267,247.00961 C 252.86372,248.38932 253.45072,250.56149 253.715,251.23667 C 253.97915,251.91186 254.62498,251.589 254.94784,251.06057 z M 261.99303,245.60054 C 261.20045,244.04473 261.84628,237.05836 262.34524,234.85671 C 262.84432,232.65506 264.13598,232.42026 264.98726,232.39091 C 265.83905,232.36156 266.66086,234.68061 267.45269,234.68061 C 268.24577,234.68061 268.77408,232.15598 269.74326,232.39091 C 270.7112,232.62571 272.09129,235.73734 273.2653,236.08955 C 274.43931,236.44187 276.20033,234.76866 276.78733,234.50438 C 277.37559,234.24023 271.85648,248.94698 270.62377,249.1232 C 269.39106,249.2993 267.71747,250.35604 267.62879,249.47541 C 267.54136,248.59477 268.03969,244.83731 267.10049,244.19148 C 266.16128,243.54577 262.78562,247.15636 261.99303,245.60054 z M 265.51557,226.75478 C 265.33947,227.25373 262.25719,230.04251 261.81693,230.10121 C 261.37655,230.15991 262.25719,227.66476 262.87367,227.10698 C 263.49015,226.5492 265.69167,226.2557 265.51557,226.75478 z M 194.35932,275.19027 C 205.83716,281.64833 228.49909,283.4096 238.39164,278.71293 C 231.72813,278.0671 231.46397,275.86545 229.40908,275.5426 C 227.35431,275.21962 227.11938,276.92218 226.06264,276.77543 C 225.00591,276.62868 224.71228,274.80871 223.06841,274.66196 C 221.42455,274.51509 218.19551,277.33321 215.84712,276.95154 C 213.49872,276.56998 210.62201,272.92992 208.97815,272.37226 C 207.33428,271.81448 206.7765,272.51902 206.33612,272.54837 C 205.89586,272.57772 205.27938,276.24713 204.22265,275.8948 C 203.16591,275.5426 200.46518,272.01994 200.69999,271.66773 C 200.93491,271.3154 202.54943,269.55414 202.10905,269.55414 C 201.6688,269.55414 198.99742,271.96123 197.70588,272.90057 C 196.41422,273.8399 190.80744,273.3116 194.35932,275.19027 z "
       id="path2168" />
    <path
       style="fill:#000000"
       id="path3892"
       d="" />
    <path
       style="fill:url(#radialGradient4974);fill-opacity:1;stroke-width:0.505198;stroke-linecap:round;stroke-linejoin:round"
       d="M 227.22276,183.013 C 227.22276,184.02181 226.56401,184.84055 225.75235,184.84055 C 224.94069,184.84055 224.28194,184.02181 224.28194,183.013 C 224.28194,182.00419 224.94069,181.18545 225.75235,181.18545 C 226.56401,181.18545 227.22276,182.00419 227.22276,183.013 z "
       id="path2134" />
    <g
       id="g3291"
       transform="translate(126.77414,110.10663)">
      <text
         id="text2318"
         y="114.62397"
         x="51.516819"
         style="font-size:38.9786644px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:0.29411765;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
         xml:space="preserve"><tspan
           y="114.62397"
           x="51.516819"
           id="tspan2320"
           sodipodi:role="line">http</tspan></text>
      <text
         id="text2314"
         y="110.30797"
         x="47.13467"
         style="font-size:38.9786644px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
         xml:space="preserve"><tspan
           y="110.30797"
           x="47.13467"
           id="tspan2316"
           sodipodi:role="line">http</tspan></text>
    </g>
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/repo_https.svg.
























































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="124.22071"
   height="124.23133"
   id="svg3389"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="repo_https.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.8"
     inkscape:cx="88.385734"
     inkscape:cy="92.554551"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1114"
     inkscape:window-height="966"
     inkscape:window-x="518"
     inkscape:window-y="121" />
  <defs
     id="defs3391">
    <radialGradient
       r="3.1789999"
       id="defitem14"
       fx="38.584499"
       fy="48.691898"
       gradientUnits="userSpaceOnUse"
       cy="48.691898"
       cx="38.584499">
      <stop
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0.84516132;"
         id="stop89"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop91"
         stop-opacity="0"
         stop-color="#ffffff" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="defitem12"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       cy="114.505"
       cx="61.052898">
      <stop
         offset="0"
         id="stop73"
         stop-opacity="1"
         stop-color="#3b5bb1" />
      <stop
         offset="0.333333"
         id="stop75"
         stop-opacity="1"
         stop-color="#9cacd8" />
      <stop
         offset="0.5"
         id="stop77"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="0.819444"
         id="stop79"
         stop-opacity="1"
         stop-color="#b1bcd8" />
      <stop
         offset="1"
         id="stop81"
         stop-opacity="1"
         stop-color="#3b5bb1" />
    </radialGradient>
    <linearGradient
       id="defitem11"
       gradientUnits="userSpaceOnUse"
       x1="73.041199"
       x2="32.438499"
       y1="58.562698"
       y2="118.927">
      <stop
         offset="0"
         id="stop68"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop70"
         stop-opacity="0"
         stop-color="#ffffff" />
    </linearGradient>
    <radialGradient
       r="90.017502"
       id="defitem10"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       cy="103.471"
       cx="63.869499">
      <stop
         offset="0"
         id="stop57"
         stop-opacity="1"
         stop-color="#b1c3e9" />
      <stop
         offset="0.375"
         id="stop59"
         stop-opacity="1"
         stop-color="#576eb1" />
      <stop
         offset="0.5"
         id="stop61"
         stop-opacity="1"
         stop-color="#001a7b" />
      <stop
         offset="0.666667"
         id="stop63"
         stop-opacity="1"
         stop-color="#8597cf" />
      <stop
         offset="1"
         id="stop65"
         stop-opacity="1"
         stop-color="#b1c3e9" />
    </radialGradient>
    <radialGradient
       r="56.158001"
       id="defitem9"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       cy="4.9972801"
       cx="59.563">
      <stop
         offset="0"
         id="stop52"
         stop-opacity="1"
         stop-color="#a3cdeb" />
      <stop
         offset="1"
         id="stop54"
         stop-opacity="1"
         stop-color="#002f82" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="radialGradient3633"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="114.505"
       cx="61.052898"
       xlink:href="#defitem12"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <linearGradient
       id="linearGradient3636"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       x1="73.041199"
       x2="32.438499"
       xlink:href="#defitem11"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       y1="58.562698"
       y2="118.927" />
    <radialGradient
       r="90.017502"
       id="radialGradient3642"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="103.471"
       cx="63.869499"
       xlink:href="#defitem10"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="56.158001"
       id="radialGradient3645"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="4.9972801"
       cx="59.563"
       xlink:href="#defitem9"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="3.9704101"
       id="radialGradient4974"
       fx="224.32378"
       fy="181.94157"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="181.94157"
       cx="224.32378"
       xlink:href="#defitem14"
       gradientTransform="matrix(0.3703421,0,0,0.4602932,142.67581,99.266526)" />
  </defs>
  <metadata
     id="metadata3394">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-157.88964,-158.81795)">
    <path
       style="fill:#000000"
       id="path87"
       d="" />
    <path
       style="fill:url(#radialGradient3645)"
       d="M 219.9975,283.04928 C 254.29676,283.04928 282.11035,255.1023 282.11035,220.82502 C 282.11035,186.76318 254.29801,158.81795 219.9975,158.81795 C 185.94665,158.81795 157.88964,186.76318 157.88964,220.82502 C 157.88964,255.1023 185.94665,283.04928 219.9975,283.04928 z "
       id="path67" />
    <path
       style="fill:url(#radialGradient3642)"
       d="M 219.99762,279.39848 C 252.28058,279.39848 278.47092,253.09911 278.47092,220.83164 C 278.47092,188.76899 252.28058,162.45863 219.99762,162.45863 C 187.94909,162.45863 161.53657,188.76899 161.53657,220.83164 C 161.53657,253.09911 187.94909,279.39848 219.99762,279.39848 z "
       id="path74" />
    <path
       style="fill:none"
       d="M 169.08696,199.40791 C 169.08209,199.13015 169.06124,198.85613 169.06124,198.57836 C 169.06124,197.70485 169.11994,196.83733 169.20324,195.98454 C 167.64568,198.12574 166.42096,202.08978 166.57395,203.09918 L 166.97524,205.79691 C 165.77125,206.7611 165.1534,209.28635 166.37325,209.6473 C 168.45687,210.25541 170.50003,210.95395 172.4344,211.66722 C 170.59919,208.23049 169.45765,204.54172 169.15054,200.69745 C 168.70766,200.21299 168.38593,199.83131 168.38593,199.83131 L 169.08696,199.40791 z "
       id="path85" />
    <path
       style="fill:#ffffff;fill-opacity:0.13636397"
       d="M 219.9975,265.87386 C 191.68395,265.87386 168.12965,249.74093 165.97496,224.50517 C 165.86343,225.74587 165.79036,226.9987 165.79036,228.25401 C 165.79036,255.24905 190.28038,277.25228 219.99625,277.25228 C 249.92744,277.25228 274.20576,255.24905 274.20576,228.25401 C 274.20576,226.99745 274.14081,225.74587 274.03215,224.50517 C 271.8902,249.74093 248.52249,265.87386 219.9975,265.87386 z "
       id="path89" />
    <path
       style="opacity:0.7171717;fill:url(#linearGradient3636)"
       d="M 216.58774,162.82832 C 216.19257,162.85205 215.8099,162.9145 215.41673,162.94572 C 212.0056,167.3695 209.16087,175.35653 207.25959,186.05128 C 200.78891,185.07585 195.22372,183.40226 191.02325,181.25032 C 195.49162,173.55804 201.22629,167.72795 207.57183,163.88243 C 205.9171,164.24713 204.3719,164.86411 202.77112,165.36618 C 197.76958,169.13551 193.29384,174.26744 189.65715,180.62584 C 187.20996,179.21203 185.45532,177.57591 184.31015,175.82613 C 185.90756,174.23997 187.60301,172.80742 189.34492,171.41609 C 185.55061,173.78285 181.9625,176.43062 178.80703,179.57298 C 178.702,179.67664 178.63793,179.81902 178.53376,179.92393 C 177.47603,180.99303 176.6195,182.25073 175.64557,183.39726 C 173.54521,186.39724 171.64943,189.5908 170.06439,192.99893 C 169.84633,192.69606 169.71181,192.37084 169.51785,192.06222 C 169.38971,192.28428 169.25295,192.50173 169.12768,192.72566 C 169.31902,193.07787 169.45366,193.43257 169.67397,193.77952 C 166.98124,199.77998 165.23908,206.2629 164.44412,213.13823 C 163.68876,212.38524 163.12723,211.58704 162.5707,210.79646 C 162.50288,211.17888 162.51375,211.58242 162.45355,211.96722 C 163.00845,212.81014 163.54838,213.65917 164.32697,214.46512 C 164.12427,216.58546 163.74146,218.65122 163.74146,220.82701 C 163.74146,224.37753 164.15374,227.81851 164.67817,231.2089 C 163.72048,230.56857 163.15108,229.85717 162.37549,229.17936 C 162.44655,229.66807 162.44843,230.17777 162.53161,230.66249 C 163.32319,231.36565 163.86236,232.1019 164.83429,232.77009 C 165.70968,237.67883 167.18719,242.31643 169.0495,246.74271 C 168.24405,246.14396 167.56849,245.49763 166.86384,244.86928 C 167.35605,245.95012 167.98751,246.94678 168.54217,247.99166 C 169.15591,248.46388 169.70045,248.94398 170.37663,249.39672 C 171.80693,252.40069 173.3811,255.25205 175.21631,257.94428 C 179.08493,262.61198 183.53468,266.75549 188.64251,270.04335 C 186.52791,268.31967 184.51586,266.47847 182.63182,264.46217 C 186.46359,266.32285 190.61922,267.9325 195.1604,269.18482 C 197.44897,271.95437 199.91802,274.37458 202.53707,276.40524 C 204.02094,276.8781 205.45549,277.45649 206.98632,277.81031 C 203.67761,275.72469 200.51889,273.11926 197.6583,269.88723 C 202.03149,270.94746 206.69657,271.62165 211.51376,272.03392 C 212.6267,274.89776 213.89538,277.15699 215.22164,278.90314 C 215.61431,278.93587 215.99786,278.99544 216.39253,279.02029 C 215.11898,277.22955 213.93248,274.96795 212.87986,272.11198 C 215.21003,272.27872 217.5011,272.54125 219.9052,272.54125 C 224.52469,272.54125 228.96932,272.13272 233.29244,271.5266 C 231.9653,274.37545 230.47718,276.62681 228.92111,278.47375 C 229.40658,278.39844 229.92265,278.44403 230.40412,278.35673 C 232.04948,276.50291 233.59231,274.1429 235.00974,271.21436 C 240.00316,270.41591 244.71183,269.24677 249.09938,267.74066 C 246.61048,270.71965 243.82445,273.14811 240.94225,275.31241 C 242.98653,274.52096 244.90953,273.5489 246.83566,272.54125 C 248.70634,270.76312 250.51994,268.87021 252.18279,266.72589 C 255.58817,265.39189 258.60064,263.75114 261.47172,262.04233 C 262.93636,260.56457 264.15097,258.86775 265.45312,257.24162 C 262.25169,259.55492 258.71704,261.67214 254.64159,263.4474 C 256.52576,260.61728 258.22595,257.56672 259.71545,254.27537 C 264.7025,252.29016 268.72911,249.86395 271.93142,247.21106 C 272.37355,246.34267 272.89811,245.52773 273.29777,244.6351 C 270.13543,247.59262 265.75911,250.23002 260.41798,252.40194 C 262.38483,247.71251 263.89581,242.67101 264.9448,237.29753 C 270.68497,235.0162 274.94513,232.29686 277.63037,229.33548 C 277.70531,228.82191 277.72405,228.29198 277.78649,227.77429 C 275.18868,230.66299 270.99221,233.2603 265.33572,235.42411 C 266.14129,230.72219 266.70207,225.87252 266.70207,220.82701 C 266.70207,220.70662 266.66335,220.59608 266.66335,220.47581 C 271.87772,218.00626 275.60583,215.12356 277.59166,212.00631 C 277.53545,211.64686 277.53545,211.27081 277.47426,210.91348 C 275.4597,213.93207 271.73534,216.65902 266.58467,218.95359 C 266.4348,212.05789 265.44813,205.49055 263.8135,199.32161 C 267.03429,197.07338 269.30613,194.56362 270.44892,191.9061 C 270.33152,191.70527 270.25533,191.48171 270.13668,191.28188 C 268.8665,193.70821 266.60715,195.95257 263.54036,197.95564 C 261.59799,191.10702 258.74177,184.93846 255.30516,179.53426 C 256.33567,178.62253 257.09228,177.63711 257.72487,176.64544 C 257.57026,176.51305 257.41264,176.38566 257.25652,176.25452 C 256.58871,177.13378 255.87131,177.99556 254.87577,178.79239 C 252.47717,175.13297 249.69513,172.04182 246.7576,169.26915 C 244.94938,168.32744 243.167,167.367 241.25448,166.61513 C 245.79679,170.05224 249.92993,174.46977 253.39265,179.8465 C 250.08293,182.02966 245.49342,183.78818 240.00554,185.03713 C 237.55622,175.24287 234.09688,167.87407 230.13097,163.49276 C 229.64725,163.40658 229.13556,163.40908 228.64784,163.33664 C 232.57904,167.82786 235.9191,175.37276 238.21005,185.4268 C 233.02216,186.46343 227.23928,187.06667 221.037,187.06667 C 216.72887,187.06667 212.72537,186.67825 208.85975,186.16868 C 210.59129,175.39649 213.26754,167.32703 216.58774,162.82832 z M 183.88077,176.2158 C 184.91327,178.11171 186.71088,179.90395 189.1888,181.48512 C 185.98,187.30148 183.45288,193.93639 181.81226,201.23413 C 177.28482,199.32086 173.75266,197.078 171.35231,194.52103 C 174.49416,187.63619 178.72211,181.43391 183.88077,176.2158 z M 253.861,180.62584 C 257.25777,186.07126 260.01008,192.2618 261.90111,199.08756 C 257.14199,201.78379 250.69591,203.88077 243.32299,205.37127 C 242.69927,198.55438 241.74095,192.11193 240.39571,186.40348 C 245.98388,184.98468 250.594,183.01134 253.861,180.62584 z M 190.47684,182.18703 C 194.68817,184.57752 200.37364,186.45469 207.02541,187.57375 C 206.05111,193.41258 205.33047,199.88176 204.91781,206.81531 C 196.58545,205.8666 189.06253,204.16891 183.06121,201.81951 C 184.71781,194.59309 187.23544,187.9884 190.47684,182.18703 z M 238.56138,186.83187 C 239.7836,192.54706 240.62876,198.99326 241.1763,205.80066 C 234.58522,206.98042 227.34382,207.71305 219.63193,207.71305 C 215.26486,207.71305 211.0795,207.43866 207.02541,207.04961 C 207.38474,200.24009 207.76529,193.51887 208.62569,187.76858 C 212.5394,188.34435 216.66892,188.74401 221.037,188.74401 C 227.37854,188.74401 233.28419,188.01088 238.56138,186.83187 z M 170.88395,195.37968 C 173.22848,198.16346 176.81871,200.69283 181.50002,202.83441 C 180.32451,208.57395 179.50944,214.53256 179.50944,220.82701 C 179.50944,220.98738 179.54779,221.13525 179.54854,221.29537 C 173.89991,219.47615 169.23122,217.29636 166.00531,214.77736 C 166.66613,207.93436 168.24854,201.39849 170.88395,195.37968 z M 262.21335,200.49263 C 263.76754,206.52905 264.7687,212.90968 264.86736,219.61703 C 259.13331,221.94407 252.08013,223.81912 243.9085,225.04222 C 243.94247,223.62454 244.06462,222.26868 244.06462,220.82701 C 244.06462,216.19629 243.86079,211.71193 243.51808,207.36185 C 250.95882,205.70387 257.46147,203.38981 262.21335,200.49263 z M 182.71,203.45888 C 188.74854,206.02784 196.35527,207.89415 204.80066,208.962 C 204.60945,212.80939 204.48842,216.7693 204.48842,220.82701 C 204.48842,222.58878 204.56923,224.25351 204.60558,225.97893 C 195.63525,225.16511 187.54656,223.70247 180.79748,221.64657 C 180.79486,221.36731 180.75839,221.10715 180.75839,220.82701 C 180.75839,214.76187 181.5556,209.01071 182.71,203.45888 z M 241.37151,207.86917 C 241.6584,212.06351 241.83987,216.37339 241.83987,220.82701 C 241.83987,222.37696 241.71909,223.83261 241.68375,225.35445 C 234.97664,226.2462 227.68291,226.75952 220.06132,226.75952 C 215.4196,226.75952 210.97222,226.5502 206.63512,226.21311 C 206.59815,224.34918 206.40094,222.73428 206.40094,220.82701 C 206.40094,216.72771 206.73741,213.11813 206.90839,209.23527 C 210.99407,209.67203 215.22939,209.97677 219.63193,209.97677 C 227.42362,209.97677 234.72286,209.18481 241.37151,207.86917 z M 165.88816,216.0654 C 169.14816,218.74602 173.87381,221.10565 179.66556,223.09073 C 179.79208,228.26201 180.38546,233.22133 181.30493,238.00006 C 175.39053,236.45137 170.39924,234.54709 166.5516,232.34083 C 165.8703,228.6011 165.4198,224.76845 165.4198,220.82701 C 165.4198,219.19701 165.76651,217.6648 165.88816,216.0654 z M 264.90608,221.2564 C 264.87985,226.44116 264.25038,231.3925 263.34515,236.2047 C 257.54415,238.20701 250.64096,239.82852 242.81567,240.88826 C 243.3436,236.50232 243.65859,231.91181 243.83032,227.14982 C 252.04665,225.80982 259.14443,223.73994 264.90608,221.2564 z M 180.9536,223.48103 C 187.69268,225.66532 195.75889,227.31418 204.68363,228.20356 C 204.82701,232.93907 205.06157,237.51322 205.46423,241.86406 C 197.07816,241.23634 189.43122,240.0316 182.74897,238.39036 C 181.75368,233.61288 181.11135,228.65955 180.9536,223.48103 z M 241.64466,227.46206 C 241.48379,232.18621 241.15082,236.7345 240.66898,241.08347 C 234.00334,241.89266 226.86872,242.41035 219.35879,242.41035 C 215.239,242.41035 211.23237,242.26897 207.33765,242.02018 C 206.98183,237.74803 206.88341,233.0877 206.75227,228.43786 C 211.05715,228.80443 215.45919,229.02324 220.06132,229.02324 C 227.68041,229.02324 234.93518,228.43998 241.64466,227.46206 z M 166.94202,234.13606 C 170.82513,236.39092 175.82829,238.32704 181.6951,239.95155 C 182.84114,245.24572 184.30965,250.29209 186.30073,254.86087 C 180.88079,253.26934 176.10368,251.30312 172.21096,249.00643 C 169.90877,244.32799 168.06033,239.40588 166.94202,234.13606 z M 262.91588,238.15618 C 261.77422,243.48819 260.22365,248.54606 258.15426,253.18254 C 252.74744,255.16961 246.56477,256.75703 239.73227,257.78816 C 240.91215,253.2606 241.90082,248.34811 242.62046,242.99586 C 250.27315,241.87043 257.17384,240.21632 262.91588,238.15618 z M 183.17836,240.38081 C 189.81477,242.10373 197.38628,243.37654 205.65944,244.04972 C 206.21547,249.41708 207.00768,254.25726 207.92303,258.76384 C 200.75169,258.15123 194.10504,256.98084 188.13506,255.3682 C 186.00335,250.7918 184.42481,245.70545 183.17836,240.38081 z M 240.4348,243.23004 C 239.76898,248.5934 238.88685,253.49702 237.78078,258.02221 C 232.10394,258.7852 226.16993,259.31026 219.9052,259.31026 C 216.34357,259.31026 212.87399,259.09244 209.48422,258.8419 C 208.65055,254.36404 207.95126,249.54135 207.45468,244.20584 C 211.31118,244.47561 215.28384,244.6742 219.35879,244.6742 C 226.78878,244.6742 233.82474,244.10105 240.4348,243.23004 z M 173.30379,251.11403 C 177.26758,253.33254 181.87345,255.28115 187.27641,256.81236 C 188.90341,260.24684 190.73762,263.3902 192.77953,266.25753 C 188.09647,264.81837 183.70491,263.08221 179.86077,260.98847 C 177.38286,257.93092 175.20419,254.63969 173.30379,251.11403 z M 257.41264,255.09505 C 255.71607,258.61934 253.71275,261.84125 251.55831,264.8135 C 246.80419,266.61498 241.52925,267.89353 235.98542,268.83349 C 237.17792,266.04734 238.26025,262.9447 239.22494,259.50547 C 245.94241,258.50568 252.04053,257.02256 257.41264,255.09505 z M 189.1888,257.28071 C 195.00903,258.79956 201.40464,259.94047 208.31346,260.52011 C 209.06632,263.95098 209.86752,267.06436 210.81135,269.8093 C 205.36094,269.30922 200.2089,268.3539 195.35561,267.03813 C 193.08714,264.09111 191.00115,260.8647 189.1888,257.28071 z M 237.31243,259.77861 C 236.40294,263.22521 235.36969,266.36644 234.22915,269.14573 C 229.61453,269.83552 224.8694,270.31662 219.9052,270.31662 C 217.2643,270.31662 214.72743,270.08581 212.17733,269.88723 C 211.29395,267.15141 210.48663,264.02079 209.79646,260.5983 C 213.09543,260.83884 216.44586,261.02756 219.9052,261.02756 C 225.99857,261.02756 231.76834,260.51337 237.31243,259.77861 z "
       id="path1388" />
    <path
       style="fill:url(#radialGradient3633);fill-rule:evenodd;stroke-width:0.3125"
       d="M 213.93123,194.48143 C 211.68949,195.97593 201.97516,200.99907 201.97516,205.19205 C 201.97516,209.51129 206.37571,212.53999 209.44775,214.40817 C 212.51979,216.27622 219.70162,211.95885 222.4001,215.65362 C 225.09846,219.34826 224.30974,231.5119 225.63813,236.57664 C 226.96663,241.64137 228.1705,244.79647 230.37077,246.04192 C 232.57104,247.28725 236.5979,245.91728 238.83964,244.04922 C 241.08138,242.18104 241.82863,236.90873 243.82132,234.8331 C 245.81402,232.75735 249.50879,233.08945 250.79571,231.59495 C 252.08262,230.10046 249.84088,228.39839 251.54295,225.86602 C 253.24502,223.33365 259.63814,218.31051 261.00811,216.40086 C 262.37808,214.49122 260.88359,214.61574 259.76279,214.40817 C 258.64185,214.20059 256.89832,217.77084 254.2829,215.15541 C 251.66747,212.53999 245.48193,201.28971 244.07037,198.71587 C 242.65893,196.14191 245.56498,199.83668 245.81402,199.71216 C 246.06306,199.58764 243.73827,195.60224 245.56498,197.96862 C 247.39157,200.33488 253.99227,211.66822 256.77368,213.90996 C 259.55521,216.1517 261.79695,212.41547 262.25356,211.41918 C 262.71018,210.42277 260.38551,208.67924 259.51362,207.93199 C 258.64185,207.18474 257.56251,207.97346 257.02284,206.93558 C 256.48317,205.8977 255.23772,200.83309 256.27559,201.70486 C 257.31347,202.57662 261.88,210.3813 263.24998,212.16643 C 264.62007,213.95155 264.32907,212.78915 264.49518,212.41547 C 264.66129,212.04178 263.95563,210.25678 264.24664,209.92456 C 264.53639,209.59247 266.11382,209.17732 266.23871,210.42277 C 266.36361,211.66822 264.8274,216.02718 264.99351,217.39715 C 265.15962,218.76712 265.86527,219.26533 267.23537,218.6426 C 268.60547,218.01988 272.09253,213.61933 273.21284,213.66092 C 274.3344,213.70238 274.25072,217.64619 273.96096,218.89164 C 273.66996,220.13709 271.92642,220.05404 271.46931,221.13338 C 271.01344,222.21285 271.55299,224.86974 271.22077,225.36782 C 270.88855,225.86602 269.85067,224.86974 269.47724,224.12249 C 269.1038,223.37512 269.43602,221.34096 268.9789,220.88434 C 268.52179,220.42773 267.06926,220.55225 266.73704,221.38255 C 266.40482,222.21285 265.99017,225.07731 266.98558,225.86602 C 267.98224,226.65474 271.42809,226.48875 272.71451,226.11506 C 274.00218,225.7415 274.12707,225.20183 274.70783,223.62429 C 275.28859,222.04674 275.56586,217.03558 276.20283,216.6499 C 276.88725,216.23475 278.01755,219.04926 278.88057,224.18469 C 279.17033,201.01981 270.058,185.99133 261.13276,178.29031 C 252.21601,170.59803 240.62476,166.36035 236.0997,164.46694 C 231.57463,162.57229 235.60162,166.83245 233.60892,167.17591 C 233.11071,167.26084 232.01838,165.12014 231.19008,165.04396 C 230.36165,164.96652 232.28816,167.95026 231.35157,167.82162 C 229.47827,167.56434 225.11931,166.31913 224.14363,166.52146 C 222.19253,166.92612 221.71505,168.47232 221.9019,169.60387 C 221.99532,170.16964 225.90802,167.77666 226.82912,168.45733 C 227.75022,169.13926 225.67972,172.8961 225.26457,173.3095 C 224.43426,174.13381 218.14493,173.68294 216.92021,174.5547 C 215.69562,175.42647 218.04114,177.66833 217.91662,178.5401 C 217.79198,179.41187 215.88234,178.70621 216.17297,179.7853 C 216.4636,180.86439 219.66016,183.7707 219.66016,185.0159 C 219.66016,186.2611 217.08632,186.46968 216.17297,187.25776 C 215.25961,188.0471 213.76512,188.75275 214.18027,189.74817 C 214.59542,190.74483 217.2939,193.27745 218.66387,193.23598 C 220.03372,193.19439 221.11318,190.12285 222.4001,189.49963 C 223.68702,188.8764 225.18151,189.08498 226.38537,189.49963 C 227.58936,189.91428 229.0008,191.28437 229.62352,191.99053 C 230.24625,192.69631 229.70658,193.60954 230.12173,193.73419 C 230.53688,193.85871 232.52945,193.6926 232.11443,192.73778 C 231.69928,191.78271 227.42325,188.21321 227.63082,188.00463 C 227.8384,187.79731 231.8238,190.6624 233.35975,191.49295 C 234.89584,192.32263 235.85066,192.98694 236.84694,192.98694 C 237.84336,192.98694 238.67353,191.78271 239.33785,191.49295 C 240.00204,191.20194 240.62476,191.65781 240.83234,191.24316 C 241.03992,190.82851 240.25108,189.45841 240.5833,189.0013 C 240.9154,188.54543 242.24378,188.75275 242.82504,188.50297 C 243.40617,188.25442 243.57228,187.29898 244.07037,187.50755 C 244.56857,187.71488 246.27064,189.04251 245.81402,189.74817 C 245.35741,190.45507 241.53812,191.28437 241.33055,191.74149 C 241.12297,192.19811 244.31953,191.99053 244.56857,192.48874 C 244.81774,192.98694 243.86291,194.39838 242.82504,194.73047 C 241.78716,195.06257 239.00575,194.31532 238.34144,194.48143 C 237.67725,194.64742 239.50383,195.3532 238.83964,195.72676 C 238.17545,196.10045 235.68455,196.68158 234.35616,196.72317 C 233.02766,196.76464 231.69928,196.39108 230.86897,195.97593 C 230.03867,195.56078 231.61622,194.31532 229.37448,194.23227 C 227.13274,194.14934 219.99225,195.43626 217.41842,195.47772 C 214.84446,195.51919 216.17297,192.98694 213.93123,194.48143 z M 217.16925,172.81117 L 220.4074,172.56138 L 219.28647,170.94274 L 219.9092,166.08558 L 217.79198,169.07431 C 217.79198,169.07431 216.54665,167.82911 216.42201,168.32744 C 216.29749,168.82577 215.79941,171.31618 215.79941,171.31618 L 217.16925,170.32077 L 217.16925,172.81117 z M 209.57227,170.6942 C 211.66863,169.90487 219.12049,164.34205 220.15836,163.22174 C 221.19611,162.10018 216.81642,164.00983 215.79941,163.96861 C 214.78226,163.9274 215.42572,162.30751 214.05575,162.97195 C 212.68578,163.63639 208.32682,166.66634 207.57957,167.95401 C 206.83233,169.24042 207.47578,171.48229 209.57227,170.6942 z M 224.01911,163.47028 L 226.01181,164.96527 L 227.5063,164.21715 L 224.01911,163.47028 z M 208.94954,174.05637 C 209.57227,175.84112 203.34514,177.95934 203.46966,178.29031 C 203.59418,178.62253 204.75657,180.07631 204.2169,180.28363 C 203.67723,180.49096 201.06181,179.99263 200.23151,179.53676 C 199.40133,179.07964 199.73343,177.08757 199.23522,177.54344 C 198.73701,178.00055 198.44651,181.4464 197.24252,182.27571 C 196.03866,183.10626 195.20836,181.1554 192.0118,182.5255 C 188.81524,183.89559 181.63328,187.67366 178.06304,190.49629 C 174.49279,193.31904 171.37929,197.71946 170.59057,199.46312 C 169.80174,201.20665 173.16441,200.50087 173.33039,200.95761 C 173.4965,201.41423 172.41716,202.36905 171.58686,202.20306 C 170.75656,202.03695 168.47336,200.83309 168.34871,199.9612 C 168.22419,199.08943 170.50752,197.92703 170.83961,196.97221 C 171.17171,196.01739 171.04719,193.48502 170.34141,194.23227 C 169.63575,194.97952 167.43548,199.04797 166.60518,201.45569 C 165.77488,203.86354 162.32928,206.14687 165.35973,208.67924 C 168.3903,211.21161 181.50876,214.6988 184.78838,216.6499 C 188.06799,218.60101 183.70891,218.60101 185.03742,220.38614 C 186.36592,222.17126 192.71758,225.40941 192.75904,227.36052 C 192.80051,229.31175 186.5735,230.26657 185.28646,232.09316 C 183.99954,233.91975 185.82613,237.19936 185.03742,238.32029 C 184.24871,239.4411 182.54651,236.82568 180.55394,238.81837 C 178.56124,240.81107 173.4965,246.83063 173.08135,250.27636 C 172.6662,253.72196 177.73094,257.79028 178.06304,259.49248 C 178.39513,261.19454 177.28107,261.99225 173.66499,258.02296 C 170.13758,254.15085 164.49683,243.81542 162.00592,236.25978 C 159.51514,228.70426 159.237,219.93839 159.77667,216.03605 C 162.95837,213.71887 164.15586,211.08696 164.36344,209.67552 C 164.57101,208.26409 162.97174,209.4075 161.37445,206.68654 C 162.24622,199.71216 171.42075,183.89559 181.55023,176.79657 C 191.7981,169.61511 195.87255,168.0789 198.23893,167.08224 C 200.60519,166.08558 195.33288,170.23709 195.74803,170.81785 C 196.16318,171.39986 198.94459,171.48229 200.72971,170.56931 C 202.51483,169.65632 206.08508,165.0477 206.45864,165.33871 C 206.83233,165.62971 202.5563,170.86031 202.97145,172.31284 C 203.3866,173.76537 208.32682,172.27162 208.94954,174.05637 z M 248.78327,234.68061 C 248.98885,233.97607 247.22758,236.61798 246.4937,236.97018 C 245.75982,237.32251 244.84983,236.26577 244.3801,236.79408 C 243.91037,237.32251 244.23335,239.08378 243.67557,240.14051 C 243.11779,241.19737 240.76939,242.95864 241.03367,243.13474 C 241.29782,243.31084 243.96908,242.60644 245.26074,241.19737 C 246.5524,239.78831 248.57782,235.38501 248.78327,234.68061 z M 254.94784,251.06057 C 255.27082,250.53214 255.35887,249.41671 255.65237,248.06634 C 255.94587,246.7161 257.09078,243.13474 256.7091,242.95864 C 256.32755,242.78254 253.86175,245.62989 253.36267,247.00961 C 252.86372,248.38932 253.45072,250.56149 253.715,251.23667 C 253.97915,251.91186 254.62498,251.589 254.94784,251.06057 z M 261.99303,245.60054 C 261.20045,244.04473 261.84628,237.05836 262.34524,234.85671 C 262.84432,232.65506 264.13598,232.42026 264.98726,232.39091 C 265.83905,232.36156 266.66086,234.68061 267.45269,234.68061 C 268.24577,234.68061 268.77408,232.15598 269.74326,232.39091 C 270.7112,232.62571 272.09129,235.73734 273.2653,236.08955 C 274.43931,236.44187 276.20033,234.76866 276.78733,234.50438 C 277.37559,234.24023 271.85648,248.94698 270.62377,249.1232 C 269.39106,249.2993 267.71747,250.35604 267.62879,249.47541 C 267.54136,248.59477 268.03969,244.83731 267.10049,244.19148 C 266.16128,243.54577 262.78562,247.15636 261.99303,245.60054 z M 265.51557,226.75478 C 265.33947,227.25373 262.25719,230.04251 261.81693,230.10121 C 261.37655,230.15991 262.25719,227.66476 262.87367,227.10698 C 263.49015,226.5492 265.69167,226.2557 265.51557,226.75478 z M 194.35932,275.19027 C 205.83716,281.64833 228.49909,283.4096 238.39164,278.71293 C 231.72813,278.0671 231.46397,275.86545 229.40908,275.5426 C 227.35431,275.21962 227.11938,276.92218 226.06264,276.77543 C 225.00591,276.62868 224.71228,274.80871 223.06841,274.66196 C 221.42455,274.51509 218.19551,277.33321 215.84712,276.95154 C 213.49872,276.56998 210.62201,272.92992 208.97815,272.37226 C 207.33428,271.81448 206.7765,272.51902 206.33612,272.54837 C 205.89586,272.57772 205.27938,276.24713 204.22265,275.8948 C 203.16591,275.5426 200.46518,272.01994 200.69999,271.66773 C 200.93491,271.3154 202.54943,269.55414 202.10905,269.55414 C 201.6688,269.55414 198.99742,271.96123 197.70588,272.90057 C 196.41422,273.8399 190.80744,273.3116 194.35932,275.19027 z "
       id="path2168" />
    <path
       style="fill:#000000"
       id="path3892"
       d="" />
    <path
       style="fill:url(#radialGradient4974);fill-opacity:1;stroke-width:0.505198;stroke-linecap:round;stroke-linejoin:round"
       d="M 227.22276,183.013 C 227.22276,184.02181 226.56401,184.84055 225.75235,184.84055 C 224.94069,184.84055 224.28194,184.02181 224.28194,183.013 C 224.28194,182.00419 224.94069,181.18545 225.75235,181.18545 C 226.56401,181.18545 227.22276,182.00419 227.22276,183.013 z "
       id="path2134" />
    <g
       id="g3291"
       transform="translate(126.77414,110.10663)">
      <g
         id="g3323"
         transform="translate(95.964491,112.12693)">
        <text
           id="text3319"
           y="-2.7091084"
           x="-46.704681"
           style="font-size:33.4849472px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:0.20220588;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
           xml:space="preserve"><tspan
             y="-2.7091084"
             x="-46.704681"
             id="tspan3321"
             sodipodi:role="line">https</tspan></text>
        <text
           id="text3315"
           y="-5.8032279"
           x="-51.285454"
           style="font-size:33.4849472px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
           xml:space="preserve"><tspan
             y="-5.8032279"
             x="-51.285454"
             id="tspan3317"
             sodipodi:role="line">https</tspan></text>
      </g>
    </g>
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/repo_svn+ssh.svg.
















































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="124.22071"
   height="124.23133"
   id="svg3389"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="repo_svn+ssh.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="3.959798"
     inkscape:cx="56.660413"
     inkscape:cy="74.502176"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1114"
     inkscape:window-height="966"
     inkscape:window-x="518"
     inkscape:window-y="121" />
  <defs
     id="defs3391">
    <radialGradient
       r="3.1789999"
       id="defitem14"
       fx="38.584499"
       fy="48.691898"
       gradientUnits="userSpaceOnUse"
       cy="48.691898"
       cx="38.584499">
      <stop
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0.84516132;"
         id="stop89"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop91"
         stop-opacity="0"
         stop-color="#ffffff" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="defitem12"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       cy="114.505"
       cx="61.052898">
      <stop
         offset="0"
         id="stop73"
         stop-opacity="1"
         stop-color="#3b5bb1" />
      <stop
         offset="0.333333"
         id="stop75"
         stop-opacity="1"
         stop-color="#9cacd8" />
      <stop
         offset="0.5"
         id="stop77"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="0.819444"
         id="stop79"
         stop-opacity="1"
         stop-color="#b1bcd8" />
      <stop
         offset="1"
         id="stop81"
         stop-opacity="1"
         stop-color="#3b5bb1" />
    </radialGradient>
    <linearGradient
       id="defitem11"
       gradientUnits="userSpaceOnUse"
       x1="73.041199"
       x2="32.438499"
       y1="58.562698"
       y2="118.927">
      <stop
         offset="0"
         id="stop68"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop70"
         stop-opacity="0"
         stop-color="#ffffff" />
    </linearGradient>
    <radialGradient
       r="90.017502"
       id="defitem10"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       cy="103.471"
       cx="63.869499">
      <stop
         offset="0"
         id="stop57"
         stop-opacity="1"
         stop-color="#b1c3e9" />
      <stop
         offset="0.375"
         id="stop59"
         stop-opacity="1"
         stop-color="#576eb1" />
      <stop
         offset="0.5"
         id="stop61"
         stop-opacity="1"
         stop-color="#001a7b" />
      <stop
         offset="0.666667"
         id="stop63"
         stop-opacity="1"
         stop-color="#8597cf" />
      <stop
         offset="1"
         id="stop65"
         stop-opacity="1"
         stop-color="#b1c3e9" />
    </radialGradient>
    <radialGradient
       r="56.158001"
       id="defitem9"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       cy="4.9972801"
       cx="59.563">
      <stop
         offset="0"
         id="stop52"
         stop-opacity="1"
         stop-color="#a3cdeb" />
      <stop
         offset="1"
         id="stop54"
         stop-opacity="1"
         stop-color="#002f82" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="radialGradient3633"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="114.505"
       cx="61.052898"
       xlink:href="#defitem12"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <linearGradient
       id="linearGradient3636"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       x1="73.041199"
       x2="32.438499"
       xlink:href="#defitem11"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       y1="58.562698"
       y2="118.927" />
    <radialGradient
       r="90.017502"
       id="radialGradient3642"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="103.471"
       cx="63.869499"
       xlink:href="#defitem10"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="56.158001"
       id="radialGradient3645"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="4.9972801"
       cx="59.563"
       xlink:href="#defitem9"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="3.9704101"
       id="radialGradient4974"
       fx="224.32378"
       fy="181.94157"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="181.94157"
       cx="224.32378"
       xlink:href="#defitem14"
       gradientTransform="matrix(0.3703421,0,0,0.4602932,142.67581,99.266526)" />
  </defs>
  <metadata
     id="metadata3394">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-157.88964,-158.81795)">
    <path
       style="fill:#000000"
       id="path87"
       d="" />
    <path
       style="fill:url(#radialGradient3645)"
       d="M 219.9975,283.04928 C 254.29676,283.04928 282.11035,255.1023 282.11035,220.82502 C 282.11035,186.76318 254.29801,158.81795 219.9975,158.81795 C 185.94665,158.81795 157.88964,186.76318 157.88964,220.82502 C 157.88964,255.1023 185.94665,283.04928 219.9975,283.04928 z "
       id="path67" />
    <path
       style="fill:url(#radialGradient3642)"
       d="M 219.99762,279.39848 C 252.28058,279.39848 278.47092,253.09911 278.47092,220.83164 C 278.47092,188.76899 252.28058,162.45863 219.99762,162.45863 C 187.94909,162.45863 161.53657,188.76899 161.53657,220.83164 C 161.53657,253.09911 187.94909,279.39848 219.99762,279.39848 z "
       id="path74" />
    <path
       style="fill:none"
       d="M 169.08696,199.40791 C 169.08209,199.13015 169.06124,198.85613 169.06124,198.57836 C 169.06124,197.70485 169.11994,196.83733 169.20324,195.98454 C 167.64568,198.12574 166.42096,202.08978 166.57395,203.09918 L 166.97524,205.79691 C 165.77125,206.7611 165.1534,209.28635 166.37325,209.6473 C 168.45687,210.25541 170.50003,210.95395 172.4344,211.66722 C 170.59919,208.23049 169.45765,204.54172 169.15054,200.69745 C 168.70766,200.21299 168.38593,199.83131 168.38593,199.83131 L 169.08696,199.40791 z "
       id="path85" />
    <path
       style="fill:#ffffff;fill-opacity:0.13636397"
       d="M 219.9975,265.87386 C 191.68395,265.87386 168.12965,249.74093 165.97496,224.50517 C 165.86343,225.74587 165.79036,226.9987 165.79036,228.25401 C 165.79036,255.24905 190.28038,277.25228 219.99625,277.25228 C 249.92744,277.25228 274.20576,255.24905 274.20576,228.25401 C 274.20576,226.99745 274.14081,225.74587 274.03215,224.50517 C 271.8902,249.74093 248.52249,265.87386 219.9975,265.87386 z "
       id="path89" />
    <path
       style="opacity:0.7171717;fill:url(#linearGradient3636)"
       d="M 216.58774,162.82832 C 216.19257,162.85205 215.8099,162.9145 215.41673,162.94572 C 212.0056,167.3695 209.16087,175.35653 207.25959,186.05128 C 200.78891,185.07585 195.22372,183.40226 191.02325,181.25032 C 195.49162,173.55804 201.22629,167.72795 207.57183,163.88243 C 205.9171,164.24713 204.3719,164.86411 202.77112,165.36618 C 197.76958,169.13551 193.29384,174.26744 189.65715,180.62584 C 187.20996,179.21203 185.45532,177.57591 184.31015,175.82613 C 185.90756,174.23997 187.60301,172.80742 189.34492,171.41609 C 185.55061,173.78285 181.9625,176.43062 178.80703,179.57298 C 178.702,179.67664 178.63793,179.81902 178.53376,179.92393 C 177.47603,180.99303 176.6195,182.25073 175.64557,183.39726 C 173.54521,186.39724 171.64943,189.5908 170.06439,192.99893 C 169.84633,192.69606 169.71181,192.37084 169.51785,192.06222 C 169.38971,192.28428 169.25295,192.50173 169.12768,192.72566 C 169.31902,193.07787 169.45366,193.43257 169.67397,193.77952 C 166.98124,199.77998 165.23908,206.2629 164.44412,213.13823 C 163.68876,212.38524 163.12723,211.58704 162.5707,210.79646 C 162.50288,211.17888 162.51375,211.58242 162.45355,211.96722 C 163.00845,212.81014 163.54838,213.65917 164.32697,214.46512 C 164.12427,216.58546 163.74146,218.65122 163.74146,220.82701 C 163.74146,224.37753 164.15374,227.81851 164.67817,231.2089 C 163.72048,230.56857 163.15108,229.85717 162.37549,229.17936 C 162.44655,229.66807 162.44843,230.17777 162.53161,230.66249 C 163.32319,231.36565 163.86236,232.1019 164.83429,232.77009 C 165.70968,237.67883 167.18719,242.31643 169.0495,246.74271 C 168.24405,246.14396 167.56849,245.49763 166.86384,244.86928 C 167.35605,245.95012 167.98751,246.94678 168.54217,247.99166 C 169.15591,248.46388 169.70045,248.94398 170.37663,249.39672 C 171.80693,252.40069 173.3811,255.25205 175.21631,257.94428 C 179.08493,262.61198 183.53468,266.75549 188.64251,270.04335 C 186.52791,268.31967 184.51586,266.47847 182.63182,264.46217 C 186.46359,266.32285 190.61922,267.9325 195.1604,269.18482 C 197.44897,271.95437 199.91802,274.37458 202.53707,276.40524 C 204.02094,276.8781 205.45549,277.45649 206.98632,277.81031 C 203.67761,275.72469 200.51889,273.11926 197.6583,269.88723 C 202.03149,270.94746 206.69657,271.62165 211.51376,272.03392 C 212.6267,274.89776 213.89538,277.15699 215.22164,278.90314 C 215.61431,278.93587 215.99786,278.99544 216.39253,279.02029 C 215.11898,277.22955 213.93248,274.96795 212.87986,272.11198 C 215.21003,272.27872 217.5011,272.54125 219.9052,272.54125 C 224.52469,272.54125 228.96932,272.13272 233.29244,271.5266 C 231.9653,274.37545 230.47718,276.62681 228.92111,278.47375 C 229.40658,278.39844 229.92265,278.44403 230.40412,278.35673 C 232.04948,276.50291 233.59231,274.1429 235.00974,271.21436 C 240.00316,270.41591 244.71183,269.24677 249.09938,267.74066 C 246.61048,270.71965 243.82445,273.14811 240.94225,275.31241 C 242.98653,274.52096 244.90953,273.5489 246.83566,272.54125 C 248.70634,270.76312 250.51994,268.87021 252.18279,266.72589 C 255.58817,265.39189 258.60064,263.75114 261.47172,262.04233 C 262.93636,260.56457 264.15097,258.86775 265.45312,257.24162 C 262.25169,259.55492 258.71704,261.67214 254.64159,263.4474 C 256.52576,260.61728 258.22595,257.56672 259.71545,254.27537 C 264.7025,252.29016 268.72911,249.86395 271.93142,247.21106 C 272.37355,246.34267 272.89811,245.52773 273.29777,244.6351 C 270.13543,247.59262 265.75911,250.23002 260.41798,252.40194 C 262.38483,247.71251 263.89581,242.67101 264.9448,237.29753 C 270.68497,235.0162 274.94513,232.29686 277.63037,229.33548 C 277.70531,228.82191 277.72405,228.29198 277.78649,227.77429 C 275.18868,230.66299 270.99221,233.2603 265.33572,235.42411 C 266.14129,230.72219 266.70207,225.87252 266.70207,220.82701 C 266.70207,220.70662 266.66335,220.59608 266.66335,220.47581 C 271.87772,218.00626 275.60583,215.12356 277.59166,212.00631 C 277.53545,211.64686 277.53545,211.27081 277.47426,210.91348 C 275.4597,213.93207 271.73534,216.65902 266.58467,218.95359 C 266.4348,212.05789 265.44813,205.49055 263.8135,199.32161 C 267.03429,197.07338 269.30613,194.56362 270.44892,191.9061 C 270.33152,191.70527 270.25533,191.48171 270.13668,191.28188 C 268.8665,193.70821 266.60715,195.95257 263.54036,197.95564 C 261.59799,191.10702 258.74177,184.93846 255.30516,179.53426 C 256.33567,178.62253 257.09228,177.63711 257.72487,176.64544 C 257.57026,176.51305 257.41264,176.38566 257.25652,176.25452 C 256.58871,177.13378 255.87131,177.99556 254.87577,178.79239 C 252.47717,175.13297 249.69513,172.04182 246.7576,169.26915 C 244.94938,168.32744 243.167,167.367 241.25448,166.61513 C 245.79679,170.05224 249.92993,174.46977 253.39265,179.8465 C 250.08293,182.02966 245.49342,183.78818 240.00554,185.03713 C 237.55622,175.24287 234.09688,167.87407 230.13097,163.49276 C 229.64725,163.40658 229.13556,163.40908 228.64784,163.33664 C 232.57904,167.82786 235.9191,175.37276 238.21005,185.4268 C 233.02216,186.46343 227.23928,187.06667 221.037,187.06667 C 216.72887,187.06667 212.72537,186.67825 208.85975,186.16868 C 210.59129,175.39649 213.26754,167.32703 216.58774,162.82832 z M 183.88077,176.2158 C 184.91327,178.11171 186.71088,179.90395 189.1888,181.48512 C 185.98,187.30148 183.45288,193.93639 181.81226,201.23413 C 177.28482,199.32086 173.75266,197.078 171.35231,194.52103 C 174.49416,187.63619 178.72211,181.43391 183.88077,176.2158 z M 253.861,180.62584 C 257.25777,186.07126 260.01008,192.2618 261.90111,199.08756 C 257.14199,201.78379 250.69591,203.88077 243.32299,205.37127 C 242.69927,198.55438 241.74095,192.11193 240.39571,186.40348 C 245.98388,184.98468 250.594,183.01134 253.861,180.62584 z M 190.47684,182.18703 C 194.68817,184.57752 200.37364,186.45469 207.02541,187.57375 C 206.05111,193.41258 205.33047,199.88176 204.91781,206.81531 C 196.58545,205.8666 189.06253,204.16891 183.06121,201.81951 C 184.71781,194.59309 187.23544,187.9884 190.47684,182.18703 z M 238.56138,186.83187 C 239.7836,192.54706 240.62876,198.99326 241.1763,205.80066 C 234.58522,206.98042 227.34382,207.71305 219.63193,207.71305 C 215.26486,207.71305 211.0795,207.43866 207.02541,207.04961 C 207.38474,200.24009 207.76529,193.51887 208.62569,187.76858 C 212.5394,188.34435 216.66892,188.74401 221.037,188.74401 C 227.37854,188.74401 233.28419,188.01088 238.56138,186.83187 z M 170.88395,195.37968 C 173.22848,198.16346 176.81871,200.69283 181.50002,202.83441 C 180.32451,208.57395 179.50944,214.53256 179.50944,220.82701 C 179.50944,220.98738 179.54779,221.13525 179.54854,221.29537 C 173.89991,219.47615 169.23122,217.29636 166.00531,214.77736 C 166.66613,207.93436 168.24854,201.39849 170.88395,195.37968 z M 262.21335,200.49263 C 263.76754,206.52905 264.7687,212.90968 264.86736,219.61703 C 259.13331,221.94407 252.08013,223.81912 243.9085,225.04222 C 243.94247,223.62454 244.06462,222.26868 244.06462,220.82701 C 244.06462,216.19629 243.86079,211.71193 243.51808,207.36185 C 250.95882,205.70387 257.46147,203.38981 262.21335,200.49263 z M 182.71,203.45888 C 188.74854,206.02784 196.35527,207.89415 204.80066,208.962 C 204.60945,212.80939 204.48842,216.7693 204.48842,220.82701 C 204.48842,222.58878 204.56923,224.25351 204.60558,225.97893 C 195.63525,225.16511 187.54656,223.70247 180.79748,221.64657 C 180.79486,221.36731 180.75839,221.10715 180.75839,220.82701 C 180.75839,214.76187 181.5556,209.01071 182.71,203.45888 z M 241.37151,207.86917 C 241.6584,212.06351 241.83987,216.37339 241.83987,220.82701 C 241.83987,222.37696 241.71909,223.83261 241.68375,225.35445 C 234.97664,226.2462 227.68291,226.75952 220.06132,226.75952 C 215.4196,226.75952 210.97222,226.5502 206.63512,226.21311 C 206.59815,224.34918 206.40094,222.73428 206.40094,220.82701 C 206.40094,216.72771 206.73741,213.11813 206.90839,209.23527 C 210.99407,209.67203 215.22939,209.97677 219.63193,209.97677 C 227.42362,209.97677 234.72286,209.18481 241.37151,207.86917 z M 165.88816,216.0654 C 169.14816,218.74602 173.87381,221.10565 179.66556,223.09073 C 179.79208,228.26201 180.38546,233.22133 181.30493,238.00006 C 175.39053,236.45137 170.39924,234.54709 166.5516,232.34083 C 165.8703,228.6011 165.4198,224.76845 165.4198,220.82701 C 165.4198,219.19701 165.76651,217.6648 165.88816,216.0654 z M 264.90608,221.2564 C 264.87985,226.44116 264.25038,231.3925 263.34515,236.2047 C 257.54415,238.20701 250.64096,239.82852 242.81567,240.88826 C 243.3436,236.50232 243.65859,231.91181 243.83032,227.14982 C 252.04665,225.80982 259.14443,223.73994 264.90608,221.2564 z M 180.9536,223.48103 C 187.69268,225.66532 195.75889,227.31418 204.68363,228.20356 C 204.82701,232.93907 205.06157,237.51322 205.46423,241.86406 C 197.07816,241.23634 189.43122,240.0316 182.74897,238.39036 C 181.75368,233.61288 181.11135,228.65955 180.9536,223.48103 z M 241.64466,227.46206 C 241.48379,232.18621 241.15082,236.7345 240.66898,241.08347 C 234.00334,241.89266 226.86872,242.41035 219.35879,242.41035 C 215.239,242.41035 211.23237,242.26897 207.33765,242.02018 C 206.98183,237.74803 206.88341,233.0877 206.75227,228.43786 C 211.05715,228.80443 215.45919,229.02324 220.06132,229.02324 C 227.68041,229.02324 234.93518,228.43998 241.64466,227.46206 z M 166.94202,234.13606 C 170.82513,236.39092 175.82829,238.32704 181.6951,239.95155 C 182.84114,245.24572 184.30965,250.29209 186.30073,254.86087 C 180.88079,253.26934 176.10368,251.30312 172.21096,249.00643 C 169.90877,244.32799 168.06033,239.40588 166.94202,234.13606 z M 262.91588,238.15618 C 261.77422,243.48819 260.22365,248.54606 258.15426,253.18254 C 252.74744,255.16961 246.56477,256.75703 239.73227,257.78816 C 240.91215,253.2606 241.90082,248.34811 242.62046,242.99586 C 250.27315,241.87043 257.17384,240.21632 262.91588,238.15618 z M 183.17836,240.38081 C 189.81477,242.10373 197.38628,243.37654 205.65944,244.04972 C 206.21547,249.41708 207.00768,254.25726 207.92303,258.76384 C 200.75169,258.15123 194.10504,256.98084 188.13506,255.3682 C 186.00335,250.7918 184.42481,245.70545 183.17836,240.38081 z M 240.4348,243.23004 C 239.76898,248.5934 238.88685,253.49702 237.78078,258.02221 C 232.10394,258.7852 226.16993,259.31026 219.9052,259.31026 C 216.34357,259.31026 212.87399,259.09244 209.48422,258.8419 C 208.65055,254.36404 207.95126,249.54135 207.45468,244.20584 C 211.31118,244.47561 215.28384,244.6742 219.35879,244.6742 C 226.78878,244.6742 233.82474,244.10105 240.4348,243.23004 z M 173.30379,251.11403 C 177.26758,253.33254 181.87345,255.28115 187.27641,256.81236 C 188.90341,260.24684 190.73762,263.3902 192.77953,266.25753 C 188.09647,264.81837 183.70491,263.08221 179.86077,260.98847 C 177.38286,257.93092 175.20419,254.63969 173.30379,251.11403 z M 257.41264,255.09505 C 255.71607,258.61934 253.71275,261.84125 251.55831,264.8135 C 246.80419,266.61498 241.52925,267.89353 235.98542,268.83349 C 237.17792,266.04734 238.26025,262.9447 239.22494,259.50547 C 245.94241,258.50568 252.04053,257.02256 257.41264,255.09505 z M 189.1888,257.28071 C 195.00903,258.79956 201.40464,259.94047 208.31346,260.52011 C 209.06632,263.95098 209.86752,267.06436 210.81135,269.8093 C 205.36094,269.30922 200.2089,268.3539 195.35561,267.03813 C 193.08714,264.09111 191.00115,260.8647 189.1888,257.28071 z M 237.31243,259.77861 C 236.40294,263.22521 235.36969,266.36644 234.22915,269.14573 C 229.61453,269.83552 224.8694,270.31662 219.9052,270.31662 C 217.2643,270.31662 214.72743,270.08581 212.17733,269.88723 C 211.29395,267.15141 210.48663,264.02079 209.79646,260.5983 C 213.09543,260.83884 216.44586,261.02756 219.9052,261.02756 C 225.99857,261.02756 231.76834,260.51337 237.31243,259.77861 z "
       id="path1388" />
    <path
       style="fill:url(#radialGradient3633);fill-rule:evenodd;stroke-width:0.3125"
       d="M 213.93123,194.48143 C 211.68949,195.97593 201.97516,200.99907 201.97516,205.19205 C 201.97516,209.51129 206.37571,212.53999 209.44775,214.40817 C 212.51979,216.27622 219.70162,211.95885 222.4001,215.65362 C 225.09846,219.34826 224.30974,231.5119 225.63813,236.57664 C 226.96663,241.64137 228.1705,244.79647 230.37077,246.04192 C 232.57104,247.28725 236.5979,245.91728 238.83964,244.04922 C 241.08138,242.18104 241.82863,236.90873 243.82132,234.8331 C 245.81402,232.75735 249.50879,233.08945 250.79571,231.59495 C 252.08262,230.10046 249.84088,228.39839 251.54295,225.86602 C 253.24502,223.33365 259.63814,218.31051 261.00811,216.40086 C 262.37808,214.49122 260.88359,214.61574 259.76279,214.40817 C 258.64185,214.20059 256.89832,217.77084 254.2829,215.15541 C 251.66747,212.53999 245.48193,201.28971 244.07037,198.71587 C 242.65893,196.14191 245.56498,199.83668 245.81402,199.71216 C 246.06306,199.58764 243.73827,195.60224 245.56498,197.96862 C 247.39157,200.33488 253.99227,211.66822 256.77368,213.90996 C 259.55521,216.1517 261.79695,212.41547 262.25356,211.41918 C 262.71018,210.42277 260.38551,208.67924 259.51362,207.93199 C 258.64185,207.18474 257.56251,207.97346 257.02284,206.93558 C 256.48317,205.8977 255.23772,200.83309 256.27559,201.70486 C 257.31347,202.57662 261.88,210.3813 263.24998,212.16643 C 264.62007,213.95155 264.32907,212.78915 264.49518,212.41547 C 264.66129,212.04178 263.95563,210.25678 264.24664,209.92456 C 264.53639,209.59247 266.11382,209.17732 266.23871,210.42277 C 266.36361,211.66822 264.8274,216.02718 264.99351,217.39715 C 265.15962,218.76712 265.86527,219.26533 267.23537,218.6426 C 268.60547,218.01988 272.09253,213.61933 273.21284,213.66092 C 274.3344,213.70238 274.25072,217.64619 273.96096,218.89164 C 273.66996,220.13709 271.92642,220.05404 271.46931,221.13338 C 271.01344,222.21285 271.55299,224.86974 271.22077,225.36782 C 270.88855,225.86602 269.85067,224.86974 269.47724,224.12249 C 269.1038,223.37512 269.43602,221.34096 268.9789,220.88434 C 268.52179,220.42773 267.06926,220.55225 266.73704,221.38255 C 266.40482,222.21285 265.99017,225.07731 266.98558,225.86602 C 267.98224,226.65474 271.42809,226.48875 272.71451,226.11506 C 274.00218,225.7415 274.12707,225.20183 274.70783,223.62429 C 275.28859,222.04674 275.56586,217.03558 276.20283,216.6499 C 276.88725,216.23475 278.01755,219.04926 278.88057,224.18469 C 279.17033,201.01981 270.058,185.99133 261.13276,178.29031 C 252.21601,170.59803 240.62476,166.36035 236.0997,164.46694 C 231.57463,162.57229 235.60162,166.83245 233.60892,167.17591 C 233.11071,167.26084 232.01838,165.12014 231.19008,165.04396 C 230.36165,164.96652 232.28816,167.95026 231.35157,167.82162 C 229.47827,167.56434 225.11931,166.31913 224.14363,166.52146 C 222.19253,166.92612 221.71505,168.47232 221.9019,169.60387 C 221.99532,170.16964 225.90802,167.77666 226.82912,168.45733 C 227.75022,169.13926 225.67972,172.8961 225.26457,173.3095 C 224.43426,174.13381 218.14493,173.68294 216.92021,174.5547 C 215.69562,175.42647 218.04114,177.66833 217.91662,178.5401 C 217.79198,179.41187 215.88234,178.70621 216.17297,179.7853 C 216.4636,180.86439 219.66016,183.7707 219.66016,185.0159 C 219.66016,186.2611 217.08632,186.46968 216.17297,187.25776 C 215.25961,188.0471 213.76512,188.75275 214.18027,189.74817 C 214.59542,190.74483 217.2939,193.27745 218.66387,193.23598 C 220.03372,193.19439 221.11318,190.12285 222.4001,189.49963 C 223.68702,188.8764 225.18151,189.08498 226.38537,189.49963 C 227.58936,189.91428 229.0008,191.28437 229.62352,191.99053 C 230.24625,192.69631 229.70658,193.60954 230.12173,193.73419 C 230.53688,193.85871 232.52945,193.6926 232.11443,192.73778 C 231.69928,191.78271 227.42325,188.21321 227.63082,188.00463 C 227.8384,187.79731 231.8238,190.6624 233.35975,191.49295 C 234.89584,192.32263 235.85066,192.98694 236.84694,192.98694 C 237.84336,192.98694 238.67353,191.78271 239.33785,191.49295 C 240.00204,191.20194 240.62476,191.65781 240.83234,191.24316 C 241.03992,190.82851 240.25108,189.45841 240.5833,189.0013 C 240.9154,188.54543 242.24378,188.75275 242.82504,188.50297 C 243.40617,188.25442 243.57228,187.29898 244.07037,187.50755 C 244.56857,187.71488 246.27064,189.04251 245.81402,189.74817 C 245.35741,190.45507 241.53812,191.28437 241.33055,191.74149 C 241.12297,192.19811 244.31953,191.99053 244.56857,192.48874 C 244.81774,192.98694 243.86291,194.39838 242.82504,194.73047 C 241.78716,195.06257 239.00575,194.31532 238.34144,194.48143 C 237.67725,194.64742 239.50383,195.3532 238.83964,195.72676 C 238.17545,196.10045 235.68455,196.68158 234.35616,196.72317 C 233.02766,196.76464 231.69928,196.39108 230.86897,195.97593 C 230.03867,195.56078 231.61622,194.31532 229.37448,194.23227 C 227.13274,194.14934 219.99225,195.43626 217.41842,195.47772 C 214.84446,195.51919 216.17297,192.98694 213.93123,194.48143 z M 217.16925,172.81117 L 220.4074,172.56138 L 219.28647,170.94274 L 219.9092,166.08558 L 217.79198,169.07431 C 217.79198,169.07431 216.54665,167.82911 216.42201,168.32744 C 216.29749,168.82577 215.79941,171.31618 215.79941,171.31618 L 217.16925,170.32077 L 217.16925,172.81117 z M 209.57227,170.6942 C 211.66863,169.90487 219.12049,164.34205 220.15836,163.22174 C 221.19611,162.10018 216.81642,164.00983 215.79941,163.96861 C 214.78226,163.9274 215.42572,162.30751 214.05575,162.97195 C 212.68578,163.63639 208.32682,166.66634 207.57957,167.95401 C 206.83233,169.24042 207.47578,171.48229 209.57227,170.6942 z M 224.01911,163.47028 L 226.01181,164.96527 L 227.5063,164.21715 L 224.01911,163.47028 z M 208.94954,174.05637 C 209.57227,175.84112 203.34514,177.95934 203.46966,178.29031 C 203.59418,178.62253 204.75657,180.07631 204.2169,180.28363 C 203.67723,180.49096 201.06181,179.99263 200.23151,179.53676 C 199.40133,179.07964 199.73343,177.08757 199.23522,177.54344 C 198.73701,178.00055 198.44651,181.4464 197.24252,182.27571 C 196.03866,183.10626 195.20836,181.1554 192.0118,182.5255 C 188.81524,183.89559 181.63328,187.67366 178.06304,190.49629 C 174.49279,193.31904 171.37929,197.71946 170.59057,199.46312 C 169.80174,201.20665 173.16441,200.50087 173.33039,200.95761 C 173.4965,201.41423 172.41716,202.36905 171.58686,202.20306 C 170.75656,202.03695 168.47336,200.83309 168.34871,199.9612 C 168.22419,199.08943 170.50752,197.92703 170.83961,196.97221 C 171.17171,196.01739 171.04719,193.48502 170.34141,194.23227 C 169.63575,194.97952 167.43548,199.04797 166.60518,201.45569 C 165.77488,203.86354 162.32928,206.14687 165.35973,208.67924 C 168.3903,211.21161 181.50876,214.6988 184.78838,216.6499 C 188.06799,218.60101 183.70891,218.60101 185.03742,220.38614 C 186.36592,222.17126 192.71758,225.40941 192.75904,227.36052 C 192.80051,229.31175 186.5735,230.26657 185.28646,232.09316 C 183.99954,233.91975 185.82613,237.19936 185.03742,238.32029 C 184.24871,239.4411 182.54651,236.82568 180.55394,238.81837 C 178.56124,240.81107 173.4965,246.83063 173.08135,250.27636 C 172.6662,253.72196 177.73094,257.79028 178.06304,259.49248 C 178.39513,261.19454 177.28107,261.99225 173.66499,258.02296 C 170.13758,254.15085 164.49683,243.81542 162.00592,236.25978 C 159.51514,228.70426 159.237,219.93839 159.77667,216.03605 C 162.95837,213.71887 164.15586,211.08696 164.36344,209.67552 C 164.57101,208.26409 162.97174,209.4075 161.37445,206.68654 C 162.24622,199.71216 171.42075,183.89559 181.55023,176.79657 C 191.7981,169.61511 195.87255,168.0789 198.23893,167.08224 C 200.60519,166.08558 195.33288,170.23709 195.74803,170.81785 C 196.16318,171.39986 198.94459,171.48229 200.72971,170.56931 C 202.51483,169.65632 206.08508,165.0477 206.45864,165.33871 C 206.83233,165.62971 202.5563,170.86031 202.97145,172.31284 C 203.3866,173.76537 208.32682,172.27162 208.94954,174.05637 z M 248.78327,234.68061 C 248.98885,233.97607 247.22758,236.61798 246.4937,236.97018 C 245.75982,237.32251 244.84983,236.26577 244.3801,236.79408 C 243.91037,237.32251 244.23335,239.08378 243.67557,240.14051 C 243.11779,241.19737 240.76939,242.95864 241.03367,243.13474 C 241.29782,243.31084 243.96908,242.60644 245.26074,241.19737 C 246.5524,239.78831 248.57782,235.38501 248.78327,234.68061 z M 254.94784,251.06057 C 255.27082,250.53214 255.35887,249.41671 255.65237,248.06634 C 255.94587,246.7161 257.09078,243.13474 256.7091,242.95864 C 256.32755,242.78254 253.86175,245.62989 253.36267,247.00961 C 252.86372,248.38932 253.45072,250.56149 253.715,251.23667 C 253.97915,251.91186 254.62498,251.589 254.94784,251.06057 z M 261.99303,245.60054 C 261.20045,244.04473 261.84628,237.05836 262.34524,234.85671 C 262.84432,232.65506 264.13598,232.42026 264.98726,232.39091 C 265.83905,232.36156 266.66086,234.68061 267.45269,234.68061 C 268.24577,234.68061 268.77408,232.15598 269.74326,232.39091 C 270.7112,232.62571 272.09129,235.73734 273.2653,236.08955 C 274.43931,236.44187 276.20033,234.76866 276.78733,234.50438 C 277.37559,234.24023 271.85648,248.94698 270.62377,249.1232 C 269.39106,249.2993 267.71747,250.35604 267.62879,249.47541 C 267.54136,248.59477 268.03969,244.83731 267.10049,244.19148 C 266.16128,243.54577 262.78562,247.15636 261.99303,245.60054 z M 265.51557,226.75478 C 265.33947,227.25373 262.25719,230.04251 261.81693,230.10121 C 261.37655,230.15991 262.25719,227.66476 262.87367,227.10698 C 263.49015,226.5492 265.69167,226.2557 265.51557,226.75478 z M 194.35932,275.19027 C 205.83716,281.64833 228.49909,283.4096 238.39164,278.71293 C 231.72813,278.0671 231.46397,275.86545 229.40908,275.5426 C 227.35431,275.21962 227.11938,276.92218 226.06264,276.77543 C 225.00591,276.62868 224.71228,274.80871 223.06841,274.66196 C 221.42455,274.51509 218.19551,277.33321 215.84712,276.95154 C 213.49872,276.56998 210.62201,272.92992 208.97815,272.37226 C 207.33428,271.81448 206.7765,272.51902 206.33612,272.54837 C 205.89586,272.57772 205.27938,276.24713 204.22265,275.8948 C 203.16591,275.5426 200.46518,272.01994 200.69999,271.66773 C 200.93491,271.3154 202.54943,269.55414 202.10905,269.55414 C 201.6688,269.55414 198.99742,271.96123 197.70588,272.90057 C 196.41422,273.8399 190.80744,273.3116 194.35932,275.19027 z "
       id="path2168" />
    <path
       style="fill:#000000"
       id="path3892"
       d="" />
    <path
       style="fill:url(#radialGradient4974);fill-opacity:1;stroke-width:0.505198;stroke-linecap:round;stroke-linejoin:round"
       d="M 227.22276,183.013 C 227.22276,184.02181 226.56401,184.84055 225.75235,184.84055 C 224.94069,184.84055 224.28194,184.02181 224.28194,183.013 C 224.28194,182.00419 224.94069,181.18545 225.75235,181.18545 C 226.56401,181.18545 227.22276,182.00419 227.22276,183.013 z "
       id="path2134" />
    <g
       id="g3291"
       transform="translate(250.01275,239.91123)">
      <text
         xml:space="preserve"
         style="font-size:25.15587616px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
         x="-84.812645"
         y="-13.603418"
         id="text3343"><tspan
           sodipodi:role="line"
           id="tspan3345"
           x="-84.812645"
           y="-13.603418">svn+ssh</tspan></text>
      <text
         xml:space="preserve"
         style="font-size:25.15587616px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:0.16176471;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
         x="-80.797905"
         y="-10.131489"
         id="text3347"><tspan
           sodipodi:role="line"
           id="tspan3349"
           x="-80.797905"
           y="-10.131489">svn+ssh</tspan></text>
    </g>
  </g>
</svg>
Added extern/TortoiseSVNResources/svg/repo_svn.svg.
























































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="124.22071"
   height="124.23133"
   id="svg3389"
   sodipodi:version="0.32"
   inkscape:version="0.45.1"
   sodipodi:docbase="D:\Development\SVN\TortoiseSVN\src\Resources\svg"
   sodipodi:docname="repo_svn.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0">
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="2.8"
     inkscape:cx="104.01065"
     inkscape:cy="79.596376"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     inkscape:window-width="1114"
     inkscape:window-height="966"
     inkscape:window-x="518"
     inkscape:window-y="121" />
  <defs
     id="defs3391">
    <radialGradient
       r="3.1789999"
       id="defitem14"
       fx="38.584499"
       fy="48.691898"
       gradientUnits="userSpaceOnUse"
       cy="48.691898"
       cx="38.584499">
      <stop
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0.84516132;"
         id="stop89"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop91"
         stop-opacity="0"
         stop-color="#ffffff" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="defitem12"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       cy="114.505"
       cx="61.052898">
      <stop
         offset="0"
         id="stop73"
         stop-opacity="1"
         stop-color="#3b5bb1" />
      <stop
         offset="0.333333"
         id="stop75"
         stop-opacity="1"
         stop-color="#9cacd8" />
      <stop
         offset="0.5"
         id="stop77"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="0.819444"
         id="stop79"
         stop-opacity="1"
         stop-color="#b1bcd8" />
      <stop
         offset="1"
         id="stop81"
         stop-opacity="1"
         stop-color="#3b5bb1" />
    </radialGradient>
    <linearGradient
       id="defitem11"
       gradientUnits="userSpaceOnUse"
       x1="73.041199"
       x2="32.438499"
       y1="58.562698"
       y2="118.927">
      <stop
         offset="0"
         id="stop68"
         stop-opacity="1"
         stop-color="#ffffff" />
      <stop
         offset="1"
         id="stop70"
         stop-opacity="0"
         stop-color="#ffffff" />
    </linearGradient>
    <radialGradient
       r="90.017502"
       id="defitem10"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       cy="103.471"
       cx="63.869499">
      <stop
         offset="0"
         id="stop57"
         stop-opacity="1"
         stop-color="#b1c3e9" />
      <stop
         offset="0.375"
         id="stop59"
         stop-opacity="1"
         stop-color="#576eb1" />
      <stop
         offset="0.5"
         id="stop61"
         stop-opacity="1"
         stop-color="#001a7b" />
      <stop
         offset="0.666667"
         id="stop63"
         stop-opacity="1"
         stop-color="#8597cf" />
      <stop
         offset="1"
         id="stop65"
         stop-opacity="1"
         stop-color="#b1c3e9" />
    </radialGradient>
    <radialGradient
       r="56.158001"
       id="defitem9"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       cy="4.9972801"
       cx="59.563">
      <stop
         offset="0"
         id="stop52"
         stop-opacity="1"
         stop-color="#a3cdeb" />
      <stop
         offset="1"
         id="stop54"
         stop-opacity="1"
         stop-color="#002f82" />
    </radialGradient>
    <radialGradient
       r="64.772102"
       id="radialGradient3633"
       fx="62.500599"
       fy="114.505"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="114.505"
       cx="61.052898"
       xlink:href="#defitem12"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <linearGradient
       id="linearGradient3636"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       x1="73.041199"
       x2="32.438499"
       xlink:href="#defitem11"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)"
       y1="58.562698"
       y2="118.927" />
    <radialGradient
       r="90.017502"
       id="radialGradient3642"
       fx="63.869499"
       fy="104.901"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="103.471"
       cx="63.869499"
       xlink:href="#defitem10"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="56.158001"
       id="radialGradient3645"
       fx="59.563"
       fy="4.9972801"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="4.9972801"
       cx="59.563"
       xlink:href="#defitem9"
       gradientTransform="matrix(1.248949,0,0,-1.248949,139.34799,316.68385)" />
    <radialGradient
       r="3.9704101"
       id="radialGradient4974"
       fx="224.32378"
       fy="181.94157"
       gradientUnits="userSpaceOnUse"
       inkscape:collect="always"
       cy="181.94157"
       cx="224.32378"
       xlink:href="#defitem14"
       gradientTransform="matrix(0.3703421,0,0,0.4602932,142.67581,99.266526)" />
  </defs>
  <metadata
     id="metadata3394">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     id="layer1"
     inkscape:groupmode="layer"
     transform="translate(-157.88964,-158.81795)">
    <path
       style="fill:#000000"
       id="path87"
       d="" />
    <path
       style="fill:url(#radialGradient3645)"
       d="M 219.9975,283.04928 C 254.29676,283.04928 282.11035,255.1023 282.11035,220.82502 C 282.11035,186.76318 254.29801,158.81795 219.9975,158.81795 C 185.94665,158.81795 157.88964,186.76318 157.88964,220.82502 C 157.88964,255.1023 185.94665,283.04928 219.9975,283.04928 z "
       id="path67" />
    <path
       style="fill:url(#radialGradient3642)"
       d="M 219.99762,279.39848 C 252.28058,279.39848 278.47092,253.09911 278.47092,220.83164 C 278.47092,188.76899 252.28058,162.45863 219.99762,162.45863 C 187.94909,162.45863 161.53657,188.76899 161.53657,220.83164 C 161.53657,253.09911 187.94909,279.39848 219.99762,279.39848 z "
       id="path74" />
    <path
       style="fill:none"
       d="M 169.08696,199.40791 C 169.08209,199.13015 169.06124,198.85613 169.06124,198.57836 C 169.06124,197.70485 169.11994,196.83733 169.20324,195.98454 C 167.64568,198.12574 166.42096,202.08978 166.57395,203.09918 L 166.97524,205.79691 C 165.77125,206.7611 165.1534,209.28635 166.37325,209.6473 C 168.45687,210.25541 170.50003,210.95395 172.4344,211.66722 C 170.59919,208.23049 169.45765,204.54172 169.15054,200.69745 C 168.70766,200.21299 168.38593,199.83131 168.38593,199.83131 L 169.08696,199.40791 z "
       id="path85" />
    <path
       style="fill:#ffffff;fill-opacity:0.13636397"
       d="M 219.9975,265.87386 C 191.68395,265.87386 168.12965,249.74093 165.97496,224.50517 C 165.86343,225.74587 165.79036,226.9987 165.79036,228.25401 C 165.79036,255.24905 190.28038,277.25228 219.99625,277.25228 C 249.92744,277.25228 274.20576,255.24905 274.20576,228.25401 C 274.20576,226.99745 274.14081,225.74587 274.03215,224.50517 C 271.8902,249.74093 248.52249,265.87386 219.9975,265.87386 z "
       id="path89" />
    <path
       style="opacity:0.7171717;fill:url(#linearGradient3636)"
       d="M 216.58774,162.82832 C 216.19257,162.85205 215.8099,162.9145 215.41673,162.94572 C 212.0056,167.3695 209.16087,175.35653 207.25959,186.05128 C 200.78891,185.07585 195.22372,183.40226 191.02325,181.25032 C 195.49162,173.55804 201.22629,167.72795 207.57183,163.88243 C 205.9171,164.24713 204.3719,164.86411 202.77112,165.36618 C 197.76958,169.13551 193.29384,174.26744 189.65715,180.62584 C 187.20996,179.21203 185.45532,177.57591 184.31015,175.82613 C 185.90756,174.23997 187.60301,172.80742 189.34492,171.41609 C 185.55061,173.78285 181.9625,176.43062 178.80703,179.57298 C 178.702,179.67664 178.63793,179.81902 178.53376,179.92393 C 177.47603,180.99303 176.6195,182.25073 175.64557,183.39726 C 173.54521,186.39724 171.64943,189.5908 170.06439,192.99893 C 169.84633,192.69606 169.71181,192.37084 169.51785,192.06222 C 169.38971,192.28428 169.25295,192.50173 169.12768,192.72566 C 169.31902,193.07787 169.45366,193.43257 169.67397,193.77952 C 166.98124,199.77998 165.23908,206.2629 164.44412,213.13823 C 163.68876,212.38524 163.12723,211.58704 162.5707,210.79646 C 162.50288,211.17888 162.51375,211.58242 162.45355,211.96722 C 163.00845,212.81014 163.54838,213.65917 164.32697,214.46512 C 164.12427,216.58546 163.74146,218.65122 163.74146,220.82701 C 163.74146,224.37753 164.15374,227.81851 164.67817,231.2089 C 163.72048,230.56857 163.15108,229.85717 162.37549,229.17936 C 162.44655,229.66807 162.44843,230.17777 162.53161,230.66249 C 163.32319,231.36565 163.86236,232.1019 164.83429,232.77009 C 165.70968,237.67883 167.18719,242.31643 169.0495,246.74271 C 168.24405,246.14396 167.56849,245.49763 166.86384,244.86928 C 167.35605,245.95012 167.98751,246.94678 168.54217,247.99166 C 169.15591,248.46388 169.70045,248.94398 170.37663,249.39672 C 171.80693,252.40069 173.3811,255.25205 175.21631,257.94428 C 179.08493,262.61198 183.53468,266.75549 188.64251,270.04335 C 186.52791,268.31967 184.51586,266.47847 182.63182,264.46217 C 186.46359,266.32285 190.61922,267.9325 195.1604,269.18482 C 197.44897,271.95437 199.91802,274.37458 202.53707,276.40524 C 204.02094,276.8781 205.45549,277.45649 206.98632,277.81031 C 203.67761,275.72469 200.51889,273.11926 197.6583,269.88723 C 202.03149,270.94746 206.69657,271.62165 211.51376,272.03392 C 212.6267,274.89776 213.89538,277.15699 215.22164,278.90314 C 215.61431,278.93587 215.99786,278.99544 216.39253,279.02029 C 215.11898,277.22955 213.93248,274.96795 212.87986,272.11198 C 215.21003,272.27872 217.5011,272.54125 219.9052,272.54125 C 224.52469,272.54125 228.96932,272.13272 233.29244,271.5266 C 231.9653,274.37545 230.47718,276.62681 228.92111,278.47375 C 229.40658,278.39844 229.92265,278.44403 230.40412,278.35673 C 232.04948,276.50291 233.59231,274.1429 235.00974,271.21436 C 240.00316,270.41591 244.71183,269.24677 249.09938,267.74066 C 246.61048,270.71965 243.82445,273.14811 240.94225,275.31241 C 242.98653,274.52096 244.90953,273.5489 246.83566,272.54125 C 248.70634,270.76312 250.51994,268.87021 252.18279,266.72589 C 255.58817,265.39189 258.60064,263.75114 261.47172,262.04233 C 262.93636,260.56457 264.15097,258.86775 265.45312,257.24162 C 262.25169,259.55492 258.71704,261.67214 254.64159,263.4474 C 256.52576,260.61728 258.22595,257.56672 259.71545,254.27537 C 264.7025,252.29016 268.72911,249.86395 271.93142,247.21106 C 272.37355,246.34267 272.89811,245.52773 273.29777,244.6351 C 270.13543,247.59262 265.75911,250.23002 260.41798,252.40194 C 262.38483,247.71251 263.89581,242.67101 264.9448,237.29753 C 270.68497,235.0162 274.94513,232.29686 277.63037,229.33548 C 277.70531,228.82191 277.72405,228.29198 277.78649,227.77429 C 275.18868,230.66299 270.99221,233.2603 265.33572,235.42411 C 266.14129,230.72219 266.70207,225.87252 266.70207,220.82701 C 266.70207,220.70662 266.66335,220.59608 266.66335,220.47581 C 271.87772,218.00626 275.60583,215.12356 277.59166,212.00631 C 277.53545,211.64686 277.53545,211.27081 277.47426,210.91348 C 275.4597,213.93207 271.73534,216.65902 266.58467,218.95359 C 266.4348,212.05789 265.44813,205.49055 263.8135,199.32161 C 267.03429,197.07338 269.30613,194.56362 270.44892,191.9061 C 270.33152,191.70527 270.25533,191.48171 270.13668,191.28188 C 268.8665,193.70821 266.60715,195.95257 263.54036,197.95564 C 261.59799,191.10702 258.74177,184.93846 255.30516,179.53426 C 256.33567,178.62253 257.09228,177.63711 257.72487,176.64544 C 257.57026,176.51305 257.41264,176.38566 257.25652,176.25452 C 256.58871,177.13378 255.87131,177.99556 254.87577,178.79239 C 252.47717,175.13297 249.69513,172.04182 246.7576,169.26915 C 244.94938,168.32744 243.167,167.367 241.25448,166.61513 C 245.79679,170.05224 249.92993,174.46977 253.39265,179.8465 C 250.08293,182.02966 245.49342,183.78818 240.00554,185.03713 C 237.55622,175.24287 234.09688,167.87407 230.13097,163.49276 C 229.64725,163.40658 229.13556,163.40908 228.64784,163.33664 C 232.57904,167.82786 235.9191,175.37276 238.21005,185.4268 C 233.02216,186.46343 227.23928,187.06667 221.037,187.06667 C 216.72887,187.06667 212.72537,186.67825 208.85975,186.16868 C 210.59129,175.39649 213.26754,167.32703 216.58774,162.82832 z M 183.88077,176.2158 C 184.91327,178.11171 186.71088,179.90395 189.1888,181.48512 C 185.98,187.30148 183.45288,193.93639 181.81226,201.23413 C 177.28482,199.32086 173.75266,197.078 171.35231,194.52103 C 174.49416,187.63619 178.72211,181.43391 183.88077,176.2158 z M 253.861,180.62584 C 257.25777,186.07126 260.01008,192.2618 261.90111,199.08756 C 257.14199,201.78379 250.69591,203.88077 243.32299,205.37127 C 242.69927,198.55438 241.74095,192.11193 240.39571,186.40348 C 245.98388,184.98468 250.594,183.01134 253.861,180.62584 z M 190.47684,182.18703 C 194.68817,184.57752 200.37364,186.45469 207.02541,187.57375 C 206.05111,193.41258 205.33047,199.88176 204.91781,206.81531 C 196.58545,205.8666 189.06253,204.16891 183.06121,201.81951 C 184.71781,194.59309 187.23544,187.9884 190.47684,182.18703 z M 238.56138,186.83187 C 239.7836,192.54706 240.62876,198.99326 241.1763,205.80066 C 234.58522,206.98042 227.34382,207.71305 219.63193,207.71305 C 215.26486,207.71305 211.0795,207.43866 207.02541,207.04961 C 207.38474,200.24009 207.76529,193.51887 208.62569,187.76858 C 212.5394,188.34435 216.66892,188.74401 221.037,188.74401 C 227.37854,188.74401 233.28419,188.01088 238.56138,186.83187 z M 170.88395,195.37968 C 173.22848,198.16346 176.81871,200.69283 181.50002,202.83441 C 180.32451,208.57395 179.50944,214.53256 179.50944,220.82701 C 179.50944,220.98738 179.54779,221.13525 179.54854,221.29537 C 173.89991,219.47615 169.23122,217.29636 166.00531,214.77736 C 166.66613,207.93436 168.24854,201.39849 170.88395,195.37968 z M 262.21335,200.49263 C 263.76754,206.52905 264.7687,212.90968 264.86736,219.61703 C 259.13331,221.94407 252.08013,223.81912 243.9085,225.04222 C 243.94247,223.62454 244.06462,222.26868 244.06462,220.82701 C 244.06462,216.19629 243.86079,211.71193 243.51808,207.36185 C 250.95882,205.70387 257.46147,203.38981 262.21335,200.49263 z M 182.71,203.45888 C 188.74854,206.02784 196.35527,207.89415 204.80066,208.962 C 204.60945,212.80939 204.48842,216.7693 204.48842,220.82701 C 204.48842,222.58878 204.56923,224.25351 204.60558,225.97893 C 195.63525,225.16511 187.54656,223.70247 180.79748,221.64657 C 180.79486,221.36731 180.75839,221.10715 180.75839,220.82701 C 180.75839,214.76187 181.5556,209.01071 182.71,203.45888 z M 241.37151,207.86917 C 241.6584,212.06351 241.83987,216.37339 241.83987,220.82701 C 241.83987,222.37696 241.71909,223.83261 241.68375,225.35445 C 234.97664,226.2462 227.68291,226.75952 220.06132,226.75952 C 215.4196,226.75952 210.97222,226.5502 206.63512,226.21311 C 206.59815,224.34918 206.40094,222.73428 206.40094,220.82701 C 206.40094,216.72771 206.73741,213.11813 206.90839,209.23527 C 210.99407,209.67203 215.22939,209.97677 219.63193,209.97677 C 227.42362,209.97677 234.72286,209.18481 241.37151,207.86917 z M 165.88816,216.0654 C 169.14816,218.74602 173.87381,221.10565 179.66556,223.09073 C 179.79208,228.26201 180.38546,233.22133 181.30493,238.00006 C 175.39053,236.45137 170.39924,234.54709 166.5516,232.34083 C 165.8703,228.6011 165.4198,224.76845 165.4198,220.82701 C 165.4198,219.19701 165.76651,217.6648 165.88816,216.0654 z M 264.90608,221.2564 C 264.87985,226.44116 264.25038,231.3925 263.34515,236.2047 C 257.54415,238.20701 250.64096,239.82852 242.81567,240.88826 C 243.3436,236.50232 243.65859,231.91181 243.83032,227.14982 C 252.04665,225.80982 259.14443,223.73994 264.90608,221.2564 z M 180.9536,223.48103 C 187.69268,225.66532 195.75889,227.31418 204.68363,228.20356 C 204.82701,232.93907 205.06157,237.51322 205.46423,241.86406 C 197.07816,241.23634 189.43122,240.0316 182.74897,238.39036 C 181.75368,233.61288 181.11135,228.65955 180.9536,223.48103 z M 241.64466,227.46206 C 241.48379,232.18621 241.15082,236.7345 240.66898,241.08347 C 234.00334,241.89266 226.86872,242.41035 219.35879,242.41035 C 215.239,242.41035 211.23237,242.26897 207.33765,242.02018 C 206.98183,237.74803 206.88341,233.0877 206.75227,228.43786 C 211.05715,228.80443 215.45919,229.02324 220.06132,229.02324 C 227.68041,229.02324 234.93518,228.43998 241.64466,227.46206 z M 166.94202,234.13606 C 170.82513,236.39092 175.82829,238.32704 181.6951,239.95155 C 182.84114,245.24572 184.30965,250.29209 186.30073,254.86087 C 180.88079,253.26934 176.10368,251.30312 172.21096,249.00643 C 169.90877,244.32799 168.06033,239.40588 166.94202,234.13606 z M 262.91588,238.15618 C 261.77422,243.48819 260.22365,248.54606 258.15426,253.18254 C 252.74744,255.16961 246.56477,256.75703 239.73227,257.78816 C 240.91215,253.2606 241.90082,248.34811 242.62046,242.99586 C 250.27315,241.87043 257.17384,240.21632 262.91588,238.15618 z M 183.17836,240.38081 C 189.81477,242.10373 197.38628,243.37654 205.65944,244.04972 C 206.21547,249.41708 207.00768,254.25726 207.92303,258.76384 C 200.75169,258.15123 194.10504,256.98084 188.13506,255.3682 C 186.00335,250.7918 184.42481,245.70545 183.17836,240.38081 z M 240.4348,243.23004 C 239.76898,248.5934 238.88685,253.49702 237.78078,258.02221 C 232.10394,258.7852 226.16993,259.31026 219.9052,259.31026 C 216.34357,259.31026 212.87399,259.09244 209.48422,258.8419 C 208.65055,254.36404 207.95126,249.54135 207.45468,244.20584 C 211.31118,244.47561 215.28384,244.6742 219.35879,244.6742 C 226.78878,244.6742 233.82474,244.10105 240.4348,243.23004 z M 173.30379,251.11403 C 177.26758,253.33254 181.87345,255.28115 187.27641,256.81236 C 188.90341,260.24684 190.73762,263.3902 192.77953,266.25753 C 188.09647,264.81837 183.70491,263.08221 179.86077,260.98847 C 177.38286,257.93092 175.20419,254.63969 173.30379,251.11403 z M 257.41264,255.09505 C 255.71607,258.61934 253.71275,261.84125 251.55831,264.8135 C 246.80419,266.61498 241.52925,267.89353 235.98542,268.83349 C 237.17792,266.04734 238.26025,262.9447 239.22494,259.50547 C 245.94241,258.50568 252.04053,257.02256 257.41264,255.09505 z M 189.1888,257.28071 C 195.00903,258.79956 201.40464,259.94047 208.31346,260.52011 C 209.06632,263.95098 209.86752,267.06436 210.81135,269.8093 C 205.36094,269.30922 200.2089,268.3539 195.35561,267.03813 C 193.08714,264.09111 191.00115,260.8647 189.1888,257.28071 z M 237.31243,259.77861 C 236.40294,263.22521 235.36969,266.36644 234.22915,269.14573 C 229.61453,269.83552 224.8694,270.31662 219.9052,270.31662 C 217.2643,270.31662 214.72743,270.08581 212.17733,269.88723 C 211.29395,267.15141 210.48663,264.02079 209.79646,260.5983 C 213.09543,260.83884 216.44586,261.02756 219.9052,261.02756 C 225.99857,261.02756 231.76834,260.51337 237.31243,259.77861 z "
       id="path1388" />
    <path
       style="fill:url(#radialGradient3633);fill-rule:evenodd;stroke-width:0.3125"
       d="M 213.93123,194.48143 C 211.68949,195.97593 201.97516,200.99907 201.97516,205.19205 C 201.97516,209.51129 206.37571,212.53999 209.44775,214.40817 C 212.51979,216.27622 219.70162,211.95885 222.4001,215.65362 C 225.09846,219.34826 224.30974,231.5119 225.63813,236.57664 C 226.96663,241.64137 228.1705,244.79647 230.37077,246.04192 C 232.57104,247.28725 236.5979,245.91728 238.83964,244.04922 C 241.08138,242.18104 241.82863,236.90873 243.82132,234.8331 C 245.81402,232.75735 249.50879,233.08945 250.79571,231.59495 C 252.08262,230.10046 249.84088,228.39839 251.54295,225.86602 C 253.24502,223.33365 259.63814,218.31051 261.00811,216.40086 C 262.37808,214.49122 260.88359,214.61574 259.76279,214.40817 C 258.64185,214.20059 256.89832,217.77084 254.2829,215.15541 C 251.66747,212.53999 245.48193,201.28971 244.07037,198.71587 C 242.65893,196.14191 245.56498,199.83668 245.81402,199.71216 C 246.06306,199.58764 243.73827,195.60224 245.56498,197.96862 C 247.39157,200.33488 253.99227,211.66822 256.77368,213.90996 C 259.55521,216.1517 261.79695,212.41547 262.25356,211.41918 C 262.71018,210.42277 260.38551,208.67924 259.51362,207.93199 C 258.64185,207.18474 257.56251,207.97346 257.02284,206.93558 C 256.48317,205.8977 255.23772,200.83309 256.27559,201.70486 C 257.31347,202.57662 261.88,210.3813 263.24998,212.16643 C 264.62007,213.95155 264.32907,212.78915 264.49518,212.41547 C 264.66129,212.04178 263.95563,210.25678 264.24664,209.92456 C 264.53639,209.59247 266.11382,209.17732 266.23871,210.42277 C 266.36361,211.66822 264.8274,216.02718 264.99351,217.39715 C 265.15962,218.76712 265.86527,219.26533 267.23537,218.6426 C 268.60547,218.01988 272.09253,213.61933 273.21284,213.66092 C 274.3344,213.70238 274.25072,217.64619 273.96096,218.89164 C 273.66996,220.13709 271.92642,220.05404 271.46931,221.13338 C 271.01344,222.21285 271.55299,224.86974 271.22077,225.36782 C 270.88855,225.86602 269.85067,224.86974 269.47724,224.12249 C 269.1038,223.37512 269.43602,221.34096 268.9789,220.88434 C 268.52179,220.42773 267.06926,220.55225 266.73704,221.38255 C 266.40482,222.21285 265.99017,225.07731 266.98558,225.86602 C 267.98224,226.65474 271.42809,226.48875 272.71451,226.11506 C 274.00218,225.7415 274.12707,225.20183 274.70783,223.62429 C 275.28859,222.04674 275.56586,217.03558 276.20283,216.6499 C 276.88725,216.23475 278.01755,219.04926 278.88057,224.18469 C 279.17033,201.01981 270.058,185.99133 261.13276,178.29031 C 252.21601,170.59803 240.62476,166.36035 236.0997,164.46694 C 231.57463,162.57229 235.60162,166.83245 233.60892,167.17591 C 233.11071,167.26084 232.01838,165.12014 231.19008,165.04396 C 230.36165,164.96652 232.28816,167.95026 231.35157,167.82162 C 229.47827,167.56434 225.11931,166.31913 224.14363,166.52146 C 222.19253,166.92612 221.71505,168.47232 221.9019,169.60387 C 221.99532,170.16964 225.90802,167.77666 226.82912,168.45733 C 227.75022,169.13926 225.67972,172.8961 225.26457,173.3095 C 224.43426,174.13381 218.14493,173.68294 216.92021,174.5547 C 215.69562,175.42647 218.04114,177.66833 217.91662,178.5401 C 217.79198,179.41187 215.88234,178.70621 216.17297,179.7853 C 216.4636,180.86439 219.66016,183.7707 219.66016,185.0159 C 219.66016,186.2611 217.08632,186.46968 216.17297,187.25776 C 215.25961,188.0471 213.76512,188.75275 214.18027,189.74817 C 214.59542,190.74483 217.2939,193.27745 218.66387,193.23598 C 220.03372,193.19439 221.11318,190.12285 222.4001,189.49963 C 223.68702,188.8764 225.18151,189.08498 226.38537,189.49963 C 227.58936,189.91428 229.0008,191.28437 229.62352,191.99053 C 230.24625,192.69631 229.70658,193.60954 230.12173,193.73419 C 230.53688,193.85871 232.52945,193.6926 232.11443,192.73778 C 231.69928,191.78271 227.42325,188.21321 227.63082,188.00463 C 227.8384,187.79731 231.8238,190.6624 233.35975,191.49295 C 234.89584,192.32263 235.85066,192.98694 236.84694,192.98694 C 237.84336,192.98694 238.67353,191.78271 239.33785,191.49295 C 240.00204,191.20194 240.62476,191.65781 240.83234,191.24316 C 241.03992,190.82851 240.25108,189.45841 240.5833,189.0013 C 240.9154,188.54543 242.24378,188.75275 242.82504,188.50297 C 243.40617,188.25442 243.57228,187.29898 244.07037,187.50755 C 244.56857,187.71488 246.27064,189.04251 245.81402,189.74817 C 245.35741,190.45507 241.53812,191.28437 241.33055,191.74149 C 241.12297,192.19811 244.31953,191.99053 244.56857,192.48874 C 244.81774,192.98694 243.86291,194.39838 242.82504,194.73047 C 241.78716,195.06257 239.00575,194.31532 238.34144,194.48143 C 237.67725,194.64742 239.50383,195.3532 238.83964,195.72676 C 238.17545,196.10045 235.68455,196.68158 234.35616,196.72317 C 233.02766,196.76464 231.69928,196.39108 230.86897,195.97593 C 230.03867,195.56078 231.61622,194.31532 229.37448,194.23227 C 227.13274,194.14934 219.99225,195.43626 217.41842,195.47772 C 214.84446,195.51919 216.17297,192.98694 213.93123,194.48143 z M 217.16925,172.81117 L 220.4074,172.56138 L 219.28647,170.94274 L 219.9092,166.08558 L 217.79198,169.07431 C 217.79198,169.07431 216.54665,167.82911 216.42201,168.32744 C 216.29749,168.82577 215.79941,171.31618 215.79941,171.31618 L 217.16925,170.32077 L 217.16925,172.81117 z M 209.57227,170.6942 C 211.66863,169.90487 219.12049,164.34205 220.15836,163.22174 C 221.19611,162.10018 216.81642,164.00983 215.79941,163.96861 C 214.78226,163.9274 215.42572,162.30751 214.05575,162.97195 C 212.68578,163.63639 208.32682,166.66634 207.57957,167.95401 C 206.83233,169.24042 207.47578,171.48229 209.57227,170.6942 z M 224.01911,163.47028 L 226.01181,164.96527 L 227.5063,164.21715 L 224.01911,163.47028 z M 208.94954,174.05637 C 209.57227,175.84112 203.34514,177.95934 203.46966,178.29031 C 203.59418,178.62253 204.75657,180.07631 204.2169,180.28363 C 203.67723,180.49096 201.06181,179.99263 200.23151,179.53676 C 199.40133,179.07964 199.73343,177.08757 199.23522,177.54344 C 198.73701,178.00055 198.44651,181.4464 197.24252,182.27571 C 196.03866,183.10626 195.20836,181.1554 192.0118,182.5255 C 188.81524,183.89559 181.63328,187.67366 178.06304,190.49629 C 174.49279,193.31904 171.37929,197.71946 170.59057,199.46312 C 169.80174,201.20665 173.16441,200.50087 173.33039,200.95761 C 173.4965,201.41423 172.41716,202.36905 171.58686,202.20306 C 170.75656,202.03695 168.47336,200.83309 168.34871,199.9612 C 168.22419,199.08943 170.50752,197.92703 170.83961,196.97221 C 171.17171,196.01739 171.04719,193.48502 170.34141,194.23227 C 169.63575,194.97952 167.43548,199.04797 166.60518,201.45569 C 165.77488,203.86354 162.32928,206.14687 165.35973,208.67924 C 168.3903,211.21161 181.50876,214.6988 184.78838,216.6499 C 188.06799,218.60101 183.70891,218.60101 185.03742,220.38614 C 186.36592,222.17126 192.71758,225.40941 192.75904,227.36052 C 192.80051,229.31175 186.5735,230.26657 185.28646,232.09316 C 183.99954,233.91975 185.82613,237.19936 185.03742,238.32029 C 184.24871,239.4411 182.54651,236.82568 180.55394,238.81837 C 178.56124,240.81107 173.4965,246.83063 173.08135,250.27636 C 172.6662,253.72196 177.73094,257.79028 178.06304,259.49248 C 178.39513,261.19454 177.28107,261.99225 173.66499,258.02296 C 170.13758,254.15085 164.49683,243.81542 162.00592,236.25978 C 159.51514,228.70426 159.237,219.93839 159.77667,216.03605 C 162.95837,213.71887 164.15586,211.08696 164.36344,209.67552 C 164.57101,208.26409 162.97174,209.4075 161.37445,206.68654 C 162.24622,199.71216 171.42075,183.89559 181.55023,176.79657 C 191.7981,169.61511 195.87255,168.0789 198.23893,167.08224 C 200.60519,166.08558 195.33288,170.23709 195.74803,170.81785 C 196.16318,171.39986 198.94459,171.48229 200.72971,170.56931 C 202.51483,169.65632 206.08508,165.0477 206.45864,165.33871 C 206.83233,165.62971 202.5563,170.86031 202.97145,172.31284 C 203.3866,173.76537 208.32682,172.27162 208.94954,174.05637 z M 248.78327,234.68061 C 248.98885,233.97607 247.22758,236.61798 246.4937,236.97018 C 245.75982,237.32251 244.84983,236.26577 244.3801,236.79408 C 243.91037,237.32251 244.23335,239.08378 243.67557,240.14051 C 243.11779,241.19737 240.76939,242.95864 241.03367,243.13474 C 241.29782,243.31084 243.96908,242.60644 245.26074,241.19737 C 246.5524,239.78831 248.57782,235.38501 248.78327,234.68061 z M 254.94784,251.06057 C 255.27082,250.53214 255.35887,249.41671 255.65237,248.06634 C 255.94587,246.7161 257.09078,243.13474 256.7091,242.95864 C 256.32755,242.78254 253.86175,245.62989 253.36267,247.00961 C 252.86372,248.38932 253.45072,250.56149 253.715,251.23667 C 253.97915,251.91186 254.62498,251.589 254.94784,251.06057 z M 261.99303,245.60054 C 261.20045,244.04473 261.84628,237.05836 262.34524,234.85671 C 262.84432,232.65506 264.13598,232.42026 264.98726,232.39091 C 265.83905,232.36156 266.66086,234.68061 267.45269,234.68061 C 268.24577,234.68061 268.77408,232.15598 269.74326,232.39091 C 270.7112,232.62571 272.09129,235.73734 273.2653,236.08955 C 274.43931,236.44187 276.20033,234.76866 276.78733,234.50438 C 277.37559,234.24023 271.85648,248.94698 270.62377,249.1232 C 269.39106,249.2993 267.71747,250.35604 267.62879,249.47541 C 267.54136,248.59477 268.03969,244.83731 267.10049,244.19148 C 266.16128,243.54577 262.78562,247.15636 261.99303,245.60054 z M 265.51557,226.75478 C 265.33947,227.25373 262.25719,230.04251 261.81693,230.10121 C 261.37655,230.15991 262.25719,227.66476 262.87367,227.10698 C 263.49015,226.5492 265.69167,226.2557 265.51557,226.75478 z M 194.35932,275.19027 C 205.83716,281.64833 228.49909,283.4096 238.39164,278.71293 C 231.72813,278.0671 231.46397,275.86545 229.40908,275.5426 C 227.35431,275.21962 227.11938,276.92218 226.06264,276.77543 C 225.00591,276.62868 224.71228,274.80871 223.06841,274.66196 C 221.42455,274.51509 218.19551,277.33321 215.84712,276.95154 C 213.49872,276.56998 210.62201,272.92992 208.97815,272.37226 C 207.33428,271.81448 206.7765,272.51902 206.33612,272.54837 C 205.89586,272.57772 205.27938,276.24713 204.22265,275.8948 C 203.16591,275.5426 200.46518,272.01994 200.69999,271.66773 C 200.93491,271.3154 202.54943,269.55414 202.10905,269.55414 C 201.6688,269.55414 198.99742,271.96123 197.70588,272.90057 C 196.41422,273.8399 190.80744,273.3116 194.35932,275.19027 z "
       id="path2168" />
    <path
       style="fill:#000000"
       id="path3892"
       d="" />
    <path
       style="fill:url(#radialGradient4974);fill-opacity:1;stroke-width:0.505198;stroke-linecap:round;stroke-linejoin:round"
       d="M 227.22276,183.013 C 227.22276,184.02181 226.56401,184.84055 225.75235,184.84055 C 224.94069,184.84055 224.28194,184.02181 224.28194,183.013 C 224.28194,182.00419 224.94069,181.18545 225.75235,181.18545 C 226.56401,181.18545 227.22276,182.00419 227.22276,183.013 z "
       id="path2134" />
    <g
       id="g3291"
       transform="translate(126.77414,110.10663)">
      <g
         id="g3337"
         transform="translate(143.94674,122.22846)">
        <text
           id="text3329"
           y="-10.223977"
           x="-95.804153"
           style="font-size:50.92729187px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
           xml:space="preserve"><tspan
             y="-10.223977"
             x="-95.804153"
             id="tspan3331"
             sodipodi:role="line">svn</tspan></text>
        <text
           id="text3333"
           y="-6.6794896"
           x="-89.462029"
           style="font-size:50.92729187px;font-style:normal;font-weight:bold;fill:#000000;fill-opacity:0.29411765;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier New"
           xml:space="preserve"><tspan
             y="-6.6794896"
             x="-89.462029"
             id="tspan3335"
             sodipodi:role="line">svn</tspan></text>
      </g>
    </g>
  </g>
</svg>
Added extern/TortoiseSVNResources/svnfolder.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/switch.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/tools/convert.exe.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/tortoisemerge_logoflipped.bmp.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/tortoisesvn_logoflipped.bmp.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/tsvnmenufile.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/tsvnmenufolder.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/tsvnmenulink.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/tsvnmenumultiple.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/ttf_glyph.bmp.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/up.ico.

cannot compute difference between binary files

Added extern/TortoiseSVNResources/warning-general.ico.

cannot compute difference between binary files

Changes to misc/WorkingDLLs/amd64/TortoiseFossilShell.dll.

cannot compute difference between binary files

Changes to src/TortoiseFossilIndexer/main.cpp.
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#define UNICODE
#define _UNICODE
#define WIN32_LEAN_AND_MEAN
#include <windows.h>

// using namespace std;

#define MAX_TORTOISEFOSSIL_DATA 1024
#define MAX_DIR_LEVELS 100

#define DIR_TIMEOUT 10
#define FOSSIL_FOUND_TIMEOUT 10
#define FOSSIL_CHECK_TIMEOUT 20

std::map<std::wstring, std::string> fossiloutcachels;







|







11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#define UNICODE
#define _UNICODE
#define WIN32_LEAN_AND_MEAN
#include <windows.h>

// using namespace std;

#define MAX_TORTOISEFOSSIL_DATA 10485760
#define MAX_DIR_LEVELS 100

#define DIR_TIMEOUT 10
#define FOSSIL_FOUND_TIMEOUT 10
#define FOSSIL_CHECK_TIMEOUT 20

std::map<std::wstring, std::string> fossiloutcachels;
424
425
426
427
428
429
430


431
432
433
434
435

436
437
438
439
440

441
442
443
444
445

446
447
448
449
450
451

452
453

454
455
456
457
458

459
460
461

462

463
464
465
466
467
468
469
470
		0,
		0
		);

    stay_on = true;
    table_idx_cur = 0;
    while (stay_on) {


        if (FALSE == ConnectNamedPipe(hPingPipe, NULL))
        {
            DisconnectNamedPipe(hPingPipe);
            continue;
        }


        wchar_t msgBuffer[MAX_PATH];
        DWORD msgBufferLen;
        BOOL res;


        res = ReadFile(hPingPipe,
            msgBuffer, sizeof(msgBuffer),
            &msgBufferLen, NULL);



        if ((0 == msgBufferLen) || (!res))
        {
            DisconnectNamedPipe(hPingPipe);
            continue;
        }


        msgBuffer[msgBufferLen] = 0;


        fossilneedupdate.clear();
        if (ping_folder(msgBuffer)) {
            go_over_fossils ();
        }


        res = WriteFile(hPingPipe,
            (const char *)msgBuffer, msgBufferLen,
            &msgBufferLen, NULL);

        DisconnectNamedPipe(hPingPipe);

    }

	UnmapViewOfFile(sharedmem);
	CloseHandle(hPingPipe);
    CloseHandle(hShrMemFileMap);

    return 0;
}







>
>





>





>





>






>


>





>



>

>








424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
		0,
		0
		);

    stay_on = true;
    table_idx_cur = 0;
    while (stay_on) {
        // Process returned 255
printf("A");
        if (FALSE == ConnectNamedPipe(hPingPipe, NULL))
        {
            DisconnectNamedPipe(hPingPipe);
            continue;
        }
printf("B");

        wchar_t msgBuffer[MAX_PATH];
        DWORD msgBufferLen;
        BOOL res;

printf("C");
        res = ReadFile(hPingPipe,
            msgBuffer, sizeof(msgBuffer),
            &msgBufferLen, NULL);


printf("D");
        if ((0 == msgBufferLen) || (!res))
        {
            DisconnectNamedPipe(hPingPipe);
            continue;
        }

printf("E");
        msgBuffer[msgBufferLen] = 0;

printf("F");
        fossilneedupdate.clear();
        if (ping_folder(msgBuffer)) {
            go_over_fossils ();
        }

printf("G");
        res = WriteFile(hPingPipe,
            (const char *)msgBuffer, msgBufferLen,
            &msgBufferLen, NULL);
printf("H");
        DisconnectNamedPipe(hPingPipe);
printf("I\n");
    }

	UnmapViewOfFile(sharedmem);
	CloseHandle(hPingPipe);
    CloseHandle(hShrMemFileMap);

    return 0;
}
Changes to src/TortoiseFossilShell/TortoiseFossilData.h.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef __TORTOISEFOSSILDATA_H_
#define __TORTOISEFOSSILDATA_H_

#include <vector>

#include <stdio.h>
#include <string.h>

#define MAX_TORTOISEFOSSIL_DATA 1024
// 65535 = (sizeof (unsigned short) - 1)
#define MAX_ROOTPIECES 1000
#define MAX_PATHPIECES 65535

class pathtree {
public:
    wchar_t * name;









|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef __TORTOISEFOSSILDATA_H_
#define __TORTOISEFOSSILDATA_H_

#include <vector>

#include <stdio.h>
#include <string.h>

#define MAX_TORTOISEFOSSIL_DATA 10485760
// 65535 = (sizeof (unsigned short) - 1)
#define MAX_ROOTPIECES 1000
#define MAX_PATHPIECES 65535

class pathtree {
public:
    wchar_t * name;
Changes to src/TortoiseFossilShell/TortoiseFossilShell.aps.

cannot compute difference between binary files

Changes to src/TortoiseFossilShell/TortoiseFossilShell.cpp.
36
37
38
39
40
41
42
43














44
45
46
47


























48
49
50
51
52

















53
54
55
56
57
58
59
OBJECT_ENTRY(CLSID_TortoiseFossilOvlIgnored, CTortoiseFossilOvlIgnored)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlUnversioned, CTortoiseFossilOvlUnversioned)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlConflict, CTortoiseFossilOvlConflict)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlReadOnly, CTortoiseFossilOvlReadOnly)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlLocked, CTortoiseFossilOvlLocked)
END_OBJECT_MAP()

HBITMAP icon_submenu_tortoisefossil;















/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point



























extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
{
	hInst = hInstance;
	icon_submenu_tortoisefossil = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_TEST));

















    if (dwReason == DLL_PROCESS_ATTACH)
    {
        _Module.Init(ObjectMap, hInstance, &LIBID_TORTOISEFOSSILSHELLLib);
        DisableThreadLibraryCalls(hInstance);
		tortoisefossil_sharedmemory_init();
    }
    else if (dwReason == DLL_PROCESS_DETACH) {







|
>
>
>
>
>
>
>
>
>
>
>
>
>
>




>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>




|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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
108
109
110
111
112
113
114
115
116
OBJECT_ENTRY(CLSID_TortoiseFossilOvlIgnored, CTortoiseFossilOvlIgnored)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlUnversioned, CTortoiseFossilOvlUnversioned)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlConflict, CTortoiseFossilOvlConflict)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlReadOnly, CTortoiseFossilOvlReadOnly)
OBJECT_ENTRY(CLSID_TortoiseFossilOvlLocked, CTortoiseFossilOvlLocked)
END_OBJECT_MAP()

HBITMAP submenu_icon_tortoisefossil;
HBITMAP submenu_icon_tortoisefossil_update;
HBITMAP submenu_icon_tortoisefossil_commit;
HBITMAP submenu_icon_tortoisefossil_add;
HBITMAP submenu_icon_tortoisefossil_annotate;
HBITMAP submenu_icon_tortoisefossil_diff;
HBITMAP submenu_icon_tortoisefossil_newrepo;
HBITMAP submenu_icon_tortoisefossil_delete;
HBITMAP submenu_icon_tortoisefossil_ignore;
HBITMAP submenu_icon_tortoisefossil_rename;
HBITMAP submenu_icon_tortoisefossil_repobrowser;
HBITMAP submenu_icon_tortoisefossil_revert;
HBITMAP submenu_icon_tortoisefossil_settings;
HBITMAP submenu_icon_tortoisefossil_help;
HBITMAP submenu_icon_tortoisefossil_about;

/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point

HBITMAP GetBitmapFromIcon(int num, int xoff, int yoff, int xwid, int xhgt) {
	BITMAPINFO bminfo;
	HICON ico = LoadIcon(hInst, MAKEINTRESOURCE(num));
	HDC ctx = GetDC(NULL);
	HDC btmdc = CreateCompatibleDC(ctx);
	RECT rc;
	ZeroMemory(&bminfo, sizeof bminfo);
	bminfo.bmiHeader.biSize = sizeof bminfo.bmiHeader;
	bminfo.bmiHeader.biWidth = 13;
	bminfo.bmiHeader.biHeight = 13;
	bminfo.bmiHeader.biPlanes = 1;
	bminfo.bmiHeader.biBitCount = 24;
	LPVOID pvBits;
	HBITMAP res = CreateDIBSection(ctx, &bminfo, DIB_RGB_COLORS, &pvBits, NULL, 0);
	HGDIOBJ hold = SelectObject(btmdc,res);
	rc.left = 0;
	rc.right = 16;
	rc.top = 0;
	rc.bottom = 16;
	FillRect(btmdc, &rc, (HBRUSH)GetStockObject(WHITE_BRUSH));
	DrawIconEx(btmdc, xoff, yoff, ico, xwid, xhgt, 0, NULL, DI_NORMAL);
	SelectObject(btmdc,hold);
	DeleteDC(btmdc);
	return res;
}

extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
{
	hInst = hInstance;
	submenu_icon_tortoisefossil = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_TEST));

	submenu_icon_tortoisefossil_update = GetBitmapFromIcon(IDI_MENU_UPDATE, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_commit = GetBitmapFromIcon(IDI_MENU_COMMIT, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_add = GetBitmapFromIcon(IDI_MENU_ADD, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_annotate = GetBitmapFromIcon(IDI_MENU_ANNOTATE, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_diff = GetBitmapFromIcon(IDI_MENU_DIFF, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_newrepo = GetBitmapFromIcon(IDI_MENU_NEWREPO, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_delete = GetBitmapFromIcon(IDI_MENU_DELETE, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_ignore = GetBitmapFromIcon(IDI_MENU_IGNORE, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_rename = GetBitmapFromIcon(IDI_MENU_RENAME, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_repobrowser = GetBitmapFromIcon(IDI_MENU_REPOBROWSER, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_revert = GetBitmapFromIcon(IDI_MENU_REVERT, 0, 0, 12, 12);
	submenu_icon_tortoisefossil_settings = GetBitmapFromIcon(IDI_MENU_SETTINGS, 0, 0, 16, 16);
	submenu_icon_tortoisefossil_help = GetBitmapFromIcon(IDI_MENU_HELP, 0, 0, 16, 16);
	submenu_icon_tortoisefossil_about = GetBitmapFromIcon(IDI_MENU_ABOUT, 0, 0, 16, 16);


    if (dwReason == DLL_PROCESS_ATTACH)
    {
        _Module.Init(ObjectMap, hInstance, &LIBID_TORTOISEFOSSILSHELLLib);
        DisableThreadLibraryCalls(hInstance);
		tortoisefossil_sharedmemory_init();
    }
    else if (dwReason == DLL_PROCESS_DETACH) {
Changes to src/TortoiseFossilShell/TortoiseFossilShell.dsp.
447
448
449
450
451
452
453




























































454
455
456
457
458
459
460

# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
# Begin Source File

SOURCE=.\bitmap1.bmp
# End Source File
# Begin Source File





























































SOURCE=.\TortoiseFossilOvlAdded.rgs
# End Source File
# Begin Source File

SOURCE=.\TortoiseFossilOvlConflict.rgs
# End Source File







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520

# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
# Begin Source File

SOURCE=.\bitmap1.bmp
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menuabout.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menuadd.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menublame.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menucommit.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menucompare.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menucreaterepos.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menudelete.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menuhelp.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menuignore.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menurename.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menurepobrowse.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menurevert.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menusettings.ico
# End Source File
# Begin Source File

SOURCE=..\..\extern\TortoiseSVNResources\menuupdate.ico
# End Source File
# Begin Source File

SOURCE=.\menuupdate.ico
# End Source File
# Begin Source File

SOURCE=.\TortoiseFossilOvlAdded.rgs
# End Source File
# Begin Source File

SOURCE=.\TortoiseFossilOvlConflict.rgs
# End Source File
Changes to src/TortoiseFossilShell/TortoiseFossilShell.h.
1
2
3
4
5
6
7
8
9
10
11
12
/* this ALWAYS GENERATED file contains the definitions for the interfaces */


/* File created by MIDL compiler version 5.01.0164 */
/* at Tue Sep 25 06:50:15 2012
 */
/* Compiler settings for C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl:
    Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )





|







1
2
3
4
5
6
7
8
9
10
11
12
/* this ALWAYS GENERATED file contains the definitions for the interfaces */


/* File created by MIDL compiler version 5.01.0164 */
/* at Tue Sep 25 23:53:54 2012
 */
/* Compiler settings for C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl:
    Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )

Changes to src/TortoiseFossilShell/TortoiseFossilShell.ncb.

cannot compute difference between binary files

Changes to src/TortoiseFossilShell/TortoiseFossilShell.opt.

cannot compute difference between binary files

Changes to src/TortoiseFossilShell/TortoiseFossilShell.plg.
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
<html>
<body>
<pre>
<h1>Build Log</h1>
<h3>
--------------------Configuration: TortoiseFossilShell - Win32 64bit Unicode Release MinDependency--------------------
</h3>
<h3>Command Lines</h3>
Creating command line "midl.exe /tlb ".\TortoiseFossilShell.tlb" /h "TortoiseFossilShell.h" /iid "TortoiseFossilShell_i.c" /Oicf "C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl""
Creating command line "rc.exe /l 0x1009 /fo"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.res" /d "NDEBUG" "C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.rc"" 
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSP345B.tmp" with contents
[
/nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_STATIC_REGISTRY" /Fp"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.pch" /Yc"stdafx.h" /Fo"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /Fd"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /FD /c 
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\StdAfx.cpp"
]
Creating command line "cl.exe @C:\Users\EDWARD~1\AppData\Local\Temp\RSP345B.tmp" 
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSP345C.tmp" with contents
[
/nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_STATIC_REGISTRY" /Fo"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /Fd"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /FD /c 
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilData.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlAdded.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlConflict.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlDeleted.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlIgnored.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlLocked.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlModified.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlNormal.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlReadOnly.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlUnversioned.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShellCtxMenu.cpp"
]
Creating command line "cl.exe @C:\Users\EDWARD~1\AppData\Local\Temp\RSP345C.tmp" 
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSP345D.tmp" with contents
[
bufferoverflowU.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /incremental:no /pdb:"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.pdb" /machine:IX86 /def:".\TortoiseFossilShell.def" /out:"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.dll" /implib:"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.lib" /machine:AMD64 
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\StdAfx.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilData.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlAdded.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlConflict.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlDeleted.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlIgnored.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlLocked.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlModified.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlNormal.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlReadOnly.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlUnversioned.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShell.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShellCtxMenu.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShell.res
]
Creating command line "link.exe @C:\Users\EDWARD~1\AppData\Local\Temp\RSP345D.tmp"
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSP345E.bat" with contents
[
@echo off
if "%OS%"=="" goto NOTNT
if not "%OS%"=="Windows_NT" goto NOTNT
regsvr32 /s /c ".\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShell.dll"
echo regsvr32 exec. time > ".\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\regsvr32.trg"
goto end
:NOTNT
echo Warning : Cannot register Unicode DLL on Windows 95
:end
]
Creating command line "C:\Users\EDWARD~1\AppData\Local\Temp\RSP345E.bat"
Creating Type Library...
Microsoft (R) MIDL Compiler Version 5.01.0164  
Copyright (c) Microsoft Corp 1991-1997. All rights reserved.
Processing C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl
TortoiseFossilShell.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\oaidl.idl
oaidl.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\objidl.idl
objidl.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\unknwn.idl
unknwn.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\wtypes.idl
wtypes.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\basetsd.h
basetsd.h
Processing C:\Program Files\Microsoft Platform SDK\Include\guiddef.h
guiddef.h
Processing C:\Program Files\Microsoft Platform SDK\Include\ocidl.idl
ocidl.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\oleidl.idl
oleidl.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\servprov.idl
servprov.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\urlmon.idl
urlmon.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\msxml.idl
msxml.idl
Processing C:\Program Files\Microsoft Platform SDK\Include\oaidl.acf
oaidl.acf
Processing C:\Program Files\Microsoft Platform SDK\Include\ocidl.acf
ocidl.acf
Compiling resources...
Compiling...
StdAfx.cpp
Compiling...
TortoiseFossilData.cpp
TortoiseFossilOvlAdded.cpp
C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilData.cpp(12) : warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data








<

|




|
|















|
|

















|
|











|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<







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
<html>
<body>
<pre>
<h1>Build Log</h1>
<h3>
--------------------Configuration: TortoiseFossilShell - Win32 64bit Unicode Release MinDependency--------------------
</h3>
<h3>Command Lines</h3>

Creating command line "rc.exe /l 0x1009 /fo"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.res" /d "NDEBUG" "C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.rc"" 
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSPC69.tmp" with contents
[
/nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_STATIC_REGISTRY" /Fp"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.pch" /Yc"stdafx.h" /Fo"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /Fd"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /FD /c 
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\StdAfx.cpp"
]
Creating command line "cl.exe @C:\Users\EDWARD~1\AppData\Local\Temp\RSPC69.tmp" 
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSPC6A.tmp" with contents
[
/nologo /MT /W3 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "_UNICODE" /D "_ATL_STATIC_REGISTRY" /Fo"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /Fd"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/" /FD /c 
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilData.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlAdded.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlConflict.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlDeleted.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlIgnored.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlLocked.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlModified.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlNormal.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlReadOnly.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilOvlUnversioned.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.cpp"
"C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShellCtxMenu.cpp"
]
Creating command line "cl.exe @C:\Users\EDWARD~1\AppData\Local\Temp\RSPC6A.tmp" 
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSPC6B.tmp" with contents
[
bufferoverflowU.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /incremental:no /pdb:"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.pdb" /machine:IX86 /def:".\TortoiseFossilShell.def" /out:"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.dll" /implib:"TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency/TortoiseFossilShell.lib" /machine:AMD64 
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\StdAfx.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilData.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlAdded.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlConflict.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlDeleted.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlIgnored.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlLocked.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlModified.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlNormal.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlReadOnly.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilOvlUnversioned.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShell.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShellCtxMenu.obj
.\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShell.res
]
Creating command line "link.exe @C:\Users\EDWARD~1\AppData\Local\Temp\RSPC6B.tmp"
Creating temporary file "C:\Users\EDWARD~1\AppData\Local\Temp\RSPC6C.bat" with contents
[
@echo off
if "%OS%"=="" goto NOTNT
if not "%OS%"=="Windows_NT" goto NOTNT
regsvr32 /s /c ".\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\TortoiseFossilShell.dll"
echo regsvr32 exec. time > ".\TortoiseFossilShell___Win32_64bit_Unicode_Release_MinDependency\regsvr32.trg"
goto end
:NOTNT
echo Warning : Cannot register Unicode DLL on Windows 95
:end
]
Creating command line "C:\Users\EDWARD~1\AppData\Local\Temp\RSPC6C.bat"































Compiling resources...
Compiling...
StdAfx.cpp
Compiling...
TortoiseFossilData.cpp
TortoiseFossilOvlAdded.cpp
C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilData.cpp(12) : warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
        with
        [
            _E=char,
            _Tr=std::char_traits<char>,
            _A=std::allocator<char>
        ]
Generating Code...
C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShellCtxMenu.cpp(33) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
C:\Program Files\Microsoft Platform SDK\Include\crt\xstring(520) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
        C:\Program Files\Microsoft Platform SDK\Include\crt\xstring(516) : while compiling class-template member function 'void std::basic_string<_E,_Tr,_A>::_Copy(unsigned __int64)'
        with
        [
            _E=char,
            _Tr=std::char_traits<char>,
            _A=std::allocator<char>







|







216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
        with
        [
            _E=char,
            _Tr=std::char_traits<char>,
            _A=std::allocator<char>
        ]
Generating Code...
C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShellCtxMenu.cpp(47) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
C:\Program Files\Microsoft Platform SDK\Include\crt\xstring(520) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
        C:\Program Files\Microsoft Platform SDK\Include\crt\xstring(516) : while compiling class-template member function 'void std::basic_string<_E,_Tr,_A>::_Copy(unsigned __int64)'
        with
        [
            _E=char,
            _Tr=std::char_traits<char>,
            _A=std::allocator<char>
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
        C:\Program Files\Microsoft Platform SDK\Include\crt\xstring(516) : while compiling class-template member function 'void std::basic_string<_E,_Tr,_A>::_Copy(unsigned __int64)'
        with
        [
            _E=wchar_t,
            _Tr=std::char_traits<wchar_t>,
            _A=std::allocator<wchar_t>
        ]
        C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShellCtxMenu.cpp(55) : see reference to class template instantiation 'std::basic_string<_E,_Tr,_A>' being compiled
        with
        [
            _E=wchar_t,
            _Tr=std::char_traits<wchar_t>,
            _A=std::allocator<wchar_t>
        ]
Linking...







|







240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
        C:\Program Files\Microsoft Platform SDK\Include\crt\xstring(516) : while compiling class-template member function 'void std::basic_string<_E,_Tr,_A>::_Copy(unsigned __int64)'
        with
        [
            _E=wchar_t,
            _Tr=std::char_traits<wchar_t>,
            _A=std::allocator<wchar_t>
        ]
        C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShellCtxMenu.cpp(69) : see reference to class template instantiation 'std::basic_string<_E,_Tr,_A>' being compiled
        with
        [
            _E=wchar_t,
            _Tr=std::char_traits<wchar_t>,
            _A=std::allocator<wchar_t>
        ]
Linking...
Changes to src/TortoiseFossilShell/TortoiseFossilShell.rc.
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

#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE DISCARDABLE 
BEGIN
    "resource.h\0"
END

2 TEXTINCLUDE DISCARDABLE 
BEGIN
    "#include ""winres.h""\r\n"
    "\0"
END

3 TEXTINCLUDE DISCARDABLE 
BEGIN
    "1 TYPELIB ""TortoiseFossilShell.tlb""\r\n"
    "\0"
END

#endif    // APSTUDIO_INVOKED








|




|





|







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

#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE DISCARDABLE
BEGIN
    "resource.h\0"
END

2 TEXTINCLUDE DISCARDABLE
BEGIN
    "#include ""winres.h""\r\n"
    "\0"
END

3 TEXTINCLUDE DISCARDABLE
BEGIN
    "1 TYPELIB ""TortoiseFossilShell.tlb""\r\n"
    "\0"
END

#endif    // APSTUDIO_INVOKED

91
92
93
94
95
96
97
98
99
100
101
102
103
104
105


/////////////////////////////////////////////////////////////////////////////
//
// String Table
//

STRINGTABLE DISCARDABLE 
BEGIN
    IDS_PROJNAME            "TortoiseFossilShell"
END

#endif    // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////








|







91
92
93
94
95
96
97
98
99
100
101
102
103
104
105


/////////////////////////////////////////////////////////////////////////////
//
// String Table
//

STRINGTABLE DISCARDABLE
BEGIN
    IDS_PROJNAME            "TortoiseFossilShell"
END

#endif    // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////

131
132
133
134
135
136
137






















138
139
140
141
142
143
144

/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//

IDB_TEST                BITMAP  DISCARDABLE     "bitmap1.bmp"






















#endif    // English (Canada) resources
/////////////////////////////////////////////////////////////////////////////



#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166

/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//

IDB_TEST                BITMAP  DISCARDABLE     "bitmap1.bmp"

/////////////////////////////////////////////////////////////////////////////
//
// Icon
//

// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDI_MENU_UPDATE         ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menuupdate.ico"
IDI_MENU_COMMIT         ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menucommit.ico"
IDI_MENU_ABOUT          ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menuabout.ico"
IDI_MENU_SETTINGS       ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menusettings.ico"
IDI_MENU_HELP           ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menuhelp.ico"
IDI_MENU_ADD            ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menuadd.ico"
IDI_MENU_ANNOTATE       ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menublame.ico"
IDI_MENU_DIFF           ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menucompare.ico"
IDI_MENU_NEWREPO        ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menucreaterepos.ico"
IDI_MENU_DELETE         ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menudelete.ico"
IDI_MENU_IGNORE         ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menuignore.ico"
IDI_MENU_RENAME         ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menurename.ico"
IDI_MENU_REPOBROWSER    ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menurepobrowse.ico"
IDI_MENU_REVERT         ICON    DISCARDABLE     "..\\..\\extern\\TortoiseSVNResources\\menurevert.ico"
#endif    // English (Canada) resources
/////////////////////////////////////////////////////////////////////////////



#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
Changes to src/TortoiseFossilShell/TortoiseFossilShell.tlb.

cannot compute difference between binary files

Changes to src/TortoiseFossilShell/TortoiseFossilShellCtxMenu.cpp.
1
2
3
4
5
6
7
8
9
10














11
12
13
14
15
16
17
// TortoiseFossilShellCtxMenu.cpp : Implementation of CTortoiseFossilShellCtxMenu
#include "stdafx.h"
#include "TortoiseFossilShell.h"
#include "TortoiseFossilShellCtxMenu.h"
#include "TortoiseFossilData.h"

/////////////////////////////////////////////////////////////////////////////
// CTortoiseFossilShellCtxMenu

extern HBITMAP icon_submenu_tortoisefossil;















void CTortoiseFossilShellCtxMenu::FossilStatusFlagsClear() {
	selected_multiple = false;
	selected_file = false;
	selected_folder = false;
	selected_root_folder = false;










|
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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
// TortoiseFossilShellCtxMenu.cpp : Implementation of CTortoiseFossilShellCtxMenu
#include "stdafx.h"
#include "TortoiseFossilShell.h"
#include "TortoiseFossilShellCtxMenu.h"
#include "TortoiseFossilData.h"

/////////////////////////////////////////////////////////////////////////////
// CTortoiseFossilShellCtxMenu

extern HBITMAP submenu_icon_tortoisefossil;
extern HBITMAP submenu_icon_tortoisefossil_update;
extern HBITMAP submenu_icon_tortoisefossil_commit;
extern HBITMAP submenu_icon_tortoisefossil_add;
extern HBITMAP submenu_icon_tortoisefossil_annotate;
extern HBITMAP submenu_icon_tortoisefossil_diff;
extern HBITMAP submenu_icon_tortoisefossil_newrepo;
extern HBITMAP submenu_icon_tortoisefossil_delete;
extern HBITMAP submenu_icon_tortoisefossil_ignore;
extern HBITMAP submenu_icon_tortoisefossil_rename;
extern HBITMAP submenu_icon_tortoisefossil_repobrowser;
extern HBITMAP submenu_icon_tortoisefossil_revert;
extern HBITMAP submenu_icon_tortoisefossil_settings;
extern HBITMAP submenu_icon_tortoisefossil_help;
extern HBITMAP submenu_icon_tortoisefossil_about;

void CTortoiseFossilShellCtxMenu::FossilStatusFlagsClear() {
	selected_multiple = false;
	selected_file = false;
	selected_folder = false;
	selected_root_folder = false;

622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
	UINT uidCurrCmd = uidFirstCmd;
	menu_command_ids.clear();

	submenu_section = 0;
	HMENU pop = CreatePopupMenu();
	_AddSubmenu(hmenu, NULL, uMenuIndex, 0, pop,
		_T("TortoiseFossil"),
		&icon_submenu_tortoisefossil);
	_AddSeparator(hmenu, uMenuIndex);


	//
	// Fossil Repositories Sub Menu
	//








|







636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
	UINT uidCurrCmd = uidFirstCmd;
	menu_command_ids.clear();

	submenu_section = 0;
	HMENU pop = CreatePopupMenu();
	_AddSubmenu(hmenu, NULL, uMenuIndex, 0, pop,
		_T("TortoiseFossil"),
		&submenu_icon_tortoisefossil);
	_AddSeparator(hmenu, uMenuIndex);


	//
	// Fossil Repositories Sub Menu
	//

658
659
660
661
662
663
664
665

666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683

684
685
686
687
688
689

690
691
692
693
694
695

696
697
698
699
700
701
702
		_AddMenu(repos, hmenu, uMenuIndex, 2,
			_T("Clone Repository..."), NULL,
			_AddCommandID(uidCurrCmd, CMDID_FossilRepositories_CloneRepository));
	}

	if (true) {
		_AddMenu(repos, hmenu, uMenuIndex, 2,
			_T("Create New Repository..."), NULL,

			_AddCommandID(uidCurrCmd, CMDID_FossilRepositories_CreateNewRepository));
	}

	if (true) {
		_AddMenu(repos, hmenu, uMenuIndex, 3,
			_T("All Sync"), NULL,
			_AddCommandID(uidCurrCmd, CMDID_FossilRepositories_AllSync));
	}

	//
	// Main TortoiseFossil Sub Menu
	//

	submenu_section = 0;

	if (true) {
		_AddMenu(pop, hmenu, uMenuIndex, 0,
			_T("About"), NULL,

			_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_About));
	}

	if (true) {
		_AddMenu(pop, hmenu, uMenuIndex, 0,
			_T("Help"), NULL,

			_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Help));
	}

	if (true) {
		_AddMenu(pop, hmenu, uMenuIndex, 0,
			_T("Settings"), NULL,

			_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Settings));
	}

	if (selected_repository) {

		// Hide for Single and Multiple Files, Any Unversioned/Ignored, Any Added
		if (!selected_file && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {







|
>

















|
>





|
>





|
>







672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
		_AddMenu(repos, hmenu, uMenuIndex, 2,
			_T("Clone Repository..."), NULL,
			_AddCommandID(uidCurrCmd, CMDID_FossilRepositories_CloneRepository));
	}

	if (true) {
		_AddMenu(repos, hmenu, uMenuIndex, 2,
			_T("Create New Repository..."), 
			&submenu_icon_tortoisefossil_newrepo,
			_AddCommandID(uidCurrCmd, CMDID_FossilRepositories_CreateNewRepository));
	}

	if (true) {
		_AddMenu(repos, hmenu, uMenuIndex, 3,
			_T("All Sync"), NULL,
			_AddCommandID(uidCurrCmd, CMDID_FossilRepositories_AllSync));
	}

	//
	// Main TortoiseFossil Sub Menu
	//

	submenu_section = 0;

	if (true) {
		_AddMenu(pop, hmenu, uMenuIndex, 0,
			_T("About"), 
			&submenu_icon_tortoisefossil_about,
			_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_About));
	}

	if (true) {
		_AddMenu(pop, hmenu, uMenuIndex, 0,
			_T("Help"), 
			&submenu_icon_tortoisefossil_help,
			_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Help));
	}

	if (true) {
		_AddMenu(pop, hmenu, uMenuIndex, 0,
			_T("Settings"), 
			&submenu_icon_tortoisefossil_settings,
			_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Settings));
	}

	if (selected_repository) {

		// Hide for Single and Multiple Files, Any Unversioned/Ignored, Any Added
		if (!selected_file && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
725
726
727
728
729
730
731
732

733
734
735
736
737
738
739

740
741
742
743
744
745
746

747
748
749
750
751
752
753

754
755
756
757
758
759
760

761
762
763
764
765
766
767
				_T("Push to..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_PushTo));
		}

		// Hide if Non-Ignored
		if (selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Remove from ignore list"), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_RemoveFromIgnoreList));
		}

		// Hide for Non-Unversioned
		if (selected_status_unversioned) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Add to ignore list"), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_AddToIgnoreList));
		}

		// Hide for Root Folder, Any Unversioned/Ignored
		if (!selected_root_folder && !selected_status_unversioned && !selected_status_ignored) { 
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Unversion and add to ignore list"), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_UnversionAndAddToIgnoreList));
		}

		// Show for Folders, Unversioned, Ignored
		if (selected_folder || selected_status_unversioned || selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Add..."), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Add));
		}

		// Hide for Multiple Files, Any Folders, Any Unversioned, Any Ignored, Any Added
		if (selected_file && !selected_multiple && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Annotate..."), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Annotate));
		}

		// Hide for Any Files, Multiple Folders, Any Unversioned, Any Ignored, Any Added
		if (!selected_file && !selected_multiple && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 3,
				_T("Export..."), NULL,







|
>






|
>






|
>






|
>






|
>







743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
				_T("Push to..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_PushTo));
		}

		// Hide if Non-Ignored
		if (selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Remove from ignore list"), 
				&submenu_icon_tortoisefossil_ignore,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_RemoveFromIgnoreList));
		}

		// Hide for Non-Unversioned
		if (selected_status_unversioned) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Add to ignore list"), 
				&submenu_icon_tortoisefossil_ignore,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_AddToIgnoreList));
		}

		// Hide for Root Folder, Any Unversioned/Ignored
		if (!selected_root_folder && !selected_status_unversioned && !selected_status_ignored) { 
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Unversion and add to ignore list"), 
				&submenu_icon_tortoisefossil_ignore,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_UnversionAndAddToIgnoreList));
		}

		// Show for Folders, Unversioned, Ignored
		if (selected_folder || selected_status_unversioned || selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Add..."),
				&submenu_icon_tortoisefossil_add,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Add));
		}

		// Hide for Multiple Files, Any Folders, Any Unversioned, Any Ignored, Any Added
		if (selected_file && !selected_multiple && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 2,
				_T("Annotate..."),
				&submenu_icon_tortoisefossil_annotate,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Annotate));
		}

		// Hide for Any Files, Multiple Folders, Any Unversioned, Any Ignored, Any Added
		if (!selected_file && !selected_multiple && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 3,
				_T("Export..."), NULL,
802
803
804
805
806
807
808
809

810
811
812
813
814
815
816

817
818
819
820
821
822
823
824
825
826
827
828
829
830

831
832
833
834
835
836
837

838
839
840
841
842
843
844
				_T("Clean up..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_CleanUp));
		}

		// Hide for Any Unmodified Files, Any Unversioned, Any Ignored, Any Added
		if (!(selected_file && selected_status_unchanged) && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Revert..."), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Revert));
		}

		// Hide for Non-Added
		if (selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Undo Add..."), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_UndoAdd));
		}

		// Hide when not conflicted
		if (selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Edit conflicts..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_EditConflicts));
		}

		// Hide for Root Folder, Any Unversioned, Any Ignored, Any Added
		if (!selected_root_folder && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Delete..."), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Delete));
		}

		// Hide for Root Folder, Multiple Files, Any Unversioned, Any Ignored
		if (!selected_root_folder && !(selected_multiple && selected_file) && !selected_status_unversioned && !selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Rename..."), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Rename));
		}

		// Hide for Any Unversioned, Any Ignored, Any Added
		if (!selected_status_ignored && !selected_status_unversioned && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Update to revision..."), NULL,







|
>






|
>













|
>






|
>







825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
				_T("Clean up..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_CleanUp));
		}

		// Hide for Any Unmodified Files, Any Unversioned, Any Ignored, Any Added
		if (!(selected_file && selected_status_unchanged) && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Revert..."), 
				&submenu_icon_tortoisefossil_revert,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Revert));
		}

		// Hide for Non-Added
		if (selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Undo Add..."), 
				&submenu_icon_tortoisefossil_revert,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_UndoAdd));
		}

		// Hide when not conflicted
		if (selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Edit conflicts..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_EditConflicts));
		}

		// Hide for Root Folder, Any Unversioned, Any Ignored, Any Added
		if (!selected_root_folder && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Delete..."), 
				&submenu_icon_tortoisefossil_delete,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Delete));
		}

		// Hide for Root Folder, Multiple Files, Any Unversioned, Any Ignored
		if (!selected_root_folder && !(selected_multiple && selected_file) && !selected_status_unversioned && !selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Rename..."), 
				&submenu_icon_tortoisefossil_rename,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Rename));
		}

		// Hide for Any Unversioned, Any Ignored, Any Added
		if (!selected_status_ignored && !selected_status_unversioned && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 4,
				_T("Update to revision..."), NULL,
954
955
956
957
958
959
960
961

962
963
964
965
966
967
968
969
970
971
972
973
974
975

976
977
978
979
980
981
982

983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000

1001
1002
1003
1004
1005
1006

1007
1008
1009
1010
1011
1012
1013
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_CheckForModifications));
		}

		// May not be useful compared to Fossil UI
		//// Hide for Multiple Files and Folders, Any Unversioned, Any Ignored
		//if (!selected_multiple && !selected_status_unversioned && !selected_status_ignored) {
		//	_AddMenu(pop, hmenu, uMenuIndex, 6,
		//		_T("Repo-browser"), NULL,

		//		_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_RepoBrowser));
		//}

		// Hide for Multiple Files and Folders, Any Unversioned, Any Ignored, Any Added
		if (!selected_multiple && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 7,
				_T("Show log"), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_ShowLog));
		}

		// Hide for Multiple Files, Any Folders, Any Unversioned, Any Ignored, Any Added
		if (!selected_multiple && !selected_folder && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 7,
				_T("Diff with previous version"), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_DiffWithPreviousVersion));
		}

		// Hide for Single Folder, Any Unmodified Files, Any Unversioned, Any Ignored
		if (!(!selected_multiple && selected_folder) && !(selected_status_unchanged && selected_file) && !selected_status_unversioned && !selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 8,
				_T("Diff"), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Diff));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Sync..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Sync));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Project UI"), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_FossilUI));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Commit..."), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_FossilCommit));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Update"), NULL,

				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_FossilUpdate));
		}

	} else {

		if (true) {
			_AddSubmenu(pop, hmenu, uMenuIndex, 9, repos,







|
>













|
>






|
>

















|
>





|
>







981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_CheckForModifications));
		}

		// May not be useful compared to Fossil UI
		//// Hide for Multiple Files and Folders, Any Unversioned, Any Ignored
		//if (!selected_multiple && !selected_status_unversioned && !selected_status_ignored) {
		//	_AddMenu(pop, hmenu, uMenuIndex, 6,
		//		_T("Repo-browser"),
		//		&submenu_icon_tortoisefossil_repobrowser,
		//		_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_RepoBrowser));
		//}

		// Hide for Multiple Files and Folders, Any Unversioned, Any Ignored, Any Added
		if (!selected_multiple && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 7,
				_T("Show log"), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_ShowLog));
		}

		// Hide for Multiple Files, Any Folders, Any Unversioned, Any Ignored, Any Added
		if (!selected_multiple && !selected_folder && !selected_status_unversioned && !selected_status_ignored && !selected_status_added) {
			_AddMenu(pop, hmenu, uMenuIndex, 7,
				_T("Diff with previous version"),
				&submenu_icon_tortoisefossil_diff,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_DiffWithPreviousVersion));
		}

		// Hide for Single Folder, Any Unmodified Files, Any Unversioned, Any Ignored
		if (!(!selected_multiple && selected_folder) && !(selected_status_unchanged && selected_file) && !selected_status_unversioned && !selected_status_ignored) {
			_AddMenu(pop, hmenu, uMenuIndex, 8,
				_T("Diff"),
				&submenu_icon_tortoisefossil_diff,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Diff));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Sync..."), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_Sync));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Project UI"), NULL,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_FossilUI));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Commit..."),
				&submenu_icon_tortoisefossil_commit,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_FossilCommit));
		}

		if (true) {
			_AddMenu(pop, hmenu, uMenuIndex, 9,
				_T("Update"),
				&submenu_icon_tortoisefossil_update,
				_AddCommandID(uidCurrCmd, CMDID_TortoiseFossil_FossilUpdate));
		}

	} else {

		if (true) {
			_AddSubmenu(pop, hmenu, uMenuIndex, 9, repos,
Changes to src/TortoiseFossilShell/TortoiseFossilShell_i.c.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* this file contains the actual definitions of */
/* the IIDs and CLSIDs */

/* link this file in with the server and any clients */


/* File created by MIDL compiler version 5.01.0164 */
/* at Tue Sep 25 06:50:15 2012
 */
/* Compiler settings for C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl:
    Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )
#ifdef __cplusplus







|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* this file contains the actual definitions of */
/* the IIDs and CLSIDs */

/* link this file in with the server and any clients */


/* File created by MIDL compiler version 5.01.0164 */
/* at Tue Sep 25 23:53:54 2012
 */
/* Compiler settings for C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl:
    Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )
#ifdef __cplusplus
Changes to src/TortoiseFossilShell/TortoiseFossilShell_p.c.
1
2
3
4
5
6
7
8
9
10
11
12
/* this ALWAYS GENERATED file contains the proxy stub code */


/* File created by MIDL compiler version 5.01.0164 */
/* at Tue Sep 25 06:50:15 2012
 */
/* Compiler settings for C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl:
    Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )





|







1
2
3
4
5
6
7
8
9
10
11
12
/* this ALWAYS GENERATED file contains the proxy stub code */


/* File created by MIDL compiler version 5.01.0164 */
/* at Tue Sep 25 23:53:54 2012
 */
/* Compiler settings for C:\Project2011\_FossilRepos\TortoiseFossil\src\TortoiseFossilShell\TortoiseFossilShell.idl:
    Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )

Changes to src/TortoiseFossilShell/resource.h.
12
13
14
15
16
17
18














19
20
21
22
23
24
25
26
27
28
29
#define IDR_TORTOISEFOSSILOVLADDED      107
#define IDR_TORTOISEFOSSILOVLIGNORED    108
#define IDR_TORTOISEFOSSILOVLUNVERSIONED 109
#define IDR_TORTOISEFOSSILOVLCONFLICT   110
#define IDR_TORTOISEFOSSILOVLREADONLY   111
#define IDR_TORTOISEFOSSILOVLLOCKED     112
#define IDB_TEST                        201















// Next default values for new objects
// 
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE        202
#define _APS_NEXT_COMMAND_VALUE         32768
#define _APS_NEXT_CONTROL_VALUE         201
#define _APS_NEXT_SYMED_VALUE           113
#endif
#endif







>
>
>
>
>
>
>
>
>
>
>
>
>
>





|





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
#define IDR_TORTOISEFOSSILOVLADDED      107
#define IDR_TORTOISEFOSSILOVLIGNORED    108
#define IDR_TORTOISEFOSSILOVLUNVERSIONED 109
#define IDR_TORTOISEFOSSILOVLCONFLICT   110
#define IDR_TORTOISEFOSSILOVLREADONLY   111
#define IDR_TORTOISEFOSSILOVLLOCKED     112
#define IDB_TEST                        201
#define IDI_MENU_UPDATE                 202
#define IDI_MENU_COMMIT                 203
#define IDI_MENU_ABOUT                  204
#define IDI_MENU_SETTINGS               205
#define IDI_MENU_HELP                   206
#define IDI_MENU_ADD                    207
#define IDI_MENU_ANNOTATE               208
#define IDI_MENU_DIFF                   209
#define IDI_MENU_NEWREPO                210
#define IDI_MENU_DELETE                 211
#define IDI_MENU_IGNORE                 212
#define IDI_MENU_RENAME                 213
#define IDI_MENU_REPOBROWSER            214
#define IDI_MENU_REVERT                 215

// Next default values for new objects
// 
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE        216
#define _APS_NEXT_COMMAND_VALUE         32768
#define _APS_NEXT_CONTROL_VALUE         201
#define _APS_NEXT_SYMED_VALUE           113
#endif
#endif