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

Removed the possibility to auto show or hide the groups interface #1668

Merged
merged 2 commits into from
Aug 3, 2016
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#

### Removed
- It is not longer possible to choose to convert HTML sub- and superscripts to equations
- [#1610](https://github.com/JabRef/jabref/issues/1610) Removed the possibility to auto show or hide the groups interface



Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install4j {
}

task wrapper(type: Wrapper) {
gradleVersion = '2.14'
gradleVersion = '2.14.1'
}


Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Jun 27 17:21:50 CEST 2016
#Wed Aug 03 11:49:15 CEST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip
46 changes: 25 additions & 21 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,30 @@
##
##############################################################################

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

Expand All @@ -30,6 +48,7 @@ die ( ) {
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
Expand All @@ -40,26 +59,11 @@ case "`uname`" in
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac

# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar

# Determine the Java command to use to start the JVM.
Expand All @@ -85,7 +89,7 @@ location of your Java installation."
fi

# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
Expand Down
6 changes: 3 additions & 3 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=

set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

Expand Down
9 changes: 0 additions & 9 deletions src/main/java/net/sf/jabref/gui/groups/GroupSelector.java
Original file line number Diff line number Diff line change
Expand Up @@ -1224,15 +1224,6 @@ public void setActiveBasePanel(BasePanel panel) {
setGroups(metaData.getGroups());
}

// auto show/hide groups interface
if (Globals.prefs.getBoolean(JabRefPreferences.GROUP_AUTO_SHOW) && !groupsRoot.isLeaf()) { // groups were defined
frame.getSidePaneManager().show("groups");
frame.groupToggle.setSelected(true);
} else if (Globals.prefs.getBoolean(JabRefPreferences.GROUP_AUTO_HIDE) && groupsRoot.isLeaf()) { // groups were not defined
frame.getSidePaneManager().hide("groups");
frame.groupToggle.setSelected(false);
}

synchronized (getTreeLock()) {
validateTree();
}
Expand Down
16 changes: 0 additions & 16 deletions src/main/java/net/sf/jabref/gui/preftabs/GroupsPrefsTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ class GroupsPrefsTab extends JPanel implements PrefsTab {
"<html>" + Localization.lang("Show dynamic groups in <i>italics</i>") + "</html>");
private final JCheckBox expandTree = new JCheckBox(
Localization.lang("Initially show groups tree expanded"));
private final JCheckBox autoShow = new JCheckBox(
Localization.lang("Automatically show groups interface when switching to a database that contains groups"));
private final JCheckBox autoHide = new JCheckBox(
Localization.lang("Automatically hide groups interface when switching to a database that contains no groups"));
private final JCheckBox autoAssignGroup = new JCheckBox(
Localization.lang("Automatically assign new entry to selected groups"));
private final JTextField groupingField = new JTextField(20);
Expand Down Expand Up @@ -86,14 +82,6 @@ public void focusLost(FocusEvent e) {
builder.nextLine();
builder.nextLine();
builder.nextColumn();
builder.append(autoShow);
builder.nextLine();
builder.nextLine();
builder.nextColumn();
builder.append(autoHide);
builder.nextLine();
builder.nextLine();
builder.nextColumn();
builder.append(autoAssignGroup);
builder.nextLine();
builder.nextLine();
Expand Down Expand Up @@ -125,8 +113,6 @@ public void setValues() {
showDynamic.setSelected(prefs.getBoolean(JabRefPreferences.GROUP_SHOW_DYNAMIC));
expandTree.setSelected(prefs.getBoolean(JabRefPreferences.GROUP_EXPAND_TREE));
groupingField.setText(prefs.get(JabRefPreferences.GROUPS_DEFAULT_FIELD));
autoShow.setSelected(prefs.getBoolean(JabRefPreferences.GROUP_AUTO_SHOW));
autoHide.setSelected(prefs.getBoolean(JabRefPreferences.GROUP_AUTO_HIDE));
keywordSeparator.setText(prefs.get(JabRefPreferences.KEYWORD_SEPARATOR));
autoAssignGroup.setSelected(prefs.getBoolean(JabRefPreferences.AUTO_ASSIGN_GROUP));
}
Expand All @@ -137,8 +123,6 @@ public void storeSettings() {
prefs.putBoolean(JabRefPreferences.GROUP_SHOW_DYNAMIC, showDynamic.isSelected());
prefs.putBoolean(JabRefPreferences.GROUP_EXPAND_TREE, expandTree.isSelected());
prefs.put(JabRefPreferences.GROUPS_DEFAULT_FIELD, groupingField.getText().trim());
prefs.putBoolean(JabRefPreferences.GROUP_AUTO_SHOW, autoShow.isSelected());
prefs.putBoolean(JabRefPreferences.GROUP_AUTO_HIDE, autoHide.isSelected());
prefs.putBoolean(JabRefPreferences.AUTO_ASSIGN_GROUP, autoAssignGroup.isSelected());
prefs.put(JabRefPreferences.KEYWORD_SEPARATOR, keywordSeparator.getText());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,6 @@ public class JabRefPreferences {
public static final String EDITOR_EMACS_KEYBINDINGS_REBIND_CA = "editorEMACSkeyBindingsRebindCA";
public static final String EDITOR_EMACS_KEYBINDINGS_REBIND_CF = "editorEMACSkeyBindingsRebindCF";
public static final String GROUP_SHOW_NUMBER_OF_ELEMENTS = "groupShowNumberOfElements";
public static final String GROUP_AUTO_HIDE = "groupAutoHide";
public static final String GROUP_AUTO_SHOW = "groupAutoShow";
public static final String GROUP_EXPAND_TREE = "groupExpandTree";
public static final String GROUP_SHOW_DYNAMIC = "groupShowDynamic";
public static final String GROUP_SHOW_ICONS = "groupShowIcons";
Expand Down Expand Up @@ -617,8 +615,6 @@ private JabRefPreferences() {
defaults.put(GROUP_SHOW_ICONS, Boolean.TRUE);
defaults.put(GROUP_SHOW_DYNAMIC, Boolean.TRUE);
defaults.put(GROUP_EXPAND_TREE, Boolean.TRUE);
defaults.put(GROUP_AUTO_SHOW, Boolean.TRUE);
defaults.put(GROUP_AUTO_HIDE, Boolean.TRUE);
defaults.put(GROUP_SHOW_NUMBER_OF_ELEMENTS, Boolean.FALSE);
defaults.put(AUTO_ASSIGN_GROUP, Boolean.TRUE);
defaults.put(KEYWORD_SEPARATOR, ", ");
Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/l10n/JabRef_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,7 @@ Autolink_only_files_that_match_the_BibTeX_key=Autolink_kun_filer_med_navn_som_sv
Automatically_create_groups=Generer_grupper_automatisk
Automatically_create_groups_for_database.=Generer_grupper_for_databasen.
Automatically_created_groups=Genererede_grupper_automatisk
Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Skjul_automatisk_grupperingspanel_når_du_skifter_til_en_database,_som_ikke_indeholder_grupper

Automatically_remove_exact_duplicates=Fjern_eksakte_dubletter_automatisk
Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Vis_automatisk_grupperingspanel_når_du_skifter_til_en_database,_som_indeholder_grupper
Allow_overwriting_existing_links.=Tillad_overskrivning_af_eksisterende_links.
Do_not_overwrite_existing_links.=Overskriv_ikke_eksisterende_links.
AUX_file_import=AUX-fil_import
Expand Down
5 changes: 0 additions & 5 deletions src/main/resources/l10n/JabRef_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,8 @@ Automatically_create_groups_for_database.=Automatisch_Gruppen_für_die_Datei_anl

Automatically_created_groups=Automatisch_erzeugte_Gruppen

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Gruppenansicht_automatisch_ausblenden,_wenn_zu_einer_Datei_ohne_Gruppen_gewechselt_wird


Automatically_remove_exact_duplicates=Exakte_Duplikate_automatisch_löschen

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Gruppenansicht_automatisch_einblenden,_wenn_zu_einer_Datei_mit_Gruppen_gewechselt_wird


Allow_overwriting_existing_links.=Vorhandene_Links_überschreiben.

Expand Down
4 changes: 0 additions & 4 deletions src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,8 @@ Automatically_create_groups_for_database.=Automatically_create_groups_for_databa

Automatically_created_groups=Automatically_created_groups

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups

Automatically_remove_exact_duplicates=Automatically_remove_exact_duplicates

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups

Allow_overwriting_existing_links.=Allow_overwriting_existing_links.

Do_not_overwrite_existing_links.=Do_not_overwrite_existing_links.
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/l10n/JabRef_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ Autolink_only_files_that_match_the_BibTeX_key=Autoenlazar_sólo_archivos_cuyo_no
Automatically_create_groups=Crear_grupos_automáticamente
Automatically_create_groups_for_database.=Crear_grupos_para_base_de_datos_automáticamente
Automatically_created_groups=Grupos_automáticamente_creados
Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Ocultar_automáticamente_el_interfaz_de_grupos_cuando_se_cambie_a_una_base_de_datos_que_no_contenga_grupos
Automatically_remove_exact_duplicates=Eliminar_automáticamente_duplicados_exactos
Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Mostrar_automáticamente_el_interfaz_de_grupos_cuando_se_cambie_a_una_base_de_datos_que_contenga_grupos
Allow_overwriting_existing_links.=Permitir_sobreescribir_enlaces_existentes.
Do_not_overwrite_existing_links.=No_sobreescribir_enlaces_existentes.
AUX_file_import=Importar_archivo_AUX
Expand Down
8 changes: 0 additions & 8 deletions src/main/resources/l10n/JabRef_fa.properties
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,8 @@ Automatically_create_groups_for_database.=

Automatically_created_groups=

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=

Automatically_remove_exact_duplicates=

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=





AUX_file_import=

Available_export_formats=
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/l10n/JabRef_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ Autolink_only_files_that_match_the_BibTeX_key=Lier_automatiquement_les_fichiers_
Automatically_create_groups=Créer_automatiquement_des_groupes
Automatically_create_groups_for_database.=Créer_automatiquement_des_groupes_pour_la_base.
Automatically_created_groups=Groupes_créés_automatiquement
Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Masquer_automatiquement_l'interface_des_groupes_lors_de_l'affichage_d'une_base_de_données_qui_ne_contient_pas_de_groupes
Automatically_remove_exact_duplicates=Supprimer_automatiquement_les_doublons_identiques
Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Afficher_automatiquement_l'interface_des_groupes_lors_de_l'affichage_d'une_base_de_données_qui_contient_des_groupes
Allow_overwriting_existing_links.=Ecraser_les_liens_existants.
Do_not_overwrite_existing_links.=Ne_pas_écraser_les_liens_existants.
AUX_file_import=Importation_de_fichier_AUX
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/l10n/JabRef_in.properties
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ Autolink_only_files_that_match_the_BibTeX_key=Tautan_otomatis_hanya_pada_berkas_
Automatically_create_groups=Otomatis_membuat_grup
Automatically_create_groups_for_database.=Otomatis_membuat_grup_untuk_basisdata.
Automatically_created_groups=Grup_yang_dibuat_otomatis
Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Otomatis_sembunyikan_antarmuka_grup_ketika_merubah_ke_basisdata_yang_tidak_punya_grup
Automatically_remove_exact_duplicates=Otomatis_menghapus_yang_sama
Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Otomatis_menampilkan_antarmuka_grup_ketika_merubah_ke_basisdata_yang_mempunyai_grup
Allow_overwriting_existing_links.=Mengijinkan_menindih_tautan_yang_ada.
Do_not_overwrite_existing_links.=Tidak_boleh_menindih_tautan_yang_ada.
AUX_file_import=Impor_berkas_AUX
Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/l10n/JabRef_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,7 @@ Autolink_only_files_that_match_the_BibTeX_key=Collegare_automaticamente_solo_i_f
Automatically_create_groups=Crea_automaticamente_i_gruppi
Automatically_create_groups_for_database.=Crea_automaticamente_i_gruppi_per_il_database
Automatically_created_groups=Gruppi_creati_automaticamente
Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Nascondi_automaticamente_l'interfaccia_dei_gruppi_nel_passare_ad_un_database_che_non_contiene_gruppi

Automatically_remove_exact_duplicates=Rimuovi_automaticamente_i_duplicati_esatti
Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Mostra_automaticamente_l'interfaccia_dei_gruppi_nel_passare_ad_un_database_che_contiene_gruppi
Allow_overwriting_existing_links.=Consenti_la_sovrascrittura_dei_collegamenti_esistenti.
Do_not_overwrite_existing_links.=Non_consentire_la_sovrascrittura_dei_collegamenti_esistenti.
AUX_file_import=Importa_file_AUX
Expand Down
7 changes: 0 additions & 7 deletions src/main/resources/l10n/JabRef_ja.properties
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,8 @@ Automatically_create_groups_for_database.=データベースのグループを

Automatically_created_groups=グループを自動生成しました

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=グループを含まないデータベースに切り替えた際、グループインタフェースを自動的に非表示

Automatically_remove_exact_duplicates=完全な重複を自動的に削除する

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=グループを含むデータベースに切り替えた際、グループインタフェースを自動的に表示




AUX_file_import=AUXファイルの読み込み

Available_export_formats=使用できる書き出し書式
Expand Down
5 changes: 0 additions & 5 deletions src/main/resources/l10n/JabRef_nl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,8 @@ Automatically_create_groups_for_database.=Automatisch_groepen_voor_database_aanm

Automatically_created_groups=Automatisch_aangemaakte_groepen

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Verberg_automatisch_het_groepenvenster_bij_overgang_naar_een_database_die_geen_groepen_bevat

Automatically_remove_exact_duplicates=Automatisch_exacte_kopie\u00ebn_verwijderen

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Toon_automatisch_het_groepenvenster_bij_overgang_naar_een_database_die_groepen_bevat


Allow_overwriting_existing_links.=Overschrijven_van_bestaande_snelkoppelingen_toestaan.

Do_not_overwrite_existing_links.=Overschrijven_van_bestaande_snelkoppelingen_niet_toestaan.
Expand Down
6 changes: 0 additions & 6 deletions src/main/resources/l10n/JabRef_no.properties
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,7 @@ Automatically_create_groups_for_database.=Generer_grupper_for_databasen.

Automatically_created_groups=Genererte_grupper_automatisk

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Skjul_automatisk_grupperingskontroll_n\u00e5_du_bytter_til_en_database_som_ikke_inneholder_grupper

Automatically_remove_exact_duplicates=Fjern_eksakte_duplikater_automatisk

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Vis_automatisk_grupperingskontroll_n\u00e5_du_bytter_til_en_database_som_inneholder_grupper


Allow_overwriting_existing_links.=Tillat_overskriving_av_eksisterende_linker.
Do_not_overwrite_existing_links.=Skriv_ikke_over_eksisterende_linker.

Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/l10n/JabRef_pt_BR.properties
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ Autolink_only_files_that_match_the_BibTeX_key=Criar_links_automaticamente_soment
Automatically_create_groups=Criar_grupos_automaticamente
Automatically_create_groups_for_database.=Criar_grupos_automaticamente_para_a_base_de_dados.
Automatically_created_groups=Grupos_criados_automaticamente
Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Esconder_automaticamente_a_interface_de_grupos_quando_trocar_para_uma_base_de_dados_sem_grupos
Automatically_remove_exact_duplicates=Remover_automaticamente_duplicatas_exatas
Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Exibir_automaticamente_a_interface_de_grupos_quando_trocar_para_uma_base_de_dados_que_contém_grupos
Allow_overwriting_existing_links.=Sobrescrever_links_existentes.
Do_not_overwrite_existing_links.=Não_sobrescrever_links_existentes.
AUX_file_import=Importação_de_arquivos_AUX
Expand Down
5 changes: 0 additions & 5 deletions src/main/resources/l10n/JabRef_ru.properties
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,8 @@ Automatically_create_groups_for_database.=Автоматическое_созд

Automatically_created_groups=Автоматически_созданные_группы

Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Автоматически_скрывать_интерфейс_групп_при_переключении_на_БД,_не_содержащую_групп

Automatically_remove_exact_duplicates=Автоматически_удалять_полные_дубликаты

Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Автоматически_показывать_интерфейс_групп_при_переключении_на_БД,_содержащую_группы


Allow_overwriting_existing_links.=Разрешить_перезапись_текущих_ссылок.

Do_not_overwrite_existing_links.=Не_перезаписывать_текущие_ссылки.
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/l10n/JabRef_sv.properties
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,12 @@ Automatically_assign_new_entry_to_selected_groups=Tilldela_automatiskt_nya_poste
Automatically_create_groups=Skapa_grupper_automatiskt
Automatically_create_groups_for_database.=Skapa_grupper_automatiskt_för_databasen.
Automatically_created_groups=Skapade_grupper_automatiskt
Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Göm_automatiskt_gruppgränssnittet_när_en_databas_som_inte_innehåller_grupper_blir_aktiv
Automatically_open_browse_dialog_when_creating_new_file_link=
Automatically_open_folders_of_attached_files=
Automatically_remove_exact_duplicates=Ta_bort_exakta_dubbletter_automatiskt
Automatically_set_file_links=Skapa_fillänkar_automatiskt
Automatically_set_file_links_for_this_entry=Skapa_fillänkar_automatiskt_för_denna_post
Automatically_setting_file_links=Skapar_fillänkar_automatiskt
Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Visa_automatiskt_gruppgränssnittet_när_en_databas_som_innehåller_grupper_blir_aktiv
Automatically_sync_bibliography_when_inserting_citations=Synkronisera_bibliografin_automatiskt_när_citeringar_infogas
Autosave=Automatisk_sparning
Autosave_interval_(minutes)=Intervall_för_automatisk_sparning_(minuter)
Expand Down
Loading