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
|
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;
using System.Resources;
using System.Runtime.CompilerServices;
namespace Gestor.Application.Properties;
[GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
[DebuggerNonUserCode]
[CompilerGenerated]
internal class Resources
{
private static ResourceManager resourceMan;
private static CultureInfo resourceCulture;
[EditorBrowsable(EditorBrowsableState.Advanced)]
internal static ResourceManager ResourceManager
{
get
{
if (resourceMan == null)
{
resourceMan = new ResourceManager("Gestor.Application.Properties.Resources", typeof(Resources).Assembly);
}
return resourceMan;
}
}
[EditorBrowsable(EditorBrowsableState.Advanced)]
internal static CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
internal static string ColumnTemplate => ResourceManager.GetString("ColumnTemplate", resourceCulture);
internal static string FooterTemplate => ResourceManager.GetString("FooterTemplate", resourceCulture);
internal static string HeaderTemplate => ResourceManager.GetString("HeaderTemplate", resourceCulture);
internal static string New => ResourceManager.GetString("New", resourceCulture);
internal static string ProtocoloPageTemplate => ResourceManager.GetString("ProtocoloPageTemplate", resourceCulture);
internal static string ProtocoloTemplate => ResourceManager.GetString("ProtocoloTemplate", resourceCulture);
internal static string RelatorioMultipleTemplate => ResourceManager.GetString("RelatorioMultipleTemplate", resourceCulture);
internal static string RelatorioTemplate => ResourceManager.GetString("RelatorioTemplate", resourceCulture);
internal static string RowTemplate => ResourceManager.GetString("RowTemplate", resourceCulture);
internal static string TableMultipleTemplate => ResourceManager.GetString("TableMultipleTemplate", resourceCulture);
internal static string TableTemplate => ResourceManager.GetString("TableTemplate", resourceCulture);
internal Resources()
{
}
}
|