Skip to content

Commit e8645a2

Browse files
committed
Modify log messages correspondingly.
1 parent 4d1b88d commit e8645a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jabref/gui/mergeentries/BatchEntryMergeTask.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public BatchEntryMergeTask(MergeContext context) {
4040
}
4141

4242
private void configureTask() {
43-
setTitle(Localization.lang("Fetching and merging entries"));
43+
setTitle(Localization.lang("Fetching and merging entry(s)"));
4444
withInitialMessage(Localization.lang("Starting merge operation..."));
4545
showToUser(true);
4646
}
@@ -127,7 +127,7 @@ private void finalizeOperation(List<String> updatedEntries) {
127127
private void notifySuccess(int updateCount) {
128128
String message = updateCount == 0
129129
? Localization.lang("No updates found.")
130-
: Localization.lang("Batch update successful. %0 entries updated.", updateCount);
130+
: Localization.lang("Batch update successful. %0 entry(s) updated.", updateCount);
131131
context.notificationService().notify(message);
132132
}
133133

0 commit comments

Comments
 (0)