~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Analysis/Profiler/Frontend/Controls/ControlsTranslation.cs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
 
2
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
 
3
 
 
4
using System;
 
5
 
 
6
namespace ICSharpCode.Profiler.Controls
 
7
{
 
8
        /// <summary>
 
9
        /// Description of ControlsTranslation.
 
10
        /// </summary>
 
11
        public class ControlsTranslation
 
12
        {
 
13
                public virtual string WaitBarText {
 
14
                        get {
 
15
                                return "Refreshing view, please wait ...";
 
16
                        }
 
17
                }
 
18
                
 
19
                public virtual string NameColumnText {
 
20
                        get {
 
21
                                return "Name";
 
22
                        }
 
23
                }
 
24
                
 
25
                public virtual string CallCountColumnText {
 
26
                        get {
 
27
                                return "Call count";
 
28
                        }
 
29
                }
 
30
                
 
31
                public virtual string TimeSpentColumnText {
 
32
                        get {
 
33
                                return "Time spent";
 
34
                        }
 
35
                }
 
36
                
 
37
                public virtual string TimeSpentSelfColumnText {
 
38
                        get {
 
39
                                return "Time spent (self)";
 
40
                        }
 
41
                }
 
42
                
 
43
                public virtual string TimeSpentPerCallColumnText {
 
44
                        get {
 
45
                                return "Time spent/call";
 
46
                        }
 
47
                }
 
48
                
 
49
                public virtual string TimeSpentSelfPerCallColumnText {
 
50
                        get {
 
51
                                return "Time spent (self)/call";
 
52
                        }
 
53
                }
 
54
                
 
55
                public virtual string TimePercentageOfParentColumnText {
 
56
                        get {
 
57
                                return "% of parent";
 
58
                        }
 
59
                }
 
60
                
 
61
                public virtual string SearchLabelText {
 
62
                        get {
 
63
                                return "Search:";
 
64
                        }
 
65
                }
 
66
                
 
67
                public virtual string ShowQueryBarText {
 
68
                        get {
 
69
                                return "Show query bar";
 
70
                        }
 
71
                }
 
72
                
 
73
                public virtual string ExecuteQueryText {
 
74
                        get {
 
75
                                return "Execute query";
 
76
                        }
 
77
                }
 
78
                
 
79
                public virtual string ExpandHotPathSubtreeText {
 
80
                        get {
 
81
                                return "Expand selected hot path";
 
82
                        }
 
83
                }
 
84
                
 
85
                public virtual string CpuCyclesText {
 
86
                        get {
 
87
                                return "CPU cycles:";
 
88
                        }
 
89
                }
 
90
                
 
91
                public virtual string TimeText {
 
92
                        get {
 
93
                                return "Time:";
 
94
                        }
 
95
                }
 
96
                
 
97
                public virtual string CallsText {
 
98
                        get {
 
99
                                return "Calls:";
 
100
                        }
 
101
                }
 
102
        }
 
103
}