Skip to content

Commit

Permalink
Modified LowerCaseFormatter, TitleCaseFormatter, and UpperCaseFormatt…
Browse files Browse the repository at this point in the history
…er.java to exemplify Change case sub-menu issue JabRef#9339
  • Loading branch information
IanAllen51 committed Nov 3, 2022
1 parent 1face3f commit 301a209
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class LowerCaseFormatter extends Formatter {

@Override
public String getName() {
return Localization.lang("Lower case");
return Localization.lang("lower case");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class TitleCaseFormatter extends Formatter {

@Override
public String getName() {
return Localization.lang("Title case");
return Localization.lang("Title Case");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class UpperCaseFormatter extends Formatter {

@Override
public String getName() {
return Localization.lang("Upper case");
return Localization.lang("UPPER CASE");
}

@Override
Expand Down

0 comments on commit 301a209

Please sign in to comment.