Skip to content

Commit

Permalink
Zu Export umbenannt
Browse files Browse the repository at this point in the history
  • Loading branch information
lenilsas committed Jan 18, 2025
1 parent eaf68fc commit e3022e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import de.willuhn.jameica.system.Application;
import de.willuhn.util.ApplicationException;

public class SyntaxImportAction implements Action
public class SyntaxExportAction implements Action
{

@Override
Expand Down Expand Up @@ -88,7 +88,7 @@ public void handleAction(Object context) throws ApplicationException
}
catch (RemoteException e)
{
throw new ApplicationException("Fehler beim lesen der Buchung.");
throw new ApplicationException("Fehler beim Lesen der Buchung.");
}
buchunglist.add(buchungMap);
}
Expand Down
4 changes: 2 additions & 2 deletions src/de/jost_net/JVerein/gui/menu/BuchungMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import de.jost_net.JVerein.gui.action.MitgliedDetailAction;
import de.jost_net.JVerein.gui.action.SplitBuchungAction;
import de.jost_net.JVerein.gui.action.SplitbuchungBulkAufloesenAction;
import de.jost_net.JVerein.gui.action.SyntaxImportAction;
import de.jost_net.JVerein.gui.action.SyntaxExportAction;
import de.jost_net.JVerein.gui.control.BuchungsControl;
import de.jost_net.JVerein.keys.ArtBuchungsart;
import de.jost_net.JVerein.keys.SplitbuchungTyp;
Expand Down Expand Up @@ -97,7 +97,7 @@ public BuchungMenu(BuchungsControl control)
{
addItem(ContextMenuItem.SEPARATOR);
addItem(new CheckedContextMenuItem("In SynTAX übernehmen",
new SyntaxImportAction(), "document-save.png"));
new SyntaxExportAction(), "document-save.png"));
}
}

Expand Down

0 comments on commit e3022e5

Please sign in to comment.