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

Fix #3225 #3330

Merged
merged 2 commits into from
Oct 21, 2017
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private static Multimap<String, ValueChecker> getAllMap(BibDatabaseContext datab
fieldCheckers.put(field, new AbbreviationChecker());
}
for (String field : InternalBibtexFields.getPersonNameFields()) {
fieldCheckers.put(field, new PersonNamesChecker());
fieldCheckers.put(field, new PersonNamesChecker(databaseContext));
}
fieldCheckers.put(FieldName.BOOKTITLE, new BooktitleChecker());
fieldCheckers.put(FieldName.TITLE, new BracketChecker());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@
import java.util.Optional;

import org.jabref.logic.l10n.Localization;
import org.jabref.model.database.BibDatabaseContext;
import org.jabref.model.database.BibDatabaseMode;
import org.jabref.model.entry.AuthorList;
import org.jabref.model.strings.StringUtil;

public class PersonNamesChecker implements ValueChecker {

private final BibDatabaseMode bibMode;

public PersonNamesChecker(BibDatabaseContext databaseContext) {
this.bibMode = databaseContext.getMode();
}

@Override
public Optional<String> checkValue(String value) {
if (StringUtil.isBlank(value)) {
Expand All @@ -28,7 +36,7 @@ public Optional<String> checkValue(String value) {
AuthorList authorList = AuthorList.parse(value);
if (!authorList.getAsLastFirstNamesWithAnd(false).equals(value)
&& !authorList.getAsFirstLastNamesWithAnd().equals(value)) {
return Optional.of(Localization.lang("Names are not in the standard BibTeX format."));
return Optional.of(Localization.lang("Names are not in the standard %0 format.", bibMode.getFormattedName()));
}

return Optional.empty();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=Teile_anonyme_Statistiken
Telemetry\:_Help_make_JabRef_better=Telemetrie\:_Helfen_Sie,_JabRef_zu_verbessern
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=Zur_Verbesserung_der_Benutzererfahrung_würden_wir_gerne_anonyme_Statistiken_über_die_Features_sammeln,_die_Sie_benutzen._Wir_zeichnen_nur_auf,_welche_Features_Sie_nutzen_und_wie_oft_Sie_diese_benutzen._Es_werden_keinerlei_persönliche_Informationen_über_Sie_oder_den_Inhalt_Ihrer_Bibliografieeinträge_gesammelt._Die_einmal_erlaubte_Datenaufzeichnnung_kann_jederzeit_unter_Optionen->Einstellungen->Allgemein_deaktiviert_werden.
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=Diese_Datei_wurde_automatisch_gefunden._Möchten_Sie_sie_dem_Eintrag_zuordnen?
Names_are_not_in_the_standard_BibTeX_format.=Namen_entsprechen_nicht_dem_Standard_BibTeX-Format
Names_are_not_in_the_standard_%0_format.=Namen_entsprechen_nicht_dem_Standard_%0-Format

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=Die_ausgewählte_Datei_unwiderruflich_löschen_oder_nur_vom_Eintrag_entfernen?_Drücken_sie_Entfernen,_um_die_Datei_von_der_Festplatte_zu_löschen.
Delete_'%0'=Lösche_Datei_'%0'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_el.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=Share_anonymous_statistics
Telemetry\:_Help_make_JabRef_better=Telemetry\:_Help_make_JabRef_better
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?
Names_are_not_in_the_standard_BibTeX_format.=Names_are_not_in_the_standard_BibTeX_format.
Names_are_not_in_the_standard_%0_format.=Names_are_not_in_the_standard_%0_format.

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.
Delete_'%0'=Delete_'%0'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=Compartir_estadísticas_anónimas
Telemetry\:_Help_make_JabRef_better=Telemetría:\_Ayude_a_mejorar_JabRef
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=Para_mejorar_la_experiencia_de_usuario,_nos_gustaría_recopilar_estadísitcas_anónimas_sobre_las_funcionalidades_de_JabRef_que_usa._Sólo_se_registrará_qué_funcionalidades_emplea_y_con_qué_frecuencia._No_se_recopilará_ningún_dato_personal_ni_el_contenido_de_los_elementos_bibliográficos._Si_decide_permitir_la_recopilación_de_datos,_podrá_deshabilitarlo_posteriormente_en_Opciones_->_Preferencias_->General
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_fa.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=Partager_anonymement_les_statistiques
Telemetry\:_Help_make_JabRef_better=Télémétrie_:_contribue_à_l'amélioration_de_JabRef
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=Pour_améliorer_l'ergonomie_pour_l'utilisateur,_nous_souhaiterions_collecter_des_statistiques_anonymisées_sur_les_fonctionnalité_que_vous_utilisez._Nous_n'enregistrerons_que_les_fonctionnalités_que_vous_utilisés_et_leur_fréquence_d'utiliations._Nous_n'enregistrerons_jamais_des_données_personneles_ni_le_contenu_de_vos_entrées_bibliographiques._Si_vous_choisissez_d'autoriser_la_collecte_des_données,_vous_pourrez_plus_tard_l'interdire_via_Options_->_Préférences_->_Géneral.
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=Ce_fichier_a_été_trouvé_automatiquement._Voulez-vous_le_lier_à_cette_entrée_?
Names_are_not_in_the_standard_BibTeX_format.=Des_noms_ne_sont_pas_au_standard_du_format_BibTeX.
Names_are_not_in_the_standard_%0_format.=Des_noms_ne_sont_pas_au_standard_du_format_%0.

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=Supprimer_définitivement_le_ficher_sélectionné_du_disque,_ou_effacer_simplement_le_fichier_de_cette_entrée_?_Presser_Suppr_supprimera_définitivement_ce_fichier_du_disque.
Delete_'%0'=Supprimer_'%0'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_in.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=Condividi_statistiche_anonime
Telemetry\:_Help_make_JabRef_better=Telemetria\:_Aiuta_a_migliorare_JabRef
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=Per_migliorare_l'esperienza_utente,_vorremmo_raccogliere_delle_statistiche_anonime_sulle_funzioni_che_usi._Registreremo_solo_quali_funzioni_accedi_e_quanto_spesso._Non_registreremo_dati_personali_né_il_contenuto_delle_voci_bibliografiche._Se_scegli_di_permettere_la_raccolta_dei_dati,_potrai_disabilitarla_successivamente_da_Opzioni_->_Preferenze_->_Generale.
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=Questo_file_è_stato_trovato_automaticamente._Vuoi_collegarlo_a_questa_voce?
Names_are_not_in_the_standard_BibTeX_format.=I_nomi_non_sono_nel_formato_standard_BibTeX.
Names_are_not_in_the_standard_%0_format.=I_nomi_non_sono_nel_formato_standard_%0.

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=Cancello_permanentemente_i_file_selezionati_dal_disco,_o_rimuovo_solo_il_file_dalla_voce?_Premendo_Cancella_il_file_verrà_cancellato_permanentemente_dal_disco.
Delete_'%0'=Cancella_'%0'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_ja.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=匿名統計を共有
Telemetry\:_Help_make_JabRef_better=遠隔計測:JabRefの改善に貢献
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=ユーザー・エクスペリエンスを改善するために,あなたが使用する機能の匿名統計を収集したいと考えています.あなたがどの機能にアクセスし,それをどれくらい頻繁に使ったかのみを記録します.個人的データや文献項目の内容は収集しません.データ収集を許可した場合でも,オプション→設定→一般から後で無効にすることができます.
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=このファイルは自動的に検出されました.ファイルをこの項目にリンクしますか?
Names_are_not_in_the_standard_BibTeX_format.=名称がBibTeX標準形式ではありません
Names_are_not_in_the_standard_%0_format.=名称が%0標準形式ではありません

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=選択したファイルをディスクから永久に削除しますか,それとも項目からファイルを除去するだけにしますか?削除を押すとディスクからファイルを永久に削除することになります.
Delete_'%0'=「%0」を削除
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 @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_no.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_pt_BR.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_ru.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_sv.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=
Telemetry\:_Help_make_JabRef_better=
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=
Names_are_not_in_the_standard_BibTeX_format.=
Names_are_not_in_the_standard_%0_format.=

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=
Delete_'%0'=
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/l10n/JabRef_tr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ Share_anonymous_statistics=Anonim_istatistikleri_paylaş
Telemetry\:_Help_make_JabRef_better=Telemetri\:JabRef'i_daha_iyi_yapmaya_yardım_et
To_improve_the_user_experience,_we_would_like_to_collect_anonymous_statistics_on_the_features_you_use._We_will_only_record_what_features_you_access_and_how_often_you_do_it._We_will_neither_collect_any_personal_data_nor_the_content_of_bibliographic_items._If_you_choose_to_allow_data_collection,_you_can_later_disable_it_via_Options_->_Preferences_->_General.=Kullanıcı_deneyimini_geliştirmek_için,_kullandığınız_özelliklerle_ilgili_anonim_istatistikleri_toplamak_istiyoruz._Yalnızca_kullandığınız_özellikleri_ve_kullanma_sıklığını_kaydedeceğiz._Kişisel_verileri_ya_da_bibliyografik_ögelerin_içeriğini_toplamayacağız._Eğer_veri_toplamaya_izin_vermeyi_seçerseniz,_bunu_daha_sonra_Seçenekler_->_Tercihler_aracılığıyla_etkisizleştirebilirsiniz_-
This_file_was_found_automatically._Do_you_want_to_link_it_to_this_entry?=Bu_dosya_otomatik_olarak_bulundu._Bu_girdiye_bağlantılamak_ister_misiniz?
Names_are_not_in_the_standard_BibTeX_format.=İsimler,_standart_BibTeX_biçeminde_değil.
Names_are_not_in_the_standard_%0_format.=İsimler,_standart_%0_biçeminde_değil.

Delete_the_selected_file_permanently_from_disk,_or_just_remove_the_file_from_the_entry?_Pressing_Delete_will_delete_the_file_permanently_from_disk.=Seçili_dosyayı_diskten_kalıcı_olarak_sil,_ya_da_sadece_dosyayı_girdiden_kaldır?_Sile_basmak_dosyayı_diskten_kalıcı_olarak_silecek.
Delete_'%0'='%0'_Sil
Expand Down
Loading