diff --git a/ENI-2/ENI2/ENI2/DetailViewControls/PortNotificationDetailControl.xaml b/ENI-2/ENI2/ENI2/DetailViewControls/PortNotificationDetailControl.xaml index a779b90e..dfc63057 100644 --- a/ENI-2/ENI2/ENI2/DetailViewControls/PortNotificationDetailControl.xaml +++ b/ENI-2/ENI2/ENI2/DetailViewControls/PortNotificationDetailControl.xaml @@ -60,7 +60,7 @@ - + @@ -80,12 +80,12 @@ - + - + diff --git a/ENI-2/ENI2/ENI2/ENI2.csproj b/ENI-2/ENI2/ENI2/ENI2.csproj index 2203865c..3d5b4898 100644 --- a/ENI-2/ENI2/ENI2/ENI2.csproj +++ b/ENI-2/ENI2/ENI2/ENI2.csproj @@ -35,7 +35,7 @@ 3.5.1.0 true publish.html - 9 + 10 3.5.6.%2a false true diff --git a/ENI-2/ENI2/ENI2/ENI2.licenseheader b/ENI-2/ENI2/ENI2/ENI2.licenseheader index 9eb29a53..3205f00b 100644 --- a/ENI-2/ENI2/ENI2/ENI2.licenseheader +++ b/ENI-2/ENI2/ENI2/ENI2.licenseheader @@ -10,7 +10,7 @@ Copyright (c) 2017 Informatikbüro Daniel Schick --%> extensions: .vb 'Sample license text. -extensions: .xml .config .xsd +extensions: .xml .config .xsd .xaml \ No newline at end of file diff --git a/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml b/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml index 121e558a..a3a11bb1 100644 --- a/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml +++ b/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml @@ -1,13 +1,17 @@ - + + Title="{x:Static p:Resources.textLadg}" Height="246" Width="800" WindowStyle="SingleBorderWindow" Background="AliceBlue"> @@ -31,5 +35,15 @@ diff --git a/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml.cs b/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml.cs index 015c44c4..18855347 100644 --- a/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml.cs +++ b/ENI-2/ENI2/ENI2/EditControls/EditLADGDialog.xaml.cs @@ -26,12 +26,102 @@ namespace ENI2.EditControls /// public partial class EditLADGDialog : EditWindowBase { + private static string[] handlingTypeList = + { + Properties.Resources.textLoading, + Properties.Resources.textDischarge, + Properties.Resources.textTransit + }; + + public EditLADGDialog() { InitializeComponent(); + Loaded += EditLADGDialog_Loaded; } public LADG LADG { get; set; } + #region event handler + + private void EditLADGDialog_Loaded(object sender, RoutedEventArgs e) + { + this.OKClicked += EditLADGDialog_OKClicked; + + this.comboBoxHandlingType.ItemsSource = handlingTypeList; + this.comboBoxLACodes.ItemsSource = LaCodes; + + if (this.LADG.CargoHandlingType.HasValue) + this.comboBoxHandlingType.SelectedIndex = this.LADG.CargoHandlingType.Value; + this.integerUpDownNumberOfItems.Value = this.LADG.CargoNumberOfItems; + this.doubleUpDownGrossQuantity.Value = this.LADG.CargoGrossQuantity_TNE; + this.locodeControl_PortOfLoading.LocodeValue = this.LADG.PortOfLoading; + this.locodeControl_PortOfDischarge.LocodeValue = this.LADG.PortOfDischarge; + this.comboBoxLACodes.SelectedItem = LACodeEntryForCode(this.LADG.CargoLACode); + + + + } + + private void EditLADGDialog_OKClicked() + { + this.LADG.CargoHandlingType = (this.comboBoxHandlingType.SelectedIndex < 0) ? null : (byte?) this.comboBoxHandlingType.SelectedIndex; + this.LADG.CargoNumberOfItems = this.integerUpDownNumberOfItems.Value; + this.LADG.CargoGrossQuantity_TNE = this.doubleUpDownGrossQuantity.Value; + this.LADG.PortOfLoading = this.locodeControl_PortOfLoading.LocodeValue; + this.LADG.PortOfDischarge = this.locodeControl_PortOfDischarge.LocodeValue; + this.LADG.CargoLACode = (this.comboBoxLACodes.SelectedIndex < 0) ? null : (int?) ((LACodeEntry)this.comboBoxLACodes.SelectedValue).Code; + } + + #endregion + + #region class LACodeEntry + + private static LACodeEntry[] LaCodes = + { + new LACodeEntry(10, "unverpacktes Flüssiggut"), + new LACodeEntry(20, "unverpacktes Schüttgut"), + new LACodeEntry(30, "unverpacktes oder konventionell verpacktes Stückgut (Stückgut nicht in Containern >= 20 Fuß und nicht auf Ro-Ro-Einheiten)"), + new LACodeEntry(31, "Kfz als Handelsgüter"), + new LACodeEntry(32, "lebende Tiere als Handelsgüter"), + new LACodeEntry(41, "20-Fuß-Container"), + new LACodeEntry(42, "40-Fuß-Container"), + new LACodeEntry(43, "Container zwischen 20 und 40 Fuß"), + new LACodeEntry(44, "Container größer als 40 Fuß"), + new LACodeEntry(51, "Straßengüterfahrzeuge einschl. deren Anhänger"), + new LACodeEntry(52, "Pkw einschl. deren Anhänger, Krafträder"), + new LACodeEntry(53, "Omnibusse"), + new LACodeEntry(61, "Anhänger / Sattelauflieger für Straßengüterfahrzeuge"), + new LACodeEntry(62, "Sonstige Anhänger von Straßenfahrzeugen (ohne Zugmaschine) und nicht selbstfahrende Straßenfahrzeuge"), + new LACodeEntry(63, "Rolltrailer (Anhänger für die Güterbeförderung auf See"), + new LACodeEntry(64, "Trägerschiffsleichter"), + new LACodeEntry(65, "Wechselbrücken / -behälter"), + new LACodeEntry(66, "Eisenbahngüterwagen"), + new LACodeEntry(67, "Reisezugwagen und Triebwagen") + }; + + private static LACodeEntry LACodeEntryForCode(int? code) + { + if (!code.HasValue) return null; + for (int i = 0; i < LaCodes.Length; i++) + if (LaCodes[i].Code == code) return LaCodes[i]; + return null; + } + + public class LACodeEntry + { + public int Code; + public string Description; + + public LACodeEntry(int code, string description) { Code = code; Description = description; } + + public override string ToString() + { + return string.Format("{0} - {1}", this.Code, this.Description); + } + } + + #endregion + } } diff --git a/ENI-2/ENI2/ENI2/MainWindow.xaml b/ENI-2/ENI2/ENI2/MainWindow.xaml index 5b27f86e..550c6c4d 100644 --- a/ENI-2/ENI2/ENI2/MainWindow.xaml +++ b/ENI-2/ENI2/ENI2/MainWindow.xaml @@ -6,7 +6,7 @@ xmlns:p="clr-namespace:ENI2.Properties" xmlns:local="clr-namespace:ENI2" mc:Ignorable="d" - Title="ENI 2" Height="350" Width="525" Icon="Resources/logo_schwarz.ico" Loaded="Window_Loaded" Closing="Window_Closing" + Title="ENI 2" Height="450" Width="825" Icon="Resources/logo_schwarz.ico" Loaded="Window_Loaded" Closing="Window_Closing" SourceInitialized="Window_SourceInitialized"> +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ENI2.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ENI2.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap add { + get { + object obj = ResourceManager.GetObject("add", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap alarmclock { + get { + object obj = ResourceManager.GetObject("alarmclock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap anchor { + get { + object obj = ResourceManager.GetObject("anchor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap arrow_down_right_red { + get { + object obj = ResourceManager.GetObject("arrow_down_right_red", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap arrow_up_right_green { + get { + object obj = ResourceManager.GetObject("arrow_up_right_green", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap bullet_ball_green { + get { + object obj = ResourceManager.GetObject("bullet_ball_green", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap bullet_ball_grey { + get { + object obj = ResourceManager.GetObject("bullet_ball_grey", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap bullet_ball_red { + get { + object obj = ResourceManager.GetObject("bullet_ball_red", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap bullet_ball_yellow { + get { + object obj = ResourceManager.GetObject("bullet_ball_yellow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + public static System.Drawing.Icon containership { + get { + object obj = ResourceManager.GetObject("containership", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap containership1 { + get { + object obj = ResourceManager.GetObject("containership1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap delete { + get { + object obj = ResourceManager.GetObject("delete", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap document_plain { + get { + object obj = ResourceManager.GetObject("document_plain", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap documents { + get { + object obj = ResourceManager.GetObject("documents", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap edit { + get { + object obj = ResourceManager.GetObject("edit", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap ef_logo { + get { + object obj = ResourceManager.GetObject("ef_logo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap EUREPORT { + get { + object obj = ResourceManager.GetObject("EUREPORT", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap eye_blue { + get { + object obj = ResourceManager.GetObject("eye_blue", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap floppy_disk_blue { + get { + object obj = ResourceManager.GetObject("floppy_disk_blue", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap garbage { + get { + object obj = ResourceManager.GetObject("garbage", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + public static System.Drawing.Icon logo_schwarz { + get { + object obj = ResourceManager.GetObject("logo_schwarz", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap medical_bag { + get { + object obj = ResourceManager.GetObject("medical_bag", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap policeman_german { + get { + object obj = ResourceManager.GetObject("policeman_german", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap printer { + get { + object obj = ResourceManager.GetObject("printer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap shield_yellow { + get { + object obj = ResourceManager.GetObject("shield_yellow", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap ship2 { + get { + object obj = ResourceManager.GetObject("ship2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap sign_warning_radiation { + get { + object obj = ResourceManager.GetObject("sign_warning_radiation", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized string similar to _Add. + /// + public static string textAdd { + get { + return ResourceManager.GetString("textAdd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Agent. + /// + public static string textAgent { + get { + return ResourceManager.GetString("textAgent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Anchored. + /// + public static string textAnchored { + get { + return ResourceManager.GetString("textAnchored", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure?. + /// + public static string textAreYouSure { + get { + return ResourceManager.GetString("textAreYouSure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Arrival/Departure. + /// + public static string textArrivalDeparture { + get { + return ResourceManager.GetString("textArrivalDeparture", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Arrival notification. + /// + public static string textArrivalNotification { + get { + return ResourceManager.GetString("textArrivalNotification", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ATA port of call. + /// + public static string textATAPortOfCall { + get { + return ResourceManager.GetString("textATAPortOfCall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ATD port of call. + /// + public static string textATDPortOfCall { + get { + return ResourceManager.GetString("textATDPortOfCall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Border Police. + /// + public static string textBorderPolice { + get { + return ResourceManager.GetString("textBorderPolice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bow thruster power. + /// + public static string textBowThrusterPower { + get { + return ResourceManager.GetString("textBowThrusterPower", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Call Purposes. + /// + public static string textCallPurposes { + get { + return ResourceManager.GetString("textCallPurposes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confirm deletion. + /// + public static string textCaptionDeleteConfirm { + get { + return ResourceManager.GetString("textCaptionDeleteConfirm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Code (NST). + /// + public static string textCargoCodeNST { + get { + return ResourceManager.GetString("textCargoCodeNST", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Code NST 3rd. + /// + public static string textCargoCodeNST3 { + get { + return ResourceManager.GetString("textCargoCodeNST3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gross quantity. + /// + public static string textCargoGrossQuantity { + get { + return ResourceManager.GetString("textCargoGrossQuantity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Handling type. + /// + public static string textCargoHandlingType { + get { + return ResourceManager.GetString("textCargoHandlingType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of items. + /// + public static string textCargoNumberOfItems { + get { + return ResourceManager.GetString("textCargoNumberOfItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port of discharge. + /// + public static string textCargoPortOfDischarge { + get { + return ResourceManager.GetString("textCargoPortOfDischarge", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port of loading. + /// + public static string textCargoPortOfLoading { + get { + return ResourceManager.GetString("textCargoPortOfLoading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to City. + /// + public static string textCity { + get { + return ResourceManager.GetString("textCity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + public static string textClear { + get { + return ResourceManager.GetString("textClear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Code. + /// + public static string textCode { + get { + return ResourceManager.GetString("textCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Company name. + /// + public static string textCompanyName { + get { + return ResourceManager.GetString("textCompanyName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Construction characteristics. + /// + public static string textConstructionCharacteristics { + get { + return ResourceManager.GetString("textConstructionCharacteristics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Declarations. + /// + public static string textDeclarations { + get { + return ResourceManager.GetString("textDeclarations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Delete. + /// + public static string textDelete { + get { + return ResourceManager.GetString("textDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Departure notification. + /// + public static string textDepartureNotification { + get { + return ResourceManager.GetString("textDepartureNotification", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deplacement summer draught. + /// + public static string textDeplacementSummerDraught { + get { + return ResourceManager.GetString("textDeplacementSummerDraught", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Description. + /// + public static string textDescription { + get { + return ResourceManager.GetString("textDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dangerous goods arrival. + /// + public static string textDGArrival { + get { + return ResourceManager.GetString("textDGArrival", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dangerous goods departuer. + /// + public static string textDGDeparture { + get { + return ResourceManager.GetString("textDGDeparture", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discharge. + /// + public static string textDischarge { + get { + return ResourceManager.GetString("textDischarge", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Edit. + /// + public static string textEdit { + get { + return ResourceManager.GetString("textEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E-Mail. + /// + public static string textEMail { + get { + return ResourceManager.GetString("textEMail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ENI number. + /// + public static string textENI { + get { + return ResourceManager.GetString("textENI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ETA Kiel Canal. + /// + public static string textETAKielCanal { + get { + return ResourceManager.GetString("textETAKielCanal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ETA next port. + /// + public static string textETANextPort { + get { + return ResourceManager.GetString("textETANextPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ETA port of call. + /// + public static string textETAPortOfCall { + get { + return ResourceManager.GetString("textETAPortOfCall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ETD Kiel Canal. + /// + public static string textETDKielCanal { + get { + return ResourceManager.GetString("textETDKielCanal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ETD last port. + /// + public static string textETDLastPort { + get { + return ResourceManager.GetString("textETDLastPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ETD port of call. + /// + public static string textETDPortOfCall { + get { + return ResourceManager.GetString("textETDPortOfCall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Export. + /// + public static string textExport { + get { + return ResourceManager.GetString("textExport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fax. + /// + public static string textFax { + get { + return ResourceManager.GetString("textFax", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First name. + /// + public static string textFirstName { + get { + return ResourceManager.GetString("textFirstName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fumigated bulk cargo. + /// + public static string textFumigatedBulkCargo { + get { + return ResourceManager.GetString("textFumigatedBulkCargo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to IMO number. + /// + public static string textIMO { + get { + return ResourceManager.GetString("textIMO", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Info. + /// + public static string textInfo { + get { + return ResourceManager.GetString("textInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LA Code. + /// + public static string textLACodes { + get { + return ResourceManager.GetString("textLACodes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cargo. + /// + public static string textLadg { + get { + return ResourceManager.GetString("textLadg", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last name. + /// + public static string textLastName { + get { + return ResourceManager.GetString("textLastName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last Port. + /// + public static string textLastPort { + get { + return ResourceManager.GetString("textLastPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Loading. + /// + public static string textLoading { + get { + return ResourceManager.GetString("textLoading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Master. + /// + public static string textMaster { + get { + return ResourceManager.GetString("textMaster", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maritime health declaration. + /// + public static string textMDH { + get { + return ResourceManager.GetString("textMDH", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name of master. + /// + public static string textNameMaster { + get { + return ResourceManager.GetString("textNameMaster", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Port. + /// + public static string textNextPort { + get { + return ResourceManager.GetString("textNextPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Operations. + /// + public static string textOperations { + get { + return ResourceManager.GetString("textOperations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Overview. + /// + public static string textOverview { + get { + return ResourceManager.GetString("textOverview", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone. + /// + public static string textPhone { + get { + return ResourceManager.GetString("textPhone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port area. + /// + public static string textPortArea { + get { + return ResourceManager.GetString("textPortArea", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port of call. + /// + public static string textPortCall { + get { + return ResourceManager.GetString("textPortCall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port facility. + /// + public static string textPortFacility { + get { + return ResourceManager.GetString("textPortFacility", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port notification. + /// + public static string textPortNotification { + get { + return ResourceManager.GetString("textPortNotification", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Postalcode. + /// + public static string textPostalCode { + get { + return ResourceManager.GetString("textPostalCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Print. + /// + public static string textPrint { + get { + return ResourceManager.GetString("textPrint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PSC 72h. + /// + public static string textPSC72h { + get { + return ResourceManager.GetString("textPSC72h", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Requested position in port of call. + /// + public static string textRequestedPositionInPortOfCall { + get { + return ResourceManager.GetString("textRequestedPositionInPortOfCall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + public static string textSearch { + get { + return ResourceManager.GetString("textSearch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Security. + /// + public static string textSecurity { + get { + return ResourceManager.GetString("textSecurity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ship services. + /// + public static string textServ { + get { + return ResourceManager.GetString("textServ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Beneficiary. + /// + public static string textServiceBeneficiary { + get { + return ResourceManager.GetString("textServiceBeneficiary", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invoice recipient. + /// + public static string textServiceInvoiceRecipient { + get { + return ResourceManager.GetString("textServiceInvoiceRecipient", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service name. + /// + public static string textServiceName { + get { + return ResourceManager.GetString("textServiceName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ship data. + /// + public static string textShipData { + get { + return ResourceManager.GetString("textShipData", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shipping area. + /// + public static string textShippingArea { + get { + return ResourceManager.GetString("textShippingArea", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Europe. + /// + public static string textShippingAreaEUROPE { + get { + return ResourceManager.GetString("textShippingAreaEUROPE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to North / Baltic Sea. + /// + public static string textShippingAreaNORTHBALTIC { + get { + return ResourceManager.GetString("textShippingAreaNORTHBALTIC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Overseas. + /// + public static string textShippingAreaOverseas { + get { + return ResourceManager.GetString("textShippingAreaOverseas", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Show as text. + /// + public static string textShowAsText { + get { + return ResourceManager.GetString("textShowAsText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Special requirements. + /// + public static string textSpecialRequirementsOfShipAtBerth { + get { + return ResourceManager.GetString("textSpecialRequirementsOfShipAtBerth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stern thruster power. + /// + public static string textSternThrusterPower { + get { + return ResourceManager.GetString("textSternThrusterPower", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Street / number. + /// + public static string textStreetNumber { + get { + return ResourceManager.GetString("textStreetNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Towage. + /// + public static string textTowage { + get { + return ResourceManager.GetString("textTowage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Transit. + /// + public static string textTransit { + get { + return ResourceManager.GetString("textTransit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type for Locode.... + /// + public static string textTypeLocode { + get { + return ResourceManager.GetString("textTypeLocode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Visit / transit. + /// + public static string textVisitTransit { + get { + return ResourceManager.GetString("textVisitTransit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Visit / transit id. + /// + public static string textVisitTransitId { + get { + return ResourceManager.GetString("textVisitTransitId", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waste. + /// + public static string textWaste { + get { + return ResourceManager.GetString("textWaste", resourceCulture); + } + } + } +} diff --git a/ENI-2/ENI2/ENI2/Properties/Resources.resx b/ENI-2/ENI2/ENI2/Properties/Resources.resx index 09c57b85..02fdd285 100644 --- a/ENI-2/ENI2/ENI2/Properties/Resources.resx +++ b/ENI-2/ENI2/ENI2/Properties/Resources.resx @@ -457,4 +457,13 @@ Overseas + + Loading + + + Discharge + + + Transit + \ No newline at end of file diff --git a/Stundensheet.xlsx b/Stundensheet.xlsx index 96d1f5e8..6e209fb1 100644 Binary files a/Stundensheet.xlsx and b/Stundensheet.xlsx differ