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 for untranslated Strings #5727

Merged
merged 1 commit into from
Dec 11, 2019
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="org.jabref.gui.bibtexkeypattern.BibtexKeyPatternTableView">
<columns>
<TableColumn fx:id="entryTypeColumn" editable="false" minWidth="100.0" text="Name"/>
<TableColumn fx:id="patternColumn" minWidth="100.0" text="Key pattern"/>
<TableColumn fx:id="entryTypeColumn" editable="false" minWidth="100.0" text="%Name"/>
<TableColumn fx:id="patternColumn" minWidth="100.0" text="%Key pattern"/>
<TableColumn fx:id="actionsColumn" editable="false" maxWidth="30.0" minWidth="30.0" prefWidth="30.0"
reorderable="false" resizable="false" sortable="false"/>
</columns>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/groups/GroupTree.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</buttons>
</ButtonBar>
<Region prefWidth="20.0" HBox.hgrow="ALWAYS"/>
<CustomTextField fx:id="searchField" promptText="Filter groups"/>
<CustomTextField fx:id="searchField" promptText="%Filter groups"/>
</HBox>
</bottom>
</BorderPane>
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
</HBox>
<AnchorPane>
<HBox fx:id="keyPatternContainer" prefWidth="650.0" prefHeight="220.0"/>
<Button text="Reset All" onAction="#resetAllKeyPatterns" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"/>
<Button text="%Reset All" onAction="#resetAllKeyPatterns" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"/>
</AnchorPane>
</fx:root>
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<VBox spacing="4.0" HBox.hgrow="SOMETIMES">
<TableView fx:id="columnsList" editable="true" prefHeight="300.0" prefWidth="220.0">
<columns>
<TableColumn fx:id="nameColumn" prefWidth="160.0" text="Name"/>
<TableColumn fx:id="nameColumn" prefWidth="160.0" text="%Name"/>
<TableColumn fx:id="actionsColumn" maxWidth="40.0" minWidth="40.0" resizable="false"/>
</columns>
<columnResizePolicy>
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@ Filter=Filter

Finished\ automatically\ setting\ external\ links.=Finished automatically setting external links.

Filter\ groups=Filter groups

Finished\ writing\ XMP\ for\ %0\ file\ (%1\ skipped,\ %2\ errors).=Finished writing XMP for %0 file (%1 skipped, %2 errors).

First\ select\ the\ entries\ you\ want\ keys\ to\ be\ generated\ for.=First select the entries you want keys to be generated for.
Expand Down Expand Up @@ -2087,6 +2089,7 @@ Reset\ %s\ to\ default\ value=Reset %s to default value
Library\ mode=Library mode
Reset\ to\ recommended=Reset to recommended
Remove\ all=Remove all
Reset\ All=Reset All
Column\ type\ %0\ is\ unknown.=Column type %0 is unknown.
Linked\ identifiers=Linked identifiers
Special\ field\ type\ %0\ is\ unknown.\ Using\ normal\ column\ type.=Special field type %0 is unknown. Using normal column type.
Expand Down