From 9ea72929705789378f6d1bbd23487a7fccdf693f Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson Date: Tue, 26 Jul 2016 11:37:39 +0200 Subject: [PATCH 1/9] AUX files --- .../java/net/sf/jabref/cli/JabRefCLI.java | 2 +- .../gui/actions/NewSubDatabaseAction.java | 2 +- .../jabref/gui/auximport/FromAuxDialog.java | 2 +- .../sf/jabref/logic/auxparser/AuxParser.java | 22 ++--- .../logic/auxparser/AuxParserResult.java | 4 +- src/main/resources/l10n/JabRef_da.properties | 6 +- src/main/resources/l10n/JabRef_de.properties | 6 +- src/main/resources/l10n/JabRef_en.properties | 8 +- src/main/resources/l10n/JabRef_es.properties | 6 +- src/main/resources/l10n/JabRef_fa.properties | 8 +- src/main/resources/l10n/JabRef_fr.properties | 94 +++++++++---------- src/main/resources/l10n/JabRef_in.properties | 6 +- src/main/resources/l10n/JabRef_it.properties | 6 +- src/main/resources/l10n/JabRef_ja.properties | 8 +- src/main/resources/l10n/JabRef_nl.properties | 6 +- src/main/resources/l10n/JabRef_no.properties | 6 +- .../resources/l10n/JabRef_pt_BR.properties | 6 +- src/main/resources/l10n/JabRef_ru.properties | 6 +- src/main/resources/l10n/JabRef_sv.properties | 6 +- src/main/resources/l10n/JabRef_tr.properties | 6 +- src/main/resources/l10n/JabRef_vi.properties | 8 +- src/main/resources/l10n/JabRef_zh.properties | 6 +- src/main/resources/l10n/Menu_fr.properties | 10 +- 23 files changed, 120 insertions(+), 120 deletions(-) diff --git a/src/main/java/net/sf/jabref/cli/JabRefCLI.java b/src/main/java/net/sf/jabref/cli/JabRefCLI.java index b7487365962..74ced0f7ae8 100644 --- a/src/main/java/net/sf/jabref/cli/JabRefCLI.java +++ b/src/main/java/net/sf/jabref/cli/JabRefCLI.java @@ -198,7 +198,7 @@ private Options getOptions() { options.addOption(Option.builder("a"). longOpt("aux"). - desc(String.format("%s: %s[.aux],%s[.bib]", Localization.lang("Subdatabase from aux"), + desc(String.format("%s: %s[.aux],%s[.bib]", Localization.lang("Subdatabase from AUX"), Localization.lang("file"), Localization.lang("new"))). hasArg(). diff --git a/src/main/java/net/sf/jabref/gui/actions/NewSubDatabaseAction.java b/src/main/java/net/sf/jabref/gui/actions/NewSubDatabaseAction.java index c22d70b7a41..b455a3587a6 100644 --- a/src/main/java/net/sf/jabref/gui/actions/NewSubDatabaseAction.java +++ b/src/main/java/net/sf/jabref/gui/actions/NewSubDatabaseAction.java @@ -16,7 +16,7 @@ import net.sf.jabref.preferences.JabRefPreferences; /** - * The action concerned with generate a new (sub-)database from latex aux file. + * The action concerned with generate a new (sub-)database from latex AUX file. */ public class NewSubDatabaseAction extends MnemonicAwareAction { diff --git a/src/main/java/net/sf/jabref/gui/auximport/FromAuxDialog.java b/src/main/java/net/sf/jabref/gui/auximport/FromAuxDialog.java index 27f2731d5bb..809fbbf4c3b 100644 --- a/src/main/java/net/sf/jabref/gui/auximport/FromAuxDialog.java +++ b/src/main/java/net/sf/jabref/gui/auximport/FromAuxDialog.java @@ -27,7 +27,7 @@ */ -// A wizard dialog for generating a new sub database from existing TeX aux file +// A wizard dialog for generating a new sub database from existing TeX AUX file // // created by : r.nagel 23.08.2004 // diff --git a/src/main/java/net/sf/jabref/logic/auxparser/AuxParser.java b/src/main/java/net/sf/jabref/logic/auxparser/AuxParser.java index f59a8774734..730d92484f2 100644 --- a/src/main/java/net/sf/jabref/logic/auxparser/AuxParser.java +++ b/src/main/java/net/sf/jabref/logic/auxparser/AuxParser.java @@ -23,7 +23,7 @@ /** * LaTeX Aux to BibTeX Parser *

- * Extracts a subset of BibTeX entries from a BibDatabase that are included in an aux file. + * Extracts a subset of BibTeX entries from a BibDatabase that are included in an AUX file. */ public class AuxParser { private static final Log LOGGER = LogFactory.getLog(AuxParser.class); @@ -35,9 +35,9 @@ public class AuxParser { private final BibDatabase masterDatabase; /** - * Generates a database based on the given aux file and BibTeX database + * Generates a database based on the given AUX file and BibTeX database * - * @param auxFile Path to the LaTeX aux file + * @param auxFile Path to the LaTeX AUX file * @param database BibTeX database */ public AuxParser(String auxFile, BibDatabase database) { @@ -55,21 +55,21 @@ public AuxParserResult parse() { } /* - * Parses the aux file and extracts all bib keys. - * Also supports nested aux files (latex \\include). + * Parses the AUX file and extracts all bib keys. + * Also supports nested AUX files (latex \\include). * - * There exists no specification of the aux file. - * Every package, class or document can write to the aux file. - * The aux file consists of LaTeX macros and is read at the \begin{document} and again at the \end{document}. + * There exists no specification of the AUX file. + * Every package, class or document can write to the AUX file. + * The AUX file consists of LaTeX macros and is read at the \begin{document} and again at the \end{document}. * * BibTeX citation: \citation{x,y,z} * Biblatex citation: \abx@aux@cite{x,y,z} - * Nested aux files: \@input{x} + * Nested AUX files: \@input{x} */ private AuxParserResult parseAuxFile() { AuxParserResult result = new AuxParserResult(masterDatabase); - // nested aux files + // nested AUX files List fileList = new ArrayList<>(1); fileList.add(auxFile); @@ -124,7 +124,7 @@ private AuxParserResult parseAuxFile() { } /* - * Try to find an equivalent BibTeX entry inside the reference database for all keys inside the aux file. + * Try to find an equivalent BibTeX entry inside the reference database for all keys inside the AUX file. */ private void resolveTags(AuxParserResult result) { for (String key : result.getUniqueKeys()) { diff --git a/src/main/java/net/sf/jabref/logic/auxparser/AuxParserResult.java b/src/main/java/net/sf/jabref/logic/auxparser/AuxParserResult.java index 4de187e6d44..6e9047099d2 100644 --- a/src/main/java/net/sf/jabref/logic/auxparser/AuxParserResult.java +++ b/src/main/java/net/sf/jabref/logic/auxparser/AuxParserResult.java @@ -69,7 +69,7 @@ public String getInformation(boolean includeMissingEntries) { StringBuilder result = new StringBuilder(); result.append(Localization.lang("keys_in_database")).append(' ').append(masterDatabase.getEntryCount()).append('\n') - .append(Localization.lang("found_in_aux_file")).append(' ').append(getFoundKeysInAux()).append('\n') + .append(Localization.lang("found_in_AUX_file")).append(' ').append(getFoundKeysInAux()).append('\n') .append(Localization.lang("resolved")).append(' ').append(getResolvedKeysCount()).append('\n') .append(Localization.lang("not_found")).append(' ').append(getUnresolvedKeysCount()).append('\n') .append(Localization.lang("crossreferenced entries included")).append(' ') @@ -81,7 +81,7 @@ public String getInformation(boolean includeMissingEntries) { } } if (nestedAuxCount > 0) { - result.append(Localization.lang("nested_aux_files")).append(' ').append(nestedAuxCount); + result.append(Localization.lang("nested_AUX_files")).append(' ').append(nestedAuxCount); } return result.toString(); } diff --git a/src/main/resources/l10n/JabRef_da.properties b/src/main/resources/l10n/JabRef_da.properties index d70e4edfe93..86e64389e5e 100644 --- a/src/main/resources/l10n/JabRef_da.properties +++ b/src/main/resources/l10n/JabRef_da.properties @@ -347,7 +347,7 @@ Format_of_author_and_editor_names=Formattering_af_forfatter-_og_redaktørnavn Format_String=Formatstreng Format_used=Format_brugt Formatter_Name=Navn_på_formatering -found_in_aux_file=fundet_i_aux-fil +found_in_AUX_file=fundet_i_AUX-fil Full_name=Fuldt_navn General=Generelt General_fields=Generelle_felter @@ -483,7 +483,7 @@ Name=Navn Name_formatter=Navneformatering Natbib_style=Natbib-stil -nested_aux_files='nestede'_aux-filer +nested_AUX_files='nestede'_AUX-filer New=Ny new=ny New_BibTeX_entry=Ny_BibTeX-post @@ -724,7 +724,7 @@ Store_journal_abbreviations=Gem_tidsskriftsforkortelser Stored_entry=Post_gemt Strings=Strenge Strings_for_database=Strenge_for_database -Subdatabase_from_aux=Deldatabase_fra_aux-fil +Subdatabase_from_AUX=Deldatabase_fra_AUX-fil Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known.=Skifter_mellem_fuldt_og_forkortet_tidsskriftsnavn_hvis_navnet_er_kendt. Synchronize_file_links=Synkroniser_eksterne_links Synchronizing_file_links...=Synkroniserer_eksterne_links... diff --git a/src/main/resources/l10n/JabRef_de.properties b/src/main/resources/l10n/JabRef_de.properties index 2ac911b35b3..c9018748f80 100644 --- a/src/main/resources/l10n/JabRef_de.properties +++ b/src/main/resources/l10n/JabRef_de.properties @@ -626,7 +626,7 @@ Format_String=Formatier-Ausdruck Format_used=benutztes_Format Formatter_Name=Name_des_Formatierers -found_in_aux_file=gefundene_Schlüssel_in_AUX_Datei +found_in_AUX_file=gefundene_Schlüssel_in_AUX_Datei Full_name=Kompletter_Name @@ -883,7 +883,7 @@ Name_formatter=Namens-Formatierer Natbib_style=Natbib-Stil -nested_aux_files=referenzierte_AUX_Dateien +nested_AUX_files=referenzierte_AUX_Dateien New=Neu @@ -1347,7 +1347,7 @@ Strings=Ersetzen Strings_for_database=Strings_für_die_Datei -Subdatabase_from_aux=Teildatenbank_aus_aux-Datei +Subdatabase_from_AUX=Teildatenbank_aus_AUX-Datei ##\## These lines were changed\: diff --git a/src/main/resources/l10n/JabRef_en.properties b/src/main/resources/l10n/JabRef_en.properties index b5138fe4b53..453dce7e787 100644 --- a/src/main/resources/l10n/JabRef_en.properties +++ b/src/main/resources/l10n/JabRef_en.properties @@ -600,7 +600,7 @@ Format_String=Format_String Format_used=Format_used Formatter_Name=Formatter_Name -found_in_aux_file=found_in_aux_file +found_in_AUX_file=found_in_AUX_file Full_name=Full_name @@ -755,7 +755,7 @@ Key_pattern=Key_pattern keys_in_database=keys_in_database -#nottranslated.Toviewit,usemenu"Tools|NewBibTeXfilefromAUxfile",andlaunchtheactiononanon-existantauxfile. +#nottranslated.Toviewit,usemenu"Tools|NewBibTeXfilefromAUxfile",andlaunchtheactiononanon-existantAUXfile. Keyword=Keyword Label=Label @@ -841,7 +841,7 @@ Name_formatter=Name_formatter Natbib_style=Natbib_style -nested_aux_files=nested_aux_files +nested_AUX_files=nested_AUX_files New=New @@ -1265,7 +1265,7 @@ Strings=Strings Strings_for_database=Strings_for_database -Subdatabase_from_aux=Subdatabase_from_aux +Subdatabase_from_AUX=Subdatabase_from_AUX Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known.=Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known. diff --git a/src/main/resources/l10n/JabRef_es.properties b/src/main/resources/l10n/JabRef_es.properties index 92ae1e93eb9..7a4f8b9da4c 100644 --- a/src/main/resources/l10n/JabRef_es.properties +++ b/src/main/resources/l10n/JabRef_es.properties @@ -323,7 +323,7 @@ Format_of_author_and_editor_names=Formato_de_los_nombres_de_autor_y_editor Format_String=Formatear_cadena Format_used=Formato_usado Formatter_Name=Nombre_del_formateador -found_in_aux_file=encontrado_en_archivo_aux +found_in_AUX_file=encontrado_en_archivo_AUX Full_name=Nombre_completo General=General General_fields=Generar_campos @@ -450,7 +450,7 @@ Moved_group_"%0".=Se_ha_movido_el_grupo_"%0". Name=Nombre Name_formatter=Formateador_de_nombre Natbib_style=Estilo_Natbib -nested_aux_files=Archivos_aux_anidados +nested_AUX_files=Archivos_AUX_anidados New=Nuevo new=new New_BibTeX_entry=Nueva_entrada_BibTeX @@ -676,7 +676,7 @@ Store_journal_abbreviations=Almacenar_abreviaturas_de_revista Stored_entry=Entrada_almacenada Strings=Cadenas Strings_for_database=Cadenas_para_base_de_datos -Subdatabase_from_aux=Base_de_datos_secundaria_desde_aux +Subdatabase_from_AUX=Base_de_datos_secundaria_desde_AUX Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known.=Cambia_entre_nombre_completo_y_abreviatura_de_la_revista_si_se_conoce_en_nombe_de_la_revista. Synchronize_file_links=Sincronizar_enlaces_de_archivo Synchronizing_file_links...=Sincronizando_archivo_enlaces... diff --git a/src/main/resources/l10n/JabRef_fa.properties b/src/main/resources/l10n/JabRef_fa.properties index ad4dab3ea1e..6cedf69c5a0 100644 --- a/src/main/resources/l10n/JabRef_fa.properties +++ b/src/main/resources/l10n/JabRef_fa.properties @@ -611,7 +611,7 @@ Format_String= Format_used= Formatter_Name= -found_in_aux_file= +found_in_AUX_file= Full_name= @@ -764,7 +764,7 @@ Key_pattern= keys_in_database= -#nottranslated.Toviewit,usemenu"Tools|NewBibTeXfilefromAUxfile",andlaunchtheactiononanon-existantauxfile. +#nottranslated.Toviewit,usemenu"Tools|NewBibTeXfilefromAUxfile",andlaunchtheactiononanon-existantAUXfile. Keyword= Label= @@ -850,7 +850,7 @@ Name_formatter= Natbib_style= -nested_aux_files= +nested_AUX_files= New= @@ -1308,7 +1308,7 @@ Strings= Strings_for_database= -Subdatabase_from_aux= +Subdatabase_from_AUX= Synchronize_file_links= diff --git a/src/main/resources/l10n/JabRef_fr.properties b/src/main/resources/l10n/JabRef_fr.properties index 6ba80289a3e..fa86f87c004 100644 --- a/src/main/resources/l10n/JabRef_fr.properties +++ b/src/main/resources/l10n/JabRef_fr.properties @@ -12,10 +12,10 @@ Could_not_find_file_'%0'
linked_from_entry_'%1'=Le_fichier_'%0'_n'a_pas_pu_être_trouvé_
à_partir_du_lien_de_l'entrée_'%1' = = -Abbreviate_journal_names_of_the_selected_entries_(ISO_abbreviation)=Abréger_les_noms_de_journAUX_des_entrées_sélectionnées_(abréviations_ISO) -Abbreviate_journal_names_of_the_selected_entries_(MEDLINE_abbreviation)=Abréger_les_noms_de_journAUX_des_entrées_sélectionnées_(abréviations_MEDLINE) +Abbreviate_journal_names_of_the_selected_entries_(ISO_abbreviation)=Abréger_les_noms_de_journaux_des_entrées_sélectionnées_(abréviations_ISO) +Abbreviate_journal_names_of_the_selected_entries_(MEDLINE_abbreviation)=Abréger_les_noms_de_journaux_des_entrées_sélectionnées_(abréviations_MEDLINE) Abbreviate_names=Abréger_les_noms -Abbreviated_%0_journal_names.=%0_noms_de_journAUX_abrégés. +Abbreviated_%0_journal_names.=%0_noms_de_journaux_abrégés. Abbreviation=Abréviation About_JabRef=A_propos_de_JabRef Abstract=Résumé @@ -45,7 +45,7 @@ All_entries_of_this_type_will_be_declared_typeless._Continue?=Toutes_les_entrée All_fields=Tous_les_champs All_subgroups_(recursively)=Tous_les_sous-groupes_(récursivement) An_exception_occurred_while_accessing_'%0'=Une_Exception_est_survenue_lors_de_l'accès_à_'%0' -An_SAX_exception_occurred_while_parsing_'%0'\:=Une_Exception_SAX_est_survenue_pendant_le_traitement_de_'%0'_\: +A_SAX_exception_occurred_while_parsing_'%0'\:=Une_Exception_SAX_est_survenue_pendant_le_traitement_de_'%0'_\: and=et and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=et_la_classe_doit_être_disponible_dans_votre_chemin_de_classe_la_prochaine_fois_que_vous_démarrez_JabRef. any_field_that_matches_the_regular_expression_%0=tout_champ_qui_correspond_à_l'expression_régulière_%0 @@ -109,7 +109,7 @@ Change_of_Grouping_Method=Changement_de_la_Méthode_de_Groupement change_preamble=changer_le_préambule change_string_content=changer_le_contenu_de_la_chaîne change_string_name=changer_le_nom_de_la_chaîne -Change_table_column_and_General_fields_settings_to_use_the_new_feature=Modifier_les_colonnes_de_la_table_et_les_paramètres_des_champs_générAUX_pour_utiliser_cette_nouvelle_fonction +Change_table_column_and_General_fields_settings_to_use_the_new_feature=Modifier_les_colonnes_de_la_table_et_les_paramètres_des_champs_généraux_pour_utiliser_cette_nouvelle_fonction Changed_font_settings=Paramètres_de_police_modifiés Changed_language_settings=Paramètres_linguistiques_modifiés Changed_look_and_feel_settings=Changer_les_paramètres_d'apparence @@ -411,8 +411,8 @@ LaTeX_AUX_file=Fichier_LaTeX_AUX Leave_file_in_its_current_directory=Laisser_le_fichier_dans_son_répertoire_courant Left=Gauche Level=Niveau -Limit_to_fields=Restreindre_AUX_champs -Limit_to_selected_entries=Restreindre_AUX_seules_entrées_sélectionnées +Limit_to_fields=Restreindre_aux_champs +Limit_to_selected_entries=Restreindre_aux_seules_entrées_sélectionnées Link=Lien Link_local_file=Lier_le_fichier_local Link_to_file_%0=Lien_vers_le_fichier_%0 @@ -471,7 +471,7 @@ No_entries_found_for_the_search_string_'%0'=Pas_d'entrée_pour_la_chaîne_de_rec No_entries_imported.=Pas_d'entrées_importées. No_exceptions_have_occurred.=Aucune_exception_n'est_survenue. No_files_found.=Fichiers_non_trouvés. -No_GUI._Only_process_command_line_options.=Pas_d'interface_utilisateur._Traitement_limité_AUX_options_de_la_ligne_de_commande. +No_GUI._Only_process_command_line_options.=Pas_d'interface_utilisateur._Traitement_limité_aux_options_de_la_ligne_de_commande. No_journal_names_could_be_abbreviated.=Aucun_nom_de_journal_n'a_pu_être_abrégé. No_journal_names_could_be_unabbreviated.=Aucun_nom_de_journal_n'a_pu_être_développé. No_PDF_linked=Pas_de_PDF_lié @@ -509,7 +509,7 @@ Output=Sortie Output_or_export_file=Fichier_de_sortie_ou_d'exportation Override=Remplacer Override_default_file_directories=Remplacer_les_répertoires_de_fichier_par_défaut -Override_default_font_settings=Se_substituer_AUX_paramètres_de_police_par_défaut +Override_default_font_settings=Se_substituer_aux_paramètres_de_police_par_défaut Override_the_BibTeX_field_by_the_selected_text=Remplacer_la_clef_BibTeX_par_le_texte_sélectionné Overwrite=Ecraser Overwrite_existing_field_values=Ecraser_les_valeurs_existantes_du_champ @@ -677,7 +677,7 @@ Stored_entry=Entrée_enregistrée Strings=Chaîne Strings_for_database=Chaînes_pour_la_base Subdatabase_from_AUX=BibTeX_à_partir_de_LaTex_AUX -Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known.=Basculer_entre_les_noms_de_journAUX_développés_et_abrégés_si_le_nom_de_journal_est_connu. +Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known.=Basculer_entre_les_noms_de_journaux_développés_et_abrégés_si_le_nom_de_journal_est_connu. Synchronize_file_links=Synchroniser_les_liens_vers_les_fichiers Synchronizing_file_links...=Synchronisation_des_liens_fichier... Table_appearance=Apparence_de_la_table @@ -719,8 +719,8 @@ Toggle_abbreviation=Afficher/Masquer_l'abréviation Toggle_entry_preview=Afficher/Masquer_l'aperçu Toggle_groups_interface=Afficher/Masquer_l'interface_des_groupes Try_different_encoding=Essayer_un_encodage_différent -Unabbreviate_journal_names_of_the_selected_entries=Développer_les_noms_de_journAUX_des_entrées_sélectionnées -Unabbreviated_%0_journal_names.=%0_noms_de_journAUX_développés. +Unabbreviate_journal_names_of_the_selected_entries=Développer_les_noms_de_journaux_des_entrées_sélectionnées +Unabbreviated_%0_journal_names.=%0_noms_de_journaux_développés. Unable_to_open_file.=Impossible_d'ouvrir_le_fichier Unable_to_open_link._The_application_'%0'_associated_with_the_file_type_'%1'_could_not_be_called.=Impossible_d'ouvrir_un_lien._L'application_'%0'_associée_avec_le_type_de_fichier_'%1'_n'a_pu_être_appelée. unable_to_write_to=Impossible_d'écrire_sur @@ -759,7 +759,7 @@ Warnings=Messages_d'avertissement web_link=Lien_internet What_do_you_want_to_do?=Que_voulez-vous_faire_? When_adding/removing_keywords,_separate_them_by=Lors_de_l'ajout/suppression_de_mots-clef,_les_séparer_avec -Will_write_XMP-metadata_to_the_PDFs_linked_from_selected_entries.=Ecrit_les_métadonnées_XMP_dans_les_PDFs_liés_AUX_entrées_sélectionnées +Will_write_XMP-metadata_to_the_PDFs_linked_from_selected_entries.=Ecrit_les_métadonnées_XMP_dans_les_PDFs_liés_aux_entrées_sélectionnées with=avec Write_BibTeXEntry_as_XMP-metadata_to_PDF.=Ecrire_l'entrée_BibTeX_comme_des_métadonnées_XMP_dans_un_PDF Write_XMP=Ecrire_XMP @@ -813,7 +813,7 @@ Unable_to_open_link.=Impossible_d'ouvrir_un_lien. Attempting_SQL_import...=Tentative_d'importation_SQL... Move_the_keyboard_focus_to_the_entry_table=Déplacer_le_curseur_vers_la_table_des_entrées MIME_type=Type_MIME -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
au_lieu_d'ouvrir_une_nouvelle_fenêtre._Par_exemple,_c'est_utile_quand_vous_ouvrez_un_fichier_dans_JabRef
à_partir_de_notre_navigateur_internet._
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
au_lieu_d'ouvrir_une_nouvelle_fenêtre._Par_exemple,_c'est_utile_quand_vous_ouvrez_un_fichier_dans_JabRef
à_partir_de_notre_navigateur_internet._
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" The_ACM_Digital_Library=La_Bibliothèque_Numérique_ACM Reset=Réinitialiser @@ -866,12 +866,12 @@ Do_you_want_to_override_the_file_lock?=Voulez-vous_outrepasser_le_verrouillage_d File_locked=Fichier_verrouillé Current_tmp_value=Valeur_tmp_actuelle Metadata_change=Changement_dans_les_métadonnées -Changes_have_been_made_to_the_following_metadata_elements=Des_modifications_ont_été_faites_AUX_éléments_de_métadonnées_suivants +Changes_have_been_made_to_the_following_metadata_elements=Des_modifications_ont_été_faites_aux_éléments_de_métadonnées_suivants Generate_groups_for_author_last_names=Création_de_groupes_pour_les_noms_d'auteurs Generate_groups_for_editor_last_names=Création_de_groupes_pour_les_noms_d'éditeurs Generate_groups_from_keywords_in_a_BibTeX_field=Création_de_groupes_à_partir_de_mots-clefs_d'un_champ_BibTeX -Enforce_legal_characters_in_BibTeX_keys=Imposer_des_caractères_légAUX_dans_les_clefs_BibTeX +Enforce_legal_characters_in_BibTeX_keys=Imposer_des_caractères_légaux_dans_les_clefs_BibTeX Save_without_backup?=Enregistrer_sans_sauvegarde_de_secours? Unable_to_create_backup=Impossible_de_créer_une_sauvegarde_de_secours @@ -898,7 +898,7 @@ Find_and_remove_duplicate_BibTeX_keys=Recherche_et_supprime_les_clefs_BibTeX_dup Expected_syntax_for_--fetch\='\:'=Syntaxe_attendue_pour_--fetch='\:' Duplicate_BibTeX_key=Clef_BibTeX_dupliquée Import_marking_color=Importer_les_couleurs_de_marquage -Always_add_letter_(a,_b,_...)_to_generated_keys=Toujours_ajouter_une_lettre_(a,_b,_...)_AUX_clefs_générées +Always_add_letter_(a,_b,_...)_to_generated_keys=Toujours_ajouter_une_lettre_(a,_b,_...)_aux_clefs_générées Ensure_unique_keys_using_letters_(a,_b,_...)=Assurer_l'unicité_des_clefs_(a,_b,_...) Ensure_unique_keys_using_letters_(b,_c,_...)=Assurer_l'unicité_des_clefs_(b,_c,_...) @@ -1000,7 +1000,7 @@ Found_more_than_one_OpenOffice/LibreOffice_executable.=Plus_d'un_exécutable_Ope Please_choose_which_one_to_connect_to\:=SVP,_choisissez_celui_auquel_il_faut_se_connecter_\: Choose_OpenOffice/LibreOffice_executable=Choisissez_l'exécutable_OpenOffice/LibreOffice Select_document=Sélectionner_un_document -Edit_group_membership=Editer_l'appartenance_AUX_groupes +Edit_group_membership=Editer_l'appartenance_aux_groupes HTML_list=Liste_HTML Click_group_to_toggle_membership_of_selected_entries=Cliquer_sur_un_groupe_pour_inverser_l'appartenance_des_entrées_sélectionnées Use_EMACS_23_insertion_string=Utiliser_la_chaîne_d'insertion_d'EMACS_23 @@ -1014,10 +1014,10 @@ No_valid_style_file_defined=Aucun_style_de_fichier_valide_n'est_défini Choose_pattern=Choisissez_un_modèle Use_the_BIB_file_location_as_primary_file_directory=Utiliser_le_répertoire_du_fichier_BIB_comme_répertoire_principal_de_fichiers Could_not_run_the_gnuclient/emacsclient_program._Make_sure_you_have_the_emacsclient/gnuclient_program_installed_and_available_in_the_PATH.=Le_programme_gnuclient/emacsclient_n'a_pas_pu_être_lancé._Assurez-vous_que_les_programmes_gnuclient/emacsclient_sont_installés_et_disponible_dans_le_PATH. -Built-in_journal_list=Liste_de_journAUX_interne +Built-in_journal_list=Liste_de_journaux_interne OpenOffice/LibreOffice_connection=Connexion_OpenOffice/LibreOffice -You_can_add_additional_journal_names_by_setting_up_a_personal_journal_list,
as_well_as_linking_to_external_journal_lists.=Vous_pouvez_ajouter_des_noms_de_journAUX_supplémentaires_en_paramétrant_une_liste_de_journAUX_personnelle
_ou_en_créant_des_liens_vers_des_listes_de_journAUX_externes -JabRef_includes_a_built-in_list_of_journal_abbreviations.=JabRef_intègre_une_liste_d'abréviations_de_journAUX. +You_can_add_additional_journal_names_by_setting_up_a_personal_journal_list,
as_well_as_linking_to_external_journal_lists.=Vous_pouvez_ajouter_des_noms_de_journaux_supplémentaires_en_paramétrant_une_liste_de_journaux_personnelle
_ou_en_créant_des_liens_vers_des_listes_de_journaux_externes +JabRef_includes_a_built-in_list_of_journal_abbreviations.=JabRef_intègre_une_liste_d'abréviations_de_journaux. You_must_select_either_a_valid_style_file,_or_use_one_of_the_default_styles.=Vous_devez_sélectionner_soit_un_style_de_fichier_valide,_soit_utiliser_un_des_styles_par_défaut. @@ -1037,7 +1037,7 @@ Autocomplete_after_following_number_of_characters=Complétion_automatique_après Name_format_used_for_autocompletion=Format_de_nom_utilisé_pour_la_complétion_automatique Treatment_of_first_names=Traitement_des_prénoms Cleanup_entries=Nettoyage_des_entrées -Automatically_assign_new_entry_to_selected_groups=Assigner_automatiquement_les_nouvelles_entrées_AUX_groupes_sélectionnés +Automatically_assign_new_entry_to_selected_groups=Assigner_automatiquement_les_nouvelles_entrées_aux_groupes_sélectionnés Move_DOIs_from_note_and_URL_field_to_DOI_field_and_remove_http_prefix=Déplacer_les_DOIs_des_champs_note_et_URL_vers_le_champ_DOI,_et_supprimer_le_prefix_http Make_paths_of_linked_files_relative_(if_possible)=Rendre_relatifs_les_chemins_des_fichiers_liés_(si_possible) Rename_PDFs_to_given_filename_format_pattern=Renommer_les_PDF_selon_le_modèle_donné_de_format_de_nom_de_fichier @@ -1068,7 +1068,7 @@ Please_select_which_JabRef_databases_do_you_want_to_import\:=SVP,_sélectionnez_ Group_tree_could_not_be_parsed._If_you_save_the_BibTeX_database,_all_groups_will_be_lost.=L'arbre_des_groupes_n'a_pu_être_analysé._Si_vous_sauvez_la_base_BibTeX,_tous_les_groupes_seront_perdus. Attach_file=Attacher_un_fichier -Setting_all_preferences_to_default_values.=Initialiser_la_configuration_AUX_valeurs_par_défaut. +Setting_all_preferences_to_default_values.=Initialiser_la_configuration_aux_valeurs_par_défaut. Resetting_preference_key_'%0'=Réinitialiser_la_clef_de_configuration_'%0' Unknown_preference_key_'%0'=Clef_de_configuration_'%0'_inconnue Unable_to_clear_preferences.=Impossible_d'initialiser_la_configuration. @@ -1104,7 +1104,7 @@ Overwrite_key=Ecraser_la_clef Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefererences_->_BibTeX_key_generator=Pas_d'écrasement_de_clefs_existantes._Pour_changer_ce_paramétrage,_ouvrir_Options_->_Préférences_->_Générateur_de_clefs_BibTeX How_would_you_like_to_link_to_'%0'?=Quel_type_de_lien_souhaitez-vous_vers_'%0'_? BibTeX_key_patterns=Modèles_de_clef_BibTeX -Changed_special_field_settings=Paramètres_de_champs_spéciAUX_modifiés +Changed_special_field_settings=Paramètres_de_champs_spéciaux_modifiés Clear_priority=Effacer_la_priorité Clear_rank=Effacer_le_rang Enable_special_fields=Autoriser_les_champs_spéciaux @@ -1132,14 +1132,14 @@ Show_quality=Montrer_la_qualité Show_rank=Montrer_le_rang Show_relevance=Montrer_la_pertinence Synchronize_with_keywords=Synchroniser_avec_les_mots-clefs -Synchronized_special_fields_based_on_keywords=Champs_spéciAUX_synchronisés_sur_la_base_des_mots-clefs +Synchronized_special_fields_based_on_keywords=Champs_spéciaux_synchronisés_sur_la_base_des_mots-clefs Three_stars=Trois_étoiles Toggle_relevance=Changer_la_pertinence Toggle_quality_assured=Changer_la_vérification_de_qualité Two_stars=Deux_étoiles Update_keywords=Mettre_à_jour_les_mots-clefs -Write_values_of_special_fields_as_separate_fields_to_BibTeX=Ecrire_les_valeurs_des_champs_spéciAUX_dans_des_champs_BibTeX_séparés -You_have_changed_settings_for_special_fields.=Vous_avez_modifié_les_paramètres_pour_les_champs_spéciAUX. +Write_values_of_special_fields_as_separate_fields_to_BibTeX=Ecrire_les_valeurs_des_champs_spéciaux_dans_des_champs_BibTeX_séparés +You_have_changed_settings_for_special_fields.=Vous_avez_modifié_les_paramètres_pour_les_champs_spéciaux. %0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.=%0_entrées_trouvées._Pour_réduire_la_charge_du_serveur,_seulement_%1_seront_téléchargées. A_string_with_that_label_already_exists=Une_chaine_avec_cette_étiquette_existe_déja @@ -1166,7 +1166,7 @@ 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'. -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 +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 Please_open_or_start_a_new_database_before_searching=S'il_vous_plait,_ouvrez_ou_créer_une_nouvelle_base_avant_la_recherche @@ -1267,7 +1267,7 @@ Open_%0_file=Ouvrir_le_fichier_%0 Cannot_delete_file=Le_fichier_ne_peut_pas_être_supprimé Convert=Convertir Delete_local_file=Supprimer_le_fichier_local -File_permission_error=Erreur_due_AUX_permissions_du_fichier +File_permission_error=Erreur_due_aux_permissions_du_fichier Help_on_Name_Formatting=Aide_sur_le_formatage_des_noms Normalize_to_BibTeX_name_format=Normaliser_au_format_de_nom_BibTeX Path_to_%0=Chemin_vers_%0 @@ -1511,7 +1511,7 @@ Cleans_up_LaTeX_code.=Nettoyer_le_code_LaTeX. Converts_HTML_code_to_LaTeX_code.=Convertit_le_code_HTML_en_code_LaTeX. Converts_LaTeX_encoding_to_Unicode_characters.=Convertit_l'encodage_LaTeX_en_caractères_Unicode. Converts_Unicode_characters_to_LaTeX_encoding.=Convertit_les_caractères_Unicode_en_encodage_LaTeX. -Converts_ordinals_to_LaTeX_superscripts.=Convertit_les_numéros_ordinAUX_en_exposants_LaTeX. +Converts_ordinals_to_LaTeX_superscripts.=Convertit_les_numéros_ordinaux_en_exposants_LaTeX. HTML_to_LaTeX=HTML_vers_LaTeX LaTeX_cleanup=Nettoyage_LaTeX LaTeX_to_Unicode=LaTeX_vers_Unicode @@ -1525,7 +1525,7 @@ Normalize_page_numbers=Harmonise_les_numéros_de_pages Normalize_pages_to_BibTeX_standard.=Harmonise_les_pages_au_standard_BibTeX. Normalizes_lists_of_persons_to_the_BibTeX_standard.=Harmonise_les_listes_de_personnes_au_standard_BibTeX. Normalizes_the_date_to_ISO_date_format.=Harmonise_la_date_au_format_de_date_ISO. -Ordinals_to_LaTeX_superscript=Numéros_ordinAUX_vers_exposants_LaTeX +Ordinals_to_LaTeX_superscript=Numéros_ordinaux_vers_exposants_LaTeX Protect_terms=Protéger_les_termes Remove_enclosing_braces=Supprimer_les_paires_d'accolades Removes_braces_encapsulating_the_complete_field_content.=Supprimer_les_accolades_autour_d'un_contenu_de_champ_entier. diff --git a/src/main/resources/l10n/JabRef_in.properties b/src/main/resources/l10n/JabRef_in.properties index 6ef36dc5847..559f6ff7cc0 100644 --- a/src/main/resources/l10n/JabRef_in.properties +++ b/src/main/resources/l10n/JabRef_in.properties @@ -45,7 +45,7 @@ All_entries_of_this_type_will_be_declared_typeless._Continue?=Semua_entri_tipe_i All_fields=Semua_bidang All_subgroups_(recursively)=Semua_anak_grup_(rekursif) An_exception_occurred_while_accessing_'%0'=Kesalahan_terjadi_ketika_mengakses_'%0' -An_SAX_exception_occurred_while_parsing_'%0'\:=SAXException_terjadi_ketika_mengurai_'%0'\: +A_SAX_exception_occurred_while_parsing_'%0'\:=SAXException_terjadi_ketika_mengurai_'%0'\: and=dan and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=dan_kelas_tersebut_harus_dinyatakan_di_lokasi_kelas_waktu_menjalankan_JabRef. any_field_that_matches_the_regular_expression_%0=bidang_yang_sesuai_dengan_ekspresi_reguler_%0 @@ -415,7 +415,7 @@ Limit_to_selected_entries=Batasi_ke_entri_pilihan Link=Tautan Link_local_file=Tautan_berkas_lokal Link_to_file_%0=Tautan_ke_berkas_%0 -Listen_for_remote_operation_on_port=Menggunakan_operasi_JARak_jauh_pada_port +Listen_for_remote_operation_on_port=Menggunakan_operasi_jarak_jauh_pada_port Load_and_Save_preferences_from/to_jabref.xml_on_start-up_(memory_stick_mode)=Muat_dan_Simpan_preferensi_dari/ke_jabref.xml_ketika_memulai_(mode_pena_simpan) Look_and_feel=Penampilan_artistik Main_file_directory=Lokasi_berkas_utama @@ -555,7 +555,7 @@ References_found=Acuan_ditemukan Refine_supergroup\:_When_selected,_view_entries_contained_in_both_this_group_and_its_supergroup=Perbaiki_supergrup\:_Ketika_dipilih,_lihat_entri_yang_ada_di_grup_ini_dan_supergrup regular_expression=Ekspresi_reguler Remember_these_entry_types?=Ingat_tipe_entri_ini? -Remote_operation=Penggunaan_JARak_jauh +Remote_operation=Penggunaan_jarak_jauh Remote_server_port=Port_server_jauh Remove=Hapus Remove_subgroups=Hapus_semua_sub-grup diff --git a/src/main/resources/l10n/JabRef_it.properties b/src/main/resources/l10n/JabRef_it.properties index 68dc81ea197..813f82741ad 100644 --- a/src/main/resources/l10n/JabRef_it.properties +++ b/src/main/resources/l10n/JabRef_it.properties @@ -45,7 +45,7 @@ All_entries_of_this_type_will_be_declared_typeless._Continue?=Tutte_le_voci_di_q All_fields=Tutti_i_campi All_subgroups_(recursively)=Tutti_i_sottogruppi_(ricorsivamente) An_exception_occurred_while_accessing_'%0'=Eccezione_durante_l'accesso_a_'%0' -An_SAX_exception_occurred_while_parsing_'%0'\:=Eccezione_SAX_durante_l'elaborazione_di_'%0'\: +A_SAX_exception_occurred_while_parsing_'%0'\:=Eccezione_SAX_durante_l'elaborazione_di_'%0'\: and=e and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=e_la_classe_deve_essere_nel_tuo_"classpath"_al_successivo_avvio_di_JabRef. any_field_that_matches_the_regular_expression_%0=qualsiasi_campo_che_corrisponda_all'espressione_regolare_%0 diff --git a/src/main/resources/l10n/JabRef_ja.properties b/src/main/resources/l10n/JabRef_ja.properties index 5128a6eba60..4e0902e9f95 100644 --- a/src/main/resources/l10n/JabRef_ja.properties +++ b/src/main/resources/l10n/JabRef_ja.properties @@ -86,7 +86,7 @@ All_fields=全フィールド All_subgroups_(recursively)=全下層グループ(再帰的に) An_exception_occurred_while_accessing_'%0'=「%0」にアクセス中に例外エラーが発生しました\: -An_SAX_exception_occurred_while_parsing_'%0'\:=「%0」を解析中にSAX例外エラーが発生しました\: +A_SAX_exception_occurred_while_parsing_'%0'\:=「%0」を解析中にSAX例外エラーが発生しました\: and=および diff --git a/src/main/resources/l10n/JabRef_nl.properties b/src/main/resources/l10n/JabRef_nl.properties index b936085e749..4c184665673 100644 --- a/src/main/resources/l10n/JabRef_nl.properties +++ b/src/main/resources/l10n/JabRef_nl.properties @@ -86,7 +86,7 @@ All_fields=Alle_velden All_subgroups_(recursively)=Alle_subgroepen_(recursief) An_exception_occurred_while_accessing_'%0'= -An_SAX_exception_occurred_while_parsing_'%0'\:= +A_SAX_exception_occurred_while_parsing_'%0'\:= and=en diff --git a/src/main/resources/l10n/JabRef_no.properties b/src/main/resources/l10n/JabRef_no.properties index f285029508a..74de4b189aa 100644 --- a/src/main/resources/l10n/JabRef_no.properties +++ b/src/main/resources/l10n/JabRef_no.properties @@ -93,7 +93,7 @@ All_subgroups_(recursively)=Alle_undergrupper_(rekursivt) An_exception_occurred_while_accessing_'%0'=En_feil_oppsto_ved_lesing_av_'%0' -An_SAX_exception_occurred_while_parsing_'%0'\:=En_SAXException_forekom_ved_lesing_av_'%0'\: +A_SAX_exception_occurred_while_parsing_'%0'\:=En_SAXException_forekom_ved_lesing_av_'%0'\: and=og diff --git a/src/main/resources/l10n/JabRef_pt_BR.properties b/src/main/resources/l10n/JabRef_pt_BR.properties index 7c1259321cf..223f78581a9 100644 --- a/src/main/resources/l10n/JabRef_pt_BR.properties +++ b/src/main/resources/l10n/JabRef_pt_BR.properties @@ -45,7 +45,7 @@ All_entries_of_this_type_will_be_declared_typeless._Continue?=Todas_as_referênc All_fields=Todos_os_campos All_subgroups_(recursively)=Todos_os_subgrupos_(recursivamente) An_exception_occurred_while_accessing_'%0'=Uma_exceção_ocorreu_durante_ao_acesso_a_'%0' -An_SAX_exception_occurred_while_parsing_'%0'\:=Uma_exceção_ocorreu_durante_a_análise_de_'%0' +A_SAX_exception_occurred_while_parsing_'%0'\:=Uma_exceção_ocorreu_durante_a_análise_de_'%0' and=e and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=e_a_classe_deve_estar_disponível_em_seu_classpath_na_próxima_vez_que_você_iniciar_o_JabRef. any_field_that_matches_the_regular_expression_%0=qualquer_campo_que_corresponde_a_expressão_regular_%0 diff --git a/src/main/resources/l10n/JabRef_ru.properties b/src/main/resources/l10n/JabRef_ru.properties index 53fbd637909..e46083fd339 100644 --- a/src/main/resources/l10n/JabRef_ru.properties +++ b/src/main/resources/l10n/JabRef_ru.properties @@ -72,7 +72,7 @@ All_fields=Все_поля All_subgroups_(recursively)=Все_подгруппы_(рекурсивно) An_exception_occurred_while_accessing_'%0'=Исключение_при_доступе_к_'%0' -An_SAX_exception_occurred_while_parsing_'%0'\:=Исключение_SAX_при_анализе_'%0'\: +A_SAX_exception_occurred_while_parsing_'%0'\:=Исключение_SAX_при_анализе_'%0'\: and=и diff --git a/src/main/resources/l10n/JabRef_sv.properties b/src/main/resources/l10n/JabRef_sv.properties index 66bbfc2eb58..2d52023a0d8 100644 --- a/src/main/resources/l10n/JabRef_sv.properties +++ b/src/main/resources/l10n/JabRef_sv.properties @@ -71,7 +71,7 @@ Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)= An_error_occurred_while_fetching_from_ADS_(%0)\:= An_error_occurred_while_parsing_abstract=Ett_fel_inträffade_när_sammanfattningen_tolkades An_exception_occurred_while_accessing_'%0'= -An_SAX_exception_occurred_while_parsing_'%0'\:= +A_SAX_exception_occurred_while_parsing_'%0'\:= An_autosave_file_was_found_for_this_database._This_could_indicate_that_JabRef_did_not_shut_down_cleanly_last_time_the_file_was_used.=En_automatiskt_sparad_fil_hittades_för_databasen._Det_kan_betyda_att_JabRef_inte_avslutades_korrekt_senaste_gången_databasen_användes. Appearance=Utseende Append=Lägg_till diff --git a/src/main/resources/l10n/JabRef_tr.properties b/src/main/resources/l10n/JabRef_tr.properties index 1067567f4b1..eb61e17cd31 100644 --- a/src/main/resources/l10n/JabRef_tr.properties +++ b/src/main/resources/l10n/JabRef_tr.properties @@ -45,7 +45,7 @@ All_entries_of_this_type_will_be_declared_typeless._Continue?=Bu_türeden_tüm_g All_fields=Tüm_alanlar All_subgroups_(recursively)=Tüm_alt-gruplar_(özyinelemeli) An_exception_occurred_while_accessing_'%0'='%0''e_erişilirken_bir_istisna_oluştu -An_SAX_exception_occurred_while_parsing_'%0'\:='%0'_ayrıştırılırken_bir_SAXİstisnası_oluştu\: +A_SAX_exception_occurred_while_parsing_'%0'\:='%0'_ayrıştırılırken_bir_SAXİstisnası_oluştu\: and=ve and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=ve_bir_dahaki_sefer_JabRef'i_başlattığınızda_sınıf_sınıf_yolunuzda_bulunmalıdır. any_field_that_matches_the_regular_expression_%0=%0_düzenli_ifadesine_uyan_herhangi_bir_alan diff --git a/src/main/resources/l10n/JabRef_vi.properties b/src/main/resources/l10n/JabRef_vi.properties index 98a591b8a32..a3a1654fa35 100644 --- a/src/main/resources/l10n/JabRef_vi.properties +++ b/src/main/resources/l10n/JabRef_vi.properties @@ -86,7 +86,7 @@ All_fields=Tất_cả_các_trường All_subgroups_(recursively)=Tất_cả_các_nhóm_con_(đệ_quy) An_exception_occurred_while_accessing_'%0'=Một_lỗi_xảy_ra_khi_đang_truy_cập_'%0' -An_SAX_exception_occurred_while_parsing_'%0'\:=Một_lỗi_SAXException_xảy_ra_khi_đang_phân_tách_'%0'\: +A_SAX_exception_occurred_while_parsing_'%0'\:=Một_lỗi_SAXException_xảy_ra_khi_đang_phân_tách_'%0'\: and=và diff --git a/src/main/resources/l10n/JabRef_zh.properties b/src/main/resources/l10n/JabRef_zh.properties index c6fe4f81590..cd5563cf7d6 100644 --- a/src/main/resources/l10n/JabRef_zh.properties +++ b/src/main/resources/l10n/JabRef_zh.properties @@ -48,7 +48,7 @@ All_fields=所有域 All_subgroups_(recursively)=所有子分组(递归地) Always_reformat_BIB_file_on_save_and_export=当保存和导出时重新格式化_BIB_文件 An_exception_occurred_while_accessing_'%0'=当访问_'%0'_时发生了一个异常 -An_SAX_exception_occurred_while_parsing_'%0'\:=当解析'%0'时发生了一个_SAXException\: +A_SAX_exception_occurred_while_parsing_'%0'\:=当解析'%0'时发生了一个_SAXException\: An_autosave_file_was_found_for_this_database._This_could_indicate_that_JabRef_did_not_shut_down_cleanly_last_time_the_file_was_used.=发现了当前数据库的一个自动保存文件. 这可能意味着上次打开此文件时_JabRef_没有正常退出. Appearance=外观 Append=追加