Skip to content

Commit 00f7216

Browse files
authored
Rename "LaTeX references search" -> "Search for Citations in LaTeX Files" (#5135)
1 parent 09f367e commit 00f7216

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

src/main/java/org/jabref/gui/actions/StandardActions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public enum StandardActions implements Action {
8585
TOOGLE_OO(Localization.lang("OpenOffice/LibreOffice"), IconTheme.JabRefIcons.FILE_OPENOFFICE, KeyBinding.OPEN_OPEN_OFFICE_LIBRE_OFFICE_CONNECTION),
8686
TOGGLE_WEB_SEARCH(Localization.lang("Web search"), Localization.lang("Toggle web search interface"), IconTheme.JabRefIcons.WWW, KeyBinding.WEB_SEARCH),
8787

88-
PARSE_TEX(Localization.lang("LaTeX references search"), IconTheme.JabRefIcons.APPLICATION_TEXSTUDIO),
88+
PARSE_TEX(Localization.lang("Search for Citations in LaTeX Files"), IconTheme.JabRefIcons.APPLICATION_TEXSTUDIO),
8989
NEW_SUB_LIBRARY_FROM_AUX(Localization.lang("New sublibrary based on AUX file") + "...", Localization.lang("New BibTeX sublibrary") + Localization.lang("This feature generates a new library based on which entries are needed in an existing LaTeX document."), IconTheme.JabRefIcons.NEW),
9090
WRITE_XMP(Localization.lang("Write XMP-metadata to PDFs"), Localization.lang("Will write XMP-metadata to the PDFs linked from selected entries."), KeyBinding.WRITE_XMP),
9191
OPEN_FOLDER(Localization.lang("Open folder"), Localization.lang("Open folder"), KeyBinding.OPEN_FOLDER),

src/main/java/org/jabref/gui/texparser/ParseTexDialogView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public ParseTexDialogView(BibDatabaseContext databaseContext) {
4848
this.databaseContext = databaseContext;
4949
this.validationVisualizer = new ControlsFxVisualizer();
5050

51-
this.setTitle(Localization.lang("LaTeX references search"));
51+
this.setTitle(Localization.lang("Search for Citations in LaTeX Files"));
5252

5353
ViewLoader.view(this)
5454
.load()

src/main/java/org/jabref/gui/texparser/ParseTexResultView.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,9 @@ public class ParseTexResultView extends BaseDialog<Void> {
2626
public ParseTexResultView(TexParserResult texParserResult) {
2727
this.texParserResult = texParserResult;
2828

29-
this.setTitle(Localization.lang("LaTeX references search results"));
29+
this.setTitle(Localization.lang("LaTeX Citations Search Results"));
3030

31-
ViewLoader.view(this)
32-
.load()
33-
.setAsDialogPane(this);
31+
ViewLoader.view(this).load().setAsDialogPane(this);
3432
}
3533

3634
@FXML

src/main/resources/l10n/JabRef_en.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2109,8 +2109,8 @@ Import\ preferences\ from\ a\ file=Import preferences from a file
21092109
Matching=Matching
21102110
Same\ as\ --import,\ but\ will\ be\ imported\ to\ the\ opened\ tab=Same as --import, but will be imported to the opened tab
21112111
Allow\ integers\ in\ 'edition'\ field\ in\ BibTeX\ mode=Allow integers in 'edition' field in BibTeX mode
2112-
LaTeX\ references\ search=LaTeX references search
2113-
LaTeX\ references\ search\ results=LaTeX references search results
2112+
Search\ for\ Citations\ in\ LaTeX\ Files=Search for Citations in LaTeX Files
2113+
LaTeX\ Citations\ Search\ Results=LaTeX Citations Search Results
21142114
LaTeX\ files\ directory\:=LaTeX files directory:
21152115
LaTeX\ files\ found\:=LaTeX files found:
21162116
files=files

0 commit comments

Comments
 (0)