MetrologyDlgEvaporationTab : Resources : Correction -> Evaporation, ver. 2.18.1229

This commit is contained in:
Milan Hanajik 2019-05-15 15:45:31 +02:00
parent 1a122cfa12
commit d6215178b1
14 changed files with 43 additions and 7 deletions

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.18.1151.0")] [assembly: AssemblyVersion("2.18.1227.0")]
[assembly: AssemblyFileVersion("2.18.1151.0")] [assembly: AssemblyFileVersion("2.18.1227.0")]

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.18.1226.0")] [assembly: AssemblyVersion("2.18.1227.0")]
[assembly: AssemblyFileVersion("2.18.1226.0")] [assembly: AssemblyFileVersion("2.18.1227.0")]

View File

@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Build Number // Build Number
// Revision // Revision
// //
[assembly: AssemblyVersion("2.18.1226.0")] [assembly: AssemblyVersion("2.18.1229.0")]
[assembly: AssemblyFileVersion("2.18.1226.0")] [assembly: AssemblyFileVersion("2.18.1229.0")]

View File

@ -1617,6 +1617,15 @@ namespace TBF.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Evaporation.
/// </summary>
internal static string Evaporation {
get {
return ResourceManager.GetString("Evaporation", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Exit. /// Looks up a localized string similar to Exit.
/// </summary> /// </summary>

View File

@ -1437,4 +1437,7 @@
<data name="Fix" xml:space="preserve"> <data name="Fix" xml:space="preserve">
<value>Oprav</value> <value>Oprav</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>Vypařování</value>
</data>
</root> </root>

View File

@ -1473,4 +1473,7 @@
<data name="Short_pulses" xml:space="preserve"> <data name="Short_pulses" xml:space="preserve">
<value>kurze Impulse</value> <value>kurze Impulse</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>Verdunstung</value>
</data>
</root> </root>

View File

@ -1755,4 +1755,7 @@
<data name="Result" xml:space="preserve"> <data name="Result" xml:space="preserve">
<value>risultato</value> <value>risultato</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>evaporazione</value>
</data>
</root> </root>

View File

@ -1608,4 +1608,7 @@
<data name="Shutting_down_devices" xml:space="preserve"> <data name="Shutting_down_devices" xml:space="preserve">
<value>Zamykanie urządzeń</value> <value>Zamykanie urządzeń</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>Odparowanie</value>
</data>
</root> </root>

View File

@ -1987,4 +1987,7 @@
<data name="NaN" xml:space="preserve"> <data name="NaN" xml:space="preserve">
<value>NaN</value> <value>NaN</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>Evaporation</value>
</data>
</root> </root>

View File

@ -831,4 +831,7 @@
<data name="Results" xml:space="preserve"> <data name="Results" xml:space="preserve">
<value>Rezultate</value> <value>Rezultate</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>Evaporare</value>
</data>
</root> </root>

View File

@ -1602,4 +1602,7 @@
<data name="Result" xml:space="preserve"> <data name="Result" xml:space="preserve">
<value>Результат</value> <value>Результат</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>испарение</value>
</data>
</root> </root>

View File

@ -168,4 +168,7 @@
<data name="Mute_alarm" xml:space="preserve"> <data name="Mute_alarm" xml:space="preserve">
<value>Stlmiť sirénu</value> <value>Stlmiť sirénu</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>Odparovanie</value>
</data>
</root> </root>

View File

@ -1188,4 +1188,7 @@
<data name="Result" xml:space="preserve"> <data name="Result" xml:space="preserve">
<value>重试</value> <value>重试</value>
</data> </data>
<data name="Evaporation" xml:space="preserve">
<value>蒸发</value>
</data>
</root> </root>

View File

@ -81,7 +81,7 @@ namespace TBF.UiControls
listViewEx.Columns.Add(new ColumnHeader() { Text = Strings.Nr, Width = 60 }); listViewEx.Columns.Add(new ColumnHeader() { Text = Strings.Nr, Width = 60 });
listViewEx.Columns.Add(new ColumnHeader() { Text = string.Format("{0} [°C]", Strings.Temperature), Width = 100 }); listViewEx.Columns.Add(new ColumnHeader() { Text = string.Format("{0} [°C]", Strings.Temperature), Width = 100 });
listViewEx.Columns.Add(new ColumnHeader() { Text = string.Format("{0} [g/hour]", Strings.Correction), Width = 100 }); listViewEx.Columns.Add(new ColumnHeader() { Text = string.Format("{0} [g/hour]", Strings.Evaporation), Width = 100 });
RefreshAll(); RefreshAll();
} }