Skip to content

Commit

Permalink
Move edit mode switch to file tab to make it more prominent and a fil…
Browse files Browse the repository at this point in the history
…e based thing in the future
  • Loading branch information
stefan-kolb committed Nov 30, 2015
1 parent 2d92f63 commit ffdf53e
Show file tree
Hide file tree
Showing 21 changed files with 96 additions and 62 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ to [sourceforge feature requests](https://sourceforge.net/p/jabref/features/) by
## [Unreleased]

### Changed
- Move Bibtex and Biblatex mode switcher to File menu
- Display active edit mode (BibTeX or Biblatex) at window title

### Fixed
- Fix #420: Reenable preference changes
Expand Down
29 changes: 20 additions & 9 deletions src/main/java/net/sf/jabref/gui/JabRefFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ void addJToogleButton(JToggleButton button) {
public JToggleButton fetcherToggle;

final OpenDatabaseAction open = new OpenDatabaseAction(this, true);
private final AbstractAction editModeAction = new EditModeAction();
private final AbstractAction quit = new CloseAction();
private final AbstractAction selectKeys = new SelectKeysAction();
private final AbstractAction newDatabaseAction = new NewDatabaseAction(this);
Expand Down Expand Up @@ -659,18 +660,26 @@ public void openBrowser(String url) {
}
}

/**
* Sets the title of the main window.
*/
public void setWindowTitle() {
// Set window title:
BasePanel bp = getCurrentBasePanel();
if (bp == null) {
setTitle(GUIGlobals.frameTitle);
BasePanel panel = getCurrentBasePanel();
String mode = biblatexMode ? " (Biblatex mode)": " (BibTeX mode)";

// no database open
if (panel == null) {
setTitle(GUIGlobals.frameTitle + mode);
return;
}
String star = bp.isBaseChanged() ? "*" : "";
if (bp.getDatabaseFile() != null) {
setTitle(GUIGlobals.frameTitle + " - " + bp.getDatabaseFile().getPath() + star);

String changeFlag = panel.isBaseChanged() ? "*" : "";

if (panel.getDatabaseFile() != null) {
String databaseFile = panel.getDatabaseFile().getPath();
setTitle(GUIGlobals.frameTitle + " - " + databaseFile + changeFlag + mode);
} else {
setTitle(GUIGlobals.frameTitle + " - " + GUIGlobals.untitledTitle + star);
setTitle(GUIGlobals.frameTitle + " - " + GUIGlobals.untitledTitle + changeFlag + mode);
}
}

Expand Down Expand Up @@ -1157,11 +1166,13 @@ private void fillMenu() {
sessions.add(saveSessionAction);
file.add(sessions);
file.add(fileHistory);

file.addSeparator();
file.add(editModeAction);
file.addSeparator();
file.add(closeDatabaseAction);
file.add(quit);
mb.add(file);

edit.add(undo);
edit.add(redo);

Expand Down
41 changes: 41 additions & 0 deletions src/main/java/net/sf/jabref/gui/actions/EditModeAction.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package net.sf.jabref.gui.actions;

import net.sf.jabref.Globals;
import net.sf.jabref.JabRefPreferences;
import net.sf.jabref.logic.l10n.Localization;

import javax.swing.*;
import java.awt.event.ActionEvent;

public class EditModeAction extends AbstractAction {
public EditModeAction() {
putValue(Action.NAME, Localization.lang("Switch_to_%0_mode", getOppositeMode()));
}

@Override
public void actionPerformed(ActionEvent evt) {
if(isBiblatexMode()) {
// to BibteX
Globals.prefs.putBoolean(JabRefPreferences.BIBLATEX_MODE, false);
} else {
// to Biblatex
Globals.prefs.putBoolean(JabRefPreferences.BIBLATEX_MODE, true);
}
// update menu label
putValue(Action.NAME, Localization.lang("Switch_to_%0_mode", getOppositeMode()));
// TODO: enable this change per file and without GUI restart
JOptionPane.showMessageDialog(null,
Localization.lang("You have toggled an edit mode switch.").concat(" ")
.concat("You must restart JabRef for this change to come into effect."),
Localization.lang("Switch edit mode"), JOptionPane.WARNING_MESSAGE);
}

private boolean isBiblatexMode() {
return Globals.prefs.getBoolean(JabRefPreferences.BIBLATEX_MODE);
}

private String getOppositeMode() {
String mode = isBiblatexMode() ? "BibTeX" : "Biblatex";
return mode;
}
}
20 changes: 0 additions & 20 deletions src/main/java/net/sf/jabref/gui/preftabs/AdvancedTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ class AdvancedTab extends JPanel implements PrefsTab {
private final JCheckBox useDefault;
private final JCheckBox useRemoteServer;
private final JCheckBox useIEEEAbrv;
private final JCheckBox biblatexMode;
private final JComboBox<String> className;
private final JTextField remoteServerPort;
private String oldLnf = "";
Expand All @@ -71,7 +70,6 @@ public AdvancedTab(JabRefPreferences prefs, HelpDialog diag, JabRef jabRef) {
useDefault = new JCheckBox(Localization.lang("Use other look and feel"));
useRemoteServer = new JCheckBox(Localization.lang("Listen for remote operation on port") + ':');
useIEEEAbrv = new JCheckBox(Localization.lang("Use IEEE LaTeX abbreviations"));
biblatexMode = new JCheckBox(Localization.lang("BibLaTeX mode"));
remoteServerPort = new JTextField();
String[] possibleLookAndFeels = {UIManager.getSystemLookAndFeelClassName(),
UIManager.getCrossPlatformLookAndFeelClassName(), "com.jgoodies.looks.plastic.Plastic3DLookAndFeel",
Expand Down Expand Up @@ -154,12 +152,6 @@ public AdvancedTab(JabRefPreferences prefs, HelpDialog diag, JabRef jabRef) {
builder.nextLine();
builder.append(new JPanel());
builder.append(useIEEEAbrv);

builder.nextLine();
builder.appendSeparator(Localization.lang("BibLaTeX mode"));
builder.append(new JPanel());
builder.append(biblatexMode);

builder.nextLine();
builder.appendSeparator(Localization.lang("Import conversions"));
builder.nextLine();
Expand Down Expand Up @@ -190,8 +182,6 @@ public void setValues() {
oldPort = remotePreferences.getPort();
remoteServerPort.setText(String.valueOf(oldPort));
useIEEEAbrv.setSelected(Globals.prefs.getBoolean(JabRefPreferences.USE_IEEE_ABRV));
oldBiblMode = Globals.prefs.getBoolean(JabRefPreferences.BIBLATEX_MODE);
biblatexMode.setSelected(oldBiblMode);
useConvertToEquation.setSelected(Globals.prefs.getBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION));
useCaseKeeperOnSearch.setSelected(Globals.prefs.getBoolean(JabRefPreferences.USE_CASE_KEEPER_ON_SEARCH));
useUnitFormatterOnSearch.setSelected(Globals.prefs.getBoolean(JabRefPreferences.USE_UNIT_FORMATTER_ON_SEARCH));
Expand All @@ -208,22 +198,12 @@ public void storeSettings() {
}
storeRemoteSettings();

preferences.putBoolean(JabRefPreferences.BIBLATEX_MODE, biblatexMode.isSelected());

if ((useDefault.isSelected() == oldUseDef) || !oldLnf.equals(className.getSelectedItem().toString())) {
JOptionPane.showMessageDialog(null,
Localization.lang("You have changed the look and feel setting.").concat(" ")
.concat(Localization.lang("You must restart JabRef for this to come into effect.")),
Localization.lang("Changed look and feel settings"), JOptionPane.WARNING_MESSAGE);
}

if (biblatexMode.isSelected() != oldBiblMode) {
JOptionPane.showMessageDialog(null,
Localization.lang("You have toggled the BibLaTeX mode.").concat(" ")
.concat("You must restart JabRef for this change to come into effect."),
Localization.lang("BibLaTeX mode"), JOptionPane.WARNING_MESSAGE);
}

preferences.putBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION, useConvertToEquation.isSelected());
preferences.putBoolean(JabRefPreferences.USE_CASE_KEEPER_ON_SEARCH, useCaseKeeperOnSearch.isSelected());
preferences.putBoolean(JabRefPreferences.USE_UNIT_FORMATTER_ON_SEARCH, useUnitFormatterOnSearch.isSelected());
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ Error_while_fetching_from_ScienceDirect=Fejl_under_hentning_fra_ScienceDirect

Error_initializing_custom_export_format_from_string_'%0'=Fejl_ved_initialisering_af_brugerdefineret_eksportformat_fra_tekststrengen_'%0'

BibLaTeX_mode=BibLaTeX-tilstand
Switch_edit_mode=
Optional_fields_2=Valgfri_felter_2
Waiting_for_save_operation_to_finish=Venter_p\u00e5_gemme-operation
Resolving_duplicate_BibTeX_keys...=Udreder_dublerede_BibTeX-n\u00f8gler...
Expand Down Expand Up @@ -1284,7 +1284,7 @@ First_select_entries_to_clean_up.=
Cleanup_entry=
Autogenerate_PDF_Names=
Auto-generating_PDF-Names_does_not_support_undo._Continue?=
You_have_toggled_the_BibLaTeX_mode.=
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=
Use_abbreviated_firstname_whenever_possible=
Use_abbreviated_and_full_firstname=
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ Error_while_fetching_from_ScienceDirect=Fehler_beim_Abrufen_von_ScienceDirect

Error_initializing_custom_export_format_from_string_'%0'=Fehler_beim_Initialisieren_des_externen_Export-Format_aus_der_Zeichenkette_'%0'

BibLaTeX_mode=BibLaTeX-Modus
Switch_edit_mode=
Optional_fields_2=Optionale_Felder_2
Waiting_for_save_operation_to_finish=Das_Ende_des_Speichervorgangs_wird_abgewartet
Resolving_duplicate_BibTeX_keys...=Beseitige_doppelte_BibTeX-Keys...
Expand Down Expand Up @@ -1992,7 +1992,7 @@ First_select_entries_to_clean_up.=W\u00e4hlen_Sie_zuerst_die_Eintr\u00e4ge_aus,_
Cleanup_entry=Eintrag_aufr\u00e4umen
Autogenerate_PDF_Names=Automatische_PDF_Umbenennung
Auto-generating_PDF-Names_does_not_support_undo._Continue?=Automatische_PDF_Umbenennung_kann_nicht_r\u00fcckg\u00e4ngig_gemacht_werden._Fortfahren?
You_have_toggled_the_BibLaTeX_mode.=Sie_haben_den_BibLaTeX-Modus_de/aktiviert.
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=Den_ganzen_Vornamen_nutzen,_wenn_m\u00f6glich
Use_abbreviated_firstname_whenever_possible=Den_abgek\u00fcrzten_Vornamen_benutzen,_wenn_m\u00f6glich
Use_abbreviated_and_full_firstname=Abgek\u00fcrzte_und_ganze_Vornamen_verwenden
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1816,7 +1816,7 @@ Search_ScienceDirect=Search_ScienceDirect
Error_while_fetching_from_ScienceDirect=Error_while_fetching_from_ScienceDirect

Error_initializing_custom_export_format_from_string_'%0'=Error_initializing_custom_export_format_from_string_'%0'
BibLaTeX_mode=BibLaTeX_mode
Switch_edit_mode=Switch_edit_mode
Optional_fields_2=Optional_fields_2
Waiting_for_save_operation_to_finish=Waiting_for_save_operation_to_finish
Resolving_duplicate_BibTeX_keys...=Resolving_duplicate_BibTeX_keys...
Expand Down Expand Up @@ -1985,7 +1985,7 @@ First_select_entries_to_clean_up.=First_select_entries_to_clean_up.
Cleanup_entry=Cleanup_entry
Autogenerate_PDF_Names=Autogenerate_PDF_Names
Auto-generating_PDF-Names_does_not_support_undo._Continue?=Auto-generating_PDF-Names_does_not_support_undo._Continue?
You_have_toggled_the_BibLaTeX_mode.=You_have_toggled_the_BibLaTeX_mode.
You_have_toggled_an_edit_mode_switch.=You_have_toggled_an_edit_mode_switch.

Use_full_firstname_whenever_possible=Use_full_firstname_whenever_possible
Use_abbreviated_firstname_whenever_possible=Use_abbreviated_firstname_whenever_possible
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ No_entries_found._It_looks_like_you_do_not_have_access_to_search_JStor.=No_se_en
Search_ScienceDirect=Buscar_en_ScienceDirect
Error_while_fetching_from_ScienceDirect=Error_al_recuperar_desde_ScienceDirect
Error_initializing_custom_export_format_from_string_'%0'=Error_inicializando_formato_de_exportaci\u00f3n_personalizado_a_partir_de_la_cadena_'%0'
BibLaTeX_mode=Modo_BibLaTex
Switch_edit_mode=
Optional_fields_2=Campos_opcionales_2
Waiting_for_save_operation_to_finish=Esperando_a_que_acabe_la_operaci\u00f3n_de_guardado
Resolving_duplicate_BibTeX_keys...=Resolviendo_claves_BibTeX_duplicadas...
Expand Down Expand Up @@ -1200,7 +1200,7 @@ First_select_entries_to_clean_up.=Seleccione_las_entradas_a_limpiar_en_primer_lu
Cleanup_entry=Limpiar_entradas
Autogenerate_PDF_Names=Autogenerar_nombres_de_PDF
Auto-generating_PDF-Names_does_not_support_undo._Continue?=La_autogeneraci\u00f3n_de_nombres_de_PDF_no_se_puede_deshacer._\u00bfContinuar?
You_have_toggled_the_BibLaTeX_mode.=Ha_cambiado_el_modo_BibLaTeX.
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=Usar_nombre_de_pila_completo_cuando_sea_posible
Use_abbreviated_firstname_whenever_possible=Usar_nombre_de_pila_abreviado_cuando_sea_posible
Use_abbreviated_and_full_firstname=Usar_apellido_completo_y_abreviado
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_fa.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1787,7 +1787,7 @@ Search_ScienceDirect=
Error_while_fetching_from_ScienceDirect=

Error_initializing_custom_export_format_from_string_'%0'=
BibLaTeX_mode=
Switch_edit_mode=
Optional_fields_2=
Waiting_for_save_operation_to_finish=
Resolving_duplicate_BibTeX_keys...=
Expand Down Expand Up @@ -1953,7 +1953,7 @@ First_select_entries_to_clean_up.=
Cleanup_entry=
Autogenerate_PDF_Names=
Auto-generating_PDF-Names_does_not_support_undo._Continue?=
You_have_toggled_the_BibLaTeX_mode.=
You_have_toggled_an_edit_mode_switch.=

Use_full_firstname_whenever_possible=
Use_abbreviated_firstname_whenever_possible=
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ Error_while_fetching_from_ScienceDirect=Erreur_lors_de_la_recherche_ScienceDirec

Error_initializing_custom_export_format_from_string_'%0'=Erreur_lors_de_l'initialisation_du_format_d'exportation_personnalis\u00e9_\u00e0_partir_de_la_cha\u00eene_'%0'

BibLaTeX_mode=mode_BibLaTeX
Switch_edit_mode=
Optional_fields_2=Champs_optionnels_2
Waiting_for_save_operation_to_finish=Attente_de_la_fin_de_l'op\u00e9ration_de_sauvegarde
Resolving_duplicate_BibTeX_keys...=Traitement_des_clefs_BibTeX_dupliqu\u00e9es...
Expand Down Expand Up @@ -1226,7 +1226,7 @@ First_select_entries_to_clean_up.=Commencez_par_s\u00e9lectionner_les_entr\u00e9
Cleanup_entry=Nettoyage_des_entr\u00e9es
Autogenerate_PDF_Names=G\u00e9n\u00e9ration_automatique_des_noms_des_PDF
Auto-generating_PDF-Names_does_not_support_undo._Continue?=La_g\u00e9n\u00e9ration_automatique_des_noms_des_PDF_ne_peut_pas_\u00eatre_annul\u00e9e._Continuer?
You_have_toggled_the_BibLaTeX_mode.=Vous_avez_activ\u00e9_le_mode_BibLaTeX
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=Utiliser_le_pr\u00e9nom_en_entier_quand_c'est_possible
Use_abbreviated_firstname_whenever_possible=Utiliser_le_pr\u00e9nom_abr\u00e9g\u00e9_quand_c'est_possible
Use_abbreviated_and_full_firstname=Utiliser_le_pr\u00e9nom_abr\u00e9g\u00e9_et_entier
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_in.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ No_entries_found._It_looks_like_you_do_not_have_access_to_search_JStor.=Entri_ti
Search_ScienceDirect=Pencarian_ScienceDirect
Error_while_fetching_from_ScienceDirect=Kesalahan_ketika_mengambil_dari_ScienceDirect
Error_initializing_custom_export_format_from_string_'%0'=Ada_kesalahan_menentukan_format_ekspor_atursendiri_dari_string_'%0'
BibLaTeX_mode=Mode_BibLaTeX
Switch_edit_mode=
Optional_fields_2=Bidang_tambahan_2
Waiting_for_save_operation_to_finish=Menunggu_proses_menyimpan_selesai
Resolving_duplicate_BibTeX_keys...=Mengatasi_masalah_kunci_BibTeX_sama...
Expand Down Expand Up @@ -1205,7 +1205,7 @@ First_select_entries_to_clean_up.=
Cleanup_entry=
Autogenerate_PDF_Names=
Auto-generating_PDF-Names_does_not_support_undo._Continue?=
You_have_toggled_the_BibLaTeX_mode.=
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=
Use_abbreviated_firstname_whenever_possible=
Use_abbreviated_and_full_firstname=
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ Error_while_fetching_from_ScienceDirect=Errore_nel_recupero_dei_dati_da_ScienceD

Error_initializing_custom_export_format_from_string_'%0'=Errore_di_inizializzazione_del_formato_di_esportazione_personalizzato_dalla_stringa_'%0'

BibLaTeX_mode=modalit\u00e0_BibLaTeX
Switch_edit_mode=
Optional_fields_2=Campi_opzionali_2
Waiting_for_save_operation_to_finish=In_attesa_del_termine_del_salvataggio
Resolving_duplicate_BibTeX_keys...=Risoluzione_delle_chiavi_BibTeX_duplicate...
Expand Down Expand Up @@ -1304,7 +1304,7 @@ First_select_entries_to_clean_up.=Selezionare_le_voci_da_ripulire.
Cleanup_entry=Ripulisci_voce
Autogenerate_PDF_Names=Genera_automaticamente_i_nomi_dei_file_PDF
Auto-generating_PDF-Names_does_not_support_undo._Continue?=La_generazione_automatica_dei_nomi_dei_file_PDF_non_pu\u00f2_essere_annullata._Continuare?
You_have_toggled_the_BibLaTeX_mode.=Attivata_la_modalit\u00e0_BibLaTeX.
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=Usa_nome_completo_quando_possibile
Use_abbreviated_firstname_whenever_possible=Usa_nome_abbreviato_quando_possibile
Use_abbreviated_and_full_firstname=Usa_nome_abbreviato_e_completo
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_ja.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1810,7 +1810,7 @@ Error_while_fetching_from_ScienceDirect=ScienceDirect\u304b\u3089\u306e\u53d6\u5
Error_initializing_custom_export_format_from_string_'%0'=\u6587\u5b57\u5217\u300c%0\u300d\u304b\u3089\u30e6\u30fc\u30b6\u30fc\u66f8\u51fa\u5f62\u5f0f\u3092\u521d\u671f\u5316\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f


BibLaTeX_mode=BibLaTeX\u30e2\u30fc\u30c9
Switch_edit_mode=
Optional_fields_2=\u975e\u5fc5\u9808\u30d5\u30a3\u30fc\u30eb\u30c92
Waiting_for_save_operation_to_finish=\u4fdd\u5b58\u64cd\u4f5c\u304c\u7d42\u4e86\u3059\u308b\u306e\u3092\u5f85\u3063\u3066\u3044\u307e\u3059
Resolving_duplicate_BibTeX_keys...=\u91cd\u8907\u3057\u305fBibTeX\u9375\u3092\u89e3\u6c7a...
Expand Down Expand Up @@ -1978,7 +1978,7 @@ First_select_entries_to_clean_up.=\u307e\u305a\u6d88\u53bb\u3059\u308b\u9805\u76
Cleanup_entry=\u9805\u76ee\u3092\u6d88\u53bb
Autogenerate_PDF_Names=PDF\u540d\u3092\u81ea\u52d5\u751f\u6210
Auto-generating_PDF-Names_does_not_support_undo._Continue?=PDF\u540d\u306e\u81ea\u52d5\u751f\u6210\u306f\u53d6\u308a\u6d88\u305b\u307e\u305b\u3093\u3002\u7d9a\u3051\u307e\u3059\u304b\uff1f
You_have_toggled_the_BibLaTeX_mode.=BibLaTeX\u30e2\u30fc\u30c9\u3068\u5207\u308a\u66ff\u3048\u307e\u3057\u305f\u3002
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=\u53ef\u80fd\u306a\u5834\u5408\u306f\u5e38\u306b\u5b8c\u5168\u306a\u30d5\u30a1\u30fc\u30b9\u30c8\u30cd\u30fc\u30e0\u3092\u4f7f\u7528
Use_abbreviated_firstname_whenever_possible=\u53ef\u80fd\u306a\u5834\u5408\u306f\u5e38\u306b\u77ed\u7e2e\u3057\u305f\u30d5\u30a1\u30fc\u30b9\u30c8\u30cd\u30fc\u30e0\u3092\u4f7f\u7528
Use_abbreviated_and_full_firstname=\u77ed\u7e2e\u3057\u305f\u30d5\u30a1\u30fc\u30b9\u30c8\u30cd\u30fc\u30e0\u3068\u5b8c\u5168\u306a\u30d5\u30a1\u30fc\u30b9\u30c8\u30cd\u30fc\u30e0\u3092\u4e21\u65b9\u4f7f\u7528
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_nl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1812,7 +1812,7 @@ Error_while_fetching_from_ScienceDirect=

Error_initializing_custom_export_format_from_string_'%0'=

BibLaTeX_mode=
Switch_edit_mode=
Optional_fields_2=
Waiting_for_save_operation_to_finish=
Resolving_duplicate_BibTeX_keys...=
Expand Down Expand Up @@ -1981,7 +1981,7 @@ First_select_entries_to_clean_up.=
Cleanup_entry=
Autogenerate_PDF_Names=
Auto-generating_PDF-Names_does_not_support_undo._Continue?=
You_have_toggled_the_BibLaTeX_mode.=
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=
Use_abbreviated_firstname_whenever_possible=
Use_abbreviated_and_full_firstname=
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/l10n/JabRef_no.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2062,7 +2062,7 @@ Error_while_fetching_from_ScienceDirect=Feil_ved_nedlasting_fra_ScienceDirect

Error_initializing_custom_export_format_from_string_'%0'=Feil_ved_initialisering_av_eksternt_eksportfilter_fra_strengen_'%0'

BibLaTeX_mode=BibLaTeX-modus
Switch_edit_mode=

Optional_fields_2=Valgfrie_felter_2

Expand Down Expand Up @@ -2377,7 +2377,7 @@ First_select_entries_to_clean_up.=
Cleanup_entry=
Autogenerate_PDF_Names=
Auto-generating_PDF-Names_does_not_support_undo._Continue?=
You_have_toggled_the_BibLaTeX_mode.=
You_have_toggled_an_edit_mode_switch.=
Use_full_firstname_whenever_possible=
Use_abbreviated_firstname_whenever_possible=
Use_abbreviated_and_full_firstname=
Expand Down
Loading

0 comments on commit ffdf53e

Please sign in to comment.