Revize 4bfea289
Přidáno uživatelem Dominik Chlouba před téměř 4 roky(ů)
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/Components/CreateDefinitionRangeAside.razor | ||
---|---|---|
1 |
|
|
1 |
@inject IStringLocalizer<CreateDefinitionRangeAside> T
|
|
2 | 2 |
<aside class="@_aside review_detail"> |
3 | 3 |
<div class="review_detail_header"> |
4 |
<div> |
|
5 |
Vytvořit oblast definic |
|
6 |
</div> |
|
4 |
<div>@T["Title"]</div> |
|
7 | 5 |
<div> |
8 | 6 |
<div class="close_button" @onclick="Close"> |
9 | 7 |
<i class="fal fa-times"></i> |
... | ... | |
11 | 9 |
</div> |
12 | 10 |
</div> |
13 | 11 |
<div class="review_detail_body"> |
14 |
<div class="review_description_title">Datum začátku oblasti</div>
|
|
12 |
<div class="review_description_title">@T["Start"]</div>
|
|
15 | 13 |
<input type="date" /> |
16 |
<div class="review_description_title">Datum konce oblasti</div>
|
|
14 |
<div class="review_description_title">@T["End"]</div>
|
|
17 | 15 |
<input type="date" /> |
18 |
<div class="review_description_title">Firemní výsledek oblasti</div>
|
|
16 |
<div class="review_description_title">@T["Result"]</div>
|
|
19 | 17 |
<input type="number" /> |
20 | 18 |
</div> |
21 | 19 |
<div class="review_detail_footer"> |
22 |
<button>Uložit</button>
|
|
23 |
<button @onclick="Close">Zrušit</button>
|
|
20 |
<button>@T["Save"]</button>
|
|
21 |
<button @onclick="Close">@T["Cancel"]</button>
|
|
24 | 22 |
</div> |
25 | 23 |
</aside> |
26 | 24 |
|
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/Components/CreateGoalAside.razor | ||
---|---|---|
1 |
|
|
1 |
@inject IStringLocalizer<CreateGoalAside> T
|
|
2 | 2 |
<aside class="@_aside review_detail"> |
3 | 3 |
<div class="review_detail_header"> |
4 |
<div>Vytvořit nový cíl</div>
|
|
4 |
<div>@T["Title"]</div>
|
|
5 | 5 |
<div> |
6 | 6 |
<div class="close_button" @onclick="Close"> |
7 | 7 |
<i class="fal fa-times"></i> |
... | ... | |
9 | 9 |
</div> |
10 | 10 |
</div> |
11 | 11 |
<div class="review_detail_body"> |
12 |
<div class="review_description_title">Název cíle</div>
|
|
12 |
<div class="review_description_title">@T["Name"]</div>
|
|
13 | 13 |
<input type="text" /> |
14 |
<div class="review_description_title">Popis cíle</div>
|
|
14 |
<div class="review_description_title">@T["Description"]</div>
|
|
15 | 15 |
<textarea></textarea> |
16 | 16 |
</div> |
17 | 17 |
<div class="review_detail_footer"> |
18 |
<button>Vytvořit</button>
|
|
19 |
<button>Zrušit</button>
|
|
18 |
<button>@T["Create"]</button>
|
|
19 |
<button>@T["Cancel"]</button>
|
|
20 | 20 |
</div> |
21 | 21 |
</aside> |
22 | 22 |
|
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/Components/CreateGoalDefinition.razor | ||
---|---|---|
1 |
|
|
1 |
@inject IStringLocalizer<CreateGoalDefinition> T
|
|
2 | 2 |
<aside class="@_aside review_detail"> |
3 | 3 |
<div class="review_detail_header"> |
4 |
<div> |
|
5 |
Vytvořit definici cílů |
|
6 |
</div> |
|
4 |
<div>@T["Title"]</div> |
|
7 | 5 |
<div> |
8 | 6 |
<div class="close_button" @onclick="Close"> |
9 | 7 |
<i class="fal fa-times"></i> |
... | ... | |
11 | 9 |
</div> |
12 | 10 |
</div> |
13 | 11 |
<div class="review_detail_body"> |
14 |
<div class="review_description_title">Název definice</div>
|
|
12 |
<div class="review_description_title">@T["Name"]</div>
|
|
15 | 13 |
<input type="text" /> |
16 |
<div class="review_description_title">Přiřazený uživatel</div>
|
|
14 |
<div class="review_description_title">@T["User"]</div>
|
|
17 | 15 |
<select> |
18 |
<option value="" disabled>Zvolte uživatele</option>
|
|
16 |
<option value="" disabled>@T["SelectUser"]</option>
|
|
19 | 17 |
</select> |
20 |
<div class="review_description_title">Počet odpracovaných hodin</div>
|
|
18 |
<div class="review_description_title">@T["Hours"]</div>
|
|
21 | 19 |
<input type="number" /> |
22 |
<div class="review_description_title">Finanční základ</div>
|
|
20 |
<div class="review_description_title">@T["Finance"]</div>
|
|
23 | 21 |
<input type="number" /> |
24 | 22 |
</div> |
25 | 23 |
<div class="review_detail_footer"> |
26 |
<button>Vytvořit</button>
|
|
27 |
<button @onclick="Close">Zrušit</button>
|
|
24 |
<button>@T["Create"]</button>
|
|
25 |
<button @onclick="Close">@T["Cancel"]</button>
|
|
28 | 26 |
</div> |
29 | 27 |
</aside> |
30 | 28 |
|
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/GoalDefinitionDetail.razor | ||
---|---|---|
2 | 2 |
@attribute [Authorize] |
3 | 3 |
@layout MainLayout |
4 | 4 |
@inject IMediator _mediator |
5 |
@inject IStringLocalizer<GoalDefinitionDetail> T |
|
5 | 6 |
|
6 | 7 |
<div class="section_header"> |
7 | 8 |
<div> |
... | ... | |
14 | 15 |
<div class="header_buttons"> |
15 | 16 |
<button type="button" @onclick="OpenCreateAside"> |
16 | 17 |
<i class="fal fa-plus"></i> |
17 |
<span>Přidat cíl</span>
|
|
18 |
<span>@T["AddGoal"]</span>
|
|
18 | 19 |
</button> |
19 | 20 |
</div> |
20 | 21 |
</div> |
... | ... | |
22 | 23 |
{ |
23 | 24 |
<table class="actions" style="width:100%"> |
24 | 25 |
<tr> |
25 |
<th>Název</th>
|
|
26 |
<th>Vytvořil</th>
|
|
27 |
<th>Datum vytvoření</th>
|
|
28 |
<th>Hodnocení uživatel</th>
|
|
29 |
<th>Hodnocení nadřízený</th>
|
|
30 |
<th>Akce</th>
|
|
26 |
<th>@T["Name"]</th>
|
|
27 |
<th>@T["CreatedBy"]</th>
|
|
28 |
<th>@T["CreatedOn"]</th>
|
|
29 |
<th>@T["ResultUser"]</th>
|
|
30 |
<th>@T["ResultSenior"]</th>
|
|
31 |
<th>@T["Actions"]</th>
|
|
31 | 32 |
</tr> |
32 | 33 |
@foreach (var range in Goals) |
33 | 34 |
{ |
... | ... | |
41 | 42 |
<div class="flex"> |
42 | 43 |
<div @onclick='() => SetDetailId(Guid.NewGuid())'> |
43 | 44 |
<i class="fal fa-eye"></i> |
44 |
Otevřít
|
|
45 |
@T["Open"]
|
|
45 | 46 |
</div> |
46 | 47 |
<div> |
47 | 48 |
<i class="fal fa-edit"></i> |
48 |
Upravit
|
|
49 |
@T["Edit"]
|
|
49 | 50 |
</div> |
50 | 51 |
<div> |
51 | 52 |
<i class="fal fa-trash"></i> |
52 |
Smazat
|
|
53 |
@T["Remove"]
|
|
53 | 54 |
</div> |
54 | 55 |
</div> |
55 | 56 |
</td> |
... | ... | |
59 | 60 |
} |
60 | 61 |
else |
61 | 62 |
{ |
62 |
<div>Loading...</div>
|
|
63 |
<div>@T["Loading"]</div>
|
|
63 | 64 |
} |
64 | 65 |
|
65 | 66 |
<Leuze.Modules.Goal.Application.UI.Pages.Components.GoalDetailAside Show="DetailId != default(Guid)" DetailId="DetailId" CloseAside="CloseDetailAside" /> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/GoalRanges.razor | ||
---|---|---|
3 | 3 |
@layout MainLayout |
4 | 4 |
@inject IMediator _mediator |
5 | 5 |
@inject NavigationManager _nav |
6 |
@inject IStringLocalizer<GoalRanges> T |
|
6 | 7 |
|
7 | 8 |
<div class="section_header"> |
8 |
<h2>Správa oblastí definic cílů</h2>
|
|
9 |
<h2>@T["Title"]</h2>
|
|
9 | 10 |
<button type="button" @onclick="() => OpenAside(default(Guid))"> |
10 | 11 |
<img src="/Resources/Icons/plus.svg" class="plus_icon" /> |
11 |
<span>Přidat oblast</span>
|
|
12 |
<span>@T["AddRange"]</span>
|
|
12 | 13 |
</button> |
13 | 14 |
</div> |
14 | 15 |
@if (Ranges is not null) |
15 | 16 |
{ |
16 | 17 |
<table class="actions" style="width:100%"> |
17 | 18 |
<tr> |
18 |
<th>Platnost od</th>
|
|
19 |
<th>Platnost do</th>
|
|
20 |
<th>Hodnota VARI</th>
|
|
21 |
<th>Akce</th>
|
|
19 |
<th>@T["Start"]</th>
|
|
20 |
<th>@T["End"]</th>
|
|
21 |
<th>@T["Result"]</th>
|
|
22 |
<th>@T["Actions"]</th>
|
|
22 | 23 |
</tr> |
23 | 24 |
@foreach (var range in Ranges) |
24 | 25 |
{ |
... | ... | |
30 | 31 |
<div class="flex"> |
31 | 32 |
<div @onclick='() => _nav.NavigateTo("/goals/overview/test")'> |
32 | 33 |
<i class="fal fa-eye"></i> |
33 |
Zobrazit
|
|
34 |
@T["Open"]
|
|
34 | 35 |
</div> |
35 | 36 |
<div @onclick="() => OpenAside(range)"> |
36 | 37 |
<i class="fal fa-edit"></i> |
37 |
Upravit
|
|
38 |
@T["Edit"]
|
|
38 | 39 |
</div> |
39 | 40 |
<div> |
40 | 41 |
<i class="fal fa-trash"></i> |
41 |
Smazat
|
|
42 |
@T["Remove"]
|
|
42 | 43 |
</div> |
43 | 44 |
</div> |
44 | 45 |
</td> |
... | ... | |
55 | 56 |
<button class="pagination_button"><img class="pagination_icon" src="/Resources/Icons/chevron-right.svg" /></button> |
56 | 57 |
<button class="pagination_button"><img class="pagination_icon" src="/Resources/Icons/chevron-double-right.svg" /></button> |
57 | 58 |
</div> |
58 |
<div class="right">Zobrazeno <b>@Ranges.Count z @Total</b></div>
|
|
59 |
<div class="right">@T["Show"] <b>@Ranges.Count @T["From"] @Total</b></div>
|
|
59 | 60 |
</div> |
60 | 61 |
} |
61 | 62 |
} |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/GoalsManagement.razor | ||
---|---|---|
3 | 3 |
@layout MainLayout |
4 | 4 |
@inject IMediator _mediator |
5 | 5 |
@inject NavigationManager _nav |
6 |
@inject IStringLocalizer<GoalsManagement> T |
|
6 | 7 |
|
7 | 8 |
<div class="section_header"> |
8 |
<h2>Správa definic cílů</h2>
|
|
9 |
<h2>@T["Title"]</h2>
|
|
9 | 10 |
<div class="header_buttons"> |
10 | 11 |
<button type="button"> |
11 | 12 |
<i class="fal fa-layer-plus"></i> |
12 |
<span>Inicializovat vše</span>
|
|
13 |
<span>@T["InitAll"]</span>
|
|
13 | 14 |
</button> |
14 | 15 |
<button type="button" @onclick="() => OpenAside(default(Guid))"> |
15 | 16 |
<i class="fal fa-plus"></i> |
16 |
<span>Přidat definici</span>
|
|
17 |
<span>@T["AddDef"]</span>
|
|
17 | 18 |
</button> |
18 | 19 |
</div> |
19 | 20 |
</div> |
... | ... | |
21 | 22 |
{ |
22 | 23 |
<table class="actions" style="width:100%"> |
23 | 24 |
<tr> |
24 |
<th>Název</th>
|
|
25 |
<th>Uživatel</th>
|
|
26 |
<th>Vytvořil</th>
|
|
27 |
<th>Akce</th>
|
|
25 |
<th>@T["Name"]</th>
|
|
26 |
<th>@T["User"]</th>
|
|
27 |
<th>@T["CreatedBy"]</th>
|
|
28 |
<th>@T["Actions"]</th>
|
|
28 | 29 |
</tr> |
29 | 30 |
@foreach (var range in Ranges) |
30 | 31 |
{ |
... | ... | |
36 | 37 |
<div class="flex"> |
37 | 38 |
<div @onclick='() => _nav.NavigateTo("/goals/detail/test")'> |
38 | 39 |
<i class="fal fa-eye"></i> |
39 |
Zobrazit
|
|
40 |
@T["Open"]
|
|
40 | 41 |
</div> |
41 | 42 |
<div @onclick="() => OpenAside(range)"> |
42 | 43 |
<i class="fal fa-edit"></i> |
43 |
Upravit
|
|
44 |
@T["Edit"]
|
|
44 | 45 |
</div> |
45 | 46 |
<div> |
46 | 47 |
<i class="fal fa-trash"></i> |
47 |
Smazat
|
|
48 |
@T["Remove"]
|
|
48 | 49 |
</div> |
49 | 50 |
</div> |
50 | 51 |
</td> |
... | ... | |
61 | 62 |
<button class="pagination_button"><img class="pagination_icon" src="/Resources/Icons/chevron-right.svg" /></button> |
62 | 63 |
<button class="pagination_button"><img class="pagination_icon" src="/Resources/Icons/chevron-double-right.svg" /></button> |
63 | 64 |
</div> |
64 |
<div class="right">Zobrazeno <b>@Ranges.Count z @Total</b></div>
|
|
65 |
<div class="right">@T["Show"] <b>@Ranges.Count @T["From"] @Total</b></div>
|
|
65 | 66 |
</div> |
66 | 67 |
} |
67 | 68 |
} |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Pages/MyGoalDefinition.razor | ||
---|---|---|
3 | 3 |
@layout MainLayout |
4 | 4 |
@inject IMediator _mediator |
5 | 5 |
@inject NavigationManager _nav |
6 |
|
|
7 | 6 |
@inject IStringLocalizer<MyGoalDefinition> T |
7 |
|
|
8 | 8 |
<div class="section_header"> |
9 |
<h2>Mé definice cílů</h2>
|
|
9 |
<h2>@T["Title"]</h2>
|
|
10 | 10 |
</div> |
11 | 11 |
@if (Definitions is not null) |
12 | 12 |
{ |
13 | 13 |
<table class="actions" style="width:100%"> |
14 | 14 |
<tr> |
15 |
<th>Název</th>
|
|
16 |
<th>Vytvořil</th>
|
|
17 |
<th>Akce</th>
|
|
15 |
<th>@T["Name"]</th>
|
|
16 |
<th>@T["CreatedBy"]</th>
|
|
17 |
<th>@T["Actions"]</th>
|
|
18 | 18 |
</tr> |
19 | 19 |
@foreach (var range in Definitions) |
20 | 20 |
{ |
... | ... | |
26 | 26 |
<div></div> |
27 | 27 |
<div @onclick='() => _nav.NavigateTo("/goals/detail/test")'> |
28 | 28 |
<i class="fal fa-eye"></i> |
29 |
Otevřít
|
|
29 |
@T["Open"]
|
|
30 | 30 |
</div> |
31 | 31 |
</div> |
32 | 32 |
</td> |
... | ... | |
43 | 43 |
<button class="pagination_button"><img class="pagination_icon" src="/Resources/Icons/chevron-right.svg" /></button> |
44 | 44 |
<button class="pagination_button"><img class="pagination_icon" src="/Resources/Icons/chevron-double-right.svg" /></button> |
45 | 45 |
</div> |
46 |
<div class="right">Zobrazeno <b>@Definitions.Count z @Total</b></div>
|
|
46 |
<div class="right">@T["Show"] <b>@Definitions.Count @T["From"] @Total</b></div>
|
|
47 | 47 |
</div> |
48 | 48 |
} |
49 | 49 |
} |
50 | 50 |
else |
51 | 51 |
{ |
52 |
<div>Loading...</div>
|
|
52 |
<div>@T["Loading"]</div>
|
|
53 | 53 |
} |
54 | 54 |
<BlazorStyled.Styled> |
55 | 55 |
.section_header { |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/CreateDefinitionRangeAside.cs-CZ.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 2.0 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">2.0</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|
27 |
<comment>This is a comment</comment> |
|
28 |
</data> |
|
29 |
|
|
30 |
There are any number of "resheader" rows that contain simple |
|
31 |
name/value pairs. |
|
32 |
|
|
33 |
Each data row contains a name, and value. The row also contains a |
|
34 |
type or mimetype. Type corresponds to a .NET class that support |
|
35 |
text/value conversion through the TypeConverter architecture. |
|
36 |
Classes that don't support this are serialized and stored with the |
|
37 |
mimetype set. |
|
38 |
|
|
39 |
The mimetype is used for serialized objects, and tells the |
|
40 |
ResXResourceReader how to depersist the object. This is currently not |
|
41 |
extensible. For a given mimetype the value must be set accordingly: |
|
42 |
|
|
43 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
44 |
that the ResXResourceWriter will generate, however the reader can |
|
45 |
read any of the formats listed below. |
|
46 |
|
|
47 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
48 |
value : The object must be serialized with |
|
49 |
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter |
|
50 |
: and then encoded with base64 encoding. |
|
51 |
|
|
52 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
53 |
value : The object must be serialized with |
|
54 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
55 |
: and then encoded with base64 encoding. |
|
56 |
|
|
57 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
58 |
value : The object must be serialized into a byte array |
|
59 |
: using a System.ComponentModel.TypeConverter |
|
60 |
: and then encoded with base64 encoding. |
|
61 |
--> |
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> |
|
64 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
65 |
<xsd:complexType> |
|
66 |
<xsd:choice maxOccurs="unbounded"> |
|
67 |
<xsd:element name="metadata"> |
|
68 |
<xsd:complexType> |
|
69 |
<xsd:sequence> |
|
70 |
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" use="required" type="xsd:string" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" /> |
|
75 |
<xsd:attribute ref="xml:space" /> |
|
76 |
</xsd:complexType> |
|
77 |
</xsd:element> |
|
78 |
<xsd:element name="assembly"> |
|
79 |
<xsd:complexType> |
|
80 |
<xsd:attribute name="alias" type="xsd:string" /> |
|
81 |
<xsd:attribute name="name" type="xsd:string" /> |
|
82 |
</xsd:complexType> |
|
83 |
</xsd:element> |
|
84 |
<xsd:element name="data"> |
|
85 |
<xsd:complexType> |
|
86 |
<xsd:sequence> |
|
87 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
88 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
89 |
</xsd:sequence> |
|
90 |
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> |
|
91 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
92 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
93 |
<xsd:attribute ref="xml:space" /> |
|
94 |
</xsd:complexType> |
|
95 |
</xsd:element> |
|
96 |
<xsd:element name="resheader"> |
|
97 |
<xsd:complexType> |
|
98 |
<xsd:sequence> |
|
99 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
100 |
</xsd:sequence> |
|
101 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
102 |
</xsd:complexType> |
|
103 |
</xsd:element> |
|
104 |
</xsd:choice> |
|
105 |
</xsd:complexType> |
|
106 |
</xsd:element> |
|
107 |
</xsd:schema> |
|
108 |
<resheader name="resmimetype"> |
|
109 |
<value>text/microsoft-resx</value> |
|
110 |
</resheader> |
|
111 |
<resheader name="version"> |
|
112 |
<value>2.0</value> |
|
113 |
</resheader> |
|
114 |
<resheader name="reader"> |
|
115 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
116 |
</resheader> |
|
117 |
<resheader name="writer"> |
|
118 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
119 |
</resheader> |
|
120 |
<data name="Cancel" xml:space="preserve"> |
|
121 |
<value>Zrušit</value> |
|
122 |
</data> |
|
123 |
<data name="End" xml:space="preserve"> |
|
124 |
<value>Datum konce oblasti</value> |
|
125 |
</data> |
|
126 |
<data name="Result" xml:space="preserve"> |
|
127 |
<value>Firemní výsledek oblasti</value> |
|
128 |
</data> |
|
129 |
<data name="Save" xml:space="preserve"> |
|
130 |
<value>Uložit</value> |
|
131 |
</data> |
|
132 |
<data name="Start" xml:space="preserve"> |
|
133 |
<value>Datum začátku oblasti</value> |
|
134 |
</data> |
|
135 |
<data name="Title" xml:space="preserve"> |
|
136 |
<value>Vytvořit oblast definic</value> |
|
137 |
</data> |
|
138 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/CreateDefinitionRangeAside.de-DE.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 1.3 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">1.3</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1">this is my long string</data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
[base64 mime encoded serialized .NET Framework object] |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
[base64 mime encoded string representing a byte array form of the .NET Framework object] |
|
27 |
</data> |
|
28 |
|
|
29 |
There are any number of "resheader" rows that contain simple |
|
30 |
name/value pairs. |
|
31 |
|
|
32 |
Each data row contains a name, and value. The row also contains a |
|
33 |
type or mimetype. Type corresponds to a .NET class that support |
|
34 |
text/value conversion through the TypeConverter architecture. |
|
35 |
Classes that don't support this are serialized and stored with the |
|
36 |
mimetype set. |
|
37 |
|
|
38 |
The mimetype is used for serialized objects, and tells the |
|
39 |
ResXResourceReader how to depersist the object. This is currently not |
|
40 |
extensible. For a given mimetype the value must be set accordingly: |
|
41 |
|
|
42 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
43 |
that the ResXResourceWriter will generate, however the reader can |
|
44 |
read any of the formats listed below. |
|
45 |
|
|
46 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
47 |
value : The object must be serialized with |
|
48 |
: System.Serialization.Formatters.Binary.BinaryFormatter |
|
49 |
: and then encoded with base64 encoding. |
|
50 |
|
|
51 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
52 |
value : The object must be serialized with |
|
53 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
54 |
: and then encoded with base64 encoding. |
|
55 |
|
|
56 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
57 |
value : The object must be serialized into a byte array |
|
58 |
: using a System.ComponentModel.TypeConverter |
|
59 |
: and then encoded with base64 encoding. |
|
60 |
--> |
|
61 |
|
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
64 |
<xsd:complexType> |
|
65 |
<xsd:choice maxOccurs="unbounded"> |
|
66 |
<xsd:element name="data"> |
|
67 |
<xsd:complexType> |
|
68 |
<xsd:sequence> |
|
69 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
70 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
75 |
</xsd:complexType> |
|
76 |
</xsd:element> |
|
77 |
<xsd:element name="resheader"> |
|
78 |
<xsd:complexType> |
|
79 |
<xsd:sequence> |
|
80 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
81 |
</xsd:sequence> |
|
82 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
83 |
</xsd:complexType> |
|
84 |
</xsd:element> |
|
85 |
</xsd:choice> |
|
86 |
</xsd:complexType> |
|
87 |
</xsd:element> |
|
88 |
</xsd:schema> |
|
89 |
<resheader name="resmimetype"> |
|
90 |
<value>text/microsoft-resx</value> |
|
91 |
</resheader> |
|
92 |
<resheader name="version"> |
|
93 |
<value>1.3</value> |
|
94 |
</resheader> |
|
95 |
<resheader name="reader"> |
|
96 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
97 |
</resheader> |
|
98 |
<resheader name="writer"> |
|
99 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
100 |
</resheader> |
|
101 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/CreateGoalAside.cs-CZ.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 2.0 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">2.0</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|
27 |
<comment>This is a comment</comment> |
|
28 |
</data> |
|
29 |
|
|
30 |
There are any number of "resheader" rows that contain simple |
|
31 |
name/value pairs. |
|
32 |
|
|
33 |
Each data row contains a name, and value. The row also contains a |
|
34 |
type or mimetype. Type corresponds to a .NET class that support |
|
35 |
text/value conversion through the TypeConverter architecture. |
|
36 |
Classes that don't support this are serialized and stored with the |
|
37 |
mimetype set. |
|
38 |
|
|
39 |
The mimetype is used for serialized objects, and tells the |
|
40 |
ResXResourceReader how to depersist the object. This is currently not |
|
41 |
extensible. For a given mimetype the value must be set accordingly: |
|
42 |
|
|
43 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
44 |
that the ResXResourceWriter will generate, however the reader can |
|
45 |
read any of the formats listed below. |
|
46 |
|
|
47 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
48 |
value : The object must be serialized with |
|
49 |
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter |
|
50 |
: and then encoded with base64 encoding. |
|
51 |
|
|
52 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
53 |
value : The object must be serialized with |
|
54 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
55 |
: and then encoded with base64 encoding. |
|
56 |
|
|
57 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
58 |
value : The object must be serialized into a byte array |
|
59 |
: using a System.ComponentModel.TypeConverter |
|
60 |
: and then encoded with base64 encoding. |
|
61 |
--> |
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> |
|
64 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
65 |
<xsd:complexType> |
|
66 |
<xsd:choice maxOccurs="unbounded"> |
|
67 |
<xsd:element name="metadata"> |
|
68 |
<xsd:complexType> |
|
69 |
<xsd:sequence> |
|
70 |
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" use="required" type="xsd:string" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" /> |
|
75 |
<xsd:attribute ref="xml:space" /> |
|
76 |
</xsd:complexType> |
|
77 |
</xsd:element> |
|
78 |
<xsd:element name="assembly"> |
|
79 |
<xsd:complexType> |
|
80 |
<xsd:attribute name="alias" type="xsd:string" /> |
|
81 |
<xsd:attribute name="name" type="xsd:string" /> |
|
82 |
</xsd:complexType> |
|
83 |
</xsd:element> |
|
84 |
<xsd:element name="data"> |
|
85 |
<xsd:complexType> |
|
86 |
<xsd:sequence> |
|
87 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
88 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
89 |
</xsd:sequence> |
|
90 |
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> |
|
91 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
92 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
93 |
<xsd:attribute ref="xml:space" /> |
|
94 |
</xsd:complexType> |
|
95 |
</xsd:element> |
|
96 |
<xsd:element name="resheader"> |
|
97 |
<xsd:complexType> |
|
98 |
<xsd:sequence> |
|
99 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
100 |
</xsd:sequence> |
|
101 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
102 |
</xsd:complexType> |
|
103 |
</xsd:element> |
|
104 |
</xsd:choice> |
|
105 |
</xsd:complexType> |
|
106 |
</xsd:element> |
|
107 |
</xsd:schema> |
|
108 |
<resheader name="resmimetype"> |
|
109 |
<value>text/microsoft-resx</value> |
|
110 |
</resheader> |
|
111 |
<resheader name="version"> |
|
112 |
<value>2.0</value> |
|
113 |
</resheader> |
|
114 |
<resheader name="reader"> |
|
115 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
116 |
</resheader> |
|
117 |
<resheader name="writer"> |
|
118 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
119 |
</resheader> |
|
120 |
<data name="Cancel" xml:space="preserve"> |
|
121 |
<value>Zrušit</value> |
|
122 |
</data> |
|
123 |
<data name="Create" xml:space="preserve"> |
|
124 |
<value>Vytvořit</value> |
|
125 |
</data> |
|
126 |
<data name="Description" xml:space="preserve"> |
|
127 |
<value>Popis cíle</value> |
|
128 |
</data> |
|
129 |
<data name="Name" xml:space="preserve"> |
|
130 |
<value>Název cíle</value> |
|
131 |
</data> |
|
132 |
<data name="Title" xml:space="preserve"> |
|
133 |
<value>Vytvořit nový cíl</value> |
|
134 |
</data> |
|
135 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/CreateGoalAside.de-DE.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 1.3 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">1.3</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1">this is my long string</data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
[base64 mime encoded serialized .NET Framework object] |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
[base64 mime encoded string representing a byte array form of the .NET Framework object] |
|
27 |
</data> |
|
28 |
|
|
29 |
There are any number of "resheader" rows that contain simple |
|
30 |
name/value pairs. |
|
31 |
|
|
32 |
Each data row contains a name, and value. The row also contains a |
|
33 |
type or mimetype. Type corresponds to a .NET class that support |
|
34 |
text/value conversion through the TypeConverter architecture. |
|
35 |
Classes that don't support this are serialized and stored with the |
|
36 |
mimetype set. |
|
37 |
|
|
38 |
The mimetype is used for serialized objects, and tells the |
|
39 |
ResXResourceReader how to depersist the object. This is currently not |
|
40 |
extensible. For a given mimetype the value must be set accordingly: |
|
41 |
|
|
42 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
43 |
that the ResXResourceWriter will generate, however the reader can |
|
44 |
read any of the formats listed below. |
|
45 |
|
|
46 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
47 |
value : The object must be serialized with |
|
48 |
: System.Serialization.Formatters.Binary.BinaryFormatter |
|
49 |
: and then encoded with base64 encoding. |
|
50 |
|
|
51 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
52 |
value : The object must be serialized with |
|
53 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
54 |
: and then encoded with base64 encoding. |
|
55 |
|
|
56 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
57 |
value : The object must be serialized into a byte array |
|
58 |
: using a System.ComponentModel.TypeConverter |
|
59 |
: and then encoded with base64 encoding. |
|
60 |
--> |
|
61 |
|
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
64 |
<xsd:complexType> |
|
65 |
<xsd:choice maxOccurs="unbounded"> |
|
66 |
<xsd:element name="data"> |
|
67 |
<xsd:complexType> |
|
68 |
<xsd:sequence> |
|
69 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
70 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
75 |
</xsd:complexType> |
|
76 |
</xsd:element> |
|
77 |
<xsd:element name="resheader"> |
|
78 |
<xsd:complexType> |
|
79 |
<xsd:sequence> |
|
80 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
81 |
</xsd:sequence> |
|
82 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
83 |
</xsd:complexType> |
|
84 |
</xsd:element> |
|
85 |
</xsd:choice> |
|
86 |
</xsd:complexType> |
|
87 |
</xsd:element> |
|
88 |
</xsd:schema> |
|
89 |
<resheader name="resmimetype"> |
|
90 |
<value>text/microsoft-resx</value> |
|
91 |
</resheader> |
|
92 |
<resheader name="version"> |
|
93 |
<value>1.3</value> |
|
94 |
</resheader> |
|
95 |
<resheader name="reader"> |
|
96 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
97 |
</resheader> |
|
98 |
<resheader name="writer"> |
|
99 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
100 |
</resheader> |
|
101 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/CreateGoalDefinition.cs-CZ.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 2.0 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">2.0</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
<value>[base64 mime encoded serialized .NET Framework object]</value> |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> |
|
27 |
<comment>This is a comment</comment> |
|
28 |
</data> |
|
29 |
|
|
30 |
There are any number of "resheader" rows that contain simple |
|
31 |
name/value pairs. |
|
32 |
|
|
33 |
Each data row contains a name, and value. The row also contains a |
|
34 |
type or mimetype. Type corresponds to a .NET class that support |
|
35 |
text/value conversion through the TypeConverter architecture. |
|
36 |
Classes that don't support this are serialized and stored with the |
|
37 |
mimetype set. |
|
38 |
|
|
39 |
The mimetype is used for serialized objects, and tells the |
|
40 |
ResXResourceReader how to depersist the object. This is currently not |
|
41 |
extensible. For a given mimetype the value must be set accordingly: |
|
42 |
|
|
43 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
44 |
that the ResXResourceWriter will generate, however the reader can |
|
45 |
read any of the formats listed below. |
|
46 |
|
|
47 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
48 |
value : The object must be serialized with |
|
49 |
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter |
|
50 |
: and then encoded with base64 encoding. |
|
51 |
|
|
52 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
53 |
value : The object must be serialized with |
|
54 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
55 |
: and then encoded with base64 encoding. |
|
56 |
|
|
57 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
58 |
value : The object must be serialized into a byte array |
|
59 |
: using a System.ComponentModel.TypeConverter |
|
60 |
: and then encoded with base64 encoding. |
|
61 |
--> |
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> |
|
64 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
65 |
<xsd:complexType> |
|
66 |
<xsd:choice maxOccurs="unbounded"> |
|
67 |
<xsd:element name="metadata"> |
|
68 |
<xsd:complexType> |
|
69 |
<xsd:sequence> |
|
70 |
<xsd:element name="value" type="xsd:string" minOccurs="0" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" use="required" type="xsd:string" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" /> |
|
75 |
<xsd:attribute ref="xml:space" /> |
|
76 |
</xsd:complexType> |
|
77 |
</xsd:element> |
|
78 |
<xsd:element name="assembly"> |
|
79 |
<xsd:complexType> |
|
80 |
<xsd:attribute name="alias" type="xsd:string" /> |
|
81 |
<xsd:attribute name="name" type="xsd:string" /> |
|
82 |
</xsd:complexType> |
|
83 |
</xsd:element> |
|
84 |
<xsd:element name="data"> |
|
85 |
<xsd:complexType> |
|
86 |
<xsd:sequence> |
|
87 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
88 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
89 |
</xsd:sequence> |
|
90 |
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> |
|
91 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
92 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
93 |
<xsd:attribute ref="xml:space" /> |
|
94 |
</xsd:complexType> |
|
95 |
</xsd:element> |
|
96 |
<xsd:element name="resheader"> |
|
97 |
<xsd:complexType> |
|
98 |
<xsd:sequence> |
|
99 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
100 |
</xsd:sequence> |
|
101 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
102 |
</xsd:complexType> |
|
103 |
</xsd:element> |
|
104 |
</xsd:choice> |
|
105 |
</xsd:complexType> |
|
106 |
</xsd:element> |
|
107 |
</xsd:schema> |
|
108 |
<resheader name="resmimetype"> |
|
109 |
<value>text/microsoft-resx</value> |
|
110 |
</resheader> |
|
111 |
<resheader name="version"> |
|
112 |
<value>2.0</value> |
|
113 |
</resheader> |
|
114 |
<resheader name="reader"> |
|
115 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
116 |
</resheader> |
|
117 |
<resheader name="writer"> |
|
118 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
119 |
</resheader> |
|
120 |
<data name="Cancel" xml:space="preserve"> |
|
121 |
<value>Zrušit</value> |
|
122 |
</data> |
|
123 |
<data name="Create" xml:space="preserve"> |
|
124 |
<value>Vytvořit</value> |
|
125 |
</data> |
|
126 |
<data name="Finance" xml:space="preserve"> |
|
127 |
<value>Finanční základ</value> |
|
128 |
</data> |
|
129 |
<data name="Hours" xml:space="preserve"> |
|
130 |
<value>Počet odpracovaných hodin</value> |
|
131 |
</data> |
|
132 |
<data name="Name" xml:space="preserve"> |
|
133 |
<value>Název definice</value> |
|
134 |
</data> |
|
135 |
<data name="SelectUser" xml:space="preserve"> |
|
136 |
<value>Zvolte uživatele</value> |
|
137 |
</data> |
|
138 |
<data name="Title" xml:space="preserve"> |
|
139 |
<value>Vytvořit definici cílů</value> |
|
140 |
</data> |
|
141 |
<data name="User" xml:space="preserve"> |
|
142 |
<value>Přiřazený uživatel</value> |
|
143 |
</data> |
|
144 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/CreateGoalDefinition.de-DE.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 1.3 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">1.3</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1">this is my long string</data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
[base64 mime encoded serialized .NET Framework object] |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
[base64 mime encoded string representing a byte array form of the .NET Framework object] |
|
27 |
</data> |
|
28 |
|
|
29 |
There are any number of "resheader" rows that contain simple |
|
30 |
name/value pairs. |
|
31 |
|
|
32 |
Each data row contains a name, and value. The row also contains a |
|
33 |
type or mimetype. Type corresponds to a .NET class that support |
|
34 |
text/value conversion through the TypeConverter architecture. |
|
35 |
Classes that don't support this are serialized and stored with the |
|
36 |
mimetype set. |
|
37 |
|
|
38 |
The mimetype is used for serialized objects, and tells the |
|
39 |
ResXResourceReader how to depersist the object. This is currently not |
|
40 |
extensible. For a given mimetype the value must be set accordingly: |
|
41 |
|
|
42 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
43 |
that the ResXResourceWriter will generate, however the reader can |
|
44 |
read any of the formats listed below. |
|
45 |
|
|
46 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
47 |
value : The object must be serialized with |
|
48 |
: System.Serialization.Formatters.Binary.BinaryFormatter |
|
49 |
: and then encoded with base64 encoding. |
|
50 |
|
|
51 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
52 |
value : The object must be serialized with |
|
53 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
54 |
: and then encoded with base64 encoding. |
|
55 |
|
|
56 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
57 |
value : The object must be serialized into a byte array |
|
58 |
: using a System.ComponentModel.TypeConverter |
|
59 |
: and then encoded with base64 encoding. |
|
60 |
--> |
|
61 |
|
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
64 |
<xsd:complexType> |
|
65 |
<xsd:choice maxOccurs="unbounded"> |
|
66 |
<xsd:element name="data"> |
|
67 |
<xsd:complexType> |
|
68 |
<xsd:sequence> |
|
69 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
70 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
75 |
</xsd:complexType> |
|
76 |
</xsd:element> |
|
77 |
<xsd:element name="resheader"> |
|
78 |
<xsd:complexType> |
|
79 |
<xsd:sequence> |
|
80 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
81 |
</xsd:sequence> |
|
82 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
83 |
</xsd:complexType> |
|
84 |
</xsd:element> |
|
85 |
</xsd:choice> |
|
86 |
</xsd:complexType> |
|
87 |
</xsd:element> |
|
88 |
</xsd:schema> |
|
89 |
<resheader name="resmimetype"> |
|
90 |
<value>text/microsoft-resx</value> |
|
91 |
</resheader> |
|
92 |
<resheader name="version"> |
|
93 |
<value>1.3</value> |
|
94 |
</resheader> |
|
95 |
<resheader name="reader"> |
|
96 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
97 |
</resheader> |
|
98 |
<resheader name="writer"> |
|
99 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
100 |
</resheader> |
|
101 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/GoalDetailAside.cs-CZ.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 1.3 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">1.3</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1">this is my long string</data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
[base64 mime encoded serialized .NET Framework object] |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
[base64 mime encoded string representing a byte array form of the .NET Framework object] |
|
27 |
</data> |
|
28 |
|
|
29 |
There are any number of "resheader" rows that contain simple |
|
30 |
name/value pairs. |
|
31 |
|
|
32 |
Each data row contains a name, and value. The row also contains a |
|
33 |
type or mimetype. Type corresponds to a .NET class that support |
|
34 |
text/value conversion through the TypeConverter architecture. |
|
35 |
Classes that don't support this are serialized and stored with the |
|
36 |
mimetype set. |
|
37 |
|
|
38 |
The mimetype is used for serialized objects, and tells the |
|
39 |
ResXResourceReader how to depersist the object. This is currently not |
|
40 |
extensible. For a given mimetype the value must be set accordingly: |
|
41 |
|
|
42 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
43 |
that the ResXResourceWriter will generate, however the reader can |
|
44 |
read any of the formats listed below. |
|
45 |
|
|
46 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
47 |
value : The object must be serialized with |
|
48 |
: System.Serialization.Formatters.Binary.BinaryFormatter |
|
49 |
: and then encoded with base64 encoding. |
|
50 |
|
|
51 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
52 |
value : The object must be serialized with |
|
53 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
54 |
: and then encoded with base64 encoding. |
|
55 |
|
|
56 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
57 |
value : The object must be serialized into a byte array |
|
58 |
: using a System.ComponentModel.TypeConverter |
|
59 |
: and then encoded with base64 encoding. |
|
60 |
--> |
|
61 |
|
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
64 |
<xsd:complexType> |
|
65 |
<xsd:choice maxOccurs="unbounded"> |
|
66 |
<xsd:element name="data"> |
|
67 |
<xsd:complexType> |
|
68 |
<xsd:sequence> |
|
69 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
70 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
75 |
</xsd:complexType> |
|
76 |
</xsd:element> |
|
77 |
<xsd:element name="resheader"> |
|
78 |
<xsd:complexType> |
|
79 |
<xsd:sequence> |
|
80 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
81 |
</xsd:sequence> |
|
82 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
83 |
</xsd:complexType> |
|
84 |
</xsd:element> |
|
85 |
</xsd:choice> |
|
86 |
</xsd:complexType> |
|
87 |
</xsd:element> |
|
88 |
</xsd:schema> |
|
89 |
<resheader name="resmimetype"> |
|
90 |
<value>text/microsoft-resx</value> |
|
91 |
</resheader> |
|
92 |
<resheader name="version"> |
|
93 |
<value>1.3</value> |
|
94 |
</resheader> |
|
95 |
<resheader name="reader"> |
|
96 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
97 |
</resheader> |
|
98 |
<resheader name="writer"> |
|
99 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
100 |
</resheader> |
|
101 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/GoalDetailAside.de-DE.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 1.3 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">1.3</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1">this is my long string</data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
[base64 mime encoded serialized .NET Framework object] |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
[base64 mime encoded string representing a byte array form of the .NET Framework object] |
|
27 |
</data> |
|
28 |
|
|
29 |
There are any number of "resheader" rows that contain simple |
|
30 |
name/value pairs. |
|
31 |
|
|
32 |
Each data row contains a name, and value. The row also contains a |
|
33 |
type or mimetype. Type corresponds to a .NET class that support |
|
34 |
text/value conversion through the TypeConverter architecture. |
|
35 |
Classes that don't support this are serialized and stored with the |
|
36 |
mimetype set. |
|
37 |
|
|
38 |
The mimetype is used for serialized objects, and tells the |
|
39 |
ResXResourceReader how to depersist the object. This is currently not |
|
40 |
extensible. For a given mimetype the value must be set accordingly: |
|
41 |
|
|
42 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
43 |
that the ResXResourceWriter will generate, however the reader can |
|
44 |
read any of the formats listed below. |
|
45 |
|
|
46 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
47 |
value : The object must be serialized with |
|
48 |
: System.Serialization.Formatters.Binary.BinaryFormatter |
|
49 |
: and then encoded with base64 encoding. |
|
50 |
|
|
51 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
52 |
value : The object must be serialized with |
|
53 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
54 |
: and then encoded with base64 encoding. |
|
55 |
|
|
56 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
57 |
value : The object must be serialized into a byte array |
|
58 |
: using a System.ComponentModel.TypeConverter |
|
59 |
: and then encoded with base64 encoding. |
|
60 |
--> |
|
61 |
|
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
64 |
<xsd:complexType> |
|
65 |
<xsd:choice maxOccurs="unbounded"> |
|
66 |
<xsd:element name="data"> |
|
67 |
<xsd:complexType> |
|
68 |
<xsd:sequence> |
|
69 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
70 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
75 |
</xsd:complexType> |
|
76 |
</xsd:element> |
|
77 |
<xsd:element name="resheader"> |
|
78 |
<xsd:complexType> |
|
79 |
<xsd:sequence> |
|
80 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
81 |
</xsd:sequence> |
|
82 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
83 |
</xsd:complexType> |
|
84 |
</xsd:element> |
|
85 |
</xsd:choice> |
|
86 |
</xsd:complexType> |
|
87 |
</xsd:element> |
|
88 |
</xsd:schema> |
|
89 |
<resheader name="resmimetype"> |
|
90 |
<value>text/microsoft-resx</value> |
|
91 |
</resheader> |
|
92 |
<resheader name="version"> |
|
93 |
<value>1.3</value> |
|
94 |
</resheader> |
|
95 |
<resheader name="reader"> |
|
96 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
97 |
</resheader> |
|
98 |
<resheader name="writer"> |
|
99 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
100 |
</resheader> |
|
101 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/ReviewDetailAside.cs-CZ.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 1.3 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">1.3</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1">this is my long string</data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
[base64 mime encoded serialized .NET Framework object] |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
[base64 mime encoded string representing a byte array form of the .NET Framework object] |
|
27 |
</data> |
|
28 |
|
|
29 |
There are any number of "resheader" rows that contain simple |
|
30 |
name/value pairs. |
|
31 |
|
|
32 |
Each data row contains a name, and value. The row also contains a |
|
33 |
type or mimetype. Type corresponds to a .NET class that support |
|
34 |
text/value conversion through the TypeConverter architecture. |
|
35 |
Classes that don't support this are serialized and stored with the |
|
36 |
mimetype set. |
|
37 |
|
|
38 |
The mimetype is used for serialized objects, and tells the |
|
39 |
ResXResourceReader how to depersist the object. This is currently not |
|
40 |
extensible. For a given mimetype the value must be set accordingly: |
|
41 |
|
|
42 |
Note - application/x-microsoft.net.object.binary.base64 is the format |
|
43 |
that the ResXResourceWriter will generate, however the reader can |
|
44 |
read any of the formats listed below. |
|
45 |
|
|
46 |
mimetype: application/x-microsoft.net.object.binary.base64 |
|
47 |
value : The object must be serialized with |
|
48 |
: System.Serialization.Formatters.Binary.BinaryFormatter |
|
49 |
: and then encoded with base64 encoding. |
|
50 |
|
|
51 |
mimetype: application/x-microsoft.net.object.soap.base64 |
|
52 |
value : The object must be serialized with |
|
53 |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter |
|
54 |
: and then encoded with base64 encoding. |
|
55 |
|
|
56 |
mimetype: application/x-microsoft.net.object.bytearray.base64 |
|
57 |
value : The object must be serialized into a byte array |
|
58 |
: using a System.ComponentModel.TypeConverter |
|
59 |
: and then encoded with base64 encoding. |
|
60 |
--> |
|
61 |
|
|
62 |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> |
|
63 |
<xsd:element name="root" msdata:IsDataSet="true"> |
|
64 |
<xsd:complexType> |
|
65 |
<xsd:choice maxOccurs="unbounded"> |
|
66 |
<xsd:element name="data"> |
|
67 |
<xsd:complexType> |
|
68 |
<xsd:sequence> |
|
69 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
70 |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> |
|
71 |
</xsd:sequence> |
|
72 |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> |
|
73 |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> |
|
74 |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> |
|
75 |
</xsd:complexType> |
|
76 |
</xsd:element> |
|
77 |
<xsd:element name="resheader"> |
|
78 |
<xsd:complexType> |
|
79 |
<xsd:sequence> |
|
80 |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> |
|
81 |
</xsd:sequence> |
|
82 |
<xsd:attribute name="name" type="xsd:string" use="required" /> |
|
83 |
</xsd:complexType> |
|
84 |
</xsd:element> |
|
85 |
</xsd:choice> |
|
86 |
</xsd:complexType> |
|
87 |
</xsd:element> |
|
88 |
</xsd:schema> |
|
89 |
<resheader name="resmimetype"> |
|
90 |
<value>text/microsoft-resx</value> |
|
91 |
</resheader> |
|
92 |
<resheader name="version"> |
|
93 |
<value>1.3</value> |
|
94 |
</resheader> |
|
95 |
<resheader name="reader"> |
|
96 |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
97 |
</resheader> |
|
98 |
<resheader name="writer"> |
|
99 |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> |
|
100 |
</resheader> |
|
101 |
</root> |
src/Modules/Goal/Application/Leuze.Modules.Goal.Application.UI/Resources/Pages/Components/ReviewDetailAside.de-DE.resx | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<root> |
|
3 |
<!-- |
|
4 |
Microsoft ResX Schema |
|
5 |
|
|
6 |
Version 1.3 |
|
7 |
|
|
8 |
The primary goals of this format is to allow a simple XML format |
|
9 |
that is mostly human readable. The generation and parsing of the |
|
10 |
various data types are done through the TypeConverter classes |
|
11 |
associated with the data types. |
|
12 |
|
|
13 |
Example: |
|
14 |
|
|
15 |
... ado.net/XML headers & schema ... |
|
16 |
<resheader name="resmimetype">text/microsoft-resx</resheader> |
|
17 |
<resheader name="version">1.3</resheader> |
|
18 |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> |
|
19 |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> |
|
20 |
<data name="Name1">this is my long string</data> |
|
21 |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> |
|
22 |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> |
|
23 |
[base64 mime encoded serialized .NET Framework object] |
|
24 |
</data> |
|
25 |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
|
26 |
[base64 mime encoded string representing a byte array form of the .NET Framework object] |
|
27 |
</data> |
|
28 |
|
|
29 |
There are any number of "resheader" rows that contain simple |
|
30 |
name/value pairs. |
|
31 |
|
|
32 |
Each data row contains a name, and value. The row also contains a |
|
33 |
type or mimetype. Type corresponds to a .NET class that support |
|
34 |
text/value conversion through the TypeConverter architecture. |
|
35 |
Classes that don't support this are serialized and stored with the |
|
36 |
mimetype set. |
Také k dispozici: Unified diff
Goal mutations