From f9083f60eaeefd785e2a01e4dae152e09a60d306 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1s=C3=A1ry=20D=C3=A1niel?= Date: Mon, 13 Aug 2018 15:01:58 +0000 Subject: [PATCH] git-tfs-id: [http://tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube;C31240 --- client/AudioRecorder/AudioRecorder.csproj | 4 +- client/DxPlay/DxPlay.csproj | 4 +- client/Maestro/Maestro.csproj | 4 +- .../Controls/CheckableTreeView.cs | 12 +- .../NativeOctopusClient.csproj | 24 +- client/NativeOctopusClient/OctopusAPI.cs | 2 +- .../OctopusIDSelector.Designer.cs | 7 +- .../NativeOctopusClient/OctopusIDSelector.cs | 10 +- .../NativeOctopusClient/OctopusParameters.cs | 2 +- .../Properties/Resources.Designer.cs | 208 ++++++++++++++++++ .../Properties}/Resources.resx | 2 +- .../Resources/ic_refresh_black_24dp_1x.png | Bin 0 -> 249 bytes client/OctopusClient/OctopusClient.csproj | 11 +- .../OctopusIDSelector.Designer.cs | 2 +- client/OctopusClient/OctopusIDSelector.cs | 8 +- .../OctopusLookupResultSelector.cs | 20 +- .../Properties/Resources.Designer.cs | 208 ++++++++++++++++++ .../OctopusClient/Properties/Resources.resx | 169 ++++++++++++++ 18 files changed, 654 insertions(+), 43 deletions(-) create mode 100644 client/NativeOctopusClient/Properties/Resources.Designer.cs rename client/{OctopusClient => NativeOctopusClient/Properties}/Resources.resx (95%) create mode 100644 client/NativeOctopusClient/Resources/ic_refresh_black_24dp_1x.png create mode 100644 client/OctopusClient/Properties/Resources.Designer.cs create mode 100644 client/OctopusClient/Properties/Resources.resx diff --git a/client/AudioRecorder/AudioRecorder.csproj b/client/AudioRecorder/AudioRecorder.csproj index 5a1fbc4f..2f615a27 100644 --- a/client/AudioRecorder/AudioRecorder.csproj +++ b/client/AudioRecorder/AudioRecorder.csproj @@ -180,7 +180,9 @@ ResXFileCodeGenerator Resources.Designer.cs - + + Designer + SettingsSingleFileGenerator Settings.Designer.cs diff --git a/client/DxPlay/DxPlay.csproj b/client/DxPlay/DxPlay.csproj index 9d122fdd..fddd9064 100644 --- a/client/DxPlay/DxPlay.csproj +++ b/client/DxPlay/DxPlay.csproj @@ -244,7 +244,9 @@ Always - + + Designer + diff --git a/client/Maestro/Maestro.csproj b/client/Maestro/Maestro.csproj index 831c0073..6ec0cb72 100644 --- a/client/Maestro/Maestro.csproj +++ b/client/Maestro/Maestro.csproj @@ -338,7 +338,9 @@ PreserveNewest Designer - + + Designer + diff --git a/client/MaestroShared/Controls/CheckableTreeView.cs b/client/MaestroShared/Controls/CheckableTreeView.cs index 4e48c46c..0bf8889e 100644 --- a/client/MaestroShared/Controls/CheckableTreeView.cs +++ b/client/MaestroShared/Controls/CheckableTreeView.cs @@ -1,15 +1,13 @@ -using System; -using System.Drawing; +using System.Drawing; using System.Windows.Forms; namespace MaestroShared.Controls { - class CheckableTreeView : DoubleClickTreeView { - private readonly bool[] disableCheckBoxLevels; + public class CheckableTreeView : DoubleClickTreeView { + public bool[] DisableCheckBoxLevels { get; set; } - public CheckableTreeView(bool[] disableCheckBoxLevels) { + public CheckableTreeView() { DrawMode = TreeViewDrawMode.OwnerDrawText; DrawNode += OnDrawNode; - this.disableCheckBoxLevels = disableCheckBoxLevels; } void OnDrawNode(object sender, DrawTreeNodeEventArgs e) { @@ -19,7 +17,7 @@ namespace MaestroShared.Controls { e.Graphics.FillRectangle(brush, e.Bounds.X, e.Bounds.Y, e.Bounds.Width, e.Bounds.Height); } bool disableHack = false; - if (disableCheckBoxLevels.Length > e.Node.Level && disableCheckBoxLevels[e.Node.Level]) + if (DisableCheckBoxLevels != null && DisableCheckBoxLevels.Length > e.Node.Level && DisableCheckBoxLevels[e.Node.Level]) disableHack = true; if (!disableHack) { diff --git a/client/NativeOctopusClient/NativeOctopusClient.csproj b/client/NativeOctopusClient/NativeOctopusClient.csproj index be1748a8..f3622f1a 100644 --- a/client/NativeOctopusClient/NativeOctopusClient.csproj +++ b/client/NativeOctopusClient/NativeOctopusClient.csproj @@ -48,6 +48,8 @@ + + @@ -57,20 +59,40 @@ - + + UserControl + OctopusIDSelector.cs + + True + True + Resources.resx + OctopusIDSelector.cs + + ResXFileCodeGenerator + Resources.Designer.cs + + + + {d4417174-f21e-4ce2-ae5c-8eb30c9a9625} + MaestroShared + + + + + \ No newline at end of file diff --git a/client/NativeOctopusClient/OctopusAPI.cs b/client/NativeOctopusClient/OctopusAPI.cs index aaff347a..f66972f5 100644 --- a/client/NativeOctopusClient/OctopusAPI.cs +++ b/client/NativeOctopusClient/OctopusAPI.cs @@ -8,7 +8,7 @@ using System.Collections.Generic; using System.Globalization; using System.Linq; -namespace OctopusClient { +namespace NativeOctopusClient { public class Rundown { public string ID { get; set; } diff --git a/client/NativeOctopusClient/OctopusIDSelector.Designer.cs b/client/NativeOctopusClient/OctopusIDSelector.Designer.cs index 28d70a9e..87fa1d11 100644 --- a/client/NativeOctopusClient/OctopusIDSelector.Designer.cs +++ b/client/NativeOctopusClient/OctopusIDSelector.Designer.cs @@ -1,6 +1,6 @@ using MaestroShared.Controls; -namespace OctopusClient { +namespace NativeOctopusClient { partial class OctopusIDSelector { /// /// Required designer variable. @@ -34,7 +34,7 @@ namespace OctopusClient { this.rbStoryFolder = new System.Windows.Forms.RadioButton(); this.txtFilter = new System.Windows.Forms.TextBox(); this.noFocusCueButton1 = new MaestroShared.Controls.NoFocusCueButton(); - this.treeOctopus = new OctopusClient.CheckableTreeView(); + this.treeOctopus = new CheckableTreeView(); this.pSearch.SuspendLayout(); this.pFolderType.SuspendLayout(); this.SuspendLayout(); @@ -157,7 +157,7 @@ namespace OctopusClient { // this.noFocusCueButton1.FlatAppearance.BorderSize = 0; this.noFocusCueButton1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.noFocusCueButton1.Image = global::OctopusClient.Resources.ic_refresh_black_24dp_1x; + this.noFocusCueButton1.Image = global::NativeOctopusClient.Properties.Resources.ic_refresh_black_24dp_1x; this.noFocusCueButton1.Location = new System.Drawing.Point(279, 48); this.noFocusCueButton1.Margin = new System.Windows.Forms.Padding(0); this.noFocusCueButton1.Name = "noFocusCueButton1"; @@ -171,7 +171,6 @@ namespace OctopusClient { this.treeOctopus.BackColor = System.Drawing.Color.White; this.treeOctopus.BorderStyle = System.Windows.Forms.BorderStyle.None; this.treeOctopus.CheckBoxes = true; - this.treeOctopus.DisableCheckBoxLevels = null; this.treeOctopus.Dock = System.Windows.Forms.DockStyle.Fill; this.treeOctopus.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText; this.treeOctopus.Location = new System.Drawing.Point(0, 77); diff --git a/client/NativeOctopusClient/OctopusIDSelector.cs b/client/NativeOctopusClient/OctopusIDSelector.cs index ff66331e..2dca42d2 100644 --- a/client/NativeOctopusClient/OctopusIDSelector.cs +++ b/client/NativeOctopusClient/OctopusIDSelector.cs @@ -8,7 +8,7 @@ using LinkDotNet.MessageHandling.Contracts; using MaestroShared.Configuration; using MaestroShared.Commons; -namespace OctopusClient { +namespace NativeOctopusClient { public delegate void OnSelectedIDChanged(string id, string name, string text); public partial class OctopusIDSelector : UserControl { @@ -63,8 +63,8 @@ namespace OctopusClient { } private void InitializeControls() { - rbRundown.Text = Resources.ADASTUKOR; - rbStoryFolder.Text = Resources.MAPPA; + rbRundown.Text = Properties.Resources.ADASTUKOR; + rbStoryFolder.Text = Properties.Resources.MAPPA; } public void ClearSelection() { @@ -316,7 +316,7 @@ namespace OctopusClient { return; } List rundowns = new List(); - rundowns.Add(new Rundown() { ID = ZERO, Name = Resources.VALASSZON_ELEMET }); + rundowns.Add(new Rundown() { ID = ZERO, Name = Properties.Resources.VALASSZON_ELEMET }); rundowns.AddRange(rundownsResult); cbFolders.DataSource = rundowns; } else { @@ -328,7 +328,7 @@ namespace OctopusClient { return; } List storyFolders = new List(); - storyFolders.Add(new StoryFolder() { ID = ZERO, Name = Resources.VALASSZON_ELEMET }); + storyFolders.Add(new StoryFolder() { ID = ZERO, Name = Properties.Resources.VALASSZON_ELEMET }); storyFolders.AddRange(storyFoldersResult); cbFolders.DataSource = storyFolders; } diff --git a/client/NativeOctopusClient/OctopusParameters.cs b/client/NativeOctopusClient/OctopusParameters.cs index 797d287b..9d77963a 100644 --- a/client/NativeOctopusClient/OctopusParameters.cs +++ b/client/NativeOctopusClient/OctopusParameters.cs @@ -1,7 +1,7 @@ using LinkDotNet.MessageHandling.Contracts; using MaestroShared.Configuration; -namespace OctopusClient { +namespace NativeOctopusClient { public class OctopusParameters { public OctopusMetadata Configuration { get; set; } public string UserName { get; set; } diff --git a/client/NativeOctopusClient/Properties/Resources.Designer.cs b/client/NativeOctopusClient/Properties/Resources.Designer.cs new file mode 100644 index 00000000..01733b0b --- /dev/null +++ b/client/NativeOctopusClient/Properties/Resources.Designer.cs @@ -0,0 +1,208 @@ +//------------------------------------------------------------------------------ +// +// 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 NativeOctopusClient.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", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal 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)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NativeOctopusClient.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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Adástükör. + /// + internal static string ADASTUKOR { + get { + return ResourceManager.GetString("ADASTUKOR", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Archive. + /// + internal static string ARCHIVE { + get { + return ResourceManager.GetString("ARCHIVE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Global ID. + /// + internal static string GLOBAL_ID { + get { + return ResourceManager.GetString("GLOBAL_ID", resourceCulture); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ic_refresh_black_24dp_1x { + get { + object obj = ResourceManager.GetObject("ic_refresh_black_24dp_1x", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized string similar to ID. + /// + internal static string ID { + get { + return ResourceManager.GetString("ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keresés. + /// + internal static string KERESES { + get { + return ResourceManager.GetString("KERESES", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keresés eredménye. + /// + internal static string KERESES_EREDMENYE { + get { + return ResourceManager.GetString("KERESES_EREDMENYE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mappa. + /// + internal static string MAPPA { + get { + return ResourceManager.GetString("MAPPA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mégse. + /// + internal static string MEGSE { + get { + return ResourceManager.GetString("MEGSE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Módosítva. + /// + internal static string MODOSITVA { + get { + return ResourceManager.GetString("MODOSITVA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MosID. + /// + internal static string MOS_ID { + get { + return ResourceManager.GetString("MOS_ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Név. + /// + internal static string NEV { + get { + return ResourceManager.GetString("NEV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Objektum ID. + /// + internal static string OBJECT_ID { + get { + return ResourceManager.GetString("OBJECT_ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Objektum típusa. + /// + internal static string OBJECT_TYPE { + get { + return ResourceManager.GetString("OBJECT_TYPE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nem lehet csatlakozni az octopus kiszolgálóhoz. + /// + internal static string OCTOPUS_KAPCSOLATI_HIBA { + get { + return ResourceManager.GetString("OCTOPUS_KAPCSOLATI_HIBA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Válasszon elemet. + /// + internal static string VALASSZON_ELEMET { + get { + return ResourceManager.GetString("VALASSZON_ELEMET", resourceCulture); + } + } + } +} diff --git a/client/OctopusClient/Resources.resx b/client/NativeOctopusClient/Properties/Resources.resx similarity index 95% rename from client/OctopusClient/Resources.resx rename to client/NativeOctopusClient/Properties/Resources.resx index 6b1de8e9..0e1109a6 100644 --- a/client/OctopusClient/Resources.resx +++ b/client/NativeOctopusClient/Properties/Resources.resx @@ -128,7 +128,7 @@ - Resources\ic_refresh_black_24dp_1x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\resources\ic_refresh_black_24dp_1x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ID diff --git a/client/NativeOctopusClient/Resources/ic_refresh_black_24dp_1x.png b/client/NativeOctopusClient/Resources/ic_refresh_black_24dp_1x.png new file mode 100644 index 0000000000000000000000000000000000000000..c82efd5f5fdcbe7c85b26007a4543c35608495d8 GIT binary patch literal 249 zcmV0k3wZ_ zuBR}!Q3(&OAfF^B&F9 - + + Form + + True True Resources.resx - - Form - OctopusIDSelector.cs - + ResXFileCodeGenerator + Designer Resources.Designer.cs diff --git a/client/OctopusClient/OctopusIDSelector.Designer.cs b/client/OctopusClient/OctopusIDSelector.Designer.cs index 28d70a9e..00139a79 100644 --- a/client/OctopusClient/OctopusIDSelector.Designer.cs +++ b/client/OctopusClient/OctopusIDSelector.Designer.cs @@ -157,7 +157,7 @@ namespace OctopusClient { // this.noFocusCueButton1.FlatAppearance.BorderSize = 0; this.noFocusCueButton1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.noFocusCueButton1.Image = global::OctopusClient.Resources.ic_refresh_black_24dp_1x; + this.noFocusCueButton1.Image = global::OctopusClient.Properties.Resources.ic_refresh_black_24dp_1x; this.noFocusCueButton1.Location = new System.Drawing.Point(279, 48); this.noFocusCueButton1.Margin = new System.Windows.Forms.Padding(0); this.noFocusCueButton1.Name = "noFocusCueButton1"; diff --git a/client/OctopusClient/OctopusIDSelector.cs b/client/OctopusClient/OctopusIDSelector.cs index ff66331e..92cf8f8c 100644 --- a/client/OctopusClient/OctopusIDSelector.cs +++ b/client/OctopusClient/OctopusIDSelector.cs @@ -63,8 +63,8 @@ namespace OctopusClient { } private void InitializeControls() { - rbRundown.Text = Resources.ADASTUKOR; - rbStoryFolder.Text = Resources.MAPPA; + rbRundown.Text = Properties.Resources.ADASTUKOR; + rbStoryFolder.Text = Properties.Resources.MAPPA; } public void ClearSelection() { @@ -316,7 +316,7 @@ namespace OctopusClient { return; } List rundowns = new List(); - rundowns.Add(new Rundown() { ID = ZERO, Name = Resources.VALASSZON_ELEMET }); + rundowns.Add(new Rundown() { ID = ZERO, Name = Properties.Resources.VALASSZON_ELEMET }); rundowns.AddRange(rundownsResult); cbFolders.DataSource = rundowns; } else { @@ -328,7 +328,7 @@ namespace OctopusClient { return; } List storyFolders = new List(); - storyFolders.Add(new StoryFolder() { ID = ZERO, Name = Resources.VALASSZON_ELEMET }); + storyFolders.Add(new StoryFolder() { ID = ZERO, Name = Properties.Resources.VALASSZON_ELEMET }); storyFolders.AddRange(storyFoldersResult); cbFolders.DataSource = storyFolders; } diff --git a/client/OctopusClient/OctopusLookupResultSelector.cs b/client/OctopusClient/OctopusLookupResultSelector.cs index c7785c96..e278da83 100644 --- a/client/OctopusClient/OctopusLookupResultSelector.cs +++ b/client/OctopusClient/OctopusLookupResultSelector.cs @@ -43,12 +43,12 @@ namespace OctopusClient { new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, DataPropertyName = "ID", - HeaderText = Resources.ID + HeaderText = Properties.Resources.ID }, new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, DataPropertyName = "Name", - HeaderText = Resources.NEV + HeaderText = Properties.Resources.NEV } } ); @@ -60,30 +60,30 @@ namespace OctopusClient { new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, DataPropertyName = "ID", - HeaderText = Resources.ID + HeaderText = Properties.Resources.ID }, new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, DataPropertyName = "MosID", - HeaderText = Resources.MOS_ID + HeaderText = Properties.Resources.MOS_ID },new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.ColumnHeader, DataPropertyName = "ObjID", - HeaderText = Resources.OBJECT_ID + HeaderText = Properties.Resources.OBJECT_ID }, new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.ColumnHeader, DataPropertyName = "ObjectType", - HeaderText = Resources.OBJECT_TYPE + HeaderText = Properties.Resources.OBJECT_TYPE },new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, DataPropertyName = "Modified", - HeaderText = Resources.MODOSITVA + HeaderText = Properties.Resources.MODOSITVA }, new DataGridViewTextBoxColumn() { AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, DataPropertyName = "GlobalID", - HeaderText = Resources.GLOBAL_ID + HeaderText = Properties.Resources.GLOBAL_ID } } ); @@ -91,8 +91,8 @@ namespace OctopusClient { private void InitializeControlTexts() { - buttonCancel.Text = Resources.MEGSE; - this.Text = Resources.KERESES_EREDMENYE; + buttonCancel.Text = Properties.Resources.MEGSE; + this.Text = Properties.Resources.KERESES_EREDMENYE; } private void InitializeComponent() { diff --git a/client/OctopusClient/Properties/Resources.Designer.cs b/client/OctopusClient/Properties/Resources.Designer.cs new file mode 100644 index 00000000..abf42068 --- /dev/null +++ b/client/OctopusClient/Properties/Resources.Designer.cs @@ -0,0 +1,208 @@ +//------------------------------------------------------------------------------ +// +// 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 OctopusClient.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", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal 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)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("OctopusClient.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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Adástükör. + /// + internal static string ADASTUKOR { + get { + return ResourceManager.GetString("ADASTUKOR", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Archive. + /// + internal static string ARCHIVE { + get { + return ResourceManager.GetString("ARCHIVE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Global ID. + /// + internal static string GLOBAL_ID { + get { + return ResourceManager.GetString("GLOBAL_ID", resourceCulture); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ic_refresh_black_24dp_1x { + get { + object obj = ResourceManager.GetObject("ic_refresh_black_24dp_1x", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized string similar to ID. + /// + internal static string ID { + get { + return ResourceManager.GetString("ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keresés. + /// + internal static string KERESES { + get { + return ResourceManager.GetString("KERESES", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keresés eredménye. + /// + internal static string KERESES_EREDMENYE { + get { + return ResourceManager.GetString("KERESES_EREDMENYE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mappa. + /// + internal static string MAPPA { + get { + return ResourceManager.GetString("MAPPA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mégse. + /// + internal static string MEGSE { + get { + return ResourceManager.GetString("MEGSE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Módosítva. + /// + internal static string MODOSITVA { + get { + return ResourceManager.GetString("MODOSITVA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MosID. + /// + internal static string MOS_ID { + get { + return ResourceManager.GetString("MOS_ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Név. + /// + internal static string NEV { + get { + return ResourceManager.GetString("NEV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Objektum ID. + /// + internal static string OBJECT_ID { + get { + return ResourceManager.GetString("OBJECT_ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Objektum típusa. + /// + internal static string OBJECT_TYPE { + get { + return ResourceManager.GetString("OBJECT_TYPE", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nem lehet csatlakozni az octopus kiszolgálóhoz. + /// + internal static string OCTOPUS_KAPCSOLATI_HIBA { + get { + return ResourceManager.GetString("OCTOPUS_KAPCSOLATI_HIBA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Válasszon elemet. + /// + internal static string VALASSZON_ELEMET { + get { + return ResourceManager.GetString("VALASSZON_ELEMET", resourceCulture); + } + } + } +} diff --git a/client/OctopusClient/Properties/Resources.resx b/client/OctopusClient/Properties/Resources.resx new file mode 100644 index 00000000..0e1109a6 --- /dev/null +++ b/client/OctopusClient/Properties/Resources.resx @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Adástükör + + + Archive + + + Global ID + + + + ..\resources\ic_refresh_black_24dp_1x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ID + + + Keresés + + + Keresés eredménye + + + Mappa + + + Mégse + + + Módosítva + + + MosID + + + Név + + + Objektum ID + + + Objektum típusa + + + Nem lehet csatlakozni az octopus kiszolgálóhoz + + + Válasszon elemet + + \ No newline at end of file -- 2.54.0