diff --git a/CHANGELOG b/CHANGELOG index cf8159cadb0..5d1bfa17f4a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ [master] - Fixes bug when having added and then removed a personal journal list, an exception is always shown on startup + - Removes legacy options to sync files in the "pdf" or "ps" field - Removes button to merge entries and keep the old ones. - Removes non-compact rank symbols in favor of compact rank - All duplicate whitespaces / tabs / newlines are now removed from non-multiline fields diff --git a/src/main/java/net/sf/jabref/external/AutoSetExternalFileForEntries.java b/src/main/java/net/sf/jabref/external/AutoSetExternalFileForEntries.java deleted file mode 100644 index 2354428f096..00000000000 --- a/src/main/java/net/sf/jabref/external/AutoSetExternalFileForEntries.java +++ /dev/null @@ -1,349 +0,0 @@ -/* Copyright (C) 2003-2011 JabRef contributors. - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ -package net.sf.jabref.external; - -import java.awt.BorderLayout; -import java.awt.event.ActionEvent; -import java.awt.event.ActionListener; -import java.io.File; -import java.util.Collection; - -import javax.swing.*; - -import net.sf.jabref.gui.BasePanel; -import net.sf.jabref.gui.FocusRequester; -import net.sf.jabref.gui.OpenFileFilter; -import net.sf.jabref.gui.worker.AbstractWorker; -import net.sf.jabref.gui.fieldeditors.TextField; -import net.sf.jabref.logic.l10n.Localization; -import net.sf.jabref.model.entry.BibtexEntry; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - -import net.sf.jabref.*; -import net.sf.jabref.gui.AttachFileDialog; -import net.sf.jabref.gui.undo.NamedCompound; -import net.sf.jabref.gui.undo.UndoableFieldChange; - -import com.jgoodies.forms.builder.ButtonBarBuilder; -import com.jgoodies.forms.builder.FormBuilder; -import com.jgoodies.forms.layout.FormLayout; - -import net.sf.jabref.logic.util.io.FileUtil; -import net.sf.jabref.util.Util; - -/** - * This action goes through all selected entries in the BasePanel, and attempts to autoset the given external file (pdf, - * ps, ...) based on the same algorithm used for the "Auto" button in EntryEditor. - */ -public class AutoSetExternalFileForEntries extends AbstractWorker { - - private final String fieldName; - private final BasePanel panel; - private BibtexEntry[] sel; - private OptionsDialog optDiag; - - private static final Log log = LogFactory.getLog(AutoSetExternalFileForEntries.class); - - private final Object[] brokenLinkOptions = { - // @formatter:off - Localization.lang("Ignore"), - Localization.lang("Assign new file"), - Localization.lang("Clear field"), - Localization.lang("Quit synchronization")}; - // @formatter:on - private boolean goOn = true; - private boolean autoSet = true; - private boolean overWriteAllowed = true; - private boolean checkExisting = true; - - private int entriesChanged; - - - public AutoSetExternalFileForEntries(BasePanel panel, String fieldName) { - this.fieldName = fieldName; - this.panel = panel; - } - - @Override - public void init() { - - Collection col = panel.database().getEntries(); - sel = col.toArray(new BibtexEntry[col.size()]); - - // Ask about rules for the operation: - if (optDiag == null) { - optDiag = new OptionsDialog(panel.frame(), fieldName); - } - Util.placeDialog(optDiag, panel.frame()); - optDiag.setVisible(true); - if (optDiag.canceled()) { - goOn = false; - return; - } - autoSet = !optDiag.autoSetNone.isSelected(); - overWriteAllowed = optDiag.autoSetAll.isSelected(); - checkExisting = optDiag.checkLinks.isSelected(); - - panel.output(Localization.lang("Synchronizing %0 links...", fieldName.toUpperCase())); - } - - @Override - public void run() { - if (!goOn) { - panel.output(Localization.lang("No entries selected.")); - return; - } - panel.frame().setProgressBarValue(0); - panel.frame().setProgressBarVisible(true); - int weightAutoSet = 10; // autoSet takes 10 (?) times longer than checkExisting - int progressBarMax = (autoSet ? weightAutoSet * sel.length : 0) - + (checkExisting ? sel.length : 0); - panel.frame().setProgressBarMaximum(progressBarMax); - int progress = 0; - entriesChanged = 0; - int brokenLinks = 0; - NamedCompound ce = new NamedCompound(Localization.lang("Autoset %0 field", fieldName)); - - final OpenFileFilter off = Util.getFileFilterForField(fieldName); - - ExternalFilePanel extPan = new ExternalFilePanel(fieldName, panel.metaData(), null, null, off); - TextField editor = new TextField(fieldName, "", false); - - // Find the default directory for this field type: - String[] dirs = panel.metaData().getFileDirectory(fieldName); - - // First we try to autoset fields - if (autoSet) { - for (BibtexEntry aSel : sel) { - progress += weightAutoSet; - panel.frame().setProgressBarValue(progress); - - final String old = aSel.getField(fieldName); - // Check if a extension is already set, and if so, if we are allowed to overwrite it: - if ((old != null) && !old.equals("") && !overWriteAllowed) { - continue; - } - extPan.setEntry(aSel, panel.getDatabase()); - editor.setText(old != null ? old : ""); - JabRefExecutorService.INSTANCE.executeAndWait(extPan.autoSetFile(fieldName, editor)); - // If something was found, entriesChanged it: - if (!editor.getText().equals("") && !editor.getText().equals(old)) { - // Store an undo edit: - //System.out.println("Setting: "+sel[i].getCiteKey()+" "+editor.getText()); - ce.addEdit(new UndoableFieldChange(aSel, fieldName, old, editor.getText())); - aSel.setField(fieldName, editor.getText()); - entriesChanged++; - } - } - } - //System.out.println("Done setting"); - // The following loop checks all external links that are already set. - if (checkExisting) { - mainLoop: for (BibtexEntry aSel : sel) { - panel.frame().setProgressBarValue(progress++); - final String old = aSel.getField(fieldName); - // Check if a extension is set: - if ((old != null) && !old.equals("")) { - // Get an absolute path representation: - File file = FileUtil.expandFilename(old, dirs); - - if ((file == null) || !file.exists()) { - - int answer = - JOptionPane.showOptionDialog(panel.frame(), - Localization.lang("Could not find file '%0'
linked from entry '%1'", - new String[]{old, aSel.getCiteKey()}), - Localization.lang("Broken link"), - JOptionPane.YES_NO_CANCEL_OPTION, - JOptionPane.QUESTION_MESSAGE, null, brokenLinkOptions, brokenLinkOptions[0] - ); - switch (answer) { - case 1: - // Assign new file. - AttachFileDialog afd = new AttachFileDialog(panel.frame(), - panel.metaData(), aSel, fieldName); - Util.placeDialog(afd, panel.frame()); - afd.setVisible(true); - if (!afd.cancelled()) { - ce.addEdit(new UndoableFieldChange(aSel, fieldName, old, afd.getValue())); - aSel.setField(fieldName, afd.getValue()); - entriesChanged++; - } - break; - case 2: - // Clear field - ce.addEdit(new UndoableFieldChange(aSel, fieldName, old, null)); - aSel.setField(fieldName, null); - entriesChanged++; - break; - case 3: - // Cancel - break mainLoop; - } - brokenLinks++; - } - - } - } - } - - //log brokenLinks if some were found - if (brokenLinks > 0) { - AutoSetExternalFileForEntries.log.warn(Localization.lang("Found %0 broken links", brokenLinks + "")); - } - - if (entriesChanged > 0) { - // Add the undo edit: - ce.end(); - panel.undoManager.addEdit(ce); - } - } - - @Override - public void update() { - if (!goOn) { - return; - } - - panel.output(Localization.lang("Finished synchronizing %0 links. Entries changed%c %1.", - new String[]{fieldName.toUpperCase(), String.valueOf(entriesChanged)})); - panel.frame().setProgressBarVisible(false); - if (entriesChanged > 0) { - panel.markBaseChanged(); - } - } - - - class OptionsDialog extends JDialog { - - private static final long serialVersionUID = 1L; - final JRadioButton autoSetUnset; - final JRadioButton autoSetAll; - final JRadioButton autoSetNone; - final JCheckBox checkLinks; - final JButton ok = new JButton(Localization.lang("Ok")); - final JButton cancel = new JButton(Localization.lang("Cancel")); - JLabel description; - private boolean canceled = true; - private final String fieldName; - - - public OptionsDialog(JFrame parent, String fieldName) { - super(parent, Localization.lang("Synchronize %0 links", fieldName.toUpperCase()), true); - final String fn = fieldName.toUpperCase(); - this.fieldName = fieldName; - ok.addActionListener(new ActionListener() { - - @Override - public void actionPerformed(ActionEvent e) { - canceled = false; - dispose(); - } - }); - - Action closeAction = new AbstractAction() { - - private static final long serialVersionUID = 1L; - - - @Override - public void actionPerformed(ActionEvent e) { - dispose(); - } - }; - - cancel.addActionListener(closeAction); - - InputMap im = cancel.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW); - ActionMap am = cancel.getActionMap(); - im.put(Globals.prefs.getKey("Close dialog"), "close"); - am.put("close", closeAction); - - autoSetUnset = new JRadioButton(Localization.lang("Autoset %0 links. Do not overwrite existing links.", fn), true); - autoSetAll = new JRadioButton(Localization.lang("Autoset %0 links. Allow overwriting existing links.", fn), false); - autoSetNone = new JRadioButton(Localization.lang("Do not autoset"), false); - checkLinks = new JCheckBox(Localization.lang("Check existing %0 links", fn), true); - ButtonGroup bg = new ButtonGroup(); - bg.add(autoSetUnset); - bg.add(autoSetNone); - bg.add(autoSetAll); - FormLayout layout = new FormLayout("fill:pref", "pref, 2dlu, pref, 2dlu, pref, pref, pref, 2dlu, pref, 2dlu, pref, 2dlu, pref"); - FormBuilder builder = FormBuilder.create().layout(layout); - description = new JLabel("" + - Localization.lang(//"This function helps you keep your external %0 links up-to-date." + - "Attempt to autoset %0 links for your entries. Autoset works if " - + "a %0 file in your %0 directory or a subdirectory
is named identically to an entry's BibTeX key, plus extension.", fn) - + ""); - - builder.addSeparator(Localization.lang("Autoset")).xy(1, 1); - builder.add(description).xy(1, 3); - builder.add(autoSetUnset).xy(1, 5); - builder.add(autoSetAll).xy(1, 6); - builder.add(autoSetNone).xy(1, 7); - builder.addSeparator(Localization.lang("Check links")).xy(1, 9); - - description = new JLabel("" + - Localization.lang("This makes JabRef look up each %0 link and check if the file exists. If not, you will be given options
to resolve the problem.", fn) - + ""); - builder.add(description).xy(1, 11); - builder.add(checkLinks).xy(1, 13); - builder.addSeparator("").xy(1, 15); - - JPanel main = builder.getPanel(); - main.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); - - ButtonBarBuilder bb = new ButtonBarBuilder(); - bb.addGlue(); - bb.addButton(ok); - bb.addButton(cancel); - bb.addGlue(); - getContentPane().add(main, BorderLayout.CENTER); - getContentPane().add(bb.getPanel(), BorderLayout.SOUTH); - - pack(); - } - - @Override - public void setVisible(boolean visible) { - if (visible) { - canceled = true; - } - - String[] dirs = panel.metaData().getFileDirectory(fieldName); - - if (dirs.length == 0) { - - autoSetNone.setSelected(true); - autoSetNone.setEnabled(false); - autoSetAll.setEnabled(false); - autoSetUnset.setEnabled(false); - } else { - autoSetNone.setEnabled(true); - autoSetAll.setEnabled(true); - autoSetUnset.setEnabled(true); - } - - new FocusRequester(ok); - super.setVisible(visible); - - } - - public boolean canceled() { - return canceled; - } - } -} diff --git a/src/main/java/net/sf/jabref/gui/BasePanel.java b/src/main/java/net/sf/jabref/gui/BasePanel.java index 656d7ae3e7f..b75ca4f2caf 100644 --- a/src/main/java/net/sf/jabref/gui/BasePanel.java +++ b/src/main/java/net/sf/jabref/gui/BasePanel.java @@ -1352,8 +1352,6 @@ public void action() { actions.put(Actions.ABBREVIATE_ISO, new AbbreviateAction(this, true)); actions.put(Actions.ABBREVIATE_MEDLINE, new AbbreviateAction(this, false)); actions.put(Actions.UNABBREVIATE, new UnabbreviateAction(this)); - actions.put(Actions.AUTO_SET_PDF, new AutoSetExternalFileForEntries(this, "pdf")); - actions.put(Actions.AUTO_SET_PS, new AutoSetExternalFileForEntries(this, "ps")); actions.put(Actions.AUTO_SET_FILE, new SynchronizeFileField(this)); actions.put(Actions.BACK, (BaseAction) BasePanel.this::back); diff --git a/src/main/java/net/sf/jabref/gui/JabRefFrame.java b/src/main/java/net/sf/jabref/gui/JabRefFrame.java index e77848c2f45..184f8d1893a 100644 --- a/src/main/java/net/sf/jabref/gui/JabRefFrame.java +++ b/src/main/java/net/sf/jabref/gui/JabRefFrame.java @@ -364,12 +364,6 @@ public void actionPerformed(ActionEvent e) { private final AbstractAction customFileTypesAction = ExternalFileTypeEditor.getAction(this); AbstractAction exportToClipboard = new GeneralAction("exportToClipboard", Localization.menuTitle("Export selected entries to clipboard")); - private final AbstractAction autoSetPdf = new GeneralAction(Actions.AUTO_SET_PDF, - Localization.menuTitle("Synchronize PDF links"), - prefs.getKey(KeyBinds.SYNCHRONIZE_PDF)); - private final AbstractAction autoSetPs = new GeneralAction(Actions.AUTO_SET_PS, - Localization.menuTitle("Synchronize PS links"), - prefs.getKey(KeyBinds.SYNCHRONIZE_PS)); private final AbstractAction autoSetFile = new GeneralAction(Actions.AUTO_SET_FILE, Localization.lang("Synchronize file links"), Globals.prefs.getKey(KeyBinds.SYNCHRONIZE_FILES)); @@ -1320,8 +1314,6 @@ private void fillMenu() { tools.add(abbreviateMedline); tools.add(unabbreviate); tools.addSeparator(); - checkAndFix.add(autoSetPdf); - checkAndFix.add(autoSetPs); checkAndFix.add(integrityCheckAction); tools.add(checkAndFix); @@ -1535,7 +1527,7 @@ private void initActions() { * openInspire */ openPdf, openUrl, openFolder, openFile, openSpires, /*openInspire,*/togglePreview, dupliCheck, /*strictDupliCheck,*/highlightAll, highlightAny, newEntryAction, plainTextImport, massSetField, manageKeywords, - closeDatabaseAction, switchPreview, integrityCheckAction, autoSetPdf, autoSetPs, + closeDatabaseAction, switchPreview, integrityCheckAction, toggleHighlightAny, toggleHighlightAll, databaseProperties, abbreviateIso, abbreviateMedline, unabbreviate, exportAll, exportSelected, importCurrent, saveAll, dbConnect, dbExport, focusTable)); diff --git a/src/main/java/net/sf/jabref/gui/actions/Actions.java b/src/main/java/net/sf/jabref/gui/actions/Actions.java index 3ef57dc1505..418d986f422 100644 --- a/src/main/java/net/sf/jabref/gui/actions/Actions.java +++ b/src/main/java/net/sf/jabref/gui/actions/Actions.java @@ -10,8 +10,6 @@ public class Actions { public static final String ADD_FILE_LINK = "addFileLink"; public static final String ADD_TO_GROUP = "addToGroup"; public static final String AUTO_SET_FILE = "autoSetFile"; - public static final String AUTO_SET_PDF = "autoSetPdf"; - public static final String AUTO_SET_PS = "autoSetPs"; public static final String BACK = "back"; public static final String CLEANUP = "Cleanup"; public static final String COPY = "copy"; diff --git a/src/main/java/net/sf/jabref/gui/keyboard/KeyBinds.java b/src/main/java/net/sf/jabref/gui/keyboard/KeyBinds.java index 5d8edee277c..ba005226757 100644 --- a/src/main/java/net/sf/jabref/gui/keyboard/KeyBinds.java +++ b/src/main/java/net/sf/jabref/gui/keyboard/KeyBinds.java @@ -97,8 +97,6 @@ public class KeyBinds { public static final String STRING_DIALOG_REMOVE_STRING = "String dialog, remove string"; public static final String SWITCH_PREVIEW_LAYOUT = "Switch preview layout"; public static final String SYNCHRONIZE_FILES = "Synchronize files"; - public static final String SYNCHRONIZE_PDF = "Synchronize PDF"; - public static final String SYNCHRONIZE_PS = "Synchronize PS"; public static final String TOGGLE_ENTRY_PREVIEW = "Toggle entry preview"; public static final String TOGGLE_GROUPS_INTERFACE = "Toggle groups interface"; public static final String UNABBREVIATE = "Unabbreviate"; @@ -181,8 +179,6 @@ public KeyBinds() { keyBindMap.put(SEARCH_ADS, "ctrl shift F6"); keyBindMap.put(NEW_FROM_PLAIN_TEXT, "ctrl shift N"); keyBindMap.put(SYNCHRONIZE_FILES, "ctrl F4"); - keyBindMap.put(SYNCHRONIZE_PDF, "shift F4"); - keyBindMap.put(SYNCHRONIZE_PS, "ctrl shift F4"); keyBindMap.put(FOCUS_ENTRY_TABLE, "ctrl shift E"); keyBindMap.put(ABBREVIATE, "ctrl alt A"); keyBindMap.put(UNABBREVIATE, "ctrl alt shift A"); diff --git a/src/main/java/net/sf/jabref/gui/preftabs/ExternalTab.java b/src/main/java/net/sf/jabref/gui/preftabs/ExternalTab.java index eb66f522554..809987050b5 100644 --- a/src/main/java/net/sf/jabref/gui/preftabs/ExternalTab.java +++ b/src/main/java/net/sf/jabref/gui/preftabs/ExternalTab.java @@ -45,10 +45,8 @@ class ExternalTab extends JPanel implements PrefsTab { private final JabRefFrame frame; - private final JTextField pdfDir; private final JTextField regExpTextField; private final JTextField fileDir; - private final JTextField psDir; private final JTextField emailSubject; private final JTextField citeCommand; @@ -69,8 +67,6 @@ public ExternalTab(JabRefFrame frame, PreferencesDialog prefsDiag, JabRefPrefere this.frame = frame; setLayout(new BorderLayout()); - psDir = new JTextField(25); - pdfDir = new JTextField(25); fileDir = new JTextField(25); bibLocationAsFileDir = new JCheckBox(Localization.lang("Allow file links relative to each bib file's location")); bibLocAsPrimaryDir = new JCheckBox(Localization.lang("Use the bib file location as primary file directory")); @@ -168,32 +164,7 @@ public void itemStateChanged(ItemEvent e) { builder.append(openFoldersOfAttachedFiles); builder.nextLine(); - builder.appendSeparator(Localization.lang("Legacy file fields")); - pan = new JPanel(); - builder.append(pan); - builder.append(new JLabel("" + Localization.lang("Note that these settings are used for the legacy " - + "pdf and ps fields only.
For most users, setting the Main file directory " - + "above should be sufficient.") + ""), 5); - builder.nextLine(); - pan = new JPanel(); - builder.append(pan); - lab = new JLabel(Localization.lang("Main PDF directory") + ':'); - builder.append(lab); - builder.append(pdfDir); - browse = BrowseAction.buildForDir(this.frame, pdfDir); - builder.append(new JButton(browse)); - builder.nextLine(); - - pan = new JPanel(); - builder.append(pan); - lab = new JLabel(Localization.lang("Main PS directory") + ':'); - builder.append(lab); - builder.append(psDir); - browse = BrowseAction.buildForDir(this.frame, psDir); - builder.append(new JButton(browse)); - builder.nextLine(); builder.appendSeparator(Localization.lang("External programs")); - builder.nextLine(); JPanel butpan = new JPanel(); @@ -239,8 +210,6 @@ public void actionPerformed(ActionEvent event) { @Override public void setValues() { - pdfDir.setText(prefs.get("pdfDirectory")); - psDir.setText(prefs.get("psDirectory")); fileDir.setText(prefs.get(Globals.FILE_FIELD + "Directory")); bibLocationAsFileDir.setSelected(prefs.getBoolean(JabRefPreferences.BIB_LOCATION_AS_FILE_DIR)); bibLocAsPrimaryDir.setSelected(prefs.getBoolean(JabRefPreferences.BIB_LOC_AS_PRIMARY_DIR)); @@ -272,8 +241,6 @@ public void storeSettings() { } // We should maybe do some checking on the validity of the contents? - prefs.put("pdfDirectory", pdfDir.getText()); - prefs.put("psDirectory", psDir.getText()); prefs.put(Globals.FILE_FIELD + "Directory", fileDir.getText()); prefs.putBoolean(JabRefPreferences.BIB_LOCATION_AS_FILE_DIR, bibLocationAsFileDir.isSelected()); prefs.putBoolean(JabRefPreferences.BIB_LOC_AS_PRIMARY_DIR, bibLocAsPrimaryDir.isSelected()); diff --git a/src/main/resources/l10n/Menu_da.properties b/src/main/resources/l10n/Menu_da.properties index 1f1dbefb5d9..a4abfd1186d 100644 --- a/src/main/resources/l10n/Menu_da.properties +++ b/src/main/resources/l10n/Menu_da.properties @@ -73,8 +73,6 @@ Set_up_general_fields=Administrer_&generelle_felter Show_error_console=Vis_fejlkonsol Sort_tabs=Sorter_faneblade Switch_preview_layout=&Skift_layout_p\u00e5_forh\u00e5ndsvisning -Synchronize_PDF_links=Synkroniser_PDF-links -Synchronize_PS_links=Synkroniser_PS-links Tab-separated_file=&Tab.-separeret_fil Toggle_entry_preview=&Vis/skjul_forh\u00e5ndsvisning Toggle_groups_interface=Vis/skjul_&grupperingspanel diff --git a/src/main/resources/l10n/Menu_de.properties b/src/main/resources/l10n/Menu_de.properties index 9c46bcbcd15..bc112a8d8b8 100644 --- a/src/main/resources/l10n/Menu_de.properties +++ b/src/main/resources/l10n/Menu_de.properties @@ -154,9 +154,6 @@ Sort_tabs=Tabs_&sortieren Switch_preview_layout=&Layout_der_Vorschau_wechseln -Synchronize_PDF_links=&PDF-Links_synchronisieren - -Synchronize_PS_links=P&S_Links_synchronisieren # Export menu Tab-separated_file=Mit_&Tabulatoren_unterteilte_Datei diff --git a/src/main/resources/l10n/Menu_en.properties b/src/main/resources/l10n/Menu_en.properties index f0bb9d102c5..8f3c49bddff 100644 --- a/src/main/resources/l10n/Menu_en.properties +++ b/src/main/resources/l10n/Menu_en.properties @@ -85,8 +85,6 @@ Show_error_console=Show_error_console Sort_tabs=&Sort_tabs Switch_preview_layout=&Switch_preview_layout -Synchronize_PDF_links=Synchronize_PDF_links -Synchronize_PS_links=Synchronize_PS_links # Export menu Tab-separated_file=&Tab-separated_file Toggle_entry_preview=&Toggle_entry_preview diff --git a/src/main/resources/l10n/Menu_es.properties b/src/main/resources/l10n/Menu_es.properties index 7d47f8ea216..edda313b6bb 100644 --- a/src/main/resources/l10n/Menu_es.properties +++ b/src/main/resources/l10n/Menu_es.properties @@ -88,8 +88,6 @@ Show_error_console=Mostrar_consola_de_error Sort_tabs=&Ordenar_pestañas Switch_preview_layout=&Intercambiar_vista_anterior -Synchronize_PDF_links=Sincronizar_vínculos_a_PDF -Synchronize_PS_links=Sincronizar_vínculos_a_PS #_Export_menu Tab-separated_file=&Archivo_separado_por_tabulador Toggle_entry_preview=A&ctivar/Desactivar_previsualización_de_registro diff --git a/src/main/resources/l10n/Menu_fa.properties b/src/main/resources/l10n/Menu_fa.properties index 6a18e64f0d7..62f93b39423 100644 --- a/src/main/resources/l10n/Menu_fa.properties +++ b/src/main/resources/l10n/Menu_fa.properties @@ -85,8 +85,6 @@ Show_error_console=نمایش_میزفرمان_خطاها Sort_tabs=دسته‌بندی_کردن_سربرگ‌ها Switch_preview_layout=جهش_به_آرایش_قبلی -Synchronize_PDF_links=همگام‌سازی_پیوندهای_PDF -Synchronize_PS_links=همگام‌سازی_پیوندهای_PS # Export menu Tab-separated_file=پرونده‌های_Tab-seperated Toggle_entry_preview=انتصاب_پیش‌نمایش_ورودی‌ها diff --git a/src/main/resources/l10n/Menu_fr.properties b/src/main/resources/l10n/Menu_fr.properties index d7a62790fad..63ce7f7c8df 100644 --- a/src/main/resources/l10n/Menu_fr.properties +++ b/src/main/resources/l10n/Menu_fr.properties @@ -74,8 +74,6 @@ Set_up_general_fields=Configurer_les_champs_&g\u00e9n\u00e9raux Show_error_console=Afficher_la_console_d'erreur Sort_tabs=Trier_les_onglets Switch_preview_layout=Aper\u00e7u_1/Aper\u00e7u_2 -Synchronize_PDF_links=Synchroniser_les_liens_PD&F -Synchronize_PS_links=Synchroniser_les_liens_P&S Tab-separated_file=Fichier_-_s\u00e9paration_par_&tabulation Toggle_entry_preview=&Afficher/masquer_l'aper\u00e7u Toggle_groups_interface=Afficher/masquer_l'interface_des_&groupes diff --git a/src/main/resources/l10n/Menu_in.properties b/src/main/resources/l10n/Menu_in.properties index 4d5c24c7b87..ea421133aa8 100644 --- a/src/main/resources/l10n/Menu_in.properties +++ b/src/main/resources/l10n/Menu_in.properties @@ -103,8 +103,6 @@ Set_up_general_fields=Penetapan_bidang_umum Show_error_console=Tampilkan_pesan_kesalahan Sort_tabs=Urutkan_tab Switch_preview_layout=Ubah_tataletak_tampilan -Synchronize_PDF_links=Sesuaikan_tautan_PDF -Synchronize_PS_links=Sesuaiakan_tautan_PS Tab-separated_file=Berkas_berpemisah_tab Toggle_entry_preview=Tampilkan_entri Toggle_groups_interface=Aktifkan_antarmuka_grup diff --git a/src/main/resources/l10n/Menu_it.properties b/src/main/resources/l10n/Menu_it.properties index 9c2eb27a7b2..07b23253b53 100644 --- a/src/main/resources/l10n/Menu_it.properties +++ b/src/main/resources/l10n/Menu_it.properties @@ -83,8 +83,6 @@ Set_up_general_fields=Configura_i_campi_generali Show_error_console=Mostra_la_console_d'errore Sort_tabs=Ordina_le_schede Switch_preview_layout=S&cambia_layout_anteprima -Synchronize_PDF_links=Sincronizza_i_link_PD&F -Synchronize_PS_links=Sincronizza_i_link_P&S # Export menu Tab-separated_file=File_separati_da_&tabulazioni Toggle_entry_preview=&Visualizza/nascondi_anteprima diff --git a/src/main/resources/l10n/Menu_ja.properties b/src/main/resources/l10n/Menu_ja.properties index b23e8575c3e..c1e012fea65 100644 --- a/src/main/resources/l10n/Menu_ja.properties +++ b/src/main/resources/l10n/Menu_ja.properties @@ -84,8 +84,6 @@ Show_error_console=\u30a8\u30e9\u30fc\u30b3\u30f3\u30bd\u30fc\u30eb\u3092\u8868\ Sort_tabs=\u30bf\u30d6\u3092\u6574\u5e8f(&S) Switch_preview_layout=\u30d7\u30ec\u30d3\u30e5\u30fc\u306e\u30ec\u30a4\u30a2\u30a6\u30c8\u3092\u5207\u66ff(&S) -Synchronize_PDF_links=PDF\u30ea\u30f3\u30af\u3092\u540c\u671f -Synchronize_PS_links=PS\u30ea\u30f3\u30af\u3092\u540c\u671f # Export menu Tab-separated_file=\u30bf\u30d6\u533a\u5207\u308a\u30d5\u30a1\u30a4\u30eb(&T) Toggle_entry_preview=\u9805\u76ee\u30d7\u30ec\u30d3\u30e5\u30fc\u3092\u5165\u5207(&T) diff --git a/src/main/resources/l10n/Menu_nl.properties b/src/main/resources/l10n/Menu_nl.properties index 287cb358c4d..6268d776438 100644 --- a/src/main/resources/l10n/Menu_nl.properties +++ b/src/main/resources/l10n/Menu_nl.properties @@ -154,10 +154,6 @@ Sort_tabs=Tabbladen_sorteren Switch_preview_layout=Toon_voorbeeld_layout -Synchronize_PDF_links=Synchroniseer_PDF_snelkoppelingen - -Synchronize_PS_links=Synchroniseer_PDF_snelkoppelingen - # Export menu Tab-separated_file=Bestand_gescheiden_door_tabbladen diff --git a/src/main/resources/l10n/Menu_no.properties b/src/main/resources/l10n/Menu_no.properties index 83f3677e07c..d97ae1ccc89 100644 --- a/src/main/resources/l10n/Menu_no.properties +++ b/src/main/resources/l10n/Menu_no.properties @@ -83,8 +83,6 @@ Set_up_general_fields=Sett_opp_&generelle_felter Show_error_console=Vis_feilkonsoll Sort_tabs=Sorter_tabs Switch_preview_layout=&Skift_layout_p\u00e5_forh\u00e5ndsvisning -Synchronize_PDF_links=Synkroniser_PDF-lenker -Synchronize_PS_links=Synkroniser_PS-lenker # Export menu Tab-separated_file=&Tab_separert_fil Toggle_entry_preview=&Vis/skjul_forh\u00e5ndsvisning diff --git a/src/main/resources/l10n/Menu_pt_BR.properties b/src/main/resources/l10n/Menu_pt_BR.properties index 407f18b7082..d346b5db5cf 100644 --- a/src/main/resources/l10n/Menu_pt_BR.properties +++ b/src/main/resources/l10n/Menu_pt_BR.properties @@ -73,8 +73,6 @@ Set_up_general_fields=Configurar_&campos_gerais Show_error_console=Exibir_console_de_erros Sort_tabs=&Ordenar_abas Switch_preview_layout=&Trocar_layout_da_previsualiza\u00e7\u00e3o -Synchronize_PDF_links=Sincronizar_links_PD&F -Synchronize_PS_links=Sincronizar_links_P&S Tab-separated_file=&Arquivo_separado_por_tabula\u00e7\u00f5es Toggle_entry_preview=&Mostrar/Esconder_previsualiza\u00e7\u00e3o_de_refer\u00eancias Toggle_groups_interface=Mostrar/Esconder_interface_de_&grupos diff --git a/src/main/resources/l10n/Menu_ru.properties b/src/main/resources/l10n/Menu_ru.properties index e685bef8561..403ac7d182c 100644 --- a/src/main/resources/l10n/Menu_ru.properties +++ b/src/main/resources/l10n/Menu_ru.properties @@ -85,8 +85,6 @@ Show_error_console=Показать_консоль_ошибок Sort_tabs=Сортировать_вкладки Switch_preview_layout=Переключить_макет_предпросмотра -Synchronize_PDF_links=Синхронизировать_ссылки_PDF -Synchronize_PS_links=Синхронизировать_ссылки_PS # Export menu Tab-separated_file=Файлы_с_разделителем_табуляцией Toggle_entry_preview=Показать/скрыть_просмотр_записи diff --git a/src/main/resources/l10n/Menu_tr.properties b/src/main/resources/l10n/Menu_tr.properties index ac8859baec3..15e2d3ad150 100644 --- a/src/main/resources/l10n/Menu_tr.properties +++ b/src/main/resources/l10n/Menu_tr.properties @@ -73,8 +73,6 @@ Set_up_general_fields=&Genel_alanlar\u0131_ayarla Show_error_console=Hata_konsolunu_g\u00f6ster Sort_tabs=&Sekmeleri_s\u0131rala Switch_preview_layout=\u00d6nizleme_yerle\u015fimini_de&\u011fi\u015ftir -Synchronize_PDF_links=PDF_linklerini_e\u015fzamanla -Synchronize_PS_links=PS_linklerini_e\u015fzamanla Tab-separated_file=Sek&meyle-ayr\u0131lm\u0131\u015f_dosya Toggle_entry_preview=Girdi_\u00f6nzilemesini_a\u00e7/kapa&t Toggle_groups_interface=&Grup_aray\u00fcz\u00fcn\u00fc_a\u00e7/kapat diff --git a/src/main/resources/l10n/Menu_vi.properties b/src/main/resources/l10n/Menu_vi.properties index 528f97c025b..173cf510740 100644 --- a/src/main/resources/l10n/Menu_vi.properties +++ b/src/main/resources/l10n/Menu_vi.properties @@ -123,8 +123,6 @@ Show_error_console=Hi\u1ec3n_th\u1ecb_c\u1eeda_&s\u1ed5_b\u00e1o_l\u1ed7i Sort_tabs=Ph\u00e2n_lo\u1ea1i_t&h\u1ebb Switch_preview_layout=&B\u1eadt_tr\u00ecnh_b\u00e0y_xem_tr\u01b0\u1edbc -Synchronize_PDF_links=\u0110\u1ed3ng_b\u1ed9_h\u00f3a_c\u00e1c_li\u00ean_k\u1ebft_PDF -Synchronize_PS_links=\u0110\u1ed3ng_b\u1ed9_h\u00f3a_c\u00e1c_li\u00ean_k\u1ebft_PS # Export menu Tab-separated_file=&T\u1eadp_tin_ph\u00e2n_c\u00e1ch_b\u1edfi_c\u1eef_d\u1eebng Toggle_entry_preview=&B\u1eadt/t\u1eaft_xem_tr\u01b0\u1edbc_m\u1ee5c diff --git a/src/main/resources/l10n/Menu_zh.properties b/src/main/resources/l10n/Menu_zh.properties index c67df158826..65657f69506 100644 --- a/src/main/resources/l10n/Menu_zh.properties +++ b/src/main/resources/l10n/Menu_zh.properties @@ -84,8 +84,6 @@ Show_error_console=\u6253\u5f00\u9519\u8bef\u663e\u793a\u7ec8\u7aef Sort_tabs=\u6807\u7b7e\u9875\u6392\u5e8f_(&S) Switch_preview_layout=\u5207\u6362\u8bb0\u5f55\u9884\u89c8\u65b9\u5f0f_(&S) -Synchronize_PDF_links=\u81ea\u52a8\u540c\u6b65_PDF_\u94fe\u63a5 -Synchronize_PS_links=\u81ea\u52a8\u540c\u6b65_PS_\u94fe\u63a5 # Export menu Tab-separated_file=\u4f7f\u7528\u5236\u8868\u7b26\u95f4\u9694\u7684\u6587\u4ef6_(&T) Toggle_entry_preview=\u6253\u5f00/\u5173\u95ed\u8bb0\u5f55\u9884\u89c8_(&T)