"</form>");
container.addPart(text);
ButtonArea buttons = new ButtonArea();
buttons.addButton(i18n.tr("Datenbank-Informationen"), new Action() {
public void handleAction(Object context) throws ApplicationException
{
try
{
new DebugDialog(DebugDialog.POSITION_CENTER).open();
}
catch (OperationCanceledException oce)
{
Logger.info(oce.getMessage());
return;
}
catch (Exception e)
{
Logger.error("unable to display debug dialog",e);
Application.getMessagingFactory().sendMessage(new StatusBarMessage(i18n.tr("Fehler beim Anzeigen der Datenbank-Informationen"), StatusBarMessage.TYPE_ERROR));
}
}
},null,false,"dialog-information.png");
// buttons.addButton(i18n.tr("Wallet"), new Action() {
// public void handleAction(Object context) throws ApplicationException
// {
// try
// {
// new WalletDialog(DebugDialog.POSITION_CENTER).open();
// }
// catch (OperationCanceledException oce)
// {
// Logger.info(oce.getMessage());
// return;
// }
// catch (Exception e)
// {
// Logger.error("unable to display wallet dialog",e);
// Application.getMessagingFactory().sendMessage(new StatusBarMessage(i18n.tr("Fehler beim Anzeigen des Wallet"), StatusBarMessage.TYPE_ERROR));
// }
// }
// },null,false,"stock_keyring.png");
buttons.addButton(i18n.tr("Spenden"),new Action() {
public void handleAction(Object context) throws ApplicationException
{
close();
new DonateView().handleAction(null);
}
},null,false,"emblem-special.png");
buttons.addButton(i18n.tr("Schlie�en"),new Action() {
public void handleAction(Object context) throws ApplicationException
{
close();
}
},null,true,"window-close.png");