Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error in l10n file: Toogle -> Toggle #4453

Merged
merged 1 commit into from
Nov 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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