File tree 3 files changed +5
-5
lines changed
java/org/jabref/gui/journals
test/java/org/jabref/gui/journals
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public void execute() {
94
94
.executeWith (taskExecutor ));
95
95
} else if (action == StandardActions .UNABBREVIATE ) {
96
96
if (!areAnyJournalSourcesEnabled ()) {
97
- dialogService .notify (Localization .lang ("%cannot unabbreviate: all journal lists are disabled." ));
97
+ dialogService .notify (Localization .lang ("Cannot unabbreviate: all journal lists are disabled." ));
98
98
return ;
99
99
}
100
100
Original file line number Diff line number Diff line change @@ -1497,7 +1497,7 @@ None\ of\ the\ selected\ entries\ have\ citation\ keys.=None of the selected ent
1497
1497
None\ of\ the\ selected\ entries\ have\ DOIs.=None of the selected entries have DOIs.
1498
1498
Unabbreviate\ journal\ names =Unabbreviate journal names
1499
1499
Unabbreviating...=Unabbreviating...
1500
- %cannot \ unabbreviate:\ all\ journal\ lists\ are\ disabled.=%cannot unabbreviate: all journal lists are disabled.
1500
+ Cannot \ unabbreviate\ :\ all\ journal\ lists\ are\ disabled.=Cannot unabbreviate: all journal lists are disabled.
1501
1501
Usage =Usage
1502
1502
1503
1503
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ void unabbreviateWithAllSourcesDisabledShowsNotification() {
72
72
73
73
action .execute ();
74
74
75
- verify (dialogService ).notify (eq (Localization .lang ("%cannot unabbreviate: all journal lists are disabled." )));
75
+ verify (dialogService ).notify (eq (Localization .lang ("Cannot unabbreviate: all journal lists are disabled." )));
76
76
}
77
77
78
78
@ Test
@@ -94,7 +94,7 @@ void unabbreviateWithOneSourceEnabledExecutesTask() {
94
94
95
95
action .execute ();
96
96
97
- verify (dialogService , never ()).notify (eq (Localization .lang ("%cannot unabbreviate: all journal lists are disabled." )));
97
+ verify (dialogService , never ()).notify (eq (Localization .lang ("Cannot unabbreviate: all journal lists are disabled." )));
98
98
verify (dialogService ).notify (eq (Localization .lang ("Unabbreviating..." )));
99
99
}
100
100
@@ -117,7 +117,7 @@ void checksIfAnyJournalSourcesAreEnabled() {
117
117
118
118
action .execute ();
119
119
120
- verify (dialogService , never ()).notify (eq (Localization .lang ("%cannot unabbreviate: all journal lists are disabled." )));
120
+ verify (dialogService , never ()).notify (eq (Localization .lang ("Cannot unabbreviate: all journal lists are disabled." )));
121
121
}
122
122
}
123
123
You can’t perform that action at this time.
0 commit comments