Skip to content

Commit

Permalink
Dropped support for selecting sub/super to equations
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Jul 18, 2016
1 parent 4a2e0e3 commit 2ce40f8
Show file tree
Hide file tree
Showing 29 changed files with 20 additions and 76 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
- Fixed [#1592](https://github.com/JabRef/jabref/issues/1592): LibreOffice: wrong numbers in citation labels

### Removed
- It is not longer possible to choose to convert HTML sub- and superscripts to equations



Expand Down
3 changes: 1 addition & 2 deletions src/jmh/java/net/sf/jabref/benchmarks/Benchmarks.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@ public String latexToHTMLConversion() {

@Benchmark
public String htmlToLatexConversion() {
HtmlToLatexFormatter f = new HtmlToLatexFormatter(
Globals.prefs.getBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION));
HtmlToLatexFormatter f = new HtmlToLatexFormatter();
return f.format(htmlConversionString);
}

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/net/sf/jabref/JabRefPreferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public class JabRefPreferences {
activeFormatterCleanups.add(new FieldFormatterCleanup("title", new ProtectTermsFormatter()));
activeFormatterCleanups.add(new FieldFormatterCleanup("title", new UnitsToLatexFormatter()));
activeFormatterCleanups.add(new FieldFormatterCleanup("title", new LatexCleanupFormatter()));
activeFormatterCleanups.add(new FieldFormatterCleanup("title", new HtmlToLatexFormatter(false))); // TODO: Get the actual value USE_CONVERT_TO_EQUATION
activeFormatterCleanups.add(new FieldFormatterCleanup("title", new HtmlToLatexFormatter()));
FieldFormatterCleanups formatterCleanups = new FieldFormatterCleanups(true, activeFormatterCleanups);
CLEANUP_DEFAULT_PRESET = new CleanupPreset(EnumSet.complementOf(deactivedJobs), formatterCleanups);
}
Expand Down Expand Up @@ -857,7 +857,6 @@ private JabRefPreferences() {
defaults.put(REG_EXP_SEARCH_EXPRESSION_KEY, defaultExpression);
defaults.put(AUTOLINK_USE_REG_EXP_SEARCH_KEY, Boolean.FALSE);
defaults.put(USE_IEEE_ABRV, Boolean.FALSE);
defaults.put(USE_CONVERT_TO_EQUATION, Boolean.FALSE);
defaults.put(USE_CASE_KEEPER_ON_SEARCH, Boolean.TRUE);
defaults.put(USE_UNIT_FORMATTER_ON_SEARCH, Boolean.TRUE);
defaults.put(MAX_BACK_HISTORY_SIZE, 10);
Expand Down
7 changes: 0 additions & 7 deletions src/main/java/net/sf/jabref/gui/preftabs/AdvancedTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ class AdvancedTab extends JPanel implements PrefsTab {
private final JCheckBox useIEEEAbrv;
private final JTextField remoteServerPort;

private final JCheckBox useConvertToEquation;
private final JCheckBox useCaseKeeperOnSearch;
private final JCheckBox useUnitFormatterOnSearch;
private final RemotePreferences remotePreferences;
Expand All @@ -57,7 +56,6 @@ public AdvancedTab(JabRefPreferences prefs) {
useRemoteServer = new JCheckBox(Localization.lang("Listen for remote operation on port") + ':');
useIEEEAbrv = new JCheckBox(Localization.lang("Use IEEE LaTeX abbreviations"));
remoteServerPort = new JTextField();
useConvertToEquation = new JCheckBox(Localization.lang("Prefer converting subscripts and superscripts to equations rather than text"));
useCaseKeeperOnSearch = new JCheckBox(Localization.lang("Add {} to specified title words on search to keep the correct case"));
useUnitFormatterOnSearch = new JCheckBox(Localization.lang("Format units by adding non-breaking separators and keeping the correct case on search"));

Expand Down Expand Up @@ -95,9 +93,6 @@ public AdvancedTab(JabRefPreferences prefs) {
builder.nextLine();
builder.appendSeparator(Localization.lang("Import conversions"));
builder.nextLine();
builder.append(new JPanel());
builder.append(useConvertToEquation);
builder.nextLine();
builder.append(pan);
builder.append(useCaseKeeperOnSearch);
builder.nextLine();
Expand All @@ -116,7 +111,6 @@ public void setValues() {
useRemoteServer.setSelected(remotePreferences.useRemoteServer());
remoteServerPort.setText(String.valueOf(remotePreferences.getPort()));
useIEEEAbrv.setSelected(Globals.prefs.getBoolean(JabRefPreferences.USE_IEEE_ABRV));
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 @@ -129,7 +123,6 @@ public void storeSettings() {
}
storeRemoteSettings();

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
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ public class ACMPortalFetcher implements PreviewEntryFetcher {

private static final Log LOGGER = LogFactory.getLog(ACMPortalFetcher.class);

private final HtmlToLatexFormatter htmlToLatexFormatter = new HtmlToLatexFormatter(
Globals.prefs.getBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION));
private final HtmlToLatexFormatter htmlToLatexFormatter = new HtmlToLatexFormatter();
private final ProtectTermsFormatter protectTermsFormatter = new ProtectTermsFormatter();
private final UnitsToLatexFormatter unitsToLatexFormatter = new UnitsToLatexFormatter();
private String terms;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ public class IEEEXploreFetcher implements EntryFetcher {

private final ProtectTermsFormatter protectTermsFormatter = new ProtectTermsFormatter();
private final UnitsToLatexFormatter unitsToLatexFormatter = new UnitsToLatexFormatter();
private final HtmlToLatexFormatter htmlToLatexFormatter = new HtmlToLatexFormatter(
Globals.prefs.getBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION));
private final HtmlToLatexFormatter htmlToLatexFormatter = new HtmlToLatexFormatter();
private final JCheckBox absCheckBox = new JCheckBox(Localization.lang("Include abstracts"), false);

private boolean shouldContinue;
Expand Down Expand Up @@ -281,17 +280,10 @@ private BibEntry cleanup(BibEntry entry) {
// Replace general expressions
title = title.replaceAll("/[sS]pl ([^/]+)/", "\\$\\\\$1\\$");
// Deal with subscripts and superscripts
if (Globals.prefs.getBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION)) {
title = SUPER_DETECTION_1.matcher(title).replaceAll(SUPER_EQ_RESULT);
title = SUB_DETECTION_1.matcher(title).replaceAll(SUB_EQ_RESULT);
title = SUPER_DETECTION_2.matcher(title).replaceAll(SUPER_EQ_RESULT);
title = SUB_DETECTION_2.matcher(title).replaceAll(SUB_EQ_RESULT);
} else {
title = SUPER_DETECTION_1.matcher(title).replaceAll(SUPER_TEXT_RESULT);
title = SUB_DETECTION_1.matcher(title).replaceAll(SUB_TEXT_RESULT);
title = SUPER_DETECTION_2.matcher(title).replaceAll(SUPER_TEXT_RESULT);
title = SUB_DETECTION_2.matcher(title).replaceAll(SUB_TEXT_RESULT);
}
title = SUPER_DETECTION_1.matcher(title).replaceAll(SUPER_TEXT_RESULT);
title = SUB_DETECTION_1.matcher(title).replaceAll(SUB_TEXT_RESULT);
title = SUPER_DETECTION_2.matcher(title).replaceAll(SUPER_TEXT_RESULT);
title = SUB_DETECTION_2.matcher(title).replaceAll(SUB_TEXT_RESULT);

// Replace \infin with \infty
title = title.replaceAll("\\\\infin", "\\\\infty");
Expand Down Expand Up @@ -501,17 +493,10 @@ private BibEntry cleanup(BibEntry entry) {
// Replace general expressions
abstr = abstr.replaceAll("/[sS]pl ([^/]+)/", "\\$\\\\$1\\$");
// Deal with subscripts and superscripts
if (Globals.prefs.getBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION)) {
abstr = SUPER_DETECTION_1.matcher(abstr).replaceAll(SUPER_EQ_RESULT);
abstr = SUB_DETECTION_1.matcher(abstr).replaceAll(SUB_EQ_RESULT);
abstr = SUPER_DETECTION_2.matcher(abstr).replaceAll(SUPER_EQ_RESULT);
abstr = SUB_DETECTION_2.matcher(abstr).replaceAll(SUB_EQ_RESULT);
} else {
abstr = SUPER_DETECTION_1.matcher(abstr).replaceAll(SUPER_TEXT_RESULT);
abstr = SUB_DETECTION_1.matcher(abstr).replaceAll(SUB_TEXT_RESULT);
abstr = SUPER_DETECTION_2.matcher(abstr).replaceAll(SUPER_TEXT_RESULT);
abstr = SUB_DETECTION_2.matcher(abstr).replaceAll(SUB_TEXT_RESULT);
}
abstr = SUPER_DETECTION_1.matcher(abstr).replaceAll(SUPER_TEXT_RESULT);
abstr = SUB_DETECTION_1.matcher(abstr).replaceAll(SUB_TEXT_RESULT);
abstr = SUPER_DETECTION_2.matcher(abstr).replaceAll(SUPER_TEXT_RESULT);
abstr = SUB_DETECTION_2.matcher(abstr).replaceAll(SUB_TEXT_RESULT);
// Replace \infin with \infty
abstr = abstr.replace("\\infin", "\\infty");
// Write back
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
public class Formatters {

public static final List<Formatter> CONVERTERS = Arrays.asList(
new HtmlToLatexFormatter(false), // TODO: Get the correct value from USE_CONVERT_TO_EQUATION
new HtmlToLatexFormatter(),
new HtmlToUnicodeFormatter(),
new LatexToUnicodeFormatter(),
new UnicodeToLatexFormatter()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ public class HtmlToLatexFormatter implements LayoutFormatter, Formatter {
private static final Pattern ESCAPED_PATTERN3 = Pattern.compile("&#([x]*)([0]*)(\\p{XDigit}+);");
private static final Pattern ESCAPED_PATTERN4 = Pattern.compile("&(\\w+);");

private final boolean convertToEquation;


public HtmlToLatexFormatter(boolean convertToEquation) {
this.convertToEquation = convertToEquation;
}

@Override
public String format(String text) {
String result = Objects.requireNonNull(text);
Expand All @@ -56,15 +49,8 @@ public String format(String text) {

StringBuilder sb = new StringBuilder();
// Deal with the form <sup>k</sup>and <sub>k</sub>
// If the result is in text or equation form can be controlled
// From the "Advanced settings" tab
if (convertToEquation) {
result = result.replaceAll("<[ ]?sup>([^<]+)</sup>", "\\$\\^\\{$1\\}\\$");
result = result.replaceAll("<[ ]?sub>([^<]+)</sub>", "\\$_\\{$1\\}\\$");
} else {
result = result.replaceAll("<[ ]?sup>([^<]+)</sup>", "\\\\textsuperscript\\{$1\\}");
result = result.replaceAll("<[ ]?sub>([^<]+)</sub>", "\\\\textsubscript\\{$1\\}");
}
result = result.replaceAll("<[ ]?sup>([^<]+)</sup>", "\\\\textsuperscript\\{$1\\}");
result = result.replaceAll("<[ ]?sub>([^<]+)</sub>", "\\\\textsubscript\\{$1\\}");

// TODO: maybe rewrite this based on regular expressions instead
// Note that (at least) the IEEE Xplore fetcher must be fixed as it relies on the current way to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/logic/layout/LayoutEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ private LayoutFormatter getLayoutFormatterByName(String name) throws Exception {
switch (name) {
case "HTMLToLatexFormatter": // For backward compatibility
case "HtmlToLatex":
return new HtmlToLatexFormatter(prefs.getBoolean(JabRefPreferences.USE_CONVERT_TO_EQUATION));
return new HtmlToLatexFormatter();
case "UnicodeToLatexFormatter": // For backward compatibility
case "UnicodeToLatex":
return new UnicodeToLatexFormatter();
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,6 @@ Searching...=
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=
Confirm_selection=
Unknown_DOI\:_'%0'.=
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=
Import_conversions=
Please_enter_a_search_string=
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1934,7 +1934,6 @@ Searching...=Suche_läuft...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=Sie_haben_mehr_als_%0_Einträge_zum_Download_ausgewählt._Einige_Webseiten_könnten_zu_viele_Downloads_blockieren._Möchten_Sie_fortfahren?
Confirm_selection=Auswahl_bestätigen
Unknown_DOI\:_'%0'.=Unbekannte_DOI\:_'0%'.
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Hoch-_und_tiefgestellte_Zeichen_in_eine_Gleichung_konvertieren_und_nicht_als_Text_darstellen
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Nach_der_Suche_{}_zu_festgesetzten_Titelworten_hinzufügen,_um_Groß-/Kleinschreibung_beizubehalten
Import_conversions=Konvertierungen_importieren
Please_enter_a_search_string=Bitte_geben_Sie_eine_Suchphrase_ein
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1832,7 +1832,6 @@ Searching...=Searching...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?
Confirm_selection=Confirm_selection
Unknown_DOI\:_'%0'.=Unknown_DOI\:_'%0'.
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case
Import_conversions=Import_conversions
Please_enter_a_search_string=Please_enter_a_search_string
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,6 @@ Searching...=Buscando...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=Ha_seleccionado_más_de_%0_entradas_para_descargar._Algunos_sitios_web_podrían_bloquearle_si_hace_demasiadas_descargas._¿Desea_continuar?
Confirm_selection=Confirmar_selección
Unknown_DOI\:_'%0'.=DOI_desconocido\:_'%0'.
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Preferir_convertir_subíndices_y_superíndices_a_ecuaciónantes_que_a_texto
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Añadir_{}_para_especificar_las_palabras_del_título_para_mantener_mayúsculas/minúsculas_correctamente
Import_conversions=Importar_conversiones
Please_enter_a_search_string=Introduzca_una_cadena_de_búsqueda,_por_favor
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_fa.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,6 @@ Searching...=
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=
Confirm_selection=
Unknown_DOI\:_'%0'.=
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=
Import_conversions=
Please_enter_a_search_string=
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,6 @@ Searching...=Recherche...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=Vous_avez_sélectionné_plus_de_%0_entrées_à_télécharger._Certains_sites_web_pourraient_vous_bloquer_si_vous_effectuez_de_trop_nombreux_et_rapides_téléchargements._Voulez-vous_continuer?
Confirm_selection=Confirmez_la_sélection
Unknown_DOI\:_'%0'.=DOI_inconnu_\:_'%0'.
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Conversion_des_indices_et_exposants_en_équations_plutôt_qu'en_texte
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Ajouter_{}_aux_mots_du_titre_spécifiés_lors_d'une_recherche_pour_préserver_la_casse_correcte
Import_conversions=Importer_les_conversions
Please_enter_a_search_string=Entrez_s'il_vous_plait_une_chaine_de_recherche
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_in.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,6 @@ Searching...=Sedang_mencari...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=Anda_memilih_lebih_dari_%0_entri._Sejumlah_situs_web_akan_memblokir_anda_kalau_melakukan_terlalu_banyak_pemuatturunan_dengan_cepat._Apa_mau_teruskan?
Confirm_selection=Mengkonfirmasi_pilihan
Unknown_DOI\:_'%0'.=DOI_tidak_dikenal\:_'%0'.
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=
Import_conversions=Impor_konversi
Please_enter_a_search_string=Tuliskan_string_pencarian
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,6 @@ Searching...=Ricerca_in_corso...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=Sono_state_selezionate_pi\u00f9_di_%0_voci_da_scaricare._Alcuni_siti_potrebbero_bloccare_la_connessione_se_si_eseguono_scaricamenti_troppo_numerosi_e_rapidi._Continuare?
Confirm_selection=Conferma_la_selezione
Unknown_DOI\:_'%0'.=DOI_sconosciuto\:_'%0'
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Conversione_di_apici_e_pedici_in_equazioni_piuttosto_che_in_testo.
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Aggiungere_{}_alle_parole_del_titolo_specificate_per_mantenere_la_corretta_capitalizzazione_nella_ricerca.
Import_conversions=Importare_le_conversioni
Please_enter_a_search_string=Inserire_una_stringa_di_ricerca
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_ja.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1915,7 +1915,6 @@ Searching...=検索中...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=ダウンロードする項目を%0個以上選択しました。あまりに多くのダウンロードを急に行うと、其れをブロックするウェブサイトもあります。続けますか?
Confirm_selection=選択範囲を確認
Unknown_DOI\:_'%0'.=「%0」は既知のDOIではありません
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=上添字及び下添字をテキストではなく数式に変換する
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=大小文字を正しく維持するため、検索中に指定したタイトル語に{}を付け加える
Import_conversions=読み込み時変換
Please_enter_a_search_string=検索文字列を入力してください
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_nl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1917,7 +1917,6 @@ Searching...=
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=
Confirm_selection=
Unknown_DOI\:_'%0'.=Unbekende_DOI\:_'%0'.
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=
Import_conversions=
Please_enter_a_search_string=
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_no.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,6 @@ Searching...=
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=
Confirm_selection=
Unknown_DOI\:_'%0'.=
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=
Import_conversions=
Please_enter_a_search_string=
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/l10n/JabRef_pt_BR.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,6 @@ Searching...=Buscando...
You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=Você_selecionou_mais_de_%0_entradas_para_download._Alguns_sites_podem_bloquear_seu_acesso_se_você_fizer_muitos_downloads_num_período_curto_de_tempo._Deseja_continuar_mesmo_assim?
Confirm_selection=Confirmar_seleção
Unknown_DOI\:_'%0'.=DOI_desconhecido\:_'%0'.
Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Dar_preferência_à_conversão_de_subscritos_sobrescritos_para_equações_ao_invés_de_textos
Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Adicione_{}_às_palavras_do_título_na_busca_para_manter_maiúsculas_minúsculas
Import_conversions=Importar_conversões
Please_enter_a_search_string=Favor_digitar_uma_string_de_busca
Expand Down
Loading

0 comments on commit 2ce40f8

Please sign in to comment.