Index: Core/Common/src/Core.Common.Gui/Commands/ApplicationFeatureCommandHandler.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/Commands/ApplicationFeatureCommandHandler.cs (.../ApplicationFeatureCommandHandler.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Common/src/Core.Common.Gui/Commands/ApplicationFeatureCommandHandler.cs (.../ApplicationFeatureCommandHandler.cs) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -82,7 +82,7 @@ { if (e is Win32Exception || e is ObjectDisposedException || e is FileNotFoundException) { - MessageBox.Show(Resources.GuiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file_Opening_log_file_directory_instead, Resources.GuiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file); + MessageBox.Show(Resources.ApplicationFeatureiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file_Opening_log_file_directory_instead, Resources.ApplicationFeatureCommandHandler_OpenLogFileExternal_Unable_to_open_log_file); Process.Start(SettingsHelper.GetApplicationLocalUserSettingsDirectory()); } else Index: Core/Common/src/Core.Common.Gui/Commands/ExportImportCommandHandler.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/Commands/ExportImportCommandHandler.cs (.../ExportImportCommandHandler.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Common/src/Core.Common.Gui/Commands/ExportImportCommandHandler.cs (.../ExportImportCommandHandler.cs) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -75,7 +75,7 @@ } catch (Exception) { - log.ErrorFormat(Resources.GuiCommandHandler_ImportOn_Unable_to_import_on_0_, target); + log.ErrorFormat(Resources.ExportImportCommandHandler_ImportOn_Unable_to_import_on_0_, target); } } Index: Core/Common/src/Core.Common.Gui/Commands/ProjectCommandsHandler.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/Commands/ProjectCommandsHandler.cs (.../ProjectCommandsHandler.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Common/src/Core.Common.Gui/Commands/ProjectCommandsHandler.cs (.../ProjectCommandsHandler.cs) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -82,7 +82,7 @@ { if (projectOwner.Project == null) { - log.Error(Resources.GuiCommandHandler_AddNewItem_There_needs_to_be_a_project_to_add_an_item); + log.Error(Resources.ProjectCommandHandler_AddNewItem_There_needs_to_be_a_project_to_add_an_item); } using (var selectDataDialog = CreateSelectionDialogWithItems(applicationCore.GetSupportedDataItemInfos(parent).ToArray())) Index: Core/Common/src/Core.Common.Gui/Commands/StorageCommandHandler.cs =================================================================== diff -u -r7e20649afed3f6e23febb57c28bfc32fa75fedc6 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/Commands/StorageCommandHandler.cs (.../StorageCommandHandler.cs) (revision 7e20649afed3f6e23febb57c28bfc32fa75fedc6) +++ Core/Common/src/Core.Common.Gui/Commands/StorageCommandHandler.cs (.../StorageCommandHandler.cs) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -83,10 +83,10 @@ { CloseProject(); - log.Info(Resources.Project_new_opening); + log.Info(Resources.StorageCommandHandler_NewProject_Creating_new_project); projectOwner.Project = new Project(); projectOwner.ProjectFilePath = ""; - log.Info(Resources.Project_new_successfully_opened); + log.Info(Resources.StorageCommandHandler_NewProject_Created_new_project_succesful); mainWindowController.RefreshGui(); } @@ -106,19 +106,19 @@ } } - log.Warn(Resources.Project_existing_project_opening_cancelled); + log.Warn(Resources.StorageCommandHandler_OpenExistingProject_Opening_existing_project_cancelled); return false; } public bool OpenExistingProject(string filePath) { - log.Info(Resources.Project_existing_opening_project); + log.Info(Resources.StorageCommandHandler_OpenExistingProject_Opening_existing_project); var loadedProject = LoadProjectFromStorage(filePath); if (loadedProject == null) { - log.Error(Resources.Project_existing_project_opening_failed); + log.Error(Resources.StorageCommandHandler_OpeningExistingProject_Opening_existing_project_failed); return false; } @@ -130,7 +130,7 @@ projectOwner.Project.Name = Path.GetFileNameWithoutExtension(filePath); projectOwner.Project.NotifyObservers(); mainWindowController.RefreshGui(); - log.Info(Resources.Project_existing_successfully_opened); + log.Info(Resources.StorageCommandHandler_OpeningExistingProject_Opening_existing_project_successful); return true; } @@ -175,7 +175,7 @@ project.Name = Path.GetFileNameWithoutExtension(filePath); project.NotifyObservers(); mainWindowController.RefreshGui(); - log.Info(String.Format(Resources.Project_saving_project_saved_0, project.Name)); + log.Info(String.Format(Resources.StorageCommandHandler_SaveProject_Succesfully_saved_project_0_, project.Name)); return true; } @@ -199,7 +199,7 @@ return false; } - log.Info(String.Format(Resources.Project_saving_project_saved_0, project.Name)); + log.Info(String.Format(Resources.StorageCommandHandler_SaveProject_Succesfully_saved_project_0_, project.Name)); return true; } @@ -250,7 +250,7 @@ { if (saveFileDialog.ShowDialog() != DialogResult.OK) { - log.Warn(Resources.Project_saving_project_cancelled); + log.Warn(Resources.StorageCommandHandler_SaveProject_Saving_project_cancelled); return null; } return saveFileDialog.FileName; @@ -267,7 +267,7 @@ catch (StorageException e) { log.Error(e.Message, e.InnerException); - log.Error(Resources.Project_saving_project_failed); + log.Error(Resources.StorageCommandHandler_Saving_project_failed); return false; } } @@ -282,7 +282,7 @@ catch (StorageException e) { log.Error(e.Message, e.InnerException); - log.Error(Resources.Project_saving_project_failed); + log.Error(Resources.StorageCommandHandler_Saving_project_failed); return false; } } Index: Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj =================================================================== diff -u -r6ef8fa312a72f486be984ebc3adde4be044811e2 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj (.../Core.Common.Gui.csproj) (revision 6ef8fa312a72f486be984ebc3adde4be044811e2) +++ Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj (.../Core.Common.Gui.csproj) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -154,6 +154,11 @@ + + True + True + Resources.resx + @@ -252,11 +257,6 @@ ViewSelectionContextMenuController.cs - - True - True - Resources.resx - Settings.settings @@ -365,8 +365,8 @@ PublicResXFileCodeGenerator - Resources.Designer.cs Designer + Resources.Designer.cs @@ -395,7 +395,6 @@ - @@ -404,116 +403,42 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Index: Core/Common/src/Core.Common.Gui/GuiCore.cs =================================================================== diff -u -r6ef8fa312a72f486be984ebc3adde4be044811e2 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/GuiCore.cs (.../GuiCore.cs) (revision 6ef8fa312a72f486be984ebc3adde4be044811e2) +++ Core/Common/src/Core.Common.Gui/GuiCore.cs (.../GuiCore.cs) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -89,7 +89,7 @@ if (isAlreadyRunningInstanceOfIGui) { isAlreadyRunningInstanceOfIGui = false; // reset to that the consecutive creations won't fail. - throw new InvalidOperationException(Resources.RingtoetsGui_Only_a_single_instance_of_Ringtoets_is_allowed_at_the_same_time_per_process_Make_sure_that_the_previous_instance_was_disposed_correctly_stack_trace + instanceCreationStackTrace); + throw new InvalidOperationException(Resources.GuiCore_Only_a_single_instance_of_Ringtoets_is_allowed_at_the_same_time_per_process_Make_sure_that_the_previous_instance_was_disposed_correctly_stack_trace + instanceCreationStackTrace); } if (mainWindow == null) @@ -155,15 +155,15 @@ ShowSplashScreen(); - log.Info(Resources.RingtoetsGui_Run_Starting_application); + log.Info(Resources.GuiCore_Run_Starting_application); InitializeProjectFromPath(projectPath); - log.Info(Resources.RingtoetsGui_Run_Initializing_graphical_user_interface); + log.Info(Resources.GuiCore_Run_Initializing_graphical_user_interface); Initialize(); - log.InfoFormat(Resources.RingtoetsGui_Run_Started_in_0_f2_sec, (DateTime.Now - startTime).TotalSeconds); + log.InfoFormat(Resources.GuiCore_Run_Started_in_0_f2_sec, (DateTime.Now - startTime).TotalSeconds); runFinished = true; @@ -382,7 +382,7 @@ } if (setDefaultProject) { - log.Info(Resources.RingtoetsGui_Run_Creating_new_project); + log.Info(Resources.GuiCore_Run_Creating_new_project); Project = new Project(); } } @@ -395,7 +395,7 @@ } catch (Exception exception) { - log.Error(Resources.RingtoetsGui_ActivatePlugins_Exception_during_plugin_gui_deactivation, exception); + log.Error(Resources.GuiCore_ActivatePlugins_Exception_during_plugin_gui_deactivation, exception); } plugin.Dispose(); @@ -488,7 +488,7 @@ if (!runFinished) // splash screen was closed before gui started. { - log.Info(Resources.RingtoetsGui_ShowSplashScreen_User_has_cancelled_start_Exiting); + log.Info(Resources.GuiCore_ShowSplashScreen_User_has_cancelled_start_Exiting); Environment.Exit(1); } }; @@ -551,16 +551,16 @@ private void InitializeWindows() { - log.Info(Resources.RingtoetsGui_InitializeWindows_Initializing_windows); + log.Info(Resources.GuiCore_InitializeWindows_Initializing_windows); InitializeMainWindow(); - log.Info(Resources.RingtoetsGui_InitializeWindows_Creating_default_tool_windows); + log.Info(Resources.GuiCore_InitializeWindows_Creating_default_tool_windows); InitializeToolWindows(); UpdateTitle(); - log.Info(Resources.RingtoetsGui_InitializeWindows_All_windows_are_created); + log.Info(Resources.GuiCore_InitializeWindows_All_windows_are_created); } private void ActiveViewChanging(object sender, ActiveViewChangeEventArgs e) @@ -578,7 +578,7 @@ private void InitializeToolWindows() { - log.Info(Resources.RingtoetsGui_InitToolWindows_Creating_document_window_manager); + log.Info(Resources.GuiCore_InitToolWindows_Creating_document_window_manager); InitializeDocumentViewController(); @@ -587,11 +587,11 @@ InitializeToolViewController(); - log.Info(Resources.RingtoetsGui_InitToolWindows_Creating_tool_window_manager); + log.Info(Resources.GuiCore_InitToolWindows_Creating_tool_window_manager); mainWindow.InitializeToolWindows(); - log.Debug(Resources.RingtoetsGui_InitToolWindows_Finished_InitToolWindows); + log.Debug(Resources.GuiCore_InitToolWindows_Finished_InitToolWindows); mainWindow.SubscribeToGui(); } @@ -1025,7 +1025,7 @@ if (mainWindow != null) { mainWindow.Title = string.Format("{0} - {1} {2}", - Project != null ? Project.Name : Resources.RingtoetsGui_UpdateTitle_Unknown, + Project != null ? Project.Name : Resources.GuiCore_UpdateTitle_Unknown, FixedSettings.MainWindowTitle, SettingsHelper.ApplicationVersion); } Index: Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs =================================================================== diff -u -r8facffc48a20cd49759e32aea1ecc100047c68a2 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 8facffc48a20cd49759e32aea1ecc100047c68a2) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:4.0.30319.18444 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -61,15 +61,6 @@ } /// - /// Looks up a localized string similar to niet gedefinieerd. - /// - public static string ActivityInfo_ProgressText_undefined { - get { - return ResourceManager.GetString("ActivityInfo_ProgressText_undefined", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Huidige stap afronden, daarna annuleren.... /// public static string ActivityProgressDialog_CancelActivities_Quit_after_finishing_current_activity { @@ -115,15 +106,6 @@ } /// - /// Looks up a localized string similar to === opdracht uitvoeren ===. - /// - public static string App_RunRingtoets_ { - get { - return ResourceManager.GetString("App_RunRingtoets_", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Kan niet meerdere instanties van Ringtoets starten. Sluit eerst de andere instantie.. /// public static string App_ShutdownIfNotFirstInstance_Cannot_start_multiple_instances_of_Ringtoets_Please_close_the_other_instance_first { @@ -145,16 +127,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap application_form { - get { - object obj = ResourceManager.GetObject("application_form", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap application_import_blue { get { object obj = ResourceManager.GetObject("application_import_blue", resourceCulture); @@ -163,16 +135,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap application_import_blue_Large { - get { - object obj = ResourceManager.GetObject("application_import_blue_Large", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// public static System.Drawing.Icon application_import_blue1 { @@ -193,16 +155,25 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Logbestand kan niet worden geopend.. /// - public static System.Drawing.Bitmap application_view_list1 { + public static string ApplicationFeatureCommandHandler_OpenLogFileExternal_Unable_to_open_log_file { get { - object obj = ResourceManager.GetObject("application_view_list1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("ApplicationFeatureCommandHandler_OpenLogFileExternal_Unable_to_open_log_file", resourceCulture); } } /// + /// Looks up a localized string similar to Het is niet mogelijk het logbestand te openen. In plaats hiervan wordt de folder waarin het logbestand staat geopend.. + /// + public static string ApplicationFeatureiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file_Opening_log_file_directory_instead { + get { + return ResourceManager.GetString("ApplicationFeatureiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file_Ope" + + "ning_log_file_directory_instead", resourceCulture); + } + } + + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap arrow_000_medium { @@ -243,16 +214,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap binocular_32 { - get { - object obj = ResourceManager.GetObject("binocular_32", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap brick { get { object obj = ResourceManager.GetObject("brick", resourceCulture); @@ -263,16 +224,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap brick_active { - get { - object obj = ResourceManager.GetObject("brick_active", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap brick_add { get { object obj = ResourceManager.GetObject("brick_add", resourceCulture); @@ -283,76 +234,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap brick_delete { - get { - object obj = ResourceManager.GetObject("brick_delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap brick_edit { - get { - object obj = ResourceManager.GetObject("brick_edit", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap brick_error { - get { - object obj = ResourceManager.GetObject("brick_error", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap brick_link { - get { - object obj = ResourceManager.GetObject("brick_link", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap brick1 { - get { - object obj = ResourceManager.GetObject("brick1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap bricks { - get { - object obj = ResourceManager.GetObject("bricks", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap bug { - get { - object obj = ResourceManager.GetObject("bug", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap Busy_indicator { get { object obj = ResourceManager.GetObject("Busy_indicator", resourceCulture); @@ -363,46 +244,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap calendar { - get { - object obj = ResourceManager.GetObject("calendar", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap calendar_view_day { - get { - object obj = ResourceManager.GetObject("calendar_view_day", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cancel { - get { - object obj = ResourceManager.GetObject("cancel", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap chart_bar { - get { - object obj = ResourceManager.GetObject("chart_bar", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap chart_curve { get { object obj = ResourceManager.GetObject("chart_curve", resourceCulture); @@ -413,46 +254,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap chart_line { - get { - object obj = ResourceManager.GetObject("chart_line", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap chart_organisation { - get { - object obj = ResourceManager.GetObject("chart_organisation", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap chart_pie { - get { - object obj = ResourceManager.GetObject("chart_pie", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap clipboard_32 { - get { - object obj = ResourceManager.GetObject("clipboard_32", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap ClosePreviewHH { get { object obj = ResourceManager.GetObject("ClosePreviewHH", resourceCulture); @@ -461,56 +262,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cog { - get { - object obj = ResourceManager.GetObject("cog", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cog_active { - get { - object obj = ResourceManager.GetObject("cog_active", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cog_add { - get { - object obj = ResourceManager.GetObject("cog_add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cog_add_Large { - get { - object obj = ResourceManager.GetObject("cog_add_Large", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cog_delete { - get { - object obj = ResourceManager.GetObject("cog_delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Alles i&nklappen. /// public static string Collapse_all { @@ -539,16 +290,6 @@ } /// - /// Looks up a localized string similar to Kan geen contextmenu opbouwen voor een lege knoop.. - /// - public static string ContextMenuBuilder_ContextMenuBuilder_Can_not_build_context_menu_for_empty_tree_node { - get { - return ResourceManager.GetString("ContextMenuBuilder_ContextMenuBuilder_Can_not_build_context_menu_for_empty_tree_n" + - "ode", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Kan geen instanties maken van de benodigde objecten.. /// public static string ContextMenuBuilder_ContextMenuBuilder_Cannot_create_instances_of_factories { @@ -567,15 +308,6 @@ } /// - /// Looks up a localized string similar to Kan geen element in het contextmenu creëren zonder dat informatie over de knoop bekend is.. - /// - public static string ContextMenuItemFactory_Can_not_create_context_menu_items_without_tree_node_info { - get { - return ResourceManager.GetString("ContextMenuItemFactory_Can_not_create_context_menu_items_without_tree_node_info", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Kan geen element in het contextmenu creëren zonder dat de boom bekend is.. /// public static string ContextMenuItemFactory_Can_not_create_context_menu_items_without_tree_view_control { @@ -588,26 +320,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap control_play { - get { - object obj = ResourceManager.GetObject("control_play", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap control_stop { - get { - object obj = ResourceManager.GetObject("control_stop", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap CopyHS { get { object obj = ResourceManager.GetObject("CopyHS", resourceCulture); @@ -625,66 +337,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cross_small { - get { - object obj = ResourceManager.GetObject("cross_small", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cross_small_bw { - get { - object obj = ResourceManager.GetObject("cross_small_bw", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cross_small1 { - get { - object obj = ResourceManager.GetObject("cross_small1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cut { - get { - object obj = ResourceManager.GetObject("cut", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap cut_red { - get { - object obj = ResourceManager.GetObject("cut_red", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap CutHS { - get { - object obj = ResourceManager.GetObject("CutHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Donker. /// public static string Dark { @@ -694,36 +346,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap data_item { - get { - object obj = ResourceManager.GetObject("data_item", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap data_item_error { - get { - object obj = ResourceManager.GetObject("data_item_error", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap data_item_link { - get { - object obj = ResourceManager.GetObject("data_item_link", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Verwij&deren.... /// public static string Delete { @@ -865,46 +487,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap edit_redo { - get { - object obj = ResourceManager.GetObject("edit_redo", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap Edit_RedoHS { - get { - object obj = ResourceManager.GetObject("Edit_RedoHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap edit_undo { - get { - object obj = ResourceManager.GetObject("edit_undo", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap Edit_UndoHS { - get { - object obj = ResourceManager.GetObject("Edit_UndoHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap error { get { object obj = ResourceManager.GetObject("error", resourceCulture); @@ -988,6 +570,15 @@ } /// + /// Looks up a localized string similar to Kan niet importeren naar {0}.. + /// + public static string ExportImportCommandHandler_ImportOn_Unable_to_import_on_0_ { + get { + return ResourceManager.GetString("ExportImportCommandHandler_ImportOn_Unable_to_import_on_0_", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Toetsspoor. /// public static string FailureMechanismContributionView_GridColumn_Assessment { @@ -1017,36 +608,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap feed { - get { - object obj = ResourceManager.GetObject("feed", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap FindProject { - get { - object obj = ResourceManager.GetObject("FindProject", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap FindView { - get { - object obj = ResourceManager.GetObject("FindView", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap folder { get { object obj = ResourceManager.GetObject("folder", resourceCulture); @@ -1055,210 +616,153 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Generiek. /// - public static System.Drawing.Bitmap folder_add { + public static string Generic { get { - object obj = ResourceManager.GetObject("folder_add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("Generic", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Kan geen 'IExportImportCommandHandler'-afhankelijk element in het contextmenu creëren zonder een 'IExportImportCommandHandler'.. /// - public static System.Drawing.Bitmap folder_brick { + public static string GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_exportImport_handler { get { - object obj = ResourceManager.GetObject("folder_brick", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_exportImp" + + "ort_handler", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Kan geen 'ApplicationFeatureCommandHandler'-afhankelijk element in het contextmenu creëren zonder een 'ApplicationFeatureCommandHandler'.. /// - public static System.Drawing.Bitmap folder_database { + public static string GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_gui { get { - object obj = ResourceManager.GetObject("folder_database", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_gui", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Kan geen 'IViewCommands'-afhankelijk element in het contextmenu creëren zonder een 'IViewCommands'.. /// - public static System.Drawing.Bitmap folder_delete { + public static string GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_view_commands { get { - object obj = ResourceManager.GetObject("folder_delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_view_comm" + + "ands", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Kritieke fout opgetreden tijdens deactivering van de grafische interface plugin.. /// - public static System.Drawing.Bitmap folder_edit { + public static string GuiCore_ActivatePlugins_Exception_during_plugin_gui_deactivation { get { - object obj = ResourceManager.GetObject("folder_edit", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_ActivatePlugins_Exception_during_plugin_gui_deactivation", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Alle vensters zijn gemaakt.. /// - public static System.Drawing.Bitmap folder_error { + public static string GuiCore_InitializeWindows_All_windows_are_created { get { - object obj = ResourceManager.GetObject("folder_error", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_InitializeWindows_All_windows_are_created", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Standaardschermen aan het maken.... /// - public static System.Drawing.Bitmap folder_feed { + public static string GuiCore_InitializeWindows_Creating_default_tool_windows { get { - object obj = ResourceManager.GetObject("folder_feed", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_InitializeWindows_Creating_default_tool_windows", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Schermmanager voor documenten aan het maken.... /// - public static System.Drawing.Bitmap folder_input { + public static string GuiCore_InitToolWindows_Creating_document_window_manager { get { - object obj = ResourceManager.GetObject("folder_input", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_InitToolWindows_Creating_document_window_manager", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Schermmanager aan het maken.... /// - public static System.Drawing.Bitmap folder_output { + public static string GuiCore_InitToolWindows_Creating_tool_window_manager { get { - object obj = ResourceManager.GetObject("folder_output", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_InitToolWindows_Creating_tool_window_manager", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Maken van standaardschermen beëindigd. /// - public static System.Drawing.Bitmap folder_wrench { + public static string GuiCore_InitToolWindows_Finished_InitToolWindows { get { - object obj = ResourceManager.GetObject("folder_wrench", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_InitToolWindows_Finished_InitToolWindows", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Slechts één instantie van de Ringtoets grafische interface is toegestaan per proces. Zorg ervoor dat de vorige instantie correct opgeruimd is. 'Stack trace':. /// - public static System.Drawing.Bitmap fullscreen { + public static string GuiCore_Only_a_single_instance_of_Ringtoets_is_allowed_at_the_same_time_per_process_Make_sure_that_the_previous_instance_was_disposed_correctly_stack_trace { get { - object obj = ResourceManager.GetObject("fullscreen", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_Only_a_single_instance_of_Ringtoets_is_allowed_at_the_same_time_per_proce" + + "ss_Make_sure_that_the_previous_instance_was_disposed_correctly_stack_trace", resourceCulture); } } /// - /// Looks up a localized string similar to Generiek. + /// Looks up a localized string similar to Nieuw project aanmaken.... /// - public static string Generic { + public static string GuiCore_Run_Creating_new_project { get { - return ResourceManager.GetString("Generic", resourceCulture); + return ResourceManager.GetString("GuiCore_Run_Creating_new_project", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Grafische gebruikersinterface initialiseren.... /// - public static System.Drawing.Bitmap graphhs { + public static string GuiCore_Run_Initializing_graphical_user_interface { get { - object obj = ResourceManager.GetObject("graphhs", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("GuiCore_Run_Initializing_graphical_user_interface", resourceCulture); } } /// - /// Looks up a localized string similar to Nieuwe map toevoegen. + /// Looks up a localized string similar to Gestart in {0:f2} seconden.. /// - public static string GuiCommandHandler_AddNewFolder_Add_new_folder { + public static string GuiCore_Run_Started_in_0_f2_sec { get { - return ResourceManager.GetString("GuiCommandHandler_AddNewFolder_Add_new_folder", resourceCulture); + return ResourceManager.GetString("GuiCore_Run_Started_in_0_f2_sec", resourceCulture); } } /// - /// Looks up a localized string similar to Er moet een project zijn om gegevens te kunnen toevoegen.. + /// Looks up a localized string similar to Starten van de toepassing.... /// - public static string GuiCommandHandler_AddNewItem_There_needs_to_be_a_project_to_add_an_item { + public static string GuiCore_Run_Starting_application { get { - return ResourceManager.GetString("GuiCommandHandler_AddNewItem_There_needs_to_be_a_project_to_add_an_item", resourceCulture); + return ResourceManager.GetString("GuiCore_Run_Starting_application", resourceCulture); } } /// - /// Looks up a localized string similar to Kan niet importeren naar {0}.. + /// Looks up a localized string similar to Gebruiker heeft het opstarten onderbroken. Het programma wordt afgesloten.... /// - public static string GuiCommandHandler_ImportOn_Unable_to_import_on_0_ { + public static string GuiCore_ShowSplashScreen_User_has_cancelled_start_Exiting { get { - return ResourceManager.GetString("GuiCommandHandler_ImportOn_Unable_to_import_on_0_", resourceCulture); + return ResourceManager.GetString("GuiCore_ShowSplashScreen_User_has_cancelled_start_Exiting", resourceCulture); } } /// - /// Looks up a localized string similar to Logbestand kan niet worden geopend.. - /// - public static string GuiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file { - get { - return ResourceManager.GetString("GuiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Het is niet mogelijk het logbestand te openen. In plaats hiervan wordt de folder waarin het logbestand staat geopend.. - /// - public static string GuiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file_Opening_log_file_directory_instead { - get { - return ResourceManager.GetString("GuiCommandHandler_OpenLogFileExternal_Unable_to_open_log_file_Opening_log_file_di" + - "rectory_instead", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Kan geen 'IExportImportCommandHandler'-afhankelijk element in het contextmenu creëren zonder een 'IExportImportCommandHandler'.. - /// - public static string GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_exportImport_handler { - get { - return ResourceManager.GetString("GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_exportImp" + - "ort_handler", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Kan geen 'ApplicationFeatureCommandHandler'-afhankelijk element in het contextmenu creëren zonder een 'ApplicationFeatureCommandHandler'.. - /// - public static string GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_gui { - get { - return ResourceManager.GetString("GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_gui", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Kan geen 'IViewCommands'-afhankelijk element in het contextmenu creëren zonder een 'IViewCommands'.. - /// - public static string GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_view_commands { - get { - return ResourceManager.GetString("GuiContextMenuItemFactory_Can_not_create_gui_context_menu_items_without_view_comm" + - "ands", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Exporteren mislukt.. /// public static string GuiExportHandler_ExporterItemUsingFileOpenDialog_Export_failed { @@ -1423,16 +927,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap information_32 { - get { - object obj = ResourceManager.GetObject("information_32", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap key { get { object obj = ResourceManager.GetObject("key", resourceCulture); @@ -1450,46 +944,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap link { - get { - object obj = ResourceManager.GetObject("link", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap link_break { - get { - object obj = ResourceManager.GetObject("link_break", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap lock_edit { - get { - object obj = ResourceManager.GetObject("lock_edit", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap magnifier { - get { - object obj = ResourceManager.GetObject("magnifier", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Project kan niet worden geopend.. /// public static string MainWindow_AddNewMruItem_Can_t_open_project { @@ -1575,15 +1029,6 @@ } /// - /// Looks up a localized string similar to Shape-bestand (*.shp)|*.shp. - /// - public static string MapAddLayerCommand_ShowAddLayerFileDialog_ShapeFileFilter { - get { - return ResourceManager.GetString("MapAddLayerCommand_ShowAddLayerFileDialog_ShapeFileFilter", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Berichten. /// public static string Messages { @@ -1621,26 +1066,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap newspaper { - get { - object obj = ResourceManager.GetObject("newspaper", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap note { - get { - object obj = ResourceManager.GetObject("note", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to &Openen. /// public static string Open { @@ -1699,66 +1124,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap OrgChartHS { - get { - object obj = ResourceManager.GetObject("OrgChartHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap PasteHS { - get { - object obj = ResourceManager.GetObject("PasteHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap PlayAll { - get { - object obj = ResourceManager.GetObject("PlayAll", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap PlayHS { - get { - object obj = ResourceManager.GetObject("PlayHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap plugin { - get { - object obj = ResourceManager.GetObject("plugin", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap plugin_disabled { - get { - object obj = ResourceManager.GetObject("plugin_disabled", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// public static System.Drawing.Icon plus { @@ -1769,16 +1134,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap plus_button_32 { - get { - object obj = ResourceManager.GetObject("plus_button_32", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Fout bij het opslaan van de instellingen in {0}.. /// public static string PortableSettingsProvider_SetPropertyValues_Error_storing_settings_to_0_ { @@ -1798,114 +1153,15 @@ } /// - /// Looks up a localized string similar to Annuleer alle activiteiten. + /// Looks up a localized string similar to Er moet een project zijn om gegevens te kunnen toevoegen.. /// - public static string ProgressDialog_SetButtonState_Cancel_all_activities { + public static string ProjectCommandHandler_AddNewItem_There_needs_to_be_a_project_to_add_an_item { get { - return ResourceManager.GetString("ProgressDialog_SetButtonState_Cancel_all_activities", resourceCulture); + return ResourceManager.GetString("ProjectCommandHandler_AddNewItem_There_needs_to_be_a_project_to_add_an_item", resourceCulture); } } /// - /// Looks up a localized string similar to Annuleren.... - /// - public static string ProgressDialog_SetButtonState_Cancelling { - get { - return ResourceManager.GetString("ProgressDialog_SetButtonState_Cancelling", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Openen van bestaand Ringtoetsproject.. - /// - public static string Project_existing_opening_project { - get { - return ResourceManager.GetString("Project_existing_opening_project", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Openen van bestaand Ringtoetsproject geannuleerd.. - /// - public static string Project_existing_project_opening_cancelled { - get { - return ResourceManager.GetString("Project_existing_project_opening_cancelled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Het is niet gelukt om het Ringtoetsproject te laden.. - /// - public static string Project_existing_project_opening_failed { - get { - return ResourceManager.GetString("Project_existing_project_opening_failed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bestaand Ringtoetsproject succesvol geopend.. - /// - public static string Project_existing_successfully_opened { - get { - return ResourceManager.GetString("Project_existing_successfully_opened", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Openen van nieuw Ringtoetsproject.. - /// - public static string Project_new_opening { - get { - return ResourceManager.GetString("Project_new_opening", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Openen van nieuw Ringtoetsproject geannuleerd.. - /// - public static string Project_new_opening_cancelled { - get { - return ResourceManager.GetString("Project_new_opening_cancelled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nieuw Ringtoetsproject succesvol geopend.. - /// - public static string Project_new_successfully_opened { - get { - return ResourceManager.GetString("Project_new_successfully_opened", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Opslaan van het Ringtoetsproject geannuleerd.. - /// - public static string Project_saving_project_cancelled { - get { - return ResourceManager.GetString("Project_saving_project_cancelled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Het is niet gelukt om het Ringtoetsproject op te slaan.. - /// - public static string Project_saving_project_failed { - get { - return ResourceManager.GetString("Project_saving_project_failed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Het Ringtoetsproject '{0}' is succesvol opgeslagen.. - /// - public static string Project_saving_project_saved_0 { - get { - return ResourceManager.GetString("Project_saving_project_saved_0", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Ei&genschappen. /// public static string Properties { @@ -1981,16 +1237,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap RelationshipsHS { - get { - object obj = ResourceManager.GetObject("RelationshipsHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to &Hernoemen. /// public static string Rename { @@ -2019,16 +1265,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap resultset_next { - get { - object obj = ResourceManager.GetObject("resultset_next", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Over. /// public static string Ribbon_About { @@ -2236,15 +1472,6 @@ } /// - /// Looks up a localized string similar to Het licentie bestand {0} kan niet worden gevonden op de computer.. - /// - public static string RichTextView_RichTextView_The_license_file_0_cannot_be_found_on_the_computer { - get { - return ResourceManager.GetString("RichTextView_RichTextView_The_license_file_0_cannot_be_found_on_the_computer", resourceCulture); - } - } - - /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// public static System.Drawing.Icon Ringtoets { @@ -2264,142 +1491,6 @@ } /// - /// Looks up a localized string similar to Kritieke fout opgetreden tijdens deactivering van de grafische interface plugin.. - /// - public static string RingtoetsGui_ActivatePlugins_Exception_during_plugin_gui_deactivation { - get { - return ResourceManager.GetString("RingtoetsGui_ActivatePlugins_Exception_during_plugin_gui_deactivation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Het instellen van menu's en werkbalken is klaar.. - /// - public static string RingtoetsGui_InitializeMenusAndToolbars_Menus_and_toolbars_are_ready { - get { - return ResourceManager.GetString("RingtoetsGui_InitializeMenusAndToolbars_Menus_and_toolbars_are_ready", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Menu's en werkbalken instellen.... - /// - public static string RingtoetsGui_InitializeMenusAndToolbars_Setting_up_menus_and_toolbars { - get { - return ResourceManager.GetString("RingtoetsGui_InitializeMenusAndToolbars_Setting_up_menus_and_toolbars", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Alle vensters zijn gemaakt.. - /// - public static string RingtoetsGui_InitializeWindows_All_windows_are_created { - get { - return ResourceManager.GetString("RingtoetsGui_InitializeWindows_All_windows_are_created", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Standaardschermen aan het maken.... - /// - public static string RingtoetsGui_InitializeWindows_Creating_default_tool_windows { - get { - return ResourceManager.GetString("RingtoetsGui_InitializeWindows_Creating_default_tool_windows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Schermen initialiseren.... - /// - public static string RingtoetsGui_InitializeWindows_Initializing_windows { - get { - return ResourceManager.GetString("RingtoetsGui_InitializeWindows_Initializing_windows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Schermmanager voor documenten aan het maken.... - /// - public static string RingtoetsGui_InitToolWindows_Creating_document_window_manager { - get { - return ResourceManager.GetString("RingtoetsGui_InitToolWindows_Creating_document_window_manager", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Schermmanager aan het maken.... - /// - public static string RingtoetsGui_InitToolWindows_Creating_tool_window_manager { - get { - return ResourceManager.GetString("RingtoetsGui_InitToolWindows_Creating_tool_window_manager", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maken van standaardschermen beëindigd. - /// - public static string RingtoetsGui_InitToolWindows_Finished_InitToolWindows { - get { - return ResourceManager.GetString("RingtoetsGui_InitToolWindows_Finished_InitToolWindows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Slechts één instantie van de Ringtoets grafische interface is toegestaan per proces. Zorg ervoor dat de vorige instantie correct opgeruimd is. 'Stack trace':. - /// - public static string RingtoetsGui_Only_a_single_instance_of_Ringtoets_is_allowed_at_the_same_time_per_process_Make_sure_that_the_previous_instance_was_disposed_correctly_stack_trace { - get { - return ResourceManager.GetString("RingtoetsGui_Only_a_single_instance_of_Ringtoets_is_allowed_at_the_same_time_per_" + - "process_Make_sure_that_the_previous_instance_was_disposed_correctly_stack_trace", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nieuw project aanmaken.... - /// - public static string RingtoetsGui_Run_Creating_new_project { - get { - return ResourceManager.GetString("RingtoetsGui_Run_Creating_new_project", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Grafische gebruikersinterface initialiseren.... - /// - public static string RingtoetsGui_Run_Initializing_graphical_user_interface { - get { - return ResourceManager.GetString("RingtoetsGui_Run_Initializing_graphical_user_interface", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gestart in {0:f2} seconden.. - /// - public static string RingtoetsGui_Run_Started_in_0_f2_sec { - get { - return ResourceManager.GetString("RingtoetsGui_Run_Started_in_0_f2_sec", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Starten van de toepassing.... - /// - public static string RingtoetsGui_Run_Starting_application { - get { - return ResourceManager.GetString("RingtoetsGui_Run_Starting_application", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gebruiker heeft het opstarten onderbroken. Het programma wordt afgesloten.... - /// - public static string RingtoetsGui_ShowSplashScreen_User_has_cancelled_start_Exiting { - get { - return ResourceManager.GetString("RingtoetsGui_ShowSplashScreen_User_has_cancelled_start_Exiting", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Onbekend. /// public static string RingtoetsGui_UpdateTitle_Unknown { @@ -2411,16 +1502,6 @@ /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static System.Drawing.Bitmap SaveAllHS { - get { - object obj = ResourceManager.GetObject("SaveAllHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// public static System.Drawing.Bitmap SaveAsHH { get { object obj = ResourceManager.GetObject("SaveAsHH", resourceCulture); @@ -2439,16 +1520,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap script { - get { - object obj = ResourceManager.GetObject("script", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Fout. /// public static string SelectItemDialog_buttonOk_Click_Error { @@ -2467,15 +1538,6 @@ } /// - /// Looks up a localized string similar to Nieuw. - /// - public static string SelectItemDialog_listViewItemTypes_SelectedIndexChanged_New { - get { - return ResourceManager.GetString("SelectItemDialog_listViewItemTypes_SelectedIndexChanged_New", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Verkenner. /// public static string SelectItemDialog_ListViewItemTypesOnHandleCreated_Explorer { @@ -2485,15 +1547,6 @@ } /// - /// Looks up a localized string similar to Het aantal geselecteerde gegevenstypes moet 1 zijn.. - /// - public static string SelectItemDialog_SelectedItem_Number_of_selected_items_must_be_1 { - get { - return ResourceManager.GetString("SelectItemDialog_SelectedItem_Number_of_selected_items_must_be_1", resourceCulture); - } - } - - /// /// Looks up a localized string similar to - (Standaard). /// public static string SelectViewDialog_listBox_DrawItem_Default { @@ -2503,16 +1556,6 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap shape_square { - get { - object obj = ResourceManager.GetObject("shape_square", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// /// Looks up a localized string similar to Copyright. /// public static string SplashScreen_CopyRights { @@ -2605,34 +1648,87 @@ } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Nieuw Ringtoetsproject succesvol geopend.. /// - public static System.Drawing.Bitmap StopHS { + public static string StorageCommandHandler_NewProject_Created_new_project_succesful { get { - object obj = ResourceManager.GetObject("StopHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("StorageCommandHandler_NewProject_Created_new_project_succesful", resourceCulture); } } /// - /// Looks up a localized string similar to Grafiek. + /// Looks up a localized string similar to Openen van nieuw Ringtoetsproject.. /// - public static string ToolWindow_Name_Chart { + public static string StorageCommandHandler_NewProject_Creating_new_project { get { - return ResourceManager.GetString("ToolWindow_Name_Chart", resourceCulture); + return ResourceManager.GetString("StorageCommandHandler_NewProject_Creating_new_project", resourceCulture); } } /// - /// Looks up a localized string similar to Kaart. + /// Looks up a localized string similar to Openen van bestaand Ringtoetsproject.. /// - public static string ToolWindow_Name_Map { + public static string StorageCommandHandler_OpenExistingProject_Opening_existing_project { get { - return ResourceManager.GetString("ToolWindow_Name_Map", resourceCulture); + return ResourceManager.GetString("StorageCommandHandler_OpenExistingProject_Opening_existing_project", resourceCulture); } } /// + /// Looks up a localized string similar to Openen van bestaand Ringtoetsproject geannuleerd.. + /// + public static string StorageCommandHandler_OpenExistingProject_Opening_existing_project_cancelled { + get { + return ResourceManager.GetString("StorageCommandHandler_OpenExistingProject_Opening_existing_project_cancelled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Het is niet gelukt om het Ringtoetsproject te laden.. + /// + public static string StorageCommandHandler_OpeningExistingProject_Opening_existing_project_failed { + get { + return ResourceManager.GetString("StorageCommandHandler_OpeningExistingProject_Opening_existing_project_failed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bestaand Ringtoetsproject succesvol geopend.. + /// + public static string StorageCommandHandler_OpeningExistingProject_Opening_existing_project_successful { + get { + return ResourceManager.GetString("StorageCommandHandler_OpeningExistingProject_Opening_existing_project_successful", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opslaan van het Ringtoetsproject geannuleerd.. + /// + public static string StorageCommandHandler_SaveProject_Saving_project_cancelled { + get { + return ResourceManager.GetString("StorageCommandHandler_SaveProject_Saving_project_cancelled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Het Ringtoetsproject '{0}' is succesvol opgeslagen.. + /// + public static string StorageCommandHandler_SaveProject_Succesfully_saved_project_0_ { + get { + return ResourceManager.GetString("StorageCommandHandler_SaveProject_Succesfully_saved_project_0_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Het is niet gelukt om het Ringtoetsproject op te slaan.. + /// + public static string StorageCommandHandler_Saving_project_failed { + get { + return ResourceManager.GetString("StorageCommandHandler_Saving_project_failed", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Documentvenster is niet gevonden tussen alle mogelijke documentvensters.. /// public static string ViewList_ActivateView_Item_not_found_in_list_of_views { @@ -2670,15 +1766,6 @@ } /// - /// Looks up a localized string similar to Meer dan één documentvenster voor de gegevens.. - /// - public static string ViewResolver_CreateViewForData_More_than_one_view_for_data { - get { - return ResourceManager.GetString("ViewResolver_CreateViewForData_More_than_one_view_for_data", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Geen documentvenster geregistreerd voor: {0}.. /// public static string ViewResolver_OpenViewForData_No_view_registered_for_0_ { @@ -2705,15 +1792,5 @@ return ResourceManager.GetString("VS2010", resourceCulture); } } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - public static System.Drawing.Bitmap WebInsertHyperlinkHS { - get { - object obj = ResourceManager.GetObject("WebInsertHyperlinkHS", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } } } Index: Core/Common/src/Core.Common.Gui/Properties/Resources.resx =================================================================== diff -u -r8facffc48a20cd49759e32aea1ecc100047c68a2 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 --- Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision 8facffc48a20cd49759e32aea1ecc100047c68a2) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision 8760b8163ab56db9718bdb17715304bc1c7d63a9) @@ -124,45 +124,15 @@ ..\Resources\SplashScreenBackground.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\cross_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ../Resources/folder_add.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\feed.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\cross-small-bw.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Toevoegen Startpagina... - - ..\Resources\RelationshipsHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - Openen van nieuw Ringtoetsproject geannuleerd. - - - ..\Resources\information_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ../Resources/brick_add.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - Nieuw - - - ../Resources/shape_square.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Opties - - ..\Resources\Edit_UndoHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Verkenner @@ -172,21 +142,6 @@ Kan niet meerdere instanties van Ringtoets starten. Sluit eerst de andere instantie. - - ..\Resources\brick_active.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ../Resources/edit-undo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ../Resources/folder_brick.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\cog_add_Large.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\folder_wrench.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\ClosePreviewHH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -196,39 +151,24 @@ Fout bij het opslaan van de instellingen in {0}. - - ..\Resources\FindView.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Documentvenster wordt gesloten tijdens het openen. Documentvenster {0} wordt gesloten. - - ..\Resources\link.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\exclamation.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\data_item_link.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\link_break.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Onbekende kritieke fout opgetreden. Weergeven/Verbergen - + Kan niet importeren naar {0}. - - ../Resources/cog_add.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Documentvenster is al toegevoegd. Activeer de weergave in plaats van het toe te voegen. @@ -238,19 +178,16 @@ Opslaan - + Standaardschermen aan het maken... - + Kritieke fout opgetreden tijdens deactivering van de grafische interface plugin. - - Annuleren... - - + Nieuw project aanmaken... - + Starten van de toepassing... @@ -262,78 +199,39 @@ ..\Resources\chart_curve.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - niet gedefinieerd - ..\Resources\application_view_list.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ../Resources/StopHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Startpagina ..\Resources\DocumentHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - + Het is niet mogelijk het logbestand te openen. In plaats hiervan wordt de folder waarin het logbestand staat geopend. - - ../Resources/control_stop.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Instelling {0} heeft de niet-ondersteunde waarde 'roaming'. - - ../Resources/resultset_next.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ../Resources/folder_delete.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Project kan niet worden geopend. ../Resources/DeleteHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\lock_edit.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\saveHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - + Openen van bestaand Ringtoetsproject geannuleerd. - - ..\Resources\graphhs.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - + Schermmanager voor documenten aan het maken... - - ..\Resources\data_item_error.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\data_item.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\Edit_RedoHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Argument 'Sender' moet een instantie van het type 'Control' zijn - - Grafiek - - - ..\Resources\folder_edit.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\cog_active.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Geen enkele 'Importer' is beschikbaar voor dit element ({0}). @@ -352,30 +250,12 @@ ..\Resources\map.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\application_form.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - Het licentie bestand {0} kan niet worden gevonden op de computer. - - + Maken van standaardschermen beëindigd Opslaan Als - - ..\Resources\plugin.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ../Resources/edit-redo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\binocular_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - Schermen initialiseren... - - (Standaard) @@ -385,79 +265,37 @@ Ringtoets wordt gestart... - - Kaart - Ribbon kon niet worden hersteld. De instellingen zijn ongeldig en zullen worden teruggezet naar de standaardinstellingen. - - ../Resources/PlayHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\brick_edit.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\PasteHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\-1.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\resources\startpage.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Berichten - + Nieuw Ringtoetsproject succesvol geopend. - - ..\Resources\brick1.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Beeld - - ..\resources\playall.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\application_view_list.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\magnifier.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Open Handleiding ..\Resources\folder.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ../Resources/brick_delete.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\SaveAsHH.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Statustekst - - ..\Resources\fullscreen.PNG;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - Annuleer alle activiteiten - - - ..\Resources\script.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - + Gestart in {0:f2} seconden. - - ..\Resources\folder_input.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - + Schermmanager aan het maken... @@ -466,54 +304,30 @@ ..\Resources\application_import_blue.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - + Grafische gebruikersinterface initialiseren... - - ..\Resources\folder_feed.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\brick_error.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\CutHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Openen - + Gebruiker heeft het opstarten onderbroken. Het programma wordt afgesloten... ..\Resources\OptionsHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\calendar_view_day.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\chart_line.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Over ..\Resources\error.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - Meer dan één documentvenster voor de gegevens. - - - ..\Resources\bug.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Licentie Beginnen met het importeren van gegevens. - - ..\Resources\chart_organisation.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Er is geen standaardlocatie opgegeven. Kan geen documentvenster toevoegen zonder de locatie parameter. @@ -523,30 +337,15 @@ Wanneer deze optie is aangezet, zal de standaard opmaak worden gebruikt bij het opnieuw starten van Ringtoets. - - ../Resources/cog.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\newspaper.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - + Alle vensters zijn gemaakt. Selecteer een bestand met {0} om eruit te importeren... - - Menu's en werkbalken instellen... - - + Openen van nieuw Ringtoetsproject. - - ..\Resources\chart_bar.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\bricks.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Hoofdschermvenster is aangemaakt. @@ -556,67 +355,25 @@ Kon de gevraagde 'dock' opmaak niet laden. De instellingen zijn ongeldig en zullen teruggezet worden naar de standaardinstellingen. - - ..\Resources\application_import_blue_Large.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Documentvenster is niet gevonden tussen alle mogelijke documentvensters. - - ..\Resources\folder_database.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\cut_red.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - Het instellen van menu's en werkbalken is klaar. - - - ..\Resources\OrgChartHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\brick_link.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ../Resources/control_play.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - + Logbestand kan niet worden geopend. - - ..\Resources\calendar.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\clipboard_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\cut.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Selecteer een type. - - ../Resources/cog_delete.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\folder_error.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\cross-small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Opmaak resetten na opnieuw opstarten Controleer logbestand voor meer informatie ("Bestand"->"Help"->"Log tonen"). - - ..\Resources\WebInsertHyperlinkHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Eigenschappen - + Openen van bestaand Ringtoetsproject. @@ -625,9 +382,6 @@ Geen enkele 'Importer' is beschikbaar voor dit element. - - ..\Resources\folder_output.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Recent @@ -637,25 +391,16 @@ ..\Resources\information.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\note.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Feedback Verzenden Afsluiten - - Het aantal geselecteerde gegevenstypes moet 1 zijn. - Locatie {0} is niet geldig voor het documentvenster. - - ..\Resources\chart_pie.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - + Slechts één instantie van de Ringtoets grafische interface is toegestaan per proces. Zorg ervoor dat de vorige instantie correct opgeruimd is. 'Stack trace': @@ -664,27 +409,12 @@ Berichten - - === opdracht uitvoeren === - - - ..\Resources\plus-button_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\plugin_disabled.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Importeren gegevens - - ..\Resources\SaveAllHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - Opmaak resetten na opnieuw opstarten - - ..\Resources\FindProject.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\icon_clear_all_messages.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -694,10 +424,7 @@ Aantal ({0}) - - Nieuwe map toevoegen - - + Er moet een project zijn om gegevens te kunnen toevoegen. @@ -784,18 +511,12 @@ Klap dit element en alle onderliggende elementen uit. - - Kan geen contextmenu opbouwen voor een lege knoop. - Kan geen 'ApplicationFeatureCommandHandler'-afhankelijk element in het contextmenu creëren zonder een 'ApplicationFeatureCommandHandler'. Kan geen element in het contextmenu creëren zonder dat de data bekend is. - - Kan geen element in het contextmenu creëren zonder dat informatie over de knoop bekend is. - Kan geen element in het contextmenu creëren zonder dat de boom bekend is. @@ -832,9 +553,6 @@ Gecategoriseerd - - Shape-bestand (*.shp)|*.shp - Kan geen 'PropertyResolver' maken zonder een lijst van 'PropertyInfo'. @@ -931,19 +649,19 @@ Slechts één DynamicVisibleValidationMethod toegestaan per klasse: {0}. - + Het is niet gelukt om het Ringtoetsproject te laden. - + Bestaand Ringtoetsproject succesvol geopend. - + Opslaan van het Ringtoetsproject geannuleerd. - + Het is niet gelukt om het Ringtoetsproject op te slaan. - + Het Ringtoetsproject '{0}' is succesvol opgeslagen. Index: Core/Common/src/Core.Common.Gui/Resources/CutHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/Edit_RedoHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/Edit_UndoHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/FindProject.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/FindView.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/OrgChartHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/PasteHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/PlayAll.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/PlayHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/RelationshipsHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/SaveAllHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/StopHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/WebInsertHyperlinkHS.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/application_form.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/application_import_blue_Large.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/application_view_list1.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/binocular_32.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/brick1.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/brick_active.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/brick_delete.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/brick_edit.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/brick_error.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/brick_link.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/bricks.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/bug.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/calendar.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/calendar_view_day.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/chart_bar.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/chart_line.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/chart_organisation.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/chart_pie.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/clipboard_32.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cog.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cog_active.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cog_add.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cog_add_Large.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cog_delete.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/control_play.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/control_stop.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cross-small-bw.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cross-small.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cross_small.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cut.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/cut_red.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/data_item.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/data_item_error.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/data_item_link.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/edit-redo.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/edit-undo.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/feed.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_add.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_brick.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_database.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_delete.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_edit.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_error.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_feed.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_input.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_output.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/folder_wrench.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/fullscreen.PNG =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/graphhs.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/information_32.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/link.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/link_break.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/lock_edit.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/magnifier.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/newspaper.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/note.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/plugin.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/plugin_disabled.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/plus-button_32.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/resultset_next.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/script.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ Index: Core/Common/src/Core.Common.Gui/Resources/shape_square.png =================================================================== diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r8760b8163ab56db9718bdb17715304bc1c7d63a9 Binary files differ