Skip to content

Commit

Permalink
Fix error in l10n file: Toogle -> Toggle (#4453)
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr authored Nov 3, 2018
1 parent c3684a1 commit 2ae8d9d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/jabref/gui/groups/GroupModeViewModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class GroupModeViewModel {

private GroupViewMode mode;
private final GroupViewMode mode;

public GroupModeViewModel(GroupViewMode mode) {
this.mode = mode;
Expand All @@ -27,9 +27,9 @@ public Node getUnionIntersectionGraphic() {

public Tooltip getUnionIntersectionTooltip() {
if (mode == GroupViewMode.UNION) {
return new Tooltip(Localization.lang("Toogle intersection"));
return new Tooltip(Localization.lang("Toggle intersection"));
} else if (mode == GroupViewMode.INTERSECTION) {
return new Tooltip(Localization.lang("Toogle union"));
return new Tooltip(Localization.lang("Toggle union"));
}
return new Tooltip();
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2182,8 +2182,8 @@ Group\ view\ mode\ set\ to\ union=Group view mode set to union
Open\ %0\ URL\ (%1)=Open %0 URL (%1)
Open\ URL\ (%0)=Open URL (%0)
Open\ file\ %0=Open file %0
Toogle\ intersection=Toogle intersection
Toogle\ union=Toogle union
Toggle\ intersection=Toggle intersection
Toggle\ union=Toggle union
Jump\ to\ entry=Jump to entry
The\ group\ name\ contains\ the\ keyword\ separator\ "%0"\ and\ thus\ probably\ does\ not\ work\ as\ expected.=The group name contains the keyword separator "%0" and thus probably does not work as expected.
Abbreviate\ journal\ names\ (ISO)=Abbreviate journal names (ISO)
Expand Down

0 comments on commit 2ae8d9d

Please sign in to comment.