diff options
| author | Simon Rettberg | 2015-08-19 17:23:34 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2015-08-19 17:23:34 +0200 |
| commit | 595eb21969a8759e0cd07d455979fbb31a3761dc (patch) | |
| tree | d51c316f5badd318f0ec739deae07ea0a94fa5e8 | |
| parent | Adapt to master-sync-shared changes (diff) | |
| download | tutor-module-595eb21969a8759e0cd07d455979fbb31a3761dc.tar.gz tutor-module-595eb21969a8759e0cd07d455979fbb31a3761dc.tar.xz tutor-module-595eb21969a8759e0cd07d455979fbb31a3761dc.zip | |
[client] Show proper message when deleting an image version
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/thrift/ThriftActions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/ThriftActions.java b/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/ThriftActions.java index d3a12169..db3d0cee 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/ThriftActions.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/ThriftActions.java @@ -154,7 +154,7 @@ public class ThriftActions { } public static void deleteImageVersion(final Frame frame, final String imageBaseId, final String imageVersionId, final DeleteCallback callback) { // requires confirmation of the user - if (!Gui.showMessageBox(frame, "Wollen Sie die letzte Version dieses Images wirklich löschen?", + if (!Gui.showMessageBox(frame, "Wollen Sie diese Image-Version wirklich löschen?", MessageType.QUESTION_YESNO, LOGGER, null)) return; // try to actually delete this version of the image |
