Skip to content

Commit

Permalink
preliminary fix for JabRef#1340
Browse files Browse the repository at this point in the history
  • Loading branch information
chochreiner committed May 3, 2016
1 parent abb1f56 commit b6e86de
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ to [sourceforge feature requests](https://sourceforge.net/p/jabref/features/) by
- Fixed [#1271](https://github.com/JabRef/jabref/issues/1271): Authors with compound first names are displayed properly
- Fixed: Selecting invalid jstyle causes NPE and prevents opening of style selection dialog
- Fixed: Move linked files to default directory works again
- Fixed [#1340]https://github.com/JabRef/jabref/issues/1340: Edit -> Mark Specific Color Dysfunctional on OSX

### Removed
- Removed possibility to export entries/databases to an `.sql` file, as the logic cannot easily use the correct escape logic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public MarkEntriesAction(JabRefFrame frame, int level) {
this.level = level;

//menuItem = new JMenuItem(Globals.menuTitle("Mark entries").replace("&",""));
menuItem = new JMenuItem(" ");
menuItem = new JMenuItem(Localization.lang("Level") + " " + level + " ");
menuItem.setMnemonic(String.valueOf(level + 1).charAt(0));
menuItem.setBackground(Globals.prefs.getColor(JabRefPreferences.MARKED_ENTRY_BACKGROUND + this.level));
menuItem.setOpaque(true);
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,7 @@ LaTeX_AUX_file=LaTeX_AUX-fil
Leave_file_in_its_current_directory=Lad_filen_ligge_i_biblioteket,_den_ligger_i_nu

Left=Venstre
Level=
Limit_to_fields=Begræns_til_følgende_felter
Limit_to_selected_entries=Begræns_til_valgte_poster

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,7 @@ LaTeX_AUX_file=LaTeX_AUX-Datei
Leave_file_in_its_current_directory=Datei_im_aktuellen_Verzeichnis_lassen

Left=Links
Level=Ebene


Limit_to_fields=Auf_folgende_Felder_begrenzen
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,7 @@ LaTeX_AUX_file=LaTeX_AUX_file
Leave_file_in_its_current_directory=Leave_file_in_its_current_directory

Left=Left
Level=Level

Limit_to_fields=Limit_to_fields

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ Last_modified=Modificado_por_última_vez
LaTeX_AUX_file=Archivo_LaTeX_AUX
Leave_file_in_its_current_directory=Dejar_el_archivo_en_su_directorio_actual
Left=Dejar
Level=
Limit_to_fields=Limitar_a_los_campos
Limit_to_selected_entries=Limitar_a_las_entradas_seleccionadas
Link=Enlace
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_fa.properties
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,7 @@ LaTeX_AUX_file=
Leave_file_in_its_current_directory=

Left=
Level=

Limit_to_fields=

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ Last_modified=Dernier_modifié
LaTeX_AUX_file=Fichier_LaTeX_AUX
Leave_file_in_its_current_directory=Laisser_le_fichier_dans_son_répertoire_courant
Left=Gauche
Level=
Limit_to_fields=Restreindre_aux_champs
Limit_to_selected_entries=Restreindre_aux_seules_entrées_sélectionnées
Link=Lien
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_in.properties
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ Last_modified=Terakhir_diubah
LaTeX_AUX_file=berkas_LaTeX_AUX
Leave_file_in_its_current_directory=Tinggalkan_berkas_di_direktori_yg_sekarang
Left=Kiri
Level=
Limit_to_fields=Batasi_ke_bidang
Limit_to_selected_entries=Batasi_ke_entri_pilihan
Link=Tautan
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ LaTeX_AUX_file=File_AUX_LaTeX
Leave_file_in_its_current_directory=Lascia_il_file_nella_cartella_corrente

Left=Sinistra
Level=
Limit_to_fields=Restrizioni_ai_campi
Limit_to_selected_entries=Restrizioni_alle_voci_selezionate

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_ja.properties
Original file line number Diff line number Diff line change
Expand Up @@ -788,6 +788,7 @@ LaTeX_AUX_file=LaTeX_AUXファイル
Leave_file_in_its_current_directory=ファイルを現在のディレクトリに置いておく。

Left=
Level=


Limit_to_fields=以下のフィールドに制限
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_nl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ LaTeX_AUX_file=LaTeX_AUX-bestand
Leave_file_in_its_current_directory=

Left=Links

Level=

Limit_to_fields=De_volgende_velden_begrenzen

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_no.properties
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,7 @@ Leave_file_in_its_current_directory=La_filen_ligge_i_katalogen_den_ligger_i_n\u0


Left=Venstre
Level=


Limit_to_fields=Begrens_til_f\u00f8lgende_felter
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_pt_BR.properties
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ Last_modified=Última_modificação
LaTeX_AUX_file=Arquivo_LaTeX_AUX
Leave_file_in_its_current_directory=Manter_arquivos_em_seu_diretório_atual
Left=Esquerdo(a)
Level=
Limit_to_fields=Limitar_aos_campos
Limit_to_selected_entries=Limitar_às_referência_selecionadas
Link=Linkar
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_ru.properties
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,7 @@ LaTeX_AUX_file=Файл_AUX_для_LaTeX
Leave_file_in_its_current_directory=Сохранить_файл_в_текущем_каталоге

Left=Левый
Level=


Limit_to_fields=Ограничение_для_полей
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_sv.properties
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,7 @@ Last_modified=Senast_ändrad
Leave_file_in_its_current_directory=Lämna_filen_i_nuvarande_mapp
Leave_this_dialog.=Lämna_denna_dialog.
Left=Vänster
Level=
Left_entry=Vänster_post
Limit_to_fields=Begränsa_till_fält
Limit_to_selected_entries=Begränsa_till_valda_poster
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_tr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ Last_modified=Son_değiştirme
LaTeX_AUX_file=LaTex_AUX_dosyası
Leave_file_in_its_current_directory=Dosyayı_şimdiki_dizininde_bırak
Left=Sol
Level=
Limit_to_fields=Alanlara_kısıtla
Limit_to_selected_entries=Seçili_girdilere_kısıtla
Link=Link
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_vi.properties
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,7 @@ LaTeX_AUX_file=Tập_tin_LaTeX_AUX
Leave_file_in_its_current_directory=Giữ_tập_tin_trong_thư_mục_hiện_tại_của_nó

Left=Trái
Level=


Limit_to_fields=Giới_hạn_theo_các_trường
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/l10n/JabRef_zh.properties
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,7 @@ Language=语言
Last_modified=上次修改的
Leave_file_in_its_current_directory=保留文件的当前位置不改变。
Left=Left
Level=
Limit_to_fields=限制范围到域
Limit_to_selected_entries=限制范围为选中的记录
Link=链接
Expand Down

0 comments on commit b6e86de

Please sign in to comment.