-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
GUI: Replace "Close" by "Close library" #10043
Conversation
src/main/java/org/jabref/logic/importer/fetcher/MathSciNet.java
Outdated
Show resolved
Hide resolved
@@ -70,7 +70,7 @@ public enum StandardActions implements Action { | |||
EXPORT_SELECTED(Localization.lang("Export selected entries"), KeyBinding.EXPORT_SELECTED), | |||
CONNECT_TO_SHARED_DB(Localization.lang("Connect to shared database"), IconTheme.JabRefIcons.CONNECT_DB), | |||
PULL_CHANGES_FROM_SHARED_DB(Localization.lang("Pull changes from shared database"), KeyBinding.PULL_CHANGES_FROM_SHARED_DATABASE), | |||
CLOSE_LIBRARY(Localization.lang("Close"), Localization.lang("Close the current library"), IconTheme.JabRefIcons.CLOSE, KeyBinding.CLOSE_DATABASE), | |||
CLOSE_LIBRARY(Localization.lang("Close library"), Localization.lang("Close the current library"), IconTheme.JabRefIcons.CLOSE, KeyBinding.CLOSE_DATABASE), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you will need to fix this in en.properties as well. file https://devdocs.jabref.org/code-howtos/localization.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a new one with close library. I guess Close is used in other parts of the GUI as well.
Just run LocalizationConsistencyTest it will tell you
Edit// yes you can remove "Close" then
0889034
to
d143d63
Compare
Please add following info to the pull-request comment:
|
and don't forget a changelog entry :) |
CHANGELOG.md
Outdated
@@ -26,6 +26,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve | |||
|
|||
### Changed | |||
|
|||
- We replaced "Close" by "Close library" and placed it after "Save all" in the File tab. [#10043] (https://github.com/JabRef/jabref/pull/10043) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- We replaced "Close" by "Close library" and placed it after "Save all" in the File tab. [#10043] (https://github.com/JabRef/jabref/pull/10043) | |
- We replaced "Close" by "Close library" and placed it after "Save all" in the File menu. [#10043] (https://github.com/JabRef/jabref/pull/10043) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and no space after the []
and the round ()
ones
Applied all the suggestions. Code should be looking good now. |
fixes https://github.com/JabRef/jabref-issue-melting-pot/issues/213
After:
Mandatory checks
CHANGELOG.md
described in a way that is understandable for the average user (if applicable)