Skip to content

Commit

Permalink
UI Preferences->advanced tab optimization : separators and text modif…
Browse files Browse the repository at this point in the history
…ication (#4922)

* UI Preferences->advanced tab optimisation : separators and text modifications

* AdvancedTab.java minor imports modifications

* advancedTab : Localization.lang for text

* Rework PosteOpenActions to javafx (custom entry type import)

Convert dialog for importing custom entry types to CheckListView
Rework threading when opening a database

* rework threading stuff
simplify code

* rework dialog, create fxml etc
fix l10n
Remove obsolete code

* remove dialog service argument

* remove dialogService parameter

* Fixes throwing an exception when 'id' field is present in bib file (#4918)

* Fixes throwing an exception when 'id' field is present in bib file

Fixes #4905

* Remove test for id field

* Renamed ID_FIELD to INTERNAL_ID_FIELD

* Removed unused import

* Toggle enable status of menu items (#4872)

* Toggle enable status of menu items (prototype)

* Use for pushtoapplication

* Improve code around push to applications

* Set enable status for all actions

* Fix tests and checkstyle

* Refactorings, move functionality of CustomEntryTypesManager to Preferences
Use ObservableList instead of LIstProperty

* Fix for the issue #4912 (#4916)

* Fix for the issue #4912

Apostrophe character removed from KEY_ILLEGAL_CHARACTERS in BibtexKeyGenerator

* Add special character to KEY_ILLEGAL_CHARACTERS

ʹ added to KEY_ILLEGAL_CHARACTERS and an assertion has been added in testMakeLabelAndCheckLegalKeysAccentGrave

* translation items key modification for advanced Tab UI
  • Loading branch information
core-master authored and Siedlerchr committed Apr 26, 2019
1 parent ca95b6d commit ba56dde
Show file tree
Hide file tree
Showing 19 changed files with 33 additions and 53 deletions.
50 changes: 15 additions & 35 deletions src/main/java/org/jabref/gui/preferences/AdvancedTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import javafx.scene.layout.GridPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.scene.shape.Line;
import javafx.scene.text.Text;

import org.jabref.Globals;
import org.jabref.gui.DialogService;
Expand Down Expand Up @@ -44,7 +44,7 @@ public AdvancedTab(DialogService dialogService, JabRefPreferences prefs) {
this.dialogService = dialogService;
preferences = prefs;
remotePreferences = prefs.getRemotePreferences();

builder.setVgap(5);
useRemoteServer = new CheckBox(Localization.lang("Listen for remote operation on port") + ':');
useIEEEAbrv = new CheckBox(Localization.lang("Use IEEE LaTeX abbreviations"));
remoteServerPort = new TextField();
Expand All @@ -54,26 +54,11 @@ public AdvancedTab(DialogService dialogService, JabRefPreferences prefs) {
Label remoteOperation = new Label(Localization.lang("Remote operation"));
remoteOperation.getStyleClass().add("sectionHeader");
builder.add(remoteOperation, 2, 1);
builder.add(new Separator(), 2, 1);
builder.add(new Pane(), 1, 2);
Label label1 = new Label(Localization.lang("This feature lets new files be opened or imported into an "

+ "already running instance of JabRef<BR>instead of opening a new instance. For instance, this "

+ "is useful when you open a file in JabRef<br>from your web browser."

+ "<BR>Note that this will prevent you from running more than one instance of JabRef at a time."));
label1.setVisible(false);
builder.add(label1, 2, 22);

Label textLabel1 = new Label(" This feature lets new files be opened or imported into an already running instance of JabRef instead of opening a new instance. For");
builder.add(textLabel1, 2, 3);
Label textLabel2 = new Label("instance, this is useful when you open a file in JabRef from your web browser. ");
builder.add(textLabel2, 2, 4);
Label textLabel3 = new Label(" Note that this will prevent you from running more than one instance of JabRef at a time.");
builder.add(textLabel3, 2, 5);
builder.add(new Line(), 2, 6);
builder.add(new Pane(), 2, 7);
Text textRemote = new Text(Localization.lang("This feature lets new files be opened or imported into an already running instance of JabRef " +
"instead of opening a new instance. For instance, this is useful when you open a file in JabRef " +
"from your web browser. Note that this will prevent you from running more than one instance of JabRef at a time."));
textRemote.setWrappingWidth(600);
builder.add(textRemote, 2, 4);

HBox p = new HBox();
p.getChildren().add(useRemoteServer);
Expand All @@ -84,26 +69,21 @@ public AdvancedTab(DialogService dialogService, JabRefPreferences prefs) {
help.setMaxWidth(Double.MAX_VALUE);
p.getChildren().add(help);

builder.add(p, 2, 9);
builder.add(new Label(""), 1, 10);
builder.add(p, 2, 6);
builder.add(new Separator(), 2, 11);

Label explore = new Label(Localization.lang("Search %0", "IEEEXplore"));
explore.getStyleClass().add("sectionHeader");
builder.add(explore, 2, 11);
builder.add(new Separator(), 2, 11);
builder.add(new Pane(), 2, 12);
builder.add(useIEEEAbrv, 2, 13);

builder.add(new Line(), 2, 16);
builder.add(new Label(""), 1, 17);
builder.add(explore, 2, 12);
builder.add(useIEEEAbrv, 2, 14);

builder.add(new Separator(), 2, 19);
Label importConversions = new Label(Localization.lang("Import conversions"));
importConversions.getStyleClass().add("sectionHeader");
builder.add(importConversions, 2, 18);
builder.add(importConversions, 2, 20);

builder.add(useCaseKeeperOnSearch, 2, 19);
builder.add(new Pane(), 2, 20);
builder.add(useUnitFormatterOnSearch, 2, 21);
builder.add(useCaseKeeperOnSearch, 2, 21);
builder.add(useUnitFormatterOnSearch, 2, 23);

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}

.preferencePaneContainer {
-fx-padding: 0em 1em 0em 3em;
-fx-padding: 1em 1em 1em 3em;
}

*:search-highlight {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


<?import javafx.scene.control.DialogPane?>
<DialogPane prefHeight="514.0" prefWidth="818.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.jabref.gui.preferences.PreferencesDialog" />
<DialogPane prefHeight="600.0" prefWidth="1000.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.jabref.gui.preferences.PreferencesDialog" />
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ BibTeX\ key\ generator=BibTeX-nøglegenerator
Unable\ to\ open\ link.=Kan ikke åbne link.
MIME\ type=MIME-type

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Denne funktion tillader, at flere filer kan åbnes eller importeres i en allerede kørende JabRef<BR>i stedet for at åbne programmet påny. For eksempel er dette praktisk, når du åbner filer i<BR>JabRef fra din web browser.<BR>Bemærk at dette vil forhindre dig i at køre mere end en instans af JabRef ad gangen.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Denne funktion tillader, at flere filer kan åbnes eller importeres i en allerede kørende JabRef<BR>i stedet for at åbne programmet påny. For eksempel er dette praktisk, når du åbner filer i<BR>JabRef fra din web browser.<BR>Bemærk at dette vil forhindre dig i at køre mere end en instans af JabRef ad gangen.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Kør henteværktøj, f.eks. "--fetch\=Medline\:cancer"

Reset=Nulstil
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ BibTeX\ key\ generator=BibTeX-Key-Generator
Unable\ to\ open\ link.=Öffnen des Links nicht möglich
MIME\ type=MIME-Typ

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Diese Funktion öffnet neue oder importierte Dateien in einer bereits laufenden Instanz von JabRef<BR>und nicht in einem neuen Fenster. Das ist beispielsweise nützlich,<BR>wenn Sie JabRef von einem Webbrowser aus starten.<BR>Beachten Sie, dass damit nicht mehr als eine Instanz von JabRef gestartet werden kann.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Diese Funktion öffnet neue oder importierte Dateien in einer bereits laufenden Instanz von JabRef<BR>und nicht in einem neuen Fenster. Das ist beispielsweise nützlich,<BR>wenn Sie JabRef von einem Webbrowser aus starten.<BR>Beachten Sie, dass damit nicht mehr als eine Instanz von JabRef gestartet werden kann.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Recherche starten, z.B. "--fetch\=Medline\:cancer"

Reset=Zurücksetzen
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_el.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ BibTeX\ key\ generator=Γεννήτρια κλειδιών BibTeX
Unable\ to\ open\ link.=Αδυναμία ανοίγματος συνδέσμου.
MIME\ type=Τύπος MIME

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Το χαρακτηριστικό αυτό επιτρέπει το άνοιγμα ή την εισαγωγή νέων αρχείων σε ένα ήδη τρέχον παράθυρο JabRef<BR>αντί να ανοίγει νέο παράθυρο. Για παράδειγμα, αυτό είναι χρήσιμο όταν ανοίγετε ένα αρχείο JabRef<br>από τον περιηγητή ιστού.<BR>Σημειώστε πως αυτό θα σας εμποδίσει από το να τρέξετε περισσότερα από ένα παράθυρα JabRef ταυτόχρονα.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Το χαρακτηριστικό αυτό επιτρέπει το άνοιγμα ή την εισαγωγή νέων αρχείων σε ένα ήδη τρέχον παράθυρο JabRef<BR>αντί να ανοίγει νέο παράθυρο. Για παράδειγμα, αυτό είναι χρήσιμο όταν ανοίγετε ένα αρχείο JabRef<br>από τον περιηγητή ιστού.<BR>Σημειώστε πως αυτό θα σας εμποδίσει από το να τρέξετε περισσότερα από ένα παράθυρα JabRef ταυτόχρονα.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Τρέξτε ανακτητή, π.χ. "--fetch\=Medline\:cancer"

Reset=Επαναφορά
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ BibTeX\ key\ generator=BibTeX key generator
Unable\ to\ open\ link.=Unable to open link.
MIME\ type=MIME type

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=This feature lets new files be opened or imported into an already running instance of JabRef<BR>instead of opening a new instance. For instance, this is useful when you open a file in JabRef<br>from your web browser.<BR>Note that this will prevent you from running more than one instance of JabRef at a time.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=This feature lets new files be opened or imported into an already running instance of JabRef instead of opening a new instance. For instance, this is useful when you open a file in JabRef from your web browser. Note that this will prevent you from running more than one instance of JabRef at a time.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Run fetcher, e.g. "--fetch=Medline:cancer"

Reset=Reset
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ BibTeX\ key\ generator=Generador de claves BibTeX
Unable\ to\ open\ link.=No es posible abrir el enlace.
MIME\ type=Tipo MIME

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Esta función permite que nuevos archivos seasn abiertos o importados en una instancia de JabRef que ya se esté ejecutando,<BR>en lugar de abrir una nueva instancia. Esto es útil, por ejemplo, cuando se abre un archivo en JabRef desde <br> el navegador de internet.<BR> Tenga en cuenta que esto le impedirá ejecutar más de una instancia de JabRef a la vez.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Esta función permite que nuevos archivos seasn abiertos o importados en una instancia de JabRef que ya se esté ejecutando,<BR>en lugar de abrir una nueva instancia. Esto es útil, por ejemplo, cuando se abre un archivo en JabRef desde <br> el navegador de internet.<BR> Tenga en cuenta que esto le impedirá ejecutar más de una instancia de JabRef a la vez.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Ejecutar recuperador, por ejemplo "--fetch\=Medline\:cancer"

Reset=Restablecer
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ BibTeX\ key\ generator=Générateur de clefs BibTeX
Unable\ to\ open\ link.=Impossible d'ouvrir le lien.
MIME\ type=Type MIME

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Cette fonction permet aux nouveaux fichiers d'être ouverts ou importés dans une fenêtre JabRef déjà active<BR>au lieu d'ouvrir une nouvelle fenêtre. Par exemple, c'est utile quand vous ouvrez un fichier dans JabRef<BR>à partir de notre navigateur internet. <BR>Notez que cela vous empêchera de lancer plus d'une fenêtre JabRef à la fois.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Cette fonction permet aux nouveaux fichiers d'être ouverts ou importés dans une fenêtre JabRef déjà active<BR>au lieu d'ouvrir une nouvelle fenêtre. Par exemple, c'est utile quand vous ouvrez un fichier dans JabRef<BR>à partir de notre navigateur internet. <BR>Notez que cela vous empêchera de lancer plus d'une fenêtre JabRef à la fois.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Lance une recherche, par. ex. "--fetch\=Medline\:cancer"

Reset=Réinitialiser
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_in.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ BibTeX\ key\ generator=Pembuat kunci BibTeX
Unable\ to\ open\ link.=Tidak bisa membuka tautan.
MIME\ type=Tipe MIME

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Fitur ini memungkinkan berkas baru atau impor ke jendela JabRef yang aktif<br>bukan membuat baru. Hal ini berguna ketika anda membuka berkas di JabRef<br>dari halaman web.<br>Hal ini akan menghindari anda membuka beberapa JabRef pada saat yang sama.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Fitur ini memungkinkan berkas baru atau impor ke jendela JabRef yang aktif<br>bukan membuat baru. Hal ini berguna ketika anda membuka berkas di JabRef<br>dari halaman web.<br>Hal ini akan menghindari anda membuka beberapa JabRef pada saat yang sama.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Jalankan Pengambil, misal. "--fetch\=Medline\:cancer"

Reset=Atur ulang
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ BibTeX\ key\ generator=Generatore di chiavi BibTeX
Unable\ to\ open\ link.=Impossibile aprire il collegamento.
MIME\ type=Tipo MIME

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Questa funzione permette l'apertura o l'importazione di nuovi file in una istanza di JabRef già aperta<BR>invece di aprirne una nuova. Per esempio, ciò è utile quando un file viene aperto in JabRef<BR>da un browser web.<BR>Questo tuttavia impedisce di aprire più sessioni di JabRef contemporaneamente.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=Questa funzione permette l'apertura o l'importazione di nuovi file in una istanza di JabRef già aperta<BR>invece di aprirne una nuova. Per esempio, ciò è utile quando un file viene aperto in JabRef<BR>da un browser web.<BR>Questo tuttavia impedisce di aprire più sessioni di JabRef contemporaneamente.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=Lanciare una ricerca, es. "--fetch\=Medline\:cancer"

Reset=Reinizializza
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_ja.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ BibTeX\ key\ generator=BibTeX鍵の生成
Unable\ to\ open\ link.=リンクを開くことができませんでした.
MIME\ type=MIME型

This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef<BR>instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef<br>from\ your\ web\ browser.<BR>Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=この機能は,新規ファイルを,新しいJabRefインスタンスを開かないで,すでに実行されているインスタンスに開いたり<BR>読み込んだりするものです.たとえば,これは,ウェブブラウザからJabRefにファイルを開かせたい時に便利です.<BR>これによって,一度にJabRefのインスタンスを一つしか開けなくなることに注意してください.
This\ feature\ lets\ new\ files\ be\ opened\ or\ imported\ into\ an\ already\ running\ instance\ of\ JabRef\ instead\ of\ opening\ a\ new\ instance.\ For\ instance,\ this\ is\ useful\ when\ you\ open\ a\ file\ in\ JabRef\ from\ your\ web\ browser.\ Note\ that\ this\ will\ prevent\ you\ from\ running\ more\ than\ one\ instance\ of\ JabRef\ at\ a\ time.=この機能は,新規ファイルを,新しいJabRefインスタンスを開かないで,すでに実行されているインスタンスに開いたり<BR>読み込んだりするものです.たとえば,これは,ウェブブラウザからJabRefにファイルを開かせたい時に便利です.<BR>これによって,一度にJabRefのインスタンスを一つしか開けなくなることに注意してください.
Run\ fetcher,\ e.g.\ "--fetch\=Medline\:cancer"=取得子を実行する.例:「--fetch\=Medline\:cancer」

Reset=リセット
Expand Down
Loading

0 comments on commit ba56dde

Please sign in to comment.