| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 01 f4 00 00 01 1e 08 06 00 00 00 7c 09 e7 | .PNG........IHDR.............|.. |
| 0020 | 6e 00 00 00 01 73 52 47 42 00 ae ce 1c e9 00 00 00 04 67 41 4d 41 00 00 b1 8f 0b fc 61 05 00 00 | n....sRGB.........gAMA......a... |
| 0040 | 00 09 70 48 59 73 00 00 0e c3 00 00 0e c3 01 c7 6f a8 64 00 00 00 19 74 45 58 74 53 6f 66 74 77 | ..pHYs..........o.d....tEXtSoftw |
| 0060 | 61 72 65 00 70 61 69 6e 74 2e 6e 65 74 20 34 2e 30 2e 32 31 f1 20 69 95 00 00 ff 80 49 44 41 54 | are.paint.net.4.0.21..i.....IDAT |
| 0080 | 78 5e ec dd 07 b8 6d 57 55 f7 ff 57 54 8a 22 8a 20 bd 77 e9 bd 24 a0 40 80 10 7a 07 43 53 08 4d | x^....mWU..WT."...w..$.@..z.CS.M |
| 00a0 | 8a 22 0a 0a d8 00 41 90 a2 74 45 50 44 45 50 c1 57 a4 59 00 01 3b 88 60 40 04 42 2f 49 20 09 24 | ."....A..tEPDEP.W.Y..;.`@.B/I..$ |
| 00c0 | 21 c9 cd bd f7 9c ff f8 ac 37 bf fc 27 2b 73 9f b3 cf 39 fb d4 bb d6 f3 8c 67 ed bd f6 2a 73 8e | !........7..'+s...9......g...*s. |
| 00e0 | 31 e6 f8 8e 59 f6 de ff 67 79 79 79 92 49 26 99 64 92 49 26 d9 e5 d2 3d 38 c9 24 93 4c 32 c9 24 | 1...Y...gyyy.I&.d.I&...=8.$.L2.$ |
| 0100 | 93 ec 2e e9 1e 9c 64 92 49 26 99 64 92 49 76 97 74 0f 4e 32 c9 24 93 4c 32 c9 24 bb 4b ba 07 27 | ......d.I&.d.Iv.t.N2.$.L2.$.K..' |
| 0120 | 99 64 92 49 26 99 64 92 dd 25 dd 83 93 4c 32 c9 24 93 4c 32 c9 ee 92 ee c1 49 26 99 64 92 49 26 | .d.I&.d..%...L2.$.L2.....I&.d.I& |
| 0140 | 99 64 77 49 f7 e0 24 93 4c 32 c9 24 93 4c b2 bb a4 7b 70 92 49 26 99 64 92 49 26 d9 5d d2 3d 38 | .dwI..$.L2.$.L...{p.I&.d.I&.].=8 |
| 0160 | c9 24 93 4c 32 c9 24 93 ec 2e e9 1e 9c 64 92 49 26 99 64 92 49 76 97 74 0f 4e 32 c9 24 93 4c 32 | .$.L2.$......d.I&.d.Iv.t.N2.$.L2 |
| 0180 | c9 24 bb 4b ba 07 27 99 64 92 49 26 99 64 92 dd 25 dd 83 93 4c 32 c9 24 93 4c 32 c9 ee 92 ee c1 | .$.K..'.d.I&.d..%...L2.$.L2..... |
| 01a0 | 49 26 99 64 92 49 26 99 64 77 49 f7 e0 24 93 4c 32 c9 24// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.ComponentModel;
namespace Tango.Scripting.Editors.Search
{
/// <summary>
/// Holds default texts for buttons and labels in the SearchPanel. Override properties to add other languages.
/// </summary>
public class Localization
{
/// <summary>
/// Default: 'Match case'
/// </summary>
public virtual string MatchCaseText {
get { return "Match case"; }
}
/// <summary>
/// Default: 'Match whole words'
/// </summary>
public virtual string MatchWholeWordsText {
get { return "Match whole words"; }
}
/// <summary>
/// Default: 'Use regular expressions'
/// </summary>
public virtual string UseRegexText {
get { return "Use regular expressions"; }
}
/// <summary>
/// Default: 'Find next (F3)'
/// </summary>
public virtual string FindNextText {
get { return "Find next (F3)"; }
}
/// <summary>
/// Default: 'Find previous (Shift+F3)'
/// </summary>
public virtual string FindPreviousText {
get { return "Find previous (Shift+F3)"; }
}
/// <summary>
/// Default: 'Error: '
/// </summary>
public virtual string ErrorText {
get { return "Error: "; }
}
/// <summary>
/// Default: 'No matches found!'
/// </summary>
public virtual string NoMatchesFoundText {
get { return "No matches found!"; }
}
}
}
|