Merge branch 'main' into lang_de

This commit is contained in:
2024-06-07 14:34:55 +02:00
3 changed files with 5 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
<groupId>org.example</groupId> <groupId>org.example</groupId>
<artifactId>Widerhall</artifactId> <artifactId>Widerhall</artifactId>
<version>1.0.6</version> <version>1.0.7</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -1,5 +1,7 @@
<div class="footer"> <div class="footer">
Widerhall Mail-Verteiler. Widerhall Mail-Verteiler.
Version 1.0.6.
Version 1.0.7.
Hol dir den Quellcode auf <a target="_blank" href="https://git.srsoftware.de/StephanRichter/Widerhall/src/branch/lang_de">git.srsoftware.de</a> Hol dir den Quellcode auf <a target="_blank" href="https://git.srsoftware.de/StephanRichter/Widerhall/src/branch/lang_de">git.srsoftware.de</a>
</div> </div>

View File

@@ -286,7 +286,7 @@ function testList(listEmail){
} }
function transfer(newOwner,listEmail){ function transfer(newOwner,listEmail){
if (confirm("Really transfer "+listEmail+" to "+newOwner+"?")){ if (confirm(listEmail+" wirklich an "+newOwner+" übereignen?")){
$.post('/api/list/transfer',{email:newOwner,list:listEmail},reload,'json'); $.post('/api/list/transfer',{email:newOwner,list:listEmail},reload,'json');
} }
} }