an Übersetzung gearbeitet
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user