Index: Core/Common/src/Core.Common.Gui/Commands/GuiExportHandler.cs
===================================================================
diff -u -r95364cd8155bbd5f25bf2ee83b5731fca744373a -r93c061881e610c245377298c964e7f0b1e2828fb
--- Core/Common/src/Core.Common.Gui/Commands/GuiExportHandler.cs (.../GuiExportHandler.cs) (revision 95364cd8155bbd5f25bf2ee83b5731fca744373a)
+++ Core/Common/src/Core.Common.Gui/Commands/GuiExportHandler.cs (.../GuiExportHandler.cs) (revision 93c061881e610c245377298c964e7f0b1e2828fb)
@@ -105,7 +105,12 @@
{
foreach (var exportInfo in supportedExportInfos)
{
- selectExportInfoDialog.AddItemType(exportInfo.Name, exportInfo.Category, exportInfo.Image ?? Resources.ExportIcon, null);
+ selectExportInfoDialog.AddItemType(exportInfo.Name,
+ !string.IsNullOrEmpty(exportInfo.Category)
+ ? exportInfo.Category
+ : Resources.GuiExportHandler_Default_category,
+ exportInfo.Image ?? Resources.ExportIcon,
+ null);
}
if (selectExportInfoDialog.ShowDialog() == DialogResult.OK)
Index: Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs
===================================================================
diff -u -r1b9445050ddc7786014349d7014c7c4d85242a5d -r93c061881e610c245377298c964e7f0b1e2828fb
--- Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 1b9445050ddc7786014349d7014c7c4d85242a5d)
+++ Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 93c061881e610c245377298c964e7f0b1e2828fb)
@@ -787,6 +787,15 @@
}
///
+ /// Looks up a localized string similar to Algemeen.
+ ///
+ public static string GuiExportHandler_Default_category {
+ get {
+ return ResourceManager.GetString("GuiExportHandler_Default_category", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized string similar to Exporteren is mislukt..
///
public static string GuiExportHandler_ExportItemUsingDialog_Export_failed {
Index: Core/Common/src/Core.Common.Gui/Properties/Resources.resx
===================================================================
diff -u -r2e82c6e72a3c33965987f82c6edc03566d633eaf -r93c061881e610c245377298c964e7f0b1e2828fb
--- Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision 2e82c6e72a3c33965987f82c6edc03566d633eaf)
+++ Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision 93c061881e610c245377298c964e7f0b1e2828fb)
@@ -628,4 +628,7 @@
Project opslaan
+
+ Algemeen
+
\ No newline at end of file