blob: 9fa0141681369a58ef45783a36f7daffcf14bac9 (
plain)
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
29pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000// 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 ICSharpCode.AvalonEdit.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!"; }
}
}
}
|