mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Fixed biweekly properties
This commit is contained in:
parent
04b74ce410
commit
0193116fa4
4 changed files with 2 additions and 2 deletions
|
@ -240,7 +240,7 @@ public final class Biweekly {
|
|||
static {
|
||||
InputStream in = null;
|
||||
try {
|
||||
in = Biweekly.class.getResourceAsStream("biweekly.properties");
|
||||
in = Biweekly.class.getResourceAsStream("/biweekly/biweekly.properties");
|
||||
Properties props = new Properties();
|
||||
props.load(in);
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ public enum Messages {
|
|||
private final transient ResourceBundle messages;
|
||||
|
||||
Messages() {
|
||||
messages = ResourceBundle.getBundle("biweekly/messages");
|
||||
messages = ResourceBundle.getBundle("biweekly.messages");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue