Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Anpassungen Ansicht Mail erstellen #137

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/de/jost_net/JVerein/gui/control/MailControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ else if (getMail().getAnhang() == null)

public Button getMailSendButton()
{
Button b = new Button("speichern + senden", new Action()
Button b = new Button("Speichern und senden", new Action()
{

@Override
Expand Down Expand Up @@ -322,7 +322,7 @@ public void handleAction(Object context) throws ApplicationException

public Button getMailReSendButton()
{
Button b = new Button("speichern + erneut senden", new Action()
Button b = new Button("Speichern und erneut senden", new Action()
{

@Override
Expand Down Expand Up @@ -387,7 +387,7 @@ public void handleAction(Object context) throws ApplicationException

public Button getMailSpeichernButton()
{
Button b = new Button("speichern", new Action()
Button b = new Button("Speichern", new Action()
{

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public MailEmpfaengerAuswahlDialog(MailControl control, int position)
super(position);
this.control = control;
setTitle("Mail-Empf�nger");
setSize(650, 450);
setSize(700, 450);
}

@Override
Expand Down