an Übersetzung gearbeitet

This commit is contained in:
2022-04-19 10:47:24 +02:00
parent c74e66ed3c
commit 0f83ce7e82
2 changed files with 10 additions and 10 deletions

View File

@@ -147,7 +147,7 @@ public class ListMember {
var rs = request.compile().exec();
while (rs.next()) list.add(rs.getString(LIST_EMAIL));
} catch (SQLException e) {
LOG.warn("Collecting lists of {} failed: ",user.email(),e);
LOG.warn("Sammeln der Listen von {} fehlgeschlagen: ",user.email(),e);
}
return list;
}
@@ -222,9 +222,9 @@ public class ListMember {
*/
public static String stateText(int state) {
var words = new ArrayList<String>();
if ((state & STATE_OWNER) > 0) words.add("owner");
if ((state & STATE_SUBSCRIBER) > 0) words.add("subscriber");
if ((state & STATE_AWAITING_CONFIRMATION) > 0) words.add("awaiting confirmation");
if ((state & STATE_OWNER) > 0) words.add("Besitzer");
if ((state & STATE_SUBSCRIBER) > 0) words.add("Abonniert");
if ((state & STATE_AWAITING_CONFIRMATION) > 0) words.add("erwartet Bestätigung");
return String.join(", ",words);
}