Skip to content

Commit

Permalink
Merge pull request #5727 from CloudFenrir/fix-for-issue-5701
Browse files Browse the repository at this point in the history
Fix for untranslated Strings
  • Loading branch information
Siedlerchr committed Dec 11, 2019
2 parents 778d7a0 + 473774c commit ac51353
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
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

0 comments on commit ac51353

Please sign in to comment.