[jabref] 408/459: Imported Upstream version 2.10~beta2+ds

gregor herrmann gregoa at debian.org
Thu Sep 15 20:41:29 UTC 2016


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository jabref.

commit 0947be71f1e9b86bedc1e9ffdb2401bfbb2e173e
Author: gregor herrmann <gregoa at debian.org>
Date:   Fri Jun 21 18:30:35 2013 +0200

    Imported Upstream version 2.10~beta2+ds
---
 build.xml                                          |    3 +-
 src/java/net/sf/jabref/BasePanel.java              |    7 +-
 src/java/net/sf/jabref/EntryEditor.java            |   23 +
 src/java/net/sf/jabref/FileTab.java                |    8 +-
 .../net/sf/jabref/FindUnlinkedFilesDialog.java     |    5 +-
 src/java/net/sf/jabref/GUIGlobals.java             |    3 +-
 src/java/net/sf/jabref/Globals.java                |   18 +-
 src/java/net/sf/jabref/JabRefPreferences.java      |    4 +-
 src/java/net/sf/jabref/Util.java                   |    4 +-
 src/java/net/sf/jabref/external/PushToWinEdt.java  |    2 +-
 .../sf/jabref/gui/DatabasePropertiesDialog.java    |   20 +-
 .../net/sf/jabref/gui/GroupAddRemoveDialog.java    |  179 +-
 src/resource/IntegrityMessage_ru.properties        |   10 +-
 src/resource/JabRef_da.properties                  |  105 +-
 src/resource/JabRef_de.properties                  |    5 +-
 src/resource/JabRef_en.properties                  |    4 +-
 src/resource/JabRef_es.properties                  |   60 +-
 src/resource/JabRef_fr.properties                  |   14 +-
 src/resource/JabRef_in.properties                  |    3 +-
 src/resource/JabRef_it.properties                  |    3 +-
 src/resource/JabRef_ja.properties                  |    3 +-
 src/resource/JabRef_nl.properties                  |    4 +-
 src/resource/JabRef_no.properties                  |    6 +-
 src/resource/JabRef_pt_BR.properties               |    3 +-
 src/resource/JabRef_ru.properties                  | 3051 ++++++++++----------
 src/resource/JabRef_tr.properties                  |   79 +-
 src/resource/JabRef_vi.properties                  |    4 +-
 src/resource/JabRef_zh.properties                  |    3 +-
 src/resource/Menu_da.properties                    |    2 +
 src/resource/Menu_de.properties                    |    6 +-
 src/resource/Menu_en.properties                    |    4 +-
 src/resource/Menu_es.properties                    |    2 +
 src/resource/Menu_fr.properties                    |    3 +
 src/resource/Menu_in.properties                    |    2 +
 src/resource/Menu_it.properties                    |    2 +
 src/resource/Menu_ja.properties                    |    2 +
 src/resource/Menu_nl.properties                    |    2 +
 src/resource/Menu_no.properties                    |    3 +
 src/resource/Menu_pt_BR.properties                 |    2 +
 src/resource/Menu_ru.properties                    |  252 +-
 src/resource/Menu_tr.properties                    |    2 +
 src/resource/Menu_vi.properties                    |    2 +
 src/resource/Menu_zh.properties                    |    2 +
 src/txt/CHANGELOG                                  |    6 +
 src/txt/README                                     |    4 +-
 src/windows/nsis/installer_languages/russian.nsh   |   33 +
 src/windows/nsis/setup.nsi                         |    9 +-
 47 files changed, 2078 insertions(+), 1895 deletions(-)

diff --git a/build.xml b/build.xml
index 6b3b4eb..ed02c2a 100644
--- a/build.xml
+++ b/build.xml
@@ -35,7 +35,7 @@
      +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-->
 
 	<!-- some version information -->
-	<property name="jabref.version" value="2.10b" />
+	<property name="jabref.version" value="2.10b2" />
 	<property name="jabref.version.full" value="2.10.0.0" /> <!-- a version number with 4 places. Required by launch4j -->
 	<property name="jabref.year" value="2013" />
 	<property name="jabref.placeholder.version" value="@version@" />
@@ -478,6 +478,7 @@ version=${jabref.version}</echo>
                     icon="${images.dir}/JabRef-Logo.icns"
                     version="${jabref.version}"
                     jvmversion="1.6+"
+		    vmoptions="-Xms128m -Xmx512m"
                     stubfile="${osxbin.dir}/JavaApplicationStub"
                     signature="JABr">
             <documenttype name="BibTeX file" extensions="bib" role="Editor"
diff --git a/src/java/net/sf/jabref/BasePanel.java b/src/java/net/sf/jabref/BasePanel.java
index 6727e71..2f8481a 100644
--- a/src/java/net/sf/jabref/BasePanel.java
+++ b/src/java/net/sf/jabref/BasePanel.java
@@ -65,7 +65,6 @@ import net.sf.jabref.collab.FileUpdateListener;
 import net.sf.jabref.collab.FileUpdatePanel;
 import net.sf.jabref.export.ExportToClipboardAction;
 import net.sf.jabref.export.FileActions;
-import net.sf.jabref.export.OpenFolder;
 import net.sf.jabref.export.SaveDatabaseAction;
 import net.sf.jabref.export.SaveException;
 import net.sf.jabref.export.SaveSession;
@@ -1107,7 +1106,6 @@ public class BasePanel extends JPanel implements ClipboardOwner, FileUpdateListe
 
           actions.put("mergeDatabase", new AppendDatabaseAction(frame, this));
 
-          actions.put("openFolder", new OpenFolder(frame));
 
         actions.put("openFile", new BaseAction() {
             public void action() {
@@ -1640,8 +1638,9 @@ public class BasePanel extends JPanel implements ClipboardOwner, FileUpdateListe
 
         actions.put("resolveDuplicateKeys", new SearchFixDuplicateLabels(this));
 
-        actions.put("addToGroup", new GroupAddRemoveDialog(this, true));
-        actions.put("removeFromGroup", new GroupAddRemoveDialog(this, false));
+        actions.put("addToGroup", new GroupAddRemoveDialog(this, true, false));
+        actions.put("removeFromGroup", new GroupAddRemoveDialog(this, false, false));
+        actions.put("moveToGroup", new GroupAddRemoveDialog(this, true, true));
 
         //actions.put("downloadFullText", new FindFullTextAction(this));
     }
diff --git a/src/java/net/sf/jabref/EntryEditor.java b/src/java/net/sf/jabref/EntryEditor.java
index 86a2901..b9ebf3e 100644
--- a/src/java/net/sf/jabref/EntryEditor.java
+++ b/src/java/net/sf/jabref/EntryEditor.java
@@ -1024,6 +1024,29 @@ public class EntryEditor extends JPanel implements VetoableChangeListener, Entry
                 setForeground(GUIGlobals.entryEditorLabelColor);
                 setHorizontalAlignment(RIGHT);
                 setFont(GUIGlobals.typeNameFont);
+
+                // Add a mouse listener so the user can right-click the type label to change the entry type:
+                addMouseListener(new MouseAdapter() {
+                    @Override
+                    public void mouseReleased(MouseEvent e) {
+                        if (e.isPopupTrigger() || (e.getButton() == MouseEvent.BUTTON3)) {
+                            handleTypeChange();
+                        }
+                    }
+                    @Override
+                    public void mouseClicked(MouseEvent e) {
+                        if (e.isPopupTrigger() || (e.getButton() == MouseEvent.BUTTON3)) {
+                            handleTypeChange();
+                        }
+                    }
+
+                    private void handleTypeChange() {
+                        JPopupMenu typeMenu = new JPopupMenu();
+                        for (String s: BibtexEntryType.ALL_TYPES.keySet())
+                            typeMenu.add(new ChangeTypeAction(BibtexEntryType.getType(s), panel));
+                        typeMenu.show(ths, 0, 0);
+                    }
+                });
             }
 
             public void paintComponent(Graphics g) {
diff --git a/src/java/net/sf/jabref/FileTab.java b/src/java/net/sf/jabref/FileTab.java
index fd0f3af..1c6d119 100644
--- a/src/java/net/sf/jabref/FileTab.java
+++ b/src/java/net/sf/jabref/FileTab.java
@@ -37,7 +37,7 @@ public class FileTab extends JPanel implements PrefsTab {
 
     private JCheckBox backup, openLast, autoDoubleBraces, autoSave,
             promptBeforeUsingAutoSave, includeEmptyFields, camelCase, sameColumn;
-    private JComboBox<String> valueDelimiter;
+    private JComboBox valueDelimiter;
     private JRadioButton
         saveOriginalOrder, saveAuthorOrder, saveTableOrder, saveTitleOrder,
         exportOriginalOrder, exportAuthorOrder, exportTableOrder, exportTitleOrder,
@@ -67,7 +67,7 @@ public class FileTab extends JPanel implements PrefsTab {
         autoSave = new JCheckBox(Globals.lang("Autosave"));
         promptBeforeUsingAutoSave = new JCheckBox(Globals.lang("Prompt before recovering a database from an autosave file"));
         autoSaveInterval = new JSpinner(new SpinnerNumberModel(1, 1, 60, 1));
-        valueDelimiter = new JComboBox<String>(new String[]{
+        valueDelimiter = new JComboBox(new String[]{
                 Globals.lang("Quotes") + ": \", \"",
                 Globals.lang("Curly Brackets") + ": {, }" });
         includeEmptyFields = new JCheckBox(Globals.lang("Include empty fields"));
@@ -162,13 +162,13 @@ public class FileTab extends JPanel implements PrefsTab {
         builder.append(camelCase);
         builder.nextLine();
         builder.append(sameColumn);
-        FormLayout layout2 = new FormLayout(
+        /*FormLayout layout2 = new FormLayout(
                 "left:pref, 8dlu, fill:pref", "");
         DefaultFormBuilder builder2 = new DefaultFormBuilder(layout2);
     	builder2.append(new JLabel(Globals.lang("Field value delimiter. E.g., \"author={x}\" or \"author='x'\"") + ":"));
         builder2.append(valueDelimiter);
         builder.nextLine();
-        builder.append(builder2.getPanel());
+        builder.append(builder2.getPanel());*/
         builder.append(new JPanel());
         builder.nextLine();
         builder.append(includeEmptyFields);
diff --git a/src/java/net/sf/jabref/FindUnlinkedFilesDialog.java b/src/java/net/sf/jabref/FindUnlinkedFilesDialog.java
index 23db5ed..4bcbd73 100644
--- a/src/java/net/sf/jabref/FindUnlinkedFilesDialog.java
+++ b/src/java/net/sf/jabref/FindUnlinkedFilesDialog.java
@@ -61,7 +61,6 @@ import net.sf.jabref.imports.EntryFromFileCreator;
 import net.sf.jabref.imports.EntryFromFileCreatorManager;
 import net.sf.jabref.imports.UnlinkedFilesCrawler;
 import net.sf.jabref.imports.UnlinkedPDFFileFilter;
-import net.sf.jabref.undo.CountingUndoManager;
 
 /**
  * GUI Dialog for the feature "Find unlinked files".
@@ -77,9 +76,9 @@ public class FindUnlinkedFilesDialog extends JDialog {
 	 * Keys to be used for referencing this Action.
 	 */
 	public static final String ACTION_COMMAND = "findUnlinkedFiles";
-	public static final String ACTION_TITLE = "Find unlinked Files...";
+	public static final String ACTION_TITLE = Globals.lang("Find unlinked files") + "..."; // this entry is NOT in Menu_en.properties as the same string also appears in JabRef_en.properties
 	public static final String ACTION_ICON = "toggleSearch";
-	public static final String ACTION_SHORT_DESCRIPTION = "Searches for unlinked PDF files on the file system";
+	public static final String ACTION_SHORT_DESCRIPTION = Globals.lang("Searches for unlinked PDF files on the file system");
 
 	private static final String GLOBAL_PREFS_WORKING_DIRECTORY_KEY = "findUnlinkedFilesWD";
 	private static final String GLOBAL_PREFS_DIALOG_SIZE_KEY = "findUnlinkedFilesDialogSize";
diff --git a/src/java/net/sf/jabref/GUIGlobals.java b/src/java/net/sf/jabref/GUIGlobals.java
index b7e9530..011343c 100644
--- a/src/java/net/sf/jabref/GUIGlobals.java
+++ b/src/java/net/sf/jabref/GUIGlobals.java
@@ -231,7 +231,8 @@ public class GUIGlobals {
 		LANGUAGES.put("Simplified Chinese", "zh");
 		LANGUAGES.put("Vietnamese", "vi");
 		LANGUAGES.put("Bahasa Indonesia", "in");
-        LANGUAGES.put("Brazilian Portugese", "pt_BR");
+		LANGUAGES.put("Brazilian Portugese", "pt_BR");
+		LANGUAGES.put("Russian", "ru");
 
 
 
diff --git a/src/java/net/sf/jabref/Globals.java b/src/java/net/sf/jabref/Globals.java
index ab63c48..c54d3c8 100644
--- a/src/java/net/sf/jabref/Globals.java
+++ b/src/java/net/sf/jabref/Globals.java
@@ -285,7 +285,7 @@ public class Globals {
 
 	public static JournalAbbreviations journalAbbrev;
 
-	public static String lang(String key, String... params) {
+	public static String lang(String key, String[] params) {
 		String translation = null;
 		try {
 			if (Globals.messages != null) 
@@ -336,6 +336,22 @@ public class Globals {
 		return key;
 	}
 
+	public static String lang(String key) {
+		return lang(key, (String[]) null);
+	}
+
+	public static String lang(String key, String s1) {
+		return lang(key, new String[] { s1 });
+	}
+
+	public static String lang(String key, String s1, String s2) {
+		return lang(key, new String[] { s1, s2 });
+	}
+
+	public static String lang(String key, String s1, String s2, String s3) {
+		return lang(key, new String[] { s1, s2, s3 });
+	}
+
 	public static String menuTitle(String key) {
 		String translation = null;
 		try {
diff --git a/src/java/net/sf/jabref/JabRefPreferences.java b/src/java/net/sf/jabref/JabRefPreferences.java
index f1b5f09..c67f91e 100644
--- a/src/java/net/sf/jabref/JabRefPreferences.java
+++ b/src/java/net/sf/jabref/JabRefPreferences.java
@@ -528,10 +528,12 @@ public class JabRefPreferences {
 
 	defaults.put("userFileDir", GUIGlobals.FILE_FIELD + "Directory");
 	try {
-	    defaults.put("userFileDirIndividual", GUIGlobals.FILE_FIELD + "Directory" + "-" + get("defaultOwner") + "@" + InetAddress.getLocalHost().getHostName());
+	    defaults.put("userFileDirInd_Legacy", GUIGlobals.FILE_FIELD + "Directory" + "-" + get("defaultOwner") + "@" + InetAddress.getLocalHost().getHostName()); // Legacy setting name - was a bug: @ not allowed inside BibTeX comment text. Retained for backward comp.
+	    defaults.put("userFileDirIndividual", GUIGlobals.FILE_FIELD + "Directory" + "-" + get("defaultOwner") + "-" + InetAddress.getLocalHost().getHostName()); // Valid setting name
 	}
 	catch(UnknownHostException ex) {
 	    Globals.logger("Hostname not found.");
+	    defaults.put("userFileDirInd_Legacy", GUIGlobals.FILE_FIELD + "Directory" + "-" + get("defaultOwner"));
 	    defaults.put("userFileDirIndividual", GUIGlobals.FILE_FIELD + "Directory" + "-" + get("defaultOwner"));
 	}
     }
diff --git a/src/java/net/sf/jabref/Util.java b/src/java/net/sf/jabref/Util.java
index df8eede..b7bc7b1 100644
--- a/src/java/net/sf/jabref/Util.java
+++ b/src/java/net/sf/jabref/Util.java
@@ -3046,7 +3046,9 @@ public static boolean openExternalFileUnknown(JabRefFrame frame, BibtexEntry ent
     }
     
     // DOI-regexp provided by http://stackoverflow.com/a/10324802/873282
-    private static final String REGEXP_PLAINDOI = "\\b(10[.][0-9]{4,}(?:[.][0-9]+)*/(?:(?![\"&\\'<>])\\S)+)\\b";
+    // Some DOI's are not caught by the regexp in the above link, i.e. 10.1002/(SICI)1522-2594(199911)42:5<952::AID-MRM16>3.0.CO;2-S
+    // Removed <> from non-permitted characters
+    private static final String REGEXP_PLAINDOI = "\\b(10[.][0-9]{4,}(?:[.][0-9]+)*/(?:(?![\"&\\'])\\S)+)\\b";
     private static final String REGEXP_DOI_WITH_HTTP_PREFIX = "http[s]?://[^\\s]*?" + REGEXP_PLAINDOI;
     private static final Pattern PATTERN_PLAINDOI = Pattern.compile(REGEXP_PLAINDOI);
 
diff --git a/src/java/net/sf/jabref/external/PushToWinEdt.java b/src/java/net/sf/jabref/external/PushToWinEdt.java
index f1bf725..aeb0051 100644
--- a/src/java/net/sf/jabref/external/PushToWinEdt.java
+++ b/src/java/net/sf/jabref/external/PushToWinEdt.java
@@ -67,7 +67,7 @@ public class PushToWinEdt implements PushToApplication {
                     .append(Globals.prefs.get("citeCommandWinEdt")).append("{")
                     .append(keyString.replaceAll("'", "''"))
                     .append("}');]\"");
-            Runtime.getRuntime().exec(winEdt + " " + toSend.toString());
+            Runtime.getRuntime().exec(new String[] {winEdt, toSend.toString()});
 
         }
 
diff --git a/src/java/net/sf/jabref/gui/DatabasePropertiesDialog.java b/src/java/net/sf/jabref/gui/DatabasePropertiesDialog.java
index 16de626..85768a8 100644
--- a/src/java/net/sf/jabref/gui/DatabasePropertiesDialog.java
+++ b/src/java/net/sf/jabref/gui/DatabasePropertiesDialog.java
@@ -153,13 +153,24 @@ public class DatabasePropertiesDialog extends JDialog {
                 fileDir.setText((fileD.get(0)).trim());
         }
 
-        Vector<String> fileDI = metaData.getData(Globals.prefs.get("userFileDirIndividual"));
-        if (fileDI == null)
-            fileDirIndv.setText("");
-        else {
+        Vector<String> fileDI = metaData.getData(Globals.prefs.get("userFileDirIndividual")); // File dir setting
+        Vector<String> fileDIL = metaData.getData(Globals.prefs.get("userFileDirInd_Legacy")); // Legacy file dir setting for backward comp.
+        if (fileDI == null) {
+	    oldFileIndvVal = fileDirIndv.getText(); // Record individual file dir setting as originally empty if reading from legacy setting
+	    if (fileDIL == null)
+		fileDirIndv.setText("");
+	    else {
+		// Insert path from legacy setting if possible
+		// Better be a little careful about how many entries the Vector has:
+		if (fileDIL.size() >= 1)
+		    fileDirIndv.setText((fileDIL.get(0)).trim());
+	    }
+	}
+	else {
             // Better be a little careful about how many entries the Vector has:
             if (fileDI.size() >= 1)
                 fileDirIndv.setText((fileDI.get(0)).trim());
+	    oldFileIndvVal = fileDirIndv.getText(); // Record individual file dir setting normally if reading from ordinary setting
         }
 
         Vector<String> pdfD = metaData.getData("pdfDirectory");
@@ -190,7 +201,6 @@ public class DatabasePropertiesDialog extends JDialog {
 
         // Store original values to see if they get changed:
         oldFileVal = fileDir.getText();
-        oldFileIndvVal = fileDir.getText();
         oldPdfVal = pdfDir.getText();
         oldPsVal = psDir.getText();
         oldProtectVal = protect.isSelected();
diff --git a/src/java/net/sf/jabref/gui/GroupAddRemoveDialog.java b/src/java/net/sf/jabref/gui/GroupAddRemoveDialog.java
index da86520..fd71a9d 100644
--- a/src/java/net/sf/jabref/gui/GroupAddRemoveDialog.java
+++ b/src/java/net/sf/jabref/gui/GroupAddRemoveDialog.java
@@ -5,12 +5,15 @@ import net.sf.jabref.BaseAction;
 import net.sf.jabref.BasePanel;
 import net.sf.jabref.BibtexEntry;
 import net.sf.jabref.Globals;
-import net.sf.jabref.groups.AllEntriesGroup;
-import net.sf.jabref.groups.GroupTreeCellRenderer;
-import net.sf.jabref.groups.GroupTreeNode;
+import net.sf.jabref.groups.*;
 
 import javax.swing.*;
+import javax.swing.event.TreeSelectionEvent;
+import javax.swing.event.TreeSelectionListener;
+import javax.swing.tree.TreeSelectionModel;
 import java.awt.*;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
 
 /**
  * Created with IntelliJ IDEA.
@@ -22,13 +25,17 @@ import java.awt.*;
 public class GroupAddRemoveDialog extends BaseAction {
 
     private BasePanel panel;
-    private boolean add;
+    private boolean add, move = false;
+    private BibtexEntry[] selection = null;
+    JTree tree;
+    JButton ok;
 
-    public GroupAddRemoveDialog(BasePanel panel, boolean add) {
+    public GroupAddRemoveDialog(BasePanel panel, boolean add, boolean move) {
         this.panel = panel;
-
         this.add = add;
+        this.move = move;
     }
+
     @Override
     public void action() throws Throwable {
         GroupTreeNode groups = panel.metaData().getGroups();
@@ -36,14 +43,20 @@ public class GroupAddRemoveDialog extends BaseAction {
             return;
         }
 
-        JDialog diag = new JDialog(panel.frame(),
-                Globals.lang(add ? "Add to group" : "Remove from group"), true);
-        JButton ok = new JButton(Globals.lang("Ok")),
-                cancel = new JButton(Globals.lang("Cancel"));
-        JTree tree = new JTree(groups);
-        tree.setCellRenderer(new GroupTreeCellRenderer());
-        tree.setVisibleRowCount(18);
+        selection = panel.getSelectedEntries();
 
+        final JDialog diag = new JDialog(panel.frame(),
+                Globals.lang(add ? (move ? "Move to group" : "Add to group" )
+                        : "Remove from group"), true);
+        ok = new JButton(Globals.lang("Ok"));
+        JButton cancel = new JButton(Globals.lang("Cancel"));
+        tree = new JTree(groups);
+        tree.setCellRenderer(new AddRemoveGroupTreeCellRenderer());
+        tree.setVisibleRowCount(22);
+        tree.setPreferredSize(new Dimension(200, tree.getPreferredSize().height));
+        //tree.setSelectionModel(new VetoableTreeSelectionModel());
+        tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
+        tree.addTreeSelectionListener(new SelectionListener());
         ButtonBarBuilder bb = new ButtonBarBuilder();
         bb.addGlue();
         bb.addButton(ok);
@@ -51,7 +64,32 @@ public class GroupAddRemoveDialog extends BaseAction {
         bb.addGlue();
         bb.getPanel().setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
 
-        diag.getContentPane().add(new JScrollPane(tree), BorderLayout.CENTER);
+        ok.addActionListener(new ActionListener() {
+            public void actionPerformed(ActionEvent actionEvent) {
+                if (doAddOrRemove())
+                    diag.dispose();
+            }
+        });
+        cancel.addActionListener(new ActionListener() {
+            public void actionPerformed(ActionEvent actionEvent) {
+                diag.dispose();
+            }
+        });
+        ok.setEnabled(false);
+
+        JScrollPane sp = new JScrollPane(tree);
+
+        // Key bindings:
+        ActionMap am = sp.getActionMap();
+        InputMap im = sp.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
+        im.put(Globals.prefs.getKey("Close dialog"), "close");
+        am.put("close", new AbstractAction() {
+            public void actionPerformed(ActionEvent e) {
+                diag.dispose();
+            }
+        });
+
+        diag.getContentPane().add(sp, BorderLayout.CENTER);
         diag.getContentPane().add(bb.getPanel(), BorderLayout.SOUTH);
         diag.pack();
         diag.setLocationRelativeTo(panel.frame());
@@ -60,43 +98,90 @@ public class GroupAddRemoveDialog extends BaseAction {
 
     }
 
-    /**
-     * @param move For add: if true, remove from previous groups
-
-    public void insertNodes(JMenu menu, GroupTreeNode node, BibtexEntry[] selection,
-                            boolean add, boolean move) {
-        final AbstractAction action = getAction(node,selection,add,move);
-
-        if (node.getChildCount() == 0) {
-            JMenuItem menuItem = new JMenuItem(action);
-            setGroupFontAndIcon(menuItem, node.getGroup());
-            menu.add(menuItem);
-            if (action.isEnabled())
-                menu.setEnabled(true);
-            return;
+    class SelectionListener implements TreeSelectionListener {
+        public void valueChanged(TreeSelectionEvent e) {
+            GroupTreeNode node = (GroupTreeNode)e.getNewLeadSelectionPath().getLastPathComponent();
+            AbstractGroup group = node.getGroup();
+            ok.setEnabled(checkGroupEnable(group));
         }
+    }
+
+    protected boolean doAddOrRemove() {
+        GroupTreeNode node = (GroupTreeNode)tree.getSelectionPath().getLastPathComponent();
+        AbstractGroup group = node.getGroup();
+        if (checkGroupEnable(group)) {
 
-        JMenu submenu = null;
-        if (node.getGroup() instanceof AllEntriesGroup) {
-            for (int i = 0; i < node.getChildCount(); ++i) {
-                insertNodes(menu,(GroupTreeNode) node.getChildAt(i), selection, add, move);
+            if (add) {
+                AddToGroupAction action = new AddToGroupAction(node, move, panel);
+                action.actionPerformed(new ActionEvent(node, 0, "add"));
+            } else {
+                RemoveFromGroupAction action = new RemoveFromGroupAction(node, panel);
+                action.actionPerformed(new ActionEvent(node, 0, "remove"));
             }
-        } else {
-            submenu = new JMenu("["+node.getGroup().getName()+"]");
-            setGroupFontAndIcon(submenu, node.getGroup());
-            // setEnabled(true) is done above/below if at least one menu
-            // entry (item or submenu) is enabled
-            submenu.setEnabled(action.isEnabled());
-            JMenuItem menuItem = new JMenuItem(action);
-            setGroupFontAndIcon(menuItem, node.getGroup());
-            submenu.add(menuItem);
-            submenu.add(new JPopupMenu.Separator());
-            for (int i = 0; i < node.getChildCount(); ++i)
-                insertNodes(submenu,(GroupTreeNode) node.getChildAt(i), selection, add, move);
-            menu.add(submenu);
-            if (submenu.isEnabled())
-                menu.setEnabled(true);
+
+            return true;
         }
+        else {
+            return false;
+        }
+
     }
+
+    /**
+     * Check if we can perform the action for this group. Determines whether
+     * the group should be shown in an enabled state, and if selecting it should
+     * leave the Ok button enabled.
+     * @param group The group to check
+     * @return true if this dialog's action can be performed on the group
      */
+    private boolean checkGroupEnable(AbstractGroup group) {
+        return (add ? group.supportsAdd() && !group.containsAll(selection)
+                : group.supportsRemove() && group.containsAny(selection));
+    }
+
+
+/*    private class VetoableTreeSelectionModel extends DefaultTreeSelectionModel {
+
+        @Override
+        public void addSelectionPath(TreePath path) {
+            if (checkPath(path))
+                super.addSelectionPath(path);
+        }
+
+        public void setSelectionPath(TreePath path){
+            if (checkPath(path))
+                super.setSelectionPath(path);
+
+        }
+
+        private boolean checkPath(TreePath path) {
+            GroupTreeNode node = (GroupTreeNode)path.getLastPathComponent();
+            AbstractGroup group = node.getGroup();
+            return (add ? group.supportsAdd() && !group.containsAll(GroupAddRemoveDialog.this.selection)
+                    : group.supportsRemove() && group.containsAny(GroupAddRemoveDialog.this.selection));
+        }
+    }
+    {
+
+    } */
+
+    class AddRemoveGroupTreeCellRenderer extends GroupTreeCellRenderer {
+        @Override
+        public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) {
+            Component c = super.getTreeCellRendererComponent(tree, value, selected, expanded, leaf, row, hasFocus);
+
+            GroupTreeNode node = (GroupTreeNode)value;
+            AbstractGroup group = node.getGroup();
+            if (checkGroupEnable(group))
+                c.setForeground(Color.black);
+            else
+                c.setForeground(Color.gray);
+
+            return c;
+        }
+    }
+
+
 }
+
+
diff --git a/src/resource/IntegrityMessage_ru.properties b/src/resource/IntegrityMessage_ru.properties
index d798ffd..99422e4 100644
--- a/src/resource/IntegrityMessage_ru.properties
+++ b/src/resource/IntegrityMessage_ru.properties
@@ -1,11 +1,11 @@
-#! created/edited by Popeye version 0.51 sunshine (popeye.sourceforge.net)
+#! created/edited
 
 ITEXT_1=���� ���������
 ITEXT_1001=��������������
 ITEXT_2001=������
 ITEXT_1010=������ ���� $FIELD
-ITEXT_1011=�������� ����� (���� $FIELD)
-ITEXT_1012=�������� ������� ������ � ���� $FIELD
+ITEXT_1011=������������ ��������� (���� $FIELD)
+ITEXT_1012=�������� ������ � ���� $FIELD
 ITEXT_10=���� ������ � �������������� ��� ����� {} � ���� $FIELD
-ITEXT_11=���� $FIELD ���� ������ ��������� ������ �����
-ITEXT_2010=�������������� ����������� } � ���� $FIELD
+ITEXT_11=���� $FIELD ������ ��������� ������ �����
+ITEXT_2010=����������������� ����������� } � ���� $FIELD
diff --git a/src/resource/JabRef_da.properties b/src/resource/JabRef_da.properties
index 0b5c08b..427a2f5 100644
--- a/src/resource/JabRef_da.properties
+++ b/src/resource/JabRef_da.properties
@@ -1304,7 +1304,6 @@ Create_entry_based_on_content=Opret_post_baseret_p\u00e5_indhold
 Do_not_show_this_box_again_for_this_import=Vis_ikke_denne_dialogboks_igen_for_denne_import
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Brug_altid_denne_PDF-importstil_(og_sp\u00f8rg_ikke_for_hver_enkelt_import)
 Error_creating_email=Fejl_ved_oprettelse_af_email
-Could_not_open_directory=Kunne_ikke_\u00e5bne_bibliotek
 Entries_added_to_an_email=Poster_tilf\u00f8jet_til_en_email
 exportFormat=Eksportformat
 Output_file_missing=Output-fil_mangler
@@ -1377,43 +1376,43 @@ JSTOR_import_cancelled=JSTOR_import_afbrudt
 HTML_list=HTML-liste
 Click_group_to_toggle_membership_of_selected_entries=Klik_p\u00e5_gruppe_for_at_\u00e6ndre_medlemsskab_for_de_valgte_poster
 Use_EMACS_23_insertion_string=Brug_EMACS_23-inds\u00e6tningstekststreng
-If_possible,_normalize_this_list_of_names_to_conform_to_standard_BibTeX_name_formatting=
+If_possible,_normalize_this_list_of_names_to_conform_to_standard_BibTeX_name_formatting=Om_muligt,_normaliser_denne_navneliste_til_standard_BibTeX-navneformatering
 Could_not_open_%0=Kunne_ikke_\u00e5bne_%0
-Unknown_import_format=
-Open_INSPIRE_entry=
-An_Error_occurred_while_fetching_from_INSPIRE_source_(%0)\:=
-Error_while_fetching_from_Inspire\:_=
-Web_search=
-Autocomplete_names=
-
-Default_style=
-Choose_style_file_directly=
-Choose_from_a_directory=
-No_directory_defined_for_%0-files=
-Allow_file_links_relative_to_each_bib_file's_location=
-Style_selection=
-The_panel_below_shows_the_definition_of_the_default_style.=
-If_you_want_to_use_it_as_a_template_for_a_new_style,_you_can_copy_the_contents_into_a_new_.jstyle_file=
-
-Default_style_(author-year_citations)=
-Default_style_(numerical_citations)=
-No_valid_style_file_defined=
-Choose_pattern=
-Use_the_bib_file_location_as_primary_file_directory=
-Could_not_run_the_gnuclient/emacsclient_program._Make_sure_you_have_the_emacsclient/gnuclient_program_installed_and_available_in_the_PATH.=
-Built-in_journal_list=
-OpenOffice/LibreOffice_connection=
-You_can_add_additional_journal_names_by_setting_up_a_personal_journal_list,<br>as_well_as_linking_to_external_journal_lists.=
-JabRef_includes_a_built-in_list_of_journal_abbreviations.=
-You_must_select_either_a_valid_style_file,_or_use_one_of_the_default_styles.=
-You_must_select_either_a_valid_style_file,_or_use_a_default_style.=
-Show=
-
-This_is_a_simple_copy_and_paste_dialog._First_load_or_paste_some_text_into_the_text_input_area.<br>After_that,_you_can_mark_text_and_assign_it_to_a_BibTeX_field.=
-Java_Bouncy_Castle_library_not_found._Please_download_and_install_it._For_more_information_see_http\://www.bouncycastle.org/.=
-
-This_feature_generates_a_new_database_based_on_which_entries_are_needed_in_an_existing_LaTeX_document.=
-You_need_to_select_one_of_your_open_databases_from_which_to_choose_entries,_as_well_as_the_AUX_file_produced_by_LaTeX_when_compiling_your_document.=
+Unknown_import_format=Ukendt_importformat
+Open_INSPIRE_entry=\u00c5bn_INSPIRE-post
+An_Error_occurred_while_fetching_from_INSPIRE_source_(%0)\:=Der_skete_en_fejl_ved_hentning_fra_INSPIRE-kilde_(%0):
+Error_while_fetching_from_Inspire\:_=Feil_ved_hentning_fra_INSPIRE:
+Web_search=Webs\u00f8gning
+Autocomplete_names=Autofuldf\u00f8r_navn
+
+Default_style=Standardstil
+Choose_style_file_directly=V\u00e6lg_en_stilfil_direkte
+Choose_from_a_directory=V\u00e6lg_fra_et_bibliotek
+No_directory_defined_for_%0-files=Intet_bibliotek_defineret_for_%0-filer
+Allow_file_links_relative_to_each_bib_file's_location=Tillad_fillinks_relativt_fra_biblioteket_hvor_hver_bib-fil_ligger
+Style_selection=Valg_af_stil
+The_panel_below_shows_the_definition_of_the_default_style.=Panelet_nedenfor_viser_definitionen_af_standardstilen.
+If_you_want_to_use_it_as_a_template_for_a_new_style,_you_can_copy_the_contents_into_a_new_.jstyle_file=Hvis_du_vil_bruge_den_som_skabelon_for_en_ny_stil,_kan_du_kopiere_indholdet_til_en_ny_.jstyle-fil
+
+Default_style_(author-year_citations)=Standardstil_(forfatter-\u00e5r-referencer)
+Default_style_(numerical_citations)=Standardstil_(nummererede_referencer)
+No_valid_style_file_defined=Ingen_gyldig_stilfil_defineret
+Choose_pattern=V\u00e6lg_m\u00f8nster
+Use_the_bib_file_location_as_primary_file_directory=Brug_placeringen_af_bib-filen_som_standard_filbibliotek
+Could_not_run_the_gnuclient/emacsclient_program._Make_sure_you_have_the_emacsclient/gnuclient_program_installed_and_available_in_the_PATH.=Kunne_ikke_k\u00f8re_gnuclient/emacsclient._Tjek_at_du_har_programmet_installeret_og_tilg\u00e6ngeligt_i_PATH.
+Built-in_journal_list=Indbygget_tidsskriftsliste
+OpenOffice/LibreOffice_connection=Forbindelse_til_OpenOffice/LibreOffice
+You_can_add_additional_journal_names_by_setting_up_a_personal_journal_list,<br>as_well_as_linking_to_external_journal_lists.=Du_kan_tilf\u00f8je_flere_tidsskriftsnavne_ved_at_ops\u00e6tte_en_personlig_liste,<br>eller_linke_til_eksterne_lister.
+JabRef_includes_a_built-in_list_of_journal_abbreviations.=JabRef_har_en_indbygget_liste_over_tidsskriftsforkortelser.
+You_must_select_either_a_valid_style_file,_or_use_one_of_the_default_styles.=Du_skal_enten_v\u00e6lge_en_gyldig_stilfil_eller_bruge_en_af_standardstilene.
+You_must_select_either_a_valid_style_file,_or_use_a_default_style.=Du_skal_enten_v\u00e6lge_en_gyldig_stilfil_eller_bruge_en_af_standardstilene.
+Show=Vis
+
+This_is_a_simple_copy_and_paste_dialog._First_load_or_paste_some_text_into_the_text_input_area.<br>After_that,_you_can_mark_text_and_assign_it_to_a_BibTeX_field.=Dette_er_et_enkelt_klip-og-inds\u00e6t-vindue._Indl\u00e6s_eller_inds\u00e6t_f\u00f8rst_tekst_i_tekstfeltet.<br>Derefter_kan_du_markere_tekst_og_tildele_den_til_BibTeX-felter.
+Java_Bouncy_Castle_library_not_found._Please_download_and_install_it._For_more_information_see_http\://www.bouncycastle.org/.=Java_Bouncy_Castle-bibliotek_ikke_tilg\u00e6ngeligt._For_at_f\u00e5_adgang_til_dette_kan_du_installere_det._For_mere_information,_se_http://www.bouncycastle.org/.
+
+This_feature_generates_a_new_database_based_on_which_entries_are_needed_in_an_existing_LaTeX_document.=Denne_funktion_genererer_en_ny_database_baseret_p\u00e5,_hvilke_poster_der_er_brugt_i_et_eksisterende_LaTeX-dokument.
+You_need_to_select_one_of_your_open_databases_from_which_to_choose_entries,_as_well_as_the_AUX_file_produced_by_LaTeX_when_compiling_your_document.=Du_skal_v\u00e6lge_en_af_de_\u00e5bne_databaser,_hvor_enheder_skal_hentes_fra,_udover_AUX-filen_genereret_af_LaTeX_n\u00e5r_dokumentet_kompileres.
 First_select_entries_to_clean_up.=
 Cleanup_entry=
 Autogenerate_PDF_Names=
@@ -1428,7 +1427,7 @@ Autocomplete_after_following_number_of_characters=
 Name_format_used_for_autocompletion=
 Treatment_of_first_names=
 Cleanup_entries=
-Automatically_assign_new_entry_to_selected_groups=
+Automatically_assign_new_entry_to_selected_groups=Tildel_automatisk_nye_poster_til_valgte_grupper
 Move_DOIs_from_note_and_URL_field_to_DOI_field_and_remove_http_prefix=
 Format_content_of_month_field_to_#mon#=
 Ensure_that_page_ranges_are_of_the_form_num1--num2=
@@ -1440,22 +1439,22 @@ Doing_a_cleanup_for_%0_entries...=
 No_entry_needed_a_clean_up=
 One_entry_needed_a_clean_up=
 %0_entries_needed_a_clean_up=
-Error_importing_from_database=
+Error_importing_from_database=Fejl_ved_import_fra_database
 Minimize_to_system_tray=
 
-Error_downloading_file_'%0'=
-Download_failed=
-%0_databases_will_be_imported=
-Importing_cancelled=
-There_are_no_available_databases_to_be_imported=
-Import_from_SQL_database=
-Imported_%0_databases_successfully=
-<_CREATE_NEW_DATABASE_>=
-Remove_Selected=
-SQL_Database_Exporter=
-Select_target_SQL_database\:=
-SQL_Database_Importer=
-Please_select_which_JabRef_databases_do_you_want_to_import\:=
+Error_downloading_file_'%0'=Feil_ved_hentning_af_filen_'%0'
+Download_failed=Hentning_mislykkedes
+%0_databases_will_be_imported=%0_databaser_vil_blive_importeret
+Importing_cancelled=Import_afbrudt
+There_are_no_available_databases_to_be_imported=Det_er_ingen_databaser_tilg\u00e6ngelige_for_import
+Import_from_SQL_database=Import_fra_SQL-database
+Imported_%0_databases_successfully=Importerede_%0_databaser
+<_CREATE_NEW_DATABASE_>=<_OPRET_NY_DATABASE_>
+Remove_Selected=Fjern_valgte
+SQL_Database_Exporter=Eksporter_SQL-database
+Select_target_SQL_database\:=V\u00e6lg_destinationsdatabase\:
+SQL_Database_Importer=Importer_SQL-database
+Please_select_which_JabRef_databases_do_you_want_to_import\:=V\u00e6lg_venligst_hvilke_JabRef-databaser,_du_vil_importere\:
 
 Group_tree_could_not_be_parsed._If_you_save_the_BibTeX_database,_all_groups_will_be_lost.=
 Attach_file=
@@ -1653,3 +1652,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_de.properties b/src/resource/JabRef_de.properties
index e1fcd5e..1710dd0 100644
--- a/src/resource/JabRef_de.properties
+++ b/src/resource/JabRef_de.properties
@@ -2058,7 +2058,6 @@ Create_entry_based_on_content=Eintrag_anhand_von_Inhalt_erstellen
 Do_not_show_this_box_again_for_this_import=Dialog_f\u00fcr_diesen_Import_nicht_wieder_anzeigen
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Immer_diesen_PDF-Importstil_benutzen_(nicht_bei_jedem_Import_nachfragen)
 Error_creating_email=Fehler_beim_Erstellen_der_E-Mail
-Could_not_open_directory=Ordner_konnte_nicht_ge\u00f6ffnet_werden
 Entries_added_to_an_email=Eintr\u00e4ge_zur_E-Mail_hinzugef\u00fcgt
 exportFormat=Exportformat
 Output_file_missing=Ausgabedatei_fehlt
@@ -2183,7 +2182,7 @@ Autocompletion_options=Autovervollst\u00e4ndigungs-Optionen
 Autocomplete_after_following_number_of_characters=Autovervollst\u00e4ndigung_nach_der_folgenden_Anzahl_an_Zeichen
 Name_format_used_for_autocompletion=Namensformat_f\u00fcr_die_Autovervollst\u00e4ndigung
 Treatment_of_first_names=Behandlung_von_Vornamen
-Cleanup_entries=Eintr\u00e4ge_werden_aufger\u00e4umt
+Cleanup_entries=Eintr\u00e4ge_aufr\u00e4umen
 Automatically_assign_new_entry_to_selected_groups=Neuen_Eintrag_automatisch_den_ausgew\u00e4hlten_Gruppen_zuordnen
 Move_DOIs_from_note_and_URL_field_to_DOI_field_and_remove_http_prefix=DOIs_von_den_Feldern_note_und_URL_ins_DOI-Feld_verschieben_und_das_http-Pr\u00e4fix_l\u00f6schen
 Format_content_of_month_field_to_#mon#=Inhalt_des_month-Feldes_zu_#mon#_umformatieren
@@ -2410,3 +2409,5 @@ Show_number_of_elements_contained_in_each_group=Anzahl_der_Elemente_jeder_Gruppe
 
 Open_folder=Ordner_\u00f6ffnen
 Opened_%0_folder(s).=%0_Ordner_ge\u00f6ffnet.
+
+Searches_for_unlinked_PDF_files_on_the_file_system=Sucht_nach_nicht_verlinkten_PDF-Dateien_im_Dateisystem
diff --git a/src/resource/JabRef_en.properties b/src/resource/JabRef_en.properties
index aa67074..287ff42 100644
--- a/src/resource/JabRef_en.properties
+++ b/src/resource/JabRef_en.properties
@@ -2047,7 +2047,6 @@ Create_entry_based_on_content=Create_entry_based_on_content
 Do_not_show_this_box_again_for_this_import=Do_not_show_this_box_again_for_this_import
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)
 Error_creating_email=Error_creating_email
-Could_not_open_directory=Could_not_open_directory
 Entries_added_to_an_email=Entries_added_to_an_email
 exportFormat=exportFormat
 Output_file_missing=Output_file_missing
@@ -2396,5 +2395,6 @@ Rebind_C-a,_too=Rebind_C-a,_too
 
 Show_number_of_elements_contained_in_each_group=Show_number_of_elements_contained_in_each_group
 
-Opened_%0_folder(s).=Opened_%0_folder(s).
 
+Searches_for_unlinked_PDF_files_on_the_file_system=Searches_for_unlinked_PDF_files_on_the_file_system
+Opened_%0_folder(s).=Opened_%0_folder(s).
diff --git a/src/resource/JabRef_es.properties b/src/resource/JabRef_es.properties
index 79362e4..e5e10c8 100644
--- a/src/resource/JabRef_es.properties
+++ b/src/resource/JabRef_es.properties
@@ -165,7 +165,6 @@ Command_line_id=Id_de_l\u00ednea_de_comando
 Complete_record=Completar_registro
 Connect=Conectar
 Connect_to_SQL_database=Conectar_a_base_de_datos_SQL
-Connect_to_SQL_Database=Conectar_a_Base_de_Datos_SQL
 Connection_to_IEEEXplore_failed=Ha_fallado_la_conexi\u00f3n_a_IEEEXplore
 Contained_in=Contenido_en
 Content=Contenido
@@ -179,7 +178,6 @@ Copy_file_to_file_directory.=Copiar_archivos_a_carpeta
 Copy_files_to_file_directory.=Copiar_archivos_al_directorio_de_archivos
 Copy_to_clipboard=Copiar_al_portapapeles
 Could_not_call_executable=No_se_puede_llamar_al_ejecutable
-Could_not_connect_to_host_=No_se_puede_conectar_con_el_host
 Could_not_connect_to_Vim_server._Make_sure_that_Vim_is_running<BR>with_correct_server_name.=No_se_puede_conectar_con_el_servidor_Vim._Aseg\u00farese_de_que_Vim_est\u00e1_corriendo<BR>_con_el_nombre_de_servidor_correcto.
 Could_not_export_file=No_se_puede_exportar_el_archivo
 Could_not_export_preferences=No_se_pueden_exportar_las_preferencias
@@ -197,15 +195,12 @@ Could_not_print_preview=No_se_puede_imprimir_la_vista_previa
 Could_not_run_the_'vim'_program.=No_se_puede_ejecutar_Vim
 Could_not_save_file=No_se_puede_guardar_el_archivo
 Could_not_save_file._Character_encoding_'%0'_is_not_supported.=No_se_puede_guardar_el_archivo._La_codificaci\u00f3nd_de_caracteres_'%0'_no_est\u00e1_soportada.
-Create_group=Crear_grupo
 Created_groups.=Grupos_creados.
 crossreferenced_entries_included=entradas_de_referencia_cruzada_inclu\u00eddas
 Current_content=Contenido_actual
 Current_value=Valor_actual
 Custom_entry_types=Tipos_de_entrada_personalizados
 Custom_entry_types_found_in_file=Se_han_encontrado_tipos_de_entrada_personalizados_en_el_archivo
-Custom_icon_theme=Tema_de_icono_personalizado
-Custom_icon_theme_file=Archivo_con_tema_de_iconos_personalizado
 Custom_importers=Importador_personalizado
 Customize_entry_types=Tipos_de_entrada_personalizados
 Customize_key_bindings=Pesonalizar_combinaciones_de_tecla
@@ -267,8 +262,6 @@ Download_file=Descargar_archivo
 Downloading...=Descargando...
 Drag_and_Drop_Error=Error_al_arrastrar_y_soltar
 Drop_%0=Soltar_%0
-duplicate_BibTeX_key=clave_BibText_duplicada
-Duplicate_BibTeX_key.=Clave_BibTex_duplicada
 Duplicate_BibTeX_key._Grouping_may_not_work_for_this_entry.=Clave_BibText_duplicada._El_agrupamiento_puede_no_funcionar_para_esta_entrada.
 Duplicate_Key_Warning=Alerta_de_Clave_Duplicada
 Duplicate_pairs_found=Se_encontrarion_pares_duplicados
@@ -291,10 +284,8 @@ Edit_preamble=Editar_pre\u00e1mbulo
 Edit_strings=Editar_cadenas
 Editor_options=Opciones_del_editor
 empty_BibTeX_key=clave_BibText_vac\u00eda
-Empty_BibTeX_key.=Clave_BibTex_vac\u00eda.
 Empty_BibTeX_key._Grouping_may_not_work_for_this_entry.=Clave_BibText_vac\u00eda._El_agrupamiento_puede_no_funcionar_para_esta_entrada.
 empty_database=base_de_datos_vac\u00eda
-Enable_source_editing=Permitir_la_edici\u00f3n_de_fuente
 Enable_word/name_autocompletion=Permitir_autocompletado_de_palabra/nombre
 Endnote=Endnote
 Enter_URL=Introducir_URL
@@ -316,7 +307,6 @@ Entry_type_names_are_not_allowed_to_contain_white_space_or_the_following_charact
 Entry_types=Tipos_de_entrada
 Error=Error
 Error\:_=Error:
-Error_converting_Bibtex_to_XMP\:_%0=Error_convirtiendo_BibTex_a_XMP:_%0
 Error_converting_XMP_to_'%0'...=Error_convirtiendo_XMP_a_'%0'...
 Error_exporting_to_clipboard=Error_exportando_al_portapapeles
 Error_in_field=Error_en_campo
@@ -359,7 +349,6 @@ Field_names_are_not_allowed_to_contain_white_space_or_the_following_characters=N
 Field_sizes=Tama\u00f1o_de_campo
 Field_to_filter=Filtro_a_partir_de_campo
 Field_to_group_by=Agrupar_a_partir_de_campo
-Fields=Campos
 File=Archivo
 file=archivo
 File_'%0'_is_already_open.=El_archivo_'%0'_ya_est\u00e1_abierto.
@@ -381,7 +370,6 @@ Finished_autosetting_external_links.=Se_ha_finalizado_la_configuraci\u00f3n_auto
 Finished_synchronizing_%0_links._Entries_changed%c_%1.=Se_ha_finalizado_la_sincronizaci\u00f3n_de_%0_enlaces._Se_cambiaron_%c_%1_entradas.
 Finished_writing_XMP-metadata._Wrote_to_%0_file(s).=Se_ha_finalizado_la_escritura_de_los_metadtos_XMP._Se_escribi\u00f3_en_%0_archivo(s).
 Finished_writing_XMP_for_%0_file_(%1_skipped,_%2_errors).=Se_finaliz\u00f3_la_escritura_XMP_en_archivo_%0_(%1_evitados,_%2_errores).
-First_select_the_entries_you_want_keys_to_be_generated_for.Sele=Seleccione_primero_las_entradas_para_las_que_quiera_generar_claves.
 Fit_table_horizontally_on_screen=Ajustar_la_tabla_al_ancho_de_pantalla
 Float=Flotar
 Float_marked_entries=Flotar_entradas_marcadas
@@ -475,7 +463,6 @@ Insert_selected_citations_into_LyX/Kile=Insertar_citas_seleccionadas_en_LyX/Kile
 Insert_selected_citations_into_WinEdt=Insertar_citas_seleccionadas_en_WidEdt
 insert_string_=Insertar_cadena
 Insert_URL=Insertar_URL
-integrity=Integridad
 Integrity_check=Comprobaci\u00f3n_de_integridad
 Intersection=Intersecci\u00f3n
 Invalid_BibTeX_key=Clave_BibTeX_inv\u00e1lida
@@ -483,8 +470,6 @@ Invalid_date_format=Formato_de_fecha_no_v\u00e1lido
 Invalid_URL=URL_no_v\u00e1lida
 Inverted=Invertido
 ISO_abbreviation=Abreviatura_ISO
-Item_list_for_field=lista_de_elementos_para_campo
-jabref=jabref
 JabRef_help=Ayuda_de_JabRef
 JabRef_preferences=Preferencias_de_JabRef
 Journal_abbreviations=Abreviaturas_de_publicaciones
@@ -517,7 +502,6 @@ Listen_for_remote_operation_on_port=Escuchar_para_operaci\u00f3n_remota_en_el_pu
 Load_and_Save_preferences_from/to_jabref.xml_on_start-up_(memory_stick_mode)=Cargar_y_guardar_preferencias_desde/a_jabref.xml_al_arrancar_(modo_l\u00e1piz_de_memoria)
 Load_session=Cargar_sesi\u00f3n
 Loading_session...=Cargando_sesi\u00f3n...
-localhost=localhost
 Look_and_feel=Aspecto
 Looking_for_pdf...=Buscando_pdf...
 lower=inferior
@@ -586,7 +570,6 @@ No_entries_found._Please_make_sure_you_are_using_the_correct_import_filter.=No_s
 No_entries_found_for_the_search_string_'%0'=No_se_han_encontrado_entdas_para_la_cadena_de_b\u00fasqueda_'%0'
 No_entries_imported.=No_se_han_importado_entradas.
 No_entries_or_multiple_entries_selected.=Ninguna_o_m\u00faltiples_entradas_seleccionadas
-No_entries_selected=No_se_han_seleccionado_entradas.
 No_entries_selected.=No_se_han_seleccionado_entradas.
 No_exceptions_have_ocurred.=No_han_ocurrido_excepciones.
 No_files_found.=No_se_han_encontrado_archivos.
@@ -609,7 +592,6 @@ Nothing_to_redo=Nada_que_rehacer
 Nothing_to_undo=Nada_que_deshacer
 Number_of_references_to_fetch?=\u00bfN\u00famero_de_apariciones_a_recuperar?
 occurences=apariciones
-OK=OK
 Ok=Ok
 One_or_more_file_links_are_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?=Uno_o_m\u00e1s_archivos_son_del_tipo_'%0',_que_no_est\u00e1_definido._\u00bfQu\u00e9_desea_hacer?
 One_or_more_keys_will_be_overwritten._Continue?=Una_o_claves_se_sobreescribir\u00e1n._\u00bfContinuar?
@@ -664,7 +646,6 @@ Please_enter_a_name_for_the_group.=Introduzca_un_nombre_para_el_grupo.
 Please_enter_a_search_term._For_example,_to_search_all_fields_for_<b>Smith</b>,_enter%c<p><tt>smith</tt><p>To_search_the_field_<b>Author</b>_for_<b>Smith</b>_and_the_field_<b>Title</b>_for_<b>electrical</b>,_enter%c<p><tt>author%esmith_and_title%eelectrical</tt>=Introduzca_un_t\u00e9rmino_de_b\u00fasqueda._Por_ejemplo,_para_buscar_en_todos_los_campos_<b>Garc\u00eda</b>,_introduzca%c<p><tt>garc\u00eda</tt><p>_Para_buscar_<b>Garc\u00eda</b>_dentro_del_campo_<b>Author</b>_y_<b>el\u00e9ctric [...]
 Please_enter_the_field_to_search_(e.g._<b>keywords</b>)_and_the_keyword_to_search_it_for_(e.g._<b>electrical</b>).=Introduzca_el_campo_en_que_buscar_(p.e._<b>keywords</b>)_y_la_palabra_clave_a_buscar_(p.e._<b>el\u00e9ctrico</b>).
 Please_enter_the_string's_label=Introduzca_la_etiqueta_de_la_cadena
-Please_select_an_importer=Seleccionar_un_importador
 Please_select_an_importer.=Seleccionar_un_importador.
 Please_select_exactly_one_group_to_move.=Seleccione_exactamente_un_grupo_para_mover.
 Please_specify_the_=Especifique_el
@@ -734,7 +715,6 @@ Removed_group_"%0".=el_grupo_"%0"_se_ha_eliminado.
 Removed_group_"%0"_and_its_subgroups.=Se_ha_eliminado_el_grupo_"%0"_y_sus_subgrupos.
 Removed_string=Cadena_eliminada
 Renamed_string=Cadena_renombrada
-Replace=Reemplazar
 Replace_(regular_expression)=Reemplazar_(Expresi\u00f3n_regular)
 Replace_string=Reemplazar_cadena
 Replace_with=Reemplazar_con
@@ -770,17 +750,14 @@ Saving_all_databases...=Guardando_todas_las_bases_de_datos...
 Saving_database=Guardando_base_de_datos
 Scan=Ecanear
 Search=Buscar
-Search_All_Fields=Buscar_en_todos_los_campos
 Search_all_fields=Buscar_en_todos_los_campos
 Search_error=Error_en_la_b\u00fasqueda
 Search_expression=Buscar_expresi\u00f3n
 Search_for=Buscar
 Search_general_fields=Buscar_en_campos_generales
 Search_IEEEXplore=Buscar_en_IEEEXplore
-Search_IEEExplore=Buscar_IEEExplore
 Search_optional_fields=Buscar_en_campos_opcionales
 Search_required_fields=Buscar_en_requeridos
-Search_Specified_Field(s)=Buscar_en_campo(s)_espec\u00edfico(s)
 Searched_database._Global_number_of_hits=Se_ha_buscado_en_la_base_de_datos._N\u00famero_global_de_coincidencias
 Searched_database._Number_of_hits=Se_ha_buscado_en_la_base_de_datos._N\u00famero_de_aciertos
 Searching_for_%0_file=Buscando_el_archivo_%0
@@ -803,7 +780,6 @@ Select_matches=Seleccionar_coincidencias
 Select_new_ImportFormat_Subclass=Seleccionar_nueva_subclase_de_formato_de_importaci\u00f3n
 Select_the_tree_nodes_to_view_and_accept_or_reject_changes=Seleccionar_nodos_de_\u00e1rbol_para_ver_y_aceptar_o_rechazar_los_cambios.
 Selected_entries=Entradas_seleccionadas
-Selector_enabled_fields=Campos_del_selector_habilitados
 Server_Hostname_\:=Nombre_de_host_del_servidor:
 Server_Type_\:=Tipo_de_servidor:
 Set_field=Establecer_campo
@@ -919,7 +895,6 @@ Try_different_encoding=Probar_una_codificaci\u00f3n_diferente
 Type_set_to_'other'=Se_ha_configurado_el_tipo_como_'otro'
 Unabbreviate_journal_names_of_the_selected_entries=Desabreviar_nombre_de_revista_de_las_entradas_seleccionadas
 Unabbreviated_%0_journal_names.=%0_nombres_de_revista_desabreviados
-unable_to_access_LyX-pipe=No_se_puede_acceder_al_canal_LyX
 Unable_to_create_graphical_interface=No_se_puede_crear_la_interfaz_gr\u00e1fica
 Unable_to_open_file.=No_se_puede_abrir_el_archivo
 Unable_to_open_link._The_application_'%0'_associated_with_the_file_type_'%1'_could_not_be_called.=No_se_puede_abrir_el_enlace._La_aplicaci\u00f3n_'%'_asociada_con_el_tipo_de_archivo_'%1'_no_puede_ser_lanzada.
@@ -949,8 +924,8 @@ Upgrade_file=Actualizar_archivo
 Upgrade_old_external_file_links_to_use_the_new_feature=Actualizar_enlaces_a_archivos_externos_para_usar_la_nueva_caracter\u00edstica.
 Upgraded_links.=Enlaces_actualizados.
 UPPER=SUPERIOR
-Upper_Each_First=Mayúsculas_En_Iniciales_De_Palabra
-Upper_first=Sólo_mayúscula_inicial
+Upper_Each_First=May\u00c3\u00basculas_En_Iniciales_De_Palabra
+Upper_first=S\u00c3\u00b3lo_may\u00c3\u00bascula_inicial
 usage=Uso
 Use_autocompletion_for_the_following_fields=Usar_autocompletar_para_los_siguientes_campos
 Use_default_viewer=Usar_visualizador_por_defecto
@@ -1005,7 +980,6 @@ Your_new_key_bindings_have_been_stored.=Sus_nuevas_combinaciones_de_teclas_han_s
 The_following_fetchers_are_available\:=Est\u00e1n_disponibles_los_siguientes_recuperadores_de_datos:
 Could_not_find_fetcher_'%0'=No_se_puede_encontrar_el_recuperador_de_datos_'%0'
 Running_Query_'%0'_with_fetcher_'%1'.=Ejecutando_consulta_'%0'_con_recuperador_'%1'
-Please_wait!=Espere,_por_favor
 Query_'%0'_with_fetcher_'%1'_did_not_return_any_results.=La_consulta_'%0'_con_el_recuperador_\u00a1%1'_no_devolvi\u00f3_ning\u00fan_resultado.
 Open_SPIRES_entry=Abrir_entrada_SPIRES
 Move/Rename_file=Mover/renombrar_archivo
@@ -1013,7 +987,6 @@ File_moved=Archivo_movido
 Move_file_failed=Error_al_mover_de_archivos
 Could_not_move_file=No_se_puede_mover_el_archivo
 Could_not_find_file_'%0'.=No_se_encuentra_el_archivo_'%0'.
-Move/rename_file=Mover(renombrar_archivo
 Number_of_entries_successfully_imported=N\u00famero_de_entradas_importadas_con_\u00e9xito
 Import_canceled_by_user=Importaci\u00f3n_cancelada_por_el_usuario
 Progress\:_%0_of_%1=Progreso:_%0_de_%1
@@ -1109,7 +1082,6 @@ Version=Versi\u00f3n
 Unknown=Desconocido
 Not_loaded=No_cargado
 Loaded=Cargado
-Could_not_determine_version_of_=No_se_puede_determinar_la_versi\u00f3n_de
 Install_anyway?=\u00bfInstalar_de_todas_formas?
 Looking_for_full_text_document...=Buscando_texto_completo_de_documento...
 Unable_to_find_full_text_article._No_search_algorithm_defined_for_the_'%0'_web_site.=No_se_puede_encontrar_el_texto_completo_del_art\u00edculo._No_se_ha_definido_un_algoritmo_de_b\u00fasqueda_para_el_sitio_web_'%0'.
@@ -1135,7 +1107,6 @@ Old_plugin_versions_will_be_deleted_next_time_JabRef_starts_up.=Las_versiones_an
 Formatter_not_found\:_%0=Formateador_no_encontrado\:_%0
 The_following_formatters_could_not_be_found=Los_siguientes_formateadores_no_se_pueden_encontrar
 Clear_inputarea=Limpiar_\u00e1rea_de_entrada
-Automatically_set_file_links_for_this_entrynb=Establecer_los_enlaces_de_archivo_autom\u00e1ticamente_para_esta_entrada
 Could_not_save,_file_locked_by_another_JabRef_instance.=No_se_puede_guardar._Fichero_bloqueado_por_otra_instancia_JabRef.
 File_is_locked_by_another_JabRef_instance.=El_archivo_est\u00e1_bloqueado_por_otra_instancia_de_JabRef.
 Do_you_want_to_override_the_file_lock?=\u00bfQuiere_saltarse_el_bloqueo_de_archivo?
@@ -1151,7 +1122,6 @@ The_#_character_is_not_allowed_in_BibTeX_strings_unless_escaped_as_in_'\\#'.=El_
 Before_saving,_please_edit_any_strings_containing_the_#_character.=Por_favor,_edite_todas_las_cadenas_conteniendo_#_anters_de_guardar.
 Save_without_backup?=\u00bfGuardar_sin_copia_de_seguridad?
 Unable_to_create_backup=No_es_posible_crear_la_copia_de_seguridad
-File_directory_is_not_set_or_does_not_exist.=La_carpeta_de_archivo_no_est\u00e1_establecida_o_no_existe.
 Move_file_to_file_directory.=Mover_archivo_al_directorio_de_archivos.
 Rename_file_to=Renombrar_archivo_a
 <b>All_Entries</b>_(this_group_cannot_be_edited_or_removed)=<b>Todas_las_entradas</b>_(este_grupo_no_puede_ser_editado_o_eliminado)
@@ -1169,8 +1139,6 @@ Error_while_fetching_from_ScienceDirect=Error_al_recuperar_desde_ScienceDirect
 Error_initializing_custom_export_format_from_string_'%0'=Error_inicializando_formato_de_exportaci\u00f3n_personalizado_a_partir_de_la_cadena_'%0'
 BibLaTeX_mode=Modo_BibLaTex
 Optional_fields_2=Campos_opcionales_2
-Please_wait=Por_favor,_espere
-Waiting_for_save_operation_to_finish\u00ba\u00ba=Esperando_a_finalizar_el_guardado_para_salir
 Resolving_duplicate_BibTeX_keys...=Resolviendo_claves_BibTeX_duplicadas...
 Finished_resolving_duplicate_BibTeX_keys._%0_entries_modified.=Resoluci\u00f3n_de_claves_BibTeX_duplicadas_finalizada._%0_entradas_modificadas.
 This_database_contains_one_or_more_duplicated_BibTeX_keys.=Esta_base_de_datos_contiene_una_o_m\u00e1s_claves_BibTeX_duplicadas.
@@ -1224,14 +1192,12 @@ Update_Existing_Entry=Actualizar_entrada_existente
 Mr._dLib=Mr._dLib
 More_information=M\u00e1s_informaci\u00f3n
 Fetching_Metadata...=Recuperando_metadatos...
-Metadata=Metadatos
 Autocomplete_names_in_'Firstname_Lastname'_format_only=Autocompletar_nombres_s\u00f3lo_en_el_formato_'Nombre_Apellidos'
 Autocomplete_names_in_'Lastname,_Firstname'_format_only=Autocompletar_nombres_s\u00f3lo_en_el_formato_'Apellidos,_Nombre'
 Autocomplete_names_in_both_formats=Autocompletar_nombres_en_ambos_formatos
 Marking_color_%0=Marcando_color_%0
 The_name_'comment'_can_not_be_used_as_an_entry_type_name.=El_nombre_'comment'_no_puede_ser_usado_como_nombre_de_tipo_de_entrada.
 You_must_enter_an_integer_value_in_the_text_field_for=Es_preciso_introducir_un_valor_entero_en_el_campo_de_texto_para
-File_directory=Carpeta_de_archivos
 Send_as_email=Enviar_como_email
 References=Referencias
 Sending_of_emails=Env\u00edo_de_emails
@@ -1241,9 +1207,8 @@ Create_entry_based_on_content=Crear_entrada_basada_en_contenido
 Do_not_show_this_box_again_for_this_import=No_mostrar_este_mensaje_de_nuevo_para_esta_importaci\u00f3n
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Usar_siempre_este_estilo_de_importaci\u00f3n_de_PDF_(no_preguntar_cada_vez)
 Error_creating_email=Error_creando_email
-Could_not_open_directory=No_se_puede_abrir_la_carpeta
 Entries_added_to_an_email=Entradas_a\u00f1adidas_al_email
-exportFormat=Formato_de_exportación
+exportFormat=Formato_de_exportaci\u00c3\u00b3n
 Output_file_missing=Fichero_de_salida_no_encontrado
 No_search_matches.=No_hay_coincidencias_en_la_b\u00fasqueda.
 The_output_option_depends_on_a_valid_input_option.=La_opci\u00f3n_de_salida_depende_de_una_opci\u00f3n_de_entrada_v\u00e1lida.
@@ -1263,7 +1228,6 @@ Extra_information_(e.g._page_number)=Informaci\u00f3n_extra_(p.e._n\u00famero_de
 Manage_citations=Administrar_citas
 Problem_modifying_citation=Problema_al_modificar_cita
 Citation=Cita
-Context=Contexto
 Extra_information=Informaci\u00f3n_extra
 Could_not_resolve_BibTeX_entry_for_citation_marker_'%0'.=No_se_puede_resolver_la_entrada_BibTeX_para_el_marcador_de_citas_'%0'
 Styles=Estilos
@@ -1289,12 +1253,10 @@ Combine_pairs_of_citations_that_are_separated_by_spaces_only=Combinar_pares_de_c
 Autodetection_failed=Fall\u00f3_la_autodetecci\u00f3n
 Connecting=Conectando...
 Please_wait...=Por_favor,_espere...
-Unable_to_connect=No_es_posible_conectar
 Set_connection_parameters=Establecer_par\u00e1metros_de_conexi\u00f3n
 Path_to_OpenOffice_directory=Ruta_al_directorio_OpenOffice/LibreOffice
 Path_to_OpenOffice_executable=Ruta_al_ejecutable_de_OpenOffice/LibreOffice
 Path_to_OpenOffice_library_dir=Ruta_a_la_carpeta_de_librer\u00edas_OpenOffice/LibreOffice
-Autodetect=Autodetectar
 Connection_lost=Se_ha_perdido_la_conexi\u00f3n
 The_paragraph_format_is_controlled_by_the_property_'ReferenceParagraphFormat'_or_'ReferenceHeaderParagraphFormat'_in_the_style_file.=El_formato_de_p\u00e1rrafo_est\u00e1_controlado_por_la_propiedad_'ReferenceParagraphFormat'_o_'_ReferenceHeaderParagraphFormat'_en_el_archivo_de_estilo.
 The_character_format_is_controlled_by_the_citation_property_'CitationCharacterFormat'_in_the_style_file.=El_formato_de_tipo_de_letra_est\u00e1_controlado_por_la_propiedad_de_la_cita_'CitationCharacterFormat0_en_el_archivo_de_estilo.
@@ -1376,12 +1338,10 @@ Doing_a_cleanup_for_%0_entries...=Haciendo_la_limpieza_de_%0_entradas
 No_entry_needed_a_clean_up=Ninguna_entrada_necesit\u00f3_de_limpieza
 One_entry_needed_a_clean_up=S\u00f3lo_una_entrada_necesit\u00f3_limpieza
 %0_entries_needed_a_clean_up=%0_entradas_necesitarion_limpieza
-Imported_=Importado
 Error_importing_from_database=Error_al_importar_desde_base_de_datos
 %0_databases_will_be_imported=%0_bases_de_datos_ser\u00e1n_importadas
 Imported_%0_databases_successfully=%0_bases_de_datos_importadas_con_\u00e9xito
 Minimize_to_system_tray=Minimizar_a_la_bandeja_del_sistema
-Incomplete_search_results=Resultados_de_b\u00fasqueda_incompletos
 Error_downloading_file_'%0'=Error_descargando_el_archivo_'%0'
 Download_failed=Fall\u00f3_la_descarga
 Importing_cancelled=Importaci\u00f3n_cancelada
@@ -1401,10 +1361,6 @@ Unknown_preference_key_'%0'=Clave_de_preferencia_desconocida_'%0'
 Unable_to_clear_preferences.=No_es_posible_limpiar_preferencias.
 Reset_preferences_(key1,key2,..._or_'all')=Restablecer_preferencias_(key1,key2,..._or_'todas')
 Find_unlinked_files=Buscar_archivos_desenlazados
-Select_All=Seleccionar_todo
-Unselect_All=Deseleccionar_todo
-Expand_All=Expandir_todo
-Collapse_All=Colapsar_todo
 Select_Directory=Seleccionar_directorio
 Choose_Directory=Escoger_directorio
 Use_the_selected_directory_to_start_with_the_search.=Usar_la_carpeta_seleccionada_para_comenzar_la_b\u00fasqueda.
@@ -1439,7 +1395,6 @@ Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefereren
 How_would_you_like_to_link_to_'%0'?=\u00bfC\u00f3mo_desea_enlazar_'%0'?
 Marked_entries_as_relevant=Entradas_marcadas_como_relevantes
 Marked_entries'_quality_as_good=Calidad_de_las_entradas_marcadas_como_buenas
-Set_priority=Establecer_prioridad
 no_preview_available=sin_vista_previa
 Enable_PDF_preview=Habilitar_vista_previa_de_PDF
 Show_one_letter_heading_for_icon_columns=Mostrar_encabezamiento_de_una_letra_para_columnas_de_icono
@@ -1494,7 +1449,6 @@ If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.=Si_una_entra
 To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.=Para_deshabilitar_el_modo_l\u00e1piz_de_memoria,_renombre_o_elimine_el_archivo_jabrf.xml_en_la_misma_carpeta_que_JabRef.
 Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!=Tenga_en_cuanta_que_es_una_versi\u00f3n_beta_temprana._\u00a1No_la_use_sin_hacer_una_copia_de_seguridad_de_sus_archivos!
 A_string_with_that_label_already_exists=Una_cadena_con_esa_etiqueta_ya_existe
-File_has_been_updated_externally._Are_you_sure_you_want_to_save?=El_archivo_se_ha_actualizado_externamente._\u00bfEst\u00e1_seguro_de_querer_guardar?
 Could_not_connect_to_a_running_gnuserv_process._Make_sure_that_Emacs_or_XEmacs_is_running,<BR>and_that_the_server_has_been_started_(by_running_the_command_'server-start'/'gnuserv-start').=No_se_puede_conectar_con_un_proceso_gnuserv_ejecut\u00e1ndose._Aseg\u00farese_de_que_Emacs_o_XEmacs_est\u00e1_ejecut\u00e1ndose,<BR>y_que_el_servidor_se_ha_arrancado_(ejecutando_el_comando_'server-start'/'gnuserv-start').
 Use_the_following_delimiter_character(s)\:=Usar_como_caracter(es)_delimitador(es):
 Created_group_"%0".=Creado_grupo_"%0".
@@ -1575,14 +1529,14 @@ Host=Host
 Port=Puerto
 Please_specify_both_hostname_and_port=Especifique_tanto_nombre_de_host_como_puerto
 Invalid_setting=Ajuste_inv\u00e1lido
-Automatically_set_file_links_for_this_entry=Ajustar enlaces de archivo automáticamente para esta entrada
-Clear_connection_settings=Limpiar ajustes de conexión
+Automatically_set_file_links_for_this_entry=Ajustar enlaces de archivo autom\u00c3\u00a1ticamente para esta entrada
+Clear_connection_settings=Limpiar ajustes de conexi\u00c3\u00b3n
 Cleared_connection_settings.=Ajustes de conexi\u00f3n limpiados
 Collapse_all=Colapsar todo
 Error_converting_BibTeX_to_XMP\:_%0=Error convirtiendo BibTeX a XMP:_%0
 Expand_all=Expandir todo
 First_select_the_entries_you_want_keys_to_be_generated_for.=En primer lugar, seleccione las entradas para las que desea generar claves
-Rebind_C-a,_too=Volver a combinar C-a también
+Rebind_C-a,_too=Volver a combinar C-a tambi\u00c3\u00a9n
 Search_specified_field(s)=Buscar en campo(s) especificado(s)
 Unselect_all=Deseleccionar todo
 Waiting_for_save_operation_to_finish=Esperando a que acabe la operaci\u00f3n de guardado
@@ -1590,3 +1544,5 @@ Show_number_of_elements_contained_in_each_group=Mostrar n\u00famero de elementos
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_fr.properties b/src/resource/JabRef_fr.properties
index 07100ea..1dd4282 100644
--- a/src/resource/JabRef_fr.properties
+++ b/src/resource/JabRef_fr.properties
@@ -928,8 +928,8 @@ Upgrade_file=Mettre_\u00e0_jour_le_fichier
 Upgrade_old_external_file_links_to_use_the_new_feature=Mettre_\u00e0_jour_les_anciens_liens_vers_les_fichiers_externes_pour_utiliser_cette_nouvelle_fonction
 Upgraded_links.=Liens_mis_\u00e0_jour.
 UPPER=MAJUSCULE
-Upper_Each_First=Majuscule_Chaque_Premi\u00e8re
-Upper_first=Majuscule_premi\u00e8re
+Upper_Each_First=Majuscule_Chaque_Initiale
+Upper_first=Majuscule_initiale
 usage=usage
 Use_autocompletion_for_the_following_fields=Utiliser_l'auto-g\u00e9n\u00e9ration_pour_les_champs_suivants
 Use_default_viewer=Utiliser_l'afficheur_par_d\u00e9faut
@@ -1241,7 +1241,6 @@ Create_entry_based_on_content=Cr\u00e9er_une_entr\u00e9e_sur_la_base_du_contenu
 Do_not_show_this_box_again_for_this_import=Ne_plus_afficher_cette_bo\u00eete_de_dialogue_pour_cette_importation
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Toujours_utiliser_ce_style_d'importation_PDF_(et_ne_plus_demander_\u00e0_chaque_importation)
 Error_creating_email=Erreur_lors_de_la_cr\u00e9ation_du_courriel
-Could_not_open_directory=Le_r\u00e9pertoire_n'a_pas_pu_\u00eatre_ouvert
 Entries_added_to_an_email=Entr\u00e9es_ajout\u00e9es_\u00e0_un_courriel
 exportFormat=Format_d'exportation
 Output_file_missing=Fichier_de_sortie_manquant
@@ -1586,9 +1585,10 @@ Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=
 Use_custom_proxy_configuration=Utiliser_une_configuration_de_proxy_personnalis\u00e9e
 Clear_connection_settings=R\u00e9initialiser_les_param\u00e8tres_de_connexion
 Cleared_connection_settings.=Param\u00e8tres_de_connexion_r\u00e9initialis\u00e9s.
-Rebind_C-a,_too=
+Rebind_C-a,_too=R\u00e9-associer_aussi_C-a
 
-Show_number_of_elements_contained_in_each_group=
+Show_number_of_elements_contained_in_each_group=Afficher_le_nombre_d'\u00e9l\u00e9ments_contenus_dans_chaque_groupe
 
-Open_folder=
-Opened_%0_folder(s).=
+Open_folder=Ouvrir_le_r\u00e9pertoire
+Opened_%0_folder(s).=Ouvrir_%0_r\u00e9pertoire(s).
+Searches_for_unlinked_PDF_files_on_the_file_system=Rechercher_les_fichiers_PDF_non_li\u00e9s_dans_le_syst\u00e8me_de_fichiers
diff --git a/src/resource/JabRef_in.properties b/src/resource/JabRef_in.properties
index b8c94dd..fabe844 100644
--- a/src/resource/JabRef_in.properties
+++ b/src/resource/JabRef_in.properties
@@ -1214,7 +1214,6 @@ Create_entry_based_on_content=Membuat_entri_dari_isi_kandungan
 Do_not_show_this_box_again_for_this_import=Tidak_menampilkan_kotak_ini_lagi_saat_impor
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Selalu_menggunakan_Impor_PDF_(tidak_menanyakan_lagi_ketika_impor)
 Error_creating_email=Gagal_menulis_email
-Could_not_open_directory=Tidak_bisa_membuka_direktori
 Entries_added_to_an_email=Entri_ditambahkan_di_emel
 exportFormat=FormatEkspor
 Output_file_missing=Berkas_keluaran_hilang
@@ -1564,3 +1563,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_it.properties b/src/resource/JabRef_it.properties
index 3de9245..ad78e52 100644
--- a/src/resource/JabRef_it.properties
+++ b/src/resource/JabRef_it.properties
@@ -1323,7 +1323,6 @@ Create_entry_based_on_content=Crea_una_voce_in_base_al_contenuto
 Do_not_show_this_box_again_for_this_import=Non_mostrare_nuovamente_questo_dialogo_per_questa_importazione
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Usa_sempre_questa_modalit\u00e0_di_importazione_PDF_(non_chiedere_per_ogni_importazione)
 Error_creating_email=Errore_nella_creazione_della_email
-Could_not_open_directory=Impossibile_aprire_la_cartella
 Entries_added_to_an_email=Voci_aggiunte_ad_un'email
 exportFormat=Formato_di_esportazione
 Output_file_missing=File_di_output_mancante
@@ -1675,3 +1674,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_ja.properties b/src/resource/JabRef_ja.properties
index bed189d..6530768 100644
--- a/src/resource/JabRef_ja.properties
+++ b/src/resource/JabRef_ja.properties
@@ -2045,7 +2045,6 @@ Create_entry_based_on_content=\u5185\u5bb9\u306b\u57fa\u3065\u3044\u3066\u9805\u
 Do_not_show_this_box_again_for_this_import=\u3053\u306e\u8aad\u307f\u8fbc\u307f\u306b\u306f\u3053\u306e\u30dc\u30c3\u30af\u30b9\u3092\u3082\u3046\u8868\u793a\u3057\u306a\u3044
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=\u3053\u306ePDF\u53d6\u8fbc\u307f\u65b9\u6cd5\u3092\u5e38\u306b\u7528\u3044\u308b(\u305d\u3057\u3066\u8aad\u307f\u8fbc\u307f\u6bce\u306b\u5c0b\u306d\u306a\u3044)
 Error_creating_email=\u96fb\u5b50\u30e1\u30fc\u30eb\u3092\u751f\u6210\u3059\u308b\u969b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
-Could_not_open_directory=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f
 Entries_added_to_an_email=\u9805\u76ee\u304c\u96fb\u5b50\u30e1\u30fc\u30eb\u306b\u8ffd\u52a0\u3055\u308c\u307e\u3057\u305f
 exportFormat=exportFormat
 Output_file_missing=\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u5f53\u305f\u308a\u307e\u305b\u3093
@@ -2395,3 +2394,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_nl.properties b/src/resource/JabRef_nl.properties
index 5dddc67..d550141 100644
--- a/src/resource/JabRef_nl.properties
+++ b/src/resource/JabRef_nl.properties
@@ -1842,7 +1842,6 @@ This_feature_lets_new_files_be_opened_or_imported_into_an_already_running_instan
 Note_that_these_settings_are_used_for_the_legacy_<b>pdf</b>_and_<b>ps</b>_fields_only.<br>For_most_users,_setting_the_<b>Main_file_directory</b>_above_should_be_sufficient.=
 Legacy_file_fields=
 This_makes_JabRef_look_up_each_%0_extension_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.=
-Run_Fetcher,_e.g._"--fetch\=Medline\:cancer"
 The_ACM_Digital_Library=
 Reset=
 Use_IEEE_LaTeX_abbreviations=
@@ -2048,7 +2047,6 @@ Create_entry_based_on_content=
 Do_not_show_this_box_again_for_this_import=
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=
 Error_creating_email=
-Could_not_open_directory=
 Entries_added_to_an_email=
 exportFormat=
 Output_file_missing=
@@ -2397,3 +2395,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_no.properties b/src/resource/JabRef_no.properties
index 33071ba..6bd3e9f 100644
--- a/src/resource/JabRef_no.properties
+++ b/src/resource/JabRef_no.properties
@@ -2408,8 +2408,6 @@ Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Alltid_bruk_de
 
 Error_creating_email=Feil_ved_opprettelse_av_e-post
 
-Could_not_open_directory=Kunne_ikke_\u00e5pne_mappe
-
 Entries_added_to_an_email=Enheter_lagt_til_en_e-post
 
 exportFormat=Eksportformat
@@ -2651,7 +2649,7 @@ Automatically_assign_new_entry_to_selected_groups=Tilordne_automatisk_nye_enhete
 Error_importing_from_database=Feil_ved_import_fra_database
 
 Error_downloading_file_'%0'=Feil_ved_nedlasting_av_filen_'%0'
-Download_failed=Nedlsting_mislyktes
+Download_failed=Nedlasting_mislyktes
 
 %0_databases_will_be_imported=%0_databaser_vil_bli_importert
 Importing_cancelled=Import_avbrutt
@@ -2863,3 +2861,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_pt_BR.properties b/src/resource/JabRef_pt_BR.properties
index 97fd4b6..14035c3 100644
--- a/src/resource/JabRef_pt_BR.properties
+++ b/src/resource/JabRef_pt_BR.properties
@@ -1211,7 +1211,6 @@ Create_entry_based_on_content=Criar_refer\u00eancia_baseada_no_conte\u00fado
 Do_not_show_this_box_again_for_this_import=N\u00e3o_exibir_esta_caixa_de_di\u00e1logo_novamente_para_esta_importa\u00e7\u00e3o
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Sempre_utilizar_este_estilo_de_importa\u00e7\u00e3o_de_PDF_(e_n\u00e3o_pergunte_a_cada_importa\u00e7\u00e3o)
 Error_creating_email=Erro_ao_criar_email
-Could_not_open_directory=N\u00e3o_foi_poss\u00edvel_abrir_o_diret\u00f3rio
 Entries_added_to_an_email=refer\u00eancias_adicionadas_para_um_email
 exportFormat=exportFormat
 Output_file_missing=Arquivo_de_sa\u00edda_n\u00e3o_encontrado.
@@ -1560,3 +1559,5 @@ Rebind_C-a,_too=
 Show_number_of_elements_contained_in_each_group=
 
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_ru.properties b/src/resource/JabRef_ru.properties
index 410a6e8..8fd5d99 100644
--- a/src/resource/JabRef_ru.properties
+++ b/src/resource/JabRef_ru.properties
@@ -1,2391 +1,2400 @@
 #!
-#! created/edited by Popeye version 0.54 (popeye.sourceforge.net)
-#! encoding:ISO-8859-1
+#! created/edited
+#! encoding:Windows-1251
 
-%0_contains_the_Regular_Expression_<b>%1</b>=%0_contains_the_Regular_Expression_<b>%1</b>
+%0_contains_the_Regular_Expression_<b>%1</b>=%0%0 \u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5_<b>%1</b>
 
-%0_contains_the_term_<b>%1</b>=%0_contains_the_term_<b>%1</b>
+%0_contains_the_term_<b>%1</b>=%0 \u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00e5_<b>%1</b>
 
-%0_doesn't_contain_the_Regular_Expression_<b>%1</b>=%0_doesn't_contain_the_Regular_Expression_<b>%1</b>
+%0_doesn't_contain_the_Regular_Expression_<b>%1</b>=%0_\u00ed\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00e3\u00ee_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00ff_<b>%1</b>
 
-%0_doesn't_contain_the_term_<b>%1</b>=%0_doesn't_contain_the_term_<b>%1</b>
+%0_doesn't_contain_the_term_<b>%1</b>=%0_\u00ed\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00ff_<b>%1</b>
 
-%0_doesn't_match_the_Regular_Expression_<b>%1</b>=%0_doesn't_match_the_Regular_Expression_<b>%1</b>
+%0_doesn't_match_the_Regular_Expression_<b>%1</b>=%0_\u00ed\u00e5_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00ec\u00f3_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00fe_<b>%1</b>
 
-%0_doesn't_match_the_term_<b>%1</b>=%0_doesn't_match_the_term_<b>%1</b>
+%0_doesn't_match_the_term_<b>%1</b>=%0_\u00ed\u00e5_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00fe_<b>%1</b>
 
-%0_export_successful=%0_export_successful
+%0_export_successful=%0_\u00f3\u00f1\u00ef\u00e5\u00f8\u00ed\u00ee_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ee
 
-%0_field_set=%0_field_set
+%0_field_set=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00ea\u00e8_\u00ef\u00ee\u00eb\u00ff_%0
 
-%0_matches_the_Regular_Expression_<b>%1</b>=%0_matches_the_Regular_Expression_<b>%1</b>
+%0_matches_the_Regular_Expression_<b>%1</b>=%0_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00ec\u00f3_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00fe_<b>%1</b>
 
-%0_matches_the_term_<b>%1</b>=%0_matches_the_term_<b>%1</b>
+%0_matches_the_term_<b>%1</b>=%0_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00fe_<b>%1</b>
 
-<field_name>=<field_name>
-<HTML>Could_not_find_file_'%0'<BR>linked_from_entry_'%1'</HTML>=<HTML>Could_not_find_file_'%0'<BR>linked_from_entry_'%1'</HTML>
+<field_name>=<\u00e8\u00ec\u00ff_\u00ef\u00ee\u00eb\u00ff>
+<HTML>Could_not_find_file_'%0'<BR>linked_from_entry_'%1'</HTML>=<HTML>\u00cd\u00e5_\u00ee\u00e1\u00ed\u00e0\u00f0\u00f3\u00e6\u00e5\u00ed_\u00f4\u00e0\u00e9\u00eb_'%0'<BR>\u00ef\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e5_\u00e8\u00e7_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_'%1'</HTML>
 
-<no_field>=<no_field>
+<no_field>=<\u00e1\u00e5\u00e7_\u00ef\u00ee\u00eb\u00ff>
 
-<select>=<select>
+<select>=<\u00e2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc>
 
-<select_word>=<select_word>
-A_string_with_this_label_already_exists=A_string_with_this_label_already_exists
-Abbreviate_journal_names_of_the_selected_entries_(ISO_abbreviation)=Abbreviate_journal_names_of_the_selected_entries_(ISO_abbreviation)
-Abbreviate_journal_names_of_the_selected_entries_(MEDLINE_abbreviation)=Abbreviate_journal_names_of_the_selected_entries_(MEDLINE_abbreviation)
+<select_word>=<\u00e2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f1\u00eb\u00ee\u00e2\u00ee>
+A_string_with_this_label_already_exists=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_\u00f1_\u00f2\u00e0\u00ea\u00ee\u00e9_\u00ec\u00e5\u00f2\u00ea\u00ee\u00e9_\u00f3\u00e6\u00e5_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2
+Abbreviate_journal_names_of_the_selected_entries_(ISO_abbreviation)=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_(\u00e0\u00e1\u00e1\u00f0._ISO)
+Abbreviate_journal_names_of_the_selected_entries_(MEDLINE_abbreviation)=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_(\u00e0\u00e1\u00e1\u00f0._MEDLINE)
 
-Abbreviate_names=Abbreviate_names
-Abbreviated_%0_journal_names.=Abbreviated_%0_journal_names.
+Abbreviate_names=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9
+Abbreviated_%0_journal_names.=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00e4\u00eb\u00ff_%0_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2.
 
-Abbreviation=Abbreviation
+Abbreviation=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00e5
 
 About_JabRef=\u00ce_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00e5_JabRef
 
-Abstract=Abstract
+Abstract=\u00d0\u00e5\u00e7\u00fe\u00ec\u00e5
 
-Accept=Accept
+Accept=\u00cf\u00f0\u00e8\u00ed\u00ff\u00f2\u00fc
 
-Accept_change=Accept_change
+Accept_change=\u00cf\u00f0\u00e8\u00ed\u00ff\u00f2\u00fc_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5
 
-Action=Action
+Action=\u00c4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00e5
 
-Add=Add
+Add=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc
 
-Add_a_(compiled)_custom_ImportFormat_class_from_a_class_path._\nThe_path_need_not_be_on_the_classpath_of_JabRef.=Add_a_(compiled)_custom_ImportFormat_class_from_a_class_path._\nThe_path_need_not_be_on_the_classpath_of_JabRef.
+Add_a_(compiled)_custom_ImportFormat_class_from_a_class_path._\nThe_path_need_not_be_on_the_classpath_of_JabRef.=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_(\u00f1\u00ea\u00ee\u00ec\u00ef\u00e8\u00eb.)_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00ea\u00eb\u00e0\u00f1\u00f1_ImportFormat_\u00e8\u00e7_\u00ef\u00f3\u00f2\u00e8_\u00ea\u00eb\u00e0\u00f1\u00f1\u00e0._\n\u00cf\u00f3\u00f2\u00fc_\u00ec\u00ee\u00e6\u00e5\u00f2_\u00ed\u0 [...]
 
-Add_a_(compiled)_custom_ImportFormat_class_from_a_Zip-archive.\nThe_Zip-archive_need_not_be_on_the_classpath_of_JabRef.=Add_a_(compiled)_custom_ImportFormat_class_from_a_Zip-archive.\nThe_Zip-archive_need_not_be_on_the_classpath_of_JabRef.
+Add_a_(compiled)_custom_ImportFormat_class_from_a_Zip-archive.\nThe_Zip-archive_need_not_be_on_the_classpath_of_JabRef.=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_(\u00f1\u00ea\u00ee\u00ec\u00ef\u00e8\u00eb.)_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00ea\u00eb\u00e0\u00f1\u00f1_ImportFormat_\u00e8\u00e7_ZIP-\u00e0\u00f0\u00f5\u00e8\u00e2\u00e0._\nZIP-\u00e0\u00f0\u00f5\u00e8\u00e2_\u00ec\u00ee\u00e6\u00e5\u00f2_\u00ed\u00e5_ [...]
 
-add_entries_to_group=add_entries_to_group
+add_entries_to_group=\u00e4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Add_entry_selection_to_this_group=Add_entry_selection_to_this_group
+Add_entry_selection_to_this_group=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00fd\u00f2\u00f3_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Add_from_folder=Add_from_folder
+Add_from_folder=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e8\u00e7_\u00ef\u00e0\u00ef\u00ea\u00e8
 
-Add_from_jar=Add_from_jar
+Add_from_jar=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e8\u00e7_jar
 
-add_group=add_group
+add_group=\u00e4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Add_Group=Add_Group
+Add_Group=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Add_new=Add_new
+Add_new=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ed\u00ee\u00e2\u00f3\u00fe
 
-Add_Subgroup=Add_Subgroup
+Add_Subgroup=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Add_to_group=Add_to_group
+Add_to_group=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Added_group_"%0".=Added_group_"%0".
+Added_group_"%0".=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_"%0"_\u00e4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00e0.
 
-Added_new=Added_new
+Added_new=\u00c4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00e0_\u00ed\u00ee\u00e2\u00e0\u00ff
 
-Added_string=Added_string
+Added_string=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_\u00e4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00e0
 
-Additionally,_entries_whose_<b>%0</b>_field_does_not_contain_<b>%1</b>_can_be_assigned_manually_to_this_group_by_selecting_them_then_using_either_drag_and_drop_or_the_context_menu._This_process_adds_the_term_<b>%1</b>_to_each_entry's_<b>%0</b>_field._Entries_can_be_removed_manually_from_this_group_by_selecting_them_then_using_the_context_menu._This_process_removes_the_term_<b>%1</b>_from_each_entry's_<b>%0</b>_field.=Additionally,_entries_whose_<b>%0</b>_field_does_not_contain_<b>%1</b>_ [...]
+Additionally,_entries_whose_<b>%0</b>_field_does_not_contain_<b>%1</b>_can_be_assigned_manually_to_this_group_by_selecting_them_then_using_either_drag_and_drop_or_the_context_menu._This_process_adds_the_term_<b>%1</b>_to_each_entry's_<b>%0</b>_field._Entries_can_be_removed_manually_from_this_group_by_selecting_them_then_using_the_context_menu._This_process_removes_the_term_<b>%1</b>_from_each_entry's_<b>%0</b>_field.=\u00ca\u00f0\u00ee\u00ec\u00e5_\u00f2\u00ee\u00e3\u00ee,_\u00e7\u00e0\u [...]
 
-Advanced=Advanced
-All_custom_file_types_will_be_lost._Proceed?=All_custom_file_types_will_be_lost._Proceed?
+Advanced=\u00d0\u00e0\u00f1\u00f8\u00e8\u00f0\u00e5\u00ed\u00ed\u00fb\u00e5
+All_custom_file_types_will_be_lost._Proceed?=\u00c2\u00f1\u00e5_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00f2\u00e8\u00ef\u00fb_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e1\u00f3\u00e4\u00f3\u00f2_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
 
-All_Entries=All_Entries
+All_Entries=\u00c2\u00f1\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-All_entries=All_entries
-All_entries_of_this_type_will_be_declared_typeless._Continue?=All_entries_of_this_type_will_be_declared_typeless._Continue?
+All_entries=\u00c2\u00f1\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+All_entries_of_this_type_will_be_declared_typeless._Continue?=\u00c2\u00f1\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00fd\u00f2\u00ee\u00e3\u00ee_\u00f2\u00e8\u00ef\u00e0_\u00e1\u00f3\u00e4\u00f3\u00f2_\u00ee\u00e1\u00fa\u00ff\u00e2\u00eb\u00e5\u00ed\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00ff\u00ec\u00e8_'\u00e1\u00e5\u00e7_\u00f2\u00e8\u00ef\u00e0'._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00f2\u00fc?
 
-All_fields=All_fields
+All_fields=\u00c2\u00f1\u00e5_\u00ef\u00ee\u00eb\u00ff
 
-All_subgroups_(recursively)=All_subgroups_(recursively)
+All_subgroups_(recursively)=\u00c2\u00f1\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_(\u00f0\u00e5\u00ea\u00f3\u00f0\u00f1\u00e8\u00e2\u00ed\u00ee)
 
-Allow_editing_in_table_cells=Allow_editing_in_table_cells
-An_Error_occurred_while_fetching_from_OAI2_source_(%0)\:=An_Error_occurred_while_fetching_from_OAI2_source_(%0)\:
-An_Exception_ocurred_while_accessing_'%0'=An_Exception_ocurred_while_accessing_'%0'
-An_SAXException_ocurred_while_parsing_'%0'\:=An_SAXException_ocurred_while_parsing_'%0'\:
+Allow_editing_in_table_cells=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e8\u00f2\u00fc_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5_\u00ff\u00f7\u00e5\u00e5\u00ea_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
+An_Error_occurred_while_fetching_from_OAI2_source_(%0)\:=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_\u00e8\u00e7_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea\u00e0_OAI2_(%0):
+An_Exception_ocurred_while_accessing_'%0'=\u00c8\u00f1\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ef\u00f0\u00e8_\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00e5_\u00ea_'%0'
+An_SAXException_ocurred_while_parsing_'%0'\:=\u00c8\u00f1\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_SAX_\u00ef\u00f0\u00e8_\u00e0\u00ed\u00e0\u00eb\u00e8\u00e7\u00e5_'%0':
 
-and=and
-and_inside_the_JabRef-jar\:=and_inside_the_JabRef-jar\:
+and= \u00e8
+and_inside_the_JabRef-jar\:=\u00e8_\u00e2_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00ec_JabRef-jar:
 
-and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.
+and_the_class_must_be_available_in_your_classpath_next_time_you_start_JabRef.=\u00e8_\u00ea\u00eb\u00e0\u00f1\u00f1_\u00e4\u00ee\u00eb\u00e6\u00e5\u00ed_\u00e1\u00fb\u00f2\u00fc_\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00e5\u00ed_\u00e2_\u00ef\u00f3\u00f2\u00e8_\u00ea\u00eb\u00e0\u00f1\u00f1\u00e0_\u00ef\u00f0\u00e8_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e5\u00ec_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5_JabRef.
 
-any_field_that_matches_the_regular_expression_<b>%0</b>=any_field_that_matches_the_regular_expression_<b>%0</b>
+any_field_that_matches_the_regular_expression_<b>%0</b>=\u00eb\u00fe\u00e1\u00ee\u00e5_\u00ef\u00ee\u00eb\u00e5,_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e5\u00e5_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00ec\u00f3_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00fe_<b>%0</b>
 
-Appearance=Appearance
+Appearance=\u00cf\u00f0\u00e5\u00e4\u00f1\u00f2\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5
 
-Append=Append
-Append_contents_from_a_BibTeX_database_into_the_currently_viewed_database=Append_contents_from_a_BibTeX_database_into_the_currently_viewed_database
+Append=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc
+Append_contents_from_a_BibTeX_database_into_the_currently_viewed_database=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5_\u00c1\u00c4_BibTeX_\u00ea_\u00c1\u00c4_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e3\u00ee_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0
 
 Append_database=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00c1\u00c4
 
-append_the_selected_text_to_bibtex_key=append_the_selected_text_to_bibtex_key
-Application=Application
+append_the_selected_text_to_bibtex_key=\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e9_\u00f2\u00e5\u00ea\u00f1\u00f2_\u00ea_\u00ea\u00eb\u00fe\u00f7\u00f3_BibTeX
+Application=\u00cf\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5
 
-Apply=Apply
+Apply=\u00cf\u00f0\u00e8\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc
 
-Arguments_passed_on_to_running_JabRef_instance._Shutting_down.=Arguments_passed_on_to_running_JabRef_instance._Shutting_down.
+Arguments_passed_on_to_running_JabRef_instance._Shutting_down.=\u00c0\u00f0\u00e3\u00f3\u00ec\u00e5\u00ed\u00f2\u00fb_\u00ef\u00e5\u00f0\u00e5\u00e4\u00e0\u00ed\u00fb_\u00e2_\u00e7\u00e0\u00ef\u00f3\u00f9\u00e5\u00ed\u00ed\u00fb\u00e9_\u00fd\u00ea\u00e7\u00e5\u00ec\u00ef\u00eb\u00ff\u00f0_JabRef._\u00ce\u00f2\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5.
 
-Assign_entry_selection_exclusively_to_this_group=Assign_entry_selection_exclusively_to_this_group
+Assign_entry_selection_exclusively_to_this_group=\u00cd\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00e2\u00fb\u00e1\u00ee\u00f0\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e8\u00f1\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00ee_\u00e4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb.
 
-Assign_new_file=Assign_new_file
+Assign_new_file=\u00cd\u00e0\u00e7\u00ed\u00e0\u00f7\u00e8\u00f2\u00fc_\u00ed\u00ee\u00e2\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb
 
-Assign_the_original_group's_entries_to_this_group?=Assign_the_original_group's_entries_to_this_group?
+Assign_the_original_group's_entries_to_this_group?=\u00cd\u00e0\u00e7\u00ed\u00e0\u00f7\u00e8\u00f2\u00fc_\u00e8\u00f1\u00f5\u00ee\u00e4\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00fd\u00f2\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5?
 
-Assigned_%0_entries_to_group_"%1".=Assigned_%0_entries_to_group_"%1".
+Assigned_%0_entries_to_group_"%1".=%0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00ee_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5_"%1".
 
-Assigned_1_entry_to_group_"%0".=Assigned_1_entry_to_group_"%0".
-At_least_the_plug-in_'net.sf.jabref.core'_should_be_there.=At_least_the_plug-in_'net.sf.jabref.core'_should_be_there.
+Assigned_1_entry_to_group_"%0".=\u00cd\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e0_1_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5_"%0".
+At_least_the_plug-in_'net.sf.jabref.core'_should_be_there.=\u00c7\u00e4\u00e5\u00f1\u00fc_\u00e4\u00ee\u00eb\u00e6\u00e5\u00ed_\u00e1\u00fb\u00f2\u00fc,_\u00ef\u00ee_\u00ea\u00f0\u00e0\u00e9\u00ed\u00e5\u00e9_\u00ec\u00e5\u00f0\u00e5,_\u00ec\u00ee\u00e4\u00f3\u00eb\u00fc_'net.sf.jabref.core'.
 
-Attach_%0_file=Attach_%0_file
+Attach_%0_file=\u00cf\u00f0\u00e8\u00eb\u00ee\u00e6\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb_%0
 
-Attach_URL=Attach_URL
+Attach_URL=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_URL-\u00e0\u00e4\u00f0\u00e5\u00f1
 
-Attempt_to_autoset_%0_links_for_your_entries._Autoset_works_if_a_%0_file_in_your_%0_directory_or_a_subdirectory<BR>is_named_identically_to_an_entry's_BibTeX_key,_plus_extension.=Attempt_to_autoset_%0_links_for_your_entries._Autoset_works_if_a_%0_file_in_your_%0_directory_or_a_subdirectory<BR>is_named_identically_to_an_entry's_BibTeX_key,_plus_extension.
-Attempting_SQL_export...=Attempting_SQL_export...
+Attempt_to_autoset_%0_links_for_your_entries._Autoset_works_if_a_%0_file_in_your_%0_directory_or_a_subdirectory<BR>is_named_identically_to_an_entry's_BibTeX_key,_plus_extension.=\u00cf\u00ee\u00ef\u00fb\u00f2\u00ea\u00e0_\u00e0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00ff_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_%0_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9._\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00e [...]
+Attempting_SQL_export...=\u00cf\u00ee\u00ef\u00fb\u00f2\u00ea\u00e0_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0_SQL...
 
-Auto=Auto
+Auto=\u00c0\u00e2\u00f2\u00ee
 
-Autodetect_format=Autodetect_format
+Autodetect_format=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0
 
-Autogenerate_BibTeX_key=Autogenerate_BibTeX_key
+Autogenerate_BibTeX_key=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX
 Autogenerate_BibTeX_keys=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX
 
-Autogenerate_groups=Autogenerate_groups
+Autogenerate_groups=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef
 
-autogenerate_keys=autogenerate_keys
-Autolink_files_with_names_starting_with_the_BibTeX_key=Autolink_files_with_names_starting_with_the_BibTeX_key
+autogenerate_keys=\u00e0\u00e2\u00f2\u00ee\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9
+Autolink_files_with_names_starting_with_the_BibTeX_key=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e0\u00ff_\u00ef\u00f0\u00e8\u00e2\u00ff\u00e7\u00ea\u00e0_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00f1_\u00e8\u00ec\u00e5\u00ed\u00e0\u00ec\u00e8,_\u00ed\u00e0\u00f7\u00e8\u00ed\u00e0\u00fe\u00f9\u00e8\u00ec\u00e8\u00f1\u00ff_\u00f1_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX
 
-Autolink_only_files_that_match_the_BibTeX_key=Autolink_only_files_that_match_the_BibTeX_key
+Autolink_only_files_that_match_the_BibTeX_key=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e0\u00ff_\u00ef\u00f0\u00e8\u00e2\u00ff\u00e7\u00ea\u00e0_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00f1_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00e5\u00ec_\u00ea\u00eb\u00fe\u00f7\u00f3_BibTeX
 
-Automatically_create_groups=Automatically_create_groups
+Automatically_create_groups=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00ee\u00e5_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef
 
-Automatically_create_groups_for_database.=Automatically_create_groups_for_database.
+Automatically_create_groups_for_database.=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00ee\u00e5_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef_\u00e4\u00eb\u00ff_\u00c1\u00c4.
 
-Automatically_created_groups=Automatically_created_groups
+Automatically_created_groups=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups
+Automatically_hide_groups_interface_when_switching_to_a_database_that_contains_no_groups=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00f1\u00ea\u00f0\u00fb\u00e2\u00e0\u00f2\u00fc_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1_\u00e3\u00f0\u00f3\u00ef\u00ef_\u00ef\u00f0\u00e8_\u00ef\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e8_\u00ed\u00e0_\u00c1\u00c4,_\u00ed\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f9\u00f3\u0 [...]
 
-Automatically_remove_exact_duplicates=Automatically_remove_exact_duplicates
+Automatically_remove_exact_duplicates=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00f3\u00e4\u00e0\u00eb\u00ff\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ed\u00fb\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb
 
-Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups
+Automatically_show_groups_interface_when_switching_to_a_database_that_contains_groups=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00ef\u00ee\u00ea\u00e0\u00e7\u00fb\u00e2\u00e0\u00f2\u00fc_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1_\u00e3\u00f0\u00f3\u00ef\u00ef_\u00ef\u00f0\u00e8_\u00ef\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e8_\u00ed\u00e0_\u00c1\u00c4,_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f9\u00f3\u00fe_ [...]
 
-Autoset=Autoset
+Autoset=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5
 
-Autoset_%0_field=Autoset_%0_field
+Autoset_%0_field=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff_%0
 
-Autoset_%0_links._Allow_overwriting_existing_links.=Autoset_%0_links._Allow_overwriting_existing_links.
+Autoset_%0_links._Allow_overwriting_existing_links.=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_%0._\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e8\u00f2\u00fc_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00f5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea.
 
-Autoset_%0_links._Do_not_overwrite_existing_links.=Autoset_%0_links._Do_not_overwrite_existing_links.
-Autoset_external_links=Autoset_external_links
-Autosetting_links=Autosetting_links
+Autoset_%0_links._Do_not_overwrite_existing_links.=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_%0._\u00cd\u00e5_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00fb\u00e2\u00e0\u00f2\u00fc_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8.
+Autoset_external_links=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00f5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea
+Autosetting_links=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea
 
-AUX_file_import=AUX_file_import
+AUX_file_import=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00f4\u00e0\u00e9\u00eb\u00e0_AUX
 
-Available_export_formats=Available_export_formats
+Available_export_formats=\u00c4\u00ee\u00f1\u00f2\u00f3\u00ef\u00ed\u00fb\u00e5_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00fb_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Available_fields=Available_fields
+Available_fields=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00ed\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff_BibTeX
 
-Available_import_formats=Available_import_formats
+Available_import_formats=\u00c4\u00ee\u00f1\u00f2\u00f3\u00ef\u00ed\u00fb\u00e5_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00fb_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Background_color_for_optional_fields=Background_color_for_optional_fields
+Background_color_for_optional_fields=\u00d6\u00e2\u00e5\u00f2_\u00f4\u00ee\u00ed\u00e0_\u00e4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9
 
-Background_color_for_required_fields=Background_color_for_required_fields
+Background_color_for_required_fields=\u00d6\u00e2\u00e5\u00f2_\u00f4\u00ee\u00ed\u00e0_\u00ee\u00e1\u00ff\u00e7\u00e0\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9
 
-Backup_old_file_when_saving=Backup_old_file_when_saving
-Beta_version=Beta_version
+Backup_old_file_when_saving=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00f0\u00e5\u00e7\u00e5\u00f0\u00e2\u00ed\u00ee\u00e9_\u00ea\u00ee\u00ef\u00e8\u00e8_\u00f1\u00f2\u00e0\u00f0\u00ee\u00e3\u00ee_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00ef\u00f0\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e8
+Beta_version=\u00c1\u00e5\u00f2\u00e0-\u00e2\u00e5\u00f0\u00f1\u00e8\u00ff
 
-BibTeX_key=BibTeX_key
+BibTeX_key=\u00ca\u00eb\u00fe\u00f7_BibTeX
 
-BibTeX_key_is_unique.=BibTeX_key_is_unique.
+BibTeX_key_is_unique.=\u00ca\u00eb\u00fe\u00f7_BibTeX_\u00ff\u00e2\u00eb\u00ff\u00e5\u00f2\u00f1\u00ff_\u00f3\u00ed\u00e8\u00ea\u00e0\u00eb\u00fc\u00ed\u00fb\u00ec.
 
-BibTeX_key_not_set._Enter_a_name_for_the_downloaded_file=BibTeX_key_not_set._Enter_a_name_for_the_downloaded_file
+BibTeX_key_not_set._Enter_a_name_for_the_downloaded_file=\u00cd\u00e5_\u00e7\u00e0\u00e4\u00e0\u00ed_\u00ea\u00eb\u00fe\u00f7_BibTeX._\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00e8\u00ec\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8
 
-BibTeX_source=BibTeX_source
+BibTeX_source=\u00c8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea_BibTeX
 
 BibTeXML=BibTeXML
 
-Binding=Binding
-Broken_link=Broken_link
+Binding=\u00cf\u00f0\u00e8\u00e2\u00ff\u00e7\u00ea\u00e0
+Broken_link=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e0_\u00f1_\u00ee\u00f8\u00e8\u00e1\u00ea\u00ee\u00e9
 
-Browse=Browse
+Browse=\u00ce\u00e1\u00e7\u00ee\u00f0
 
-by=by
+by=\u00ef\u00ee
 
-Cancel=Cancel
+Cancel=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e0
 
-Cannot_add_entries_to_group_without_generating_keys._Generate_keys_now?=Cannot_add_entries_to_group_without_generating_keys._Generate_keys_now?
+Cannot_add_entries_to_group_without_generating_keys._Generate_keys_now?=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00e4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_\u00e1\u00e5\u00e7_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00ff_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9._\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e8?
 
-Cannot_merge_this_change=Cannot_merge_this_change
+Cannot_merge_this_change=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00ee\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e3\u00ee_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff
 
-Cannot_move_group_"%0"_down.=Cannot_move_group_"%0"_down.
+Cannot_move_group_"%0"_down.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_"%0"_\u00e2\u00ed\u00e8\u00e7.
 
-Cannot_move_group_"%0"_left.=Cannot_move_group_"%0"_left.
+Cannot_move_group_"%0"_left.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_"%0"_\u00ed\u00e0\u00eb\u00e5\u00e2\u00ee.
 
-Cannot_move_group_"%0"_right.=Cannot_move_group_"%0"_right.
+Cannot_move_group_"%0"_right.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_"%0"_\u00ed\u00e0\u00ef\u00f0\u00e0\u00e2\u00ee.
 
-Cannot_move_group_"%0"_up.=Cannot_move_group_"%0"_up.
+Cannot_move_group_"%0"_up.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_"%0"_\u00e2\u00e2\u00e5\u00f0\u00f5.
 
-case_insensitive=case_insensitive
+case_insensitive=\u00e1\u00e5\u00e7_\u00f3\u00f7\u00e5\u00f2\u00e0_\u00f0\u00e5\u00e3\u00e8\u00f1\u00f2\u00f0\u00e0
 
-case_sensitive=case_sensitive
+case_sensitive=\u00f1_\u00f3\u00f7\u00e5\u00f2\u00ee\u00ec_\u00f0\u00e5\u00e3\u00e8\u00f1\u00f2\u00f0\u00e0
 
-Case_sensitive=Case_sensitive
+Case_sensitive=\u00d1_\u00f3\u00f7\u00e5\u00f2\u00ee\u00ec_\u00f0\u00e5\u00e3\u00e8\u00f1\u00f2\u00f0\u00e0
 
-change_assignment_of_entries=change_assignment_of_entries
+change_assignment_of_entries=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Change_case=Change_case
+Change_case=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f0\u00e5\u00e3\u00e8\u00f1\u00f2\u00f0
 
-Change_entry_type=Change_entry_type
-Change_file_type=Change_file_type
+Change_entry_type=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Change_file_type=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-change_key=change_key
+change_key=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7
 
-Change_of_Grouping_Method=Change_of_Grouping_Method
+Change_of_Grouping_Method=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ec\u00e5\u00f2\u00ee\u00e4_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8
 
-change_preamble=change_preamble
+change_preamble=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e0\u00ec\u00e1\u00f3\u00eb\u00f3
 
-change_string_content=change_string_content
+change_string_content=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-change_string_name=change_string_name
-Change_table_column_and_General_fields_settings_to_use_the_new_feature=Change_table_column_and_General_fields_settings_to_use_the_new_feature
+change_string_name=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e8\u00ec\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
+Change_table_column_and_General_fields_settings_to_use_the_new_feature=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00e5_\u00f1\u00f2\u00ee\u00eb\u00e1\u00e5\u00f6_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb_\u00e8_\u00ee\u00e1\u00f9\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ef\u00ee\u00eb\u00e5\u00e9_\u00e4\u00eb\u00ff_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00ed\u00ee\u00e2\u00fb\u00f5_\u00f1\u00e2\u00ee\u00e9\u00f1\u0 [...]
 
-change_type=change_type
+change_type=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef
 
-changed_=changed_
+changed_=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00ee_
 
-Changed_font_settings=Changed_font_settings
+Changed_font_settings=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00ed\u00fb\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0
 
-Changed_language_settings=Changed_language_settings
+Changed_language_settings=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00ed\u00fb\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ff\u00e7\u00fb\u00ea\u00e0
 
-Changed_look_and_feel_settings=Changed_look_and_feel_settings
+Changed_look_and_feel_settings=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00ed\u00fb\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1\u00e0
 
-Changed_preamble=Changed_preamble
+Changed_preamble=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00ed\u00e0\u00ff_\u00ef\u00f0\u00e5\u00e0\u00ec\u00e1\u00f3\u00eb\u00e0
 
-Changed_type_to=Changed_type_to
+Changed_type_to=\u00d2\u00e8\u00ef_\u00f1_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec_\u00ed\u00e0
 
-Characters_to_ignore=Characters_to_ignore
+Characters_to_ignore=\u00cd\u00e5_\u00f3\u00f7\u00e8\u00f2\u00fb\u00e2\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00ea\u00e8
 
-Check_existing_%0_links=Check_existing_%0_links
+Check_existing_%0_links=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00e8\u00f2\u00fc_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_%0
 
-Check_links=Check_links
+Check_links=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00e8\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8
 
-Choose_the_URL_to_download._The_default_value_points_to_a_list_provided_by_the_JabRef_developers.=Choose_the_URL_to_download._The_default_value_points_to_a_list_provided_by_the_JabRef_developers.
-Cite_command=Cite_command
+Choose_the_URL_to_download._The_default_value_points_to_a_list_provided_by_the_JabRef_developers.=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_URL-\u00e0\u00e4\u00f0\u00e5\u00f1_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8._\u00c7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe_\u00e4\u00eb\u00ff_\u00f1\u00ef\u00e8\u00f1\u00ea\u00e0_\u00ef\u00f0\u00e5\u00e4\u00eb\u00e0\u00e3\u00e0\u00e5\u00ec\u00ee\u00e3\u [...]
+Cite_command=\u00ca\u00ee\u00ec\u00e0\u00ed\u00e4\u00e0_\u00f6\u00e8\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff
 
-Class_name=Class_name
+Class_name=\u00c8\u00ec\u00ff_\u00ea\u00eb\u00e0\u00f1\u00f1\u00e0
 
-Clear=Clear
+Clear=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc
 
-clear_all_groups=clear_all_groups
+clear_all_groups=\u00ee\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Clear_field=Clear_field
-Clear_fields=Clear_fields
+Clear_field=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ef\u00ee\u00eb\u00e5
+Clear_fields=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ff
 
-Clear_highlight=Clear_highlight
+Clear_highlight=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00e2\u00fb\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5
 
-Close=Close
+Close=\u00c7\u00e0\u00ea\u00f0\u00fb\u00f2\u00fc
 
-Close_dialog=Close_dialog
+Close_dialog=\u00c7\u00e0\u00ea\u00f0\u00fb\u00f2\u00fc_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee
 
-Close_the_current_database=Close_the_current_database
+Close_the_current_database=\u00c7\u00e0\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f2\u00e5\u00ea\u00f3\u00f9\u00f3\u00fe_\u00c1\u00c4
 
-Close_the_help_window=Close_the_help_window
+Close_the_help_window=\u00c7\u00e0\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ee\u00ea\u00ed\u00ee_\u00f1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e8
 
-Close_window=Close_window
+Close_window=\u00c7\u00e0\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ee\u00ea\u00ed\u00ee
 
-Closed_database=Closed_database
+Closed_database=\u00c7\u00e0\u00ea\u00f0\u00fb\u00f2\u00e0\u00ff_\u00c1\u00c4
 
-Collapse_subtree=Collapse_subtree
+Collapse_subtree=\u00d1\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e5\u00e2\u00ee
 
-Color_codes_for_required_and_optional_fields=Color_codes_for_required_and_optional_fields
+Color_codes_for_required_and_optional_fields=\u00d6\u00e2\u00e5\u00f2\u00ee\u00e2\u00fb\u00e5_\u00ea\u00ee\u00e4\u00fb_\u00ee\u00e1\u00ff\u00e7\u00e0\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00f5_\u00e8_\u00e4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9
 
-Color_for_marking_incomplete_entries=Color_for_marking_incomplete_entries
+Color_for_marking_incomplete_entries=\u00d6\u00e2\u00e5\u00f2_\u00ec\u00e0\u00f0\u00ea\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00ed\u00e5\u00ef\u00ee\u00eb\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Column_width=Column_width
+Column_width=\u00d8\u00e8\u00f0\u00e8\u00ed\u00e0_\u00f1\u00f2\u00ee\u00eb\u00e1\u00f6\u00e0
 
-Command_line_id=Command_line_id
+Command_line_id=\u00c8\u00e4._\u00ea\u00ee\u00ec\u00e0\u00ed\u00e4\u00ed\u00ee\u00e9_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-Complete_record=Complete_record
-Connect=Connect
-Connect_to_SQL_database=Connect_to_SQL_database
-Connection_to_IEEEXplore_failed=Connection_to_IEEEXplore_failed
+Complete_record=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
+Connect=\u00cf\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5
+Connect_to_SQL_database=\u00cf\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ea_\u00c1\u00c4_SQL
+Connection_to_IEEEXplore_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ea_IEEEXplore
 
-Contained_in=Contained_in
+Contained_in=\u00d1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2\u00f1\u00ff_\u00e2
 
-Content=Content
+Content=\u00d1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5
 
-Copied=Copied
+Copied=\u00d1\u00ea\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00ee\u00e5
 
-Copied_cell_contents=Copied_cell_contents
+Copied_cell_contents=\u00d1\u00ea\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00ee\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5_\u00ff\u00f7\u00e5\u00e5\u00ea
 
-Copied_key=Copied_key
+Copied_key=\u00d1\u00ea\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e9_\u00ea\u00eb\u00fe\u00f7
 
-Copied_keys=Copied_keys
+Copied_keys=\u00d1\u00ea\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e8
 
 Copy=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc
 
 Copy_BibTeX_key=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7_BibTeX
-Copy_file_to_file_directory.=Copy_file_to_file_directory.
-Copy_files_to_file_directory.=Copy_files_to_file_directory.
+Copy_file_to_file_directory.=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3.
+Copy_files_to_file_directory.=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb\u00fb_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3.
 
-Copy_to_clipboard=Copy_to_clipboard
+Copy_to_clipboard=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e2_\u00e1\u00f3\u00f4\u00e5\u00f0_\u00ee\u00e1\u00ec\u00e5\u00ed\u00e0
 
-Could_not_call_executable=Could_not_call_executable
-Could_not_connect_to_Vim_server._Make_sure_that_Vim_is_running<BR>with_correct_server_name.=Could_not_connect_to_Vim_server._Make_sure_that_Vim_is_running<BR>with_correct_server_name.
+Could_not_call_executable=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e2\u00fb\u00e7\u00e2\u00e0\u00f2\u00fc_\u00e8\u00f1\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00ec\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb
+Could_not_connect_to_Vim_server._Make_sure_that_Vim_is_running<BR>with_correct_server_name.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc\u00f1\u00ff_\u00ea_\u00f1\u00e5\u00f0\u00e2\u00e5\u00f0\u00f3_Vim._\u00d3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\u00f1\u00fc,_\u00f7\u00f2\u00ee_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_Vim_\u00e7\u00e0\u00ef\u00f3\u00f9\u00e5\u00ed\u00ee<BR>,\u00e8_\u00e8\u00ec\u00 [...]
 
-Could_not_export_file=Could_not_export_file
+Could_not_export_file=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
 
-Could_not_export_preferences=Could_not_export_preferences
+Could_not_export_preferences=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8
 
-Could_not_find_a_suitable_import_format.=Could_not_find_a_suitable_import_format.
-Could_not_find_directory_for_%0-files\:_%1=Could_not_find_directory_for_%0-files\:_%1
-Could_not_find_image_file=Could_not_find_image_file
+Could_not_find_a_suitable_import_format.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00ef\u00ee\u00e4\u00f5\u00ee\u00e4\u00ff\u00f9\u00e8\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0.
+Could_not_find_directory_for_%0-files\:_%1=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00e4\u00eb\u00ff_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_%0:_%1
+Could_not_find_image_file=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00f4\u00e0\u00e9\u00eb_\u00e8\u00e7\u00ee\u00e1\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00ff
 
-Could_not_find_layout_file=Could_not_find_layout_file
+Could_not_find_layout_file=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00f4\u00e0\u00e9\u00eb_\u00ec\u00e0\u00ea\u00e5\u00f2\u00e0
 
-Could_not_import_preferences=Could_not_import_preferences
+Could_not_import_preferences=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8
 
-Could_not_instantiate_%0=Could_not_instantiate_%0
-Could_not_instantiate_%0_%1=Could_not_instantiate_%0_%1
-Could_not_instantiate_%0._Have_you_chosen_the_correct_package_path?=Could_not_instantiate_%0._Have_you_chosen_the_correct_package_path?
-Could_not_open_link=Could_not_open_link
+Could_not_instantiate_%0=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00fd\u00ea\u00e7\u00e5\u00ec\u00ef\u00eb\u00ff\u00f0_%0
+Could_not_instantiate_%0_%1=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00fd\u00ea\u00e7\u00e5\u00ec\u00ef\u00eb\u00ff\u00f0_%0_%1
+Could_not_instantiate_%0._Have_you_chosen_the_correct_package_path?=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00fd\u00ea\u00e7\u00e5\u00ec\u00ef\u00eb\u00ff\u00f0_%0._\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00fc\u00f2\u00e5_\u00ef\u00f0\u00e0\u00e2\u00e8\u00eb\u00fc\u00ed\u00ee\u00f1\u00f2\u00fc_\u00ef\u00f3\u00f2\u00e8_\u00ef\u00e0\u00ea\u00e5\u00f2\u00e0.
+Could_not_open_link=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00f3
 
-Could_not_parse_number_of_hits=Could_not_parse_number_of_hits
-Could_not_print_preview=Could_not_print_preview
+Could_not_parse_number_of_hits=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00f0\u00ee\u00e0\u00ed\u00e0\u00eb\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ed\u00e5\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00e5_\u00f0\u00e5\u00e7\u00f3\u00eb\u00fc\u00f2\u00e0\u00f2\u00fb
+Could_not_print_preview=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00ef\u00e5\u00f7\u00e0\u00f2\u00e0\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0
 
-Could_not_run_the_'vim'_program.=Could_not_run_the_'vim'_program.
+Could_not_run_the_'vim'_program.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e7\u00e0\u00ef\u00f3\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_'Vim'.
 
-Could_not_save_file=Could_not_save_file
-Could_not_save_file._Character_encoding_'%0'_is_not_supported.=Could_not_save_file._Character_encoding_'%0'_is_not_supported.
+Could_not_save_file=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
+Could_not_save_file._Character_encoding_'%0'_is_not_supported.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb._\u00ca\u00ee\u00e4\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_'%0'_\u00ed\u00e5_\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e6\u00e8\u00e2\u00e0\u00e5\u00f2\u00f1\u00ff.
 
-Created_groups.=Created_groups.
+Created_groups.=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb.
 
-crossreferenced_entries_included=crossreferenced_entries_included
+crossreferenced_entries_included=\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f1_\u00ef\u00e5\u00f0\u00e5\u00ea\u00f0\u00e5\u00f1\u00f2\u00ed\u00fb\u00ec\u00e8_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e0\u00ec\u00e8
 
-Current_content=Current_content
+Current_content=\u00d2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5
 
-Current_value=Current_value
+Current_value=\u00d2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e5_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5
 
-Custom_entry_types=Custom_entry_types
+Custom_entry_types=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00f2\u00e8\u00ef\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Custom_entry_types_found_in_file=Custom_entry_types_found_in_file
+Custom_entry_types_found_in_file=\u00c2_\u00f4\u00e0\u00e9\u00eb\u00e5_\u00ee\u00e1\u00ed\u00e0\u00f0\u00f3\u00e6\u00e5\u00ed\u00fb_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00f2\u00e8\u00ef\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Custom_importers=Custom_importers
+Custom_importers=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0\u00fb_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Customize_entry_types=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Customize_entry_types=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Customize_key_bindings=Customize_key_bindings
+Customize_key_bindings=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e9_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8
 
 Cut=\u00c2\u00fb\u00f0\u00e5\u00e7\u00e0\u00f2\u00fc
 
-cut_entries=cut_entries
+cut_entries=\u00e2\u00fb\u00f0\u00e5\u00e7\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-cut_entry=cut_entry
+cut_entry=\u00e2\u00fb\u00f0\u00e5\u00e7\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-Cut_pr=Cut_pr
-Database_\:=Database_\:
+Cut_pr=\u00c2\u00fb\u00f0\u00e5\u00e7\u00e0\u00f2\u00fc
+Database_\:=\u00c1\u00e0\u00e7\u00e0_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5:
 
-Database_encoding=Database_encoding
+Database_encoding=\u00ca\u00ee\u00e4\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00c1\u00c4
 
 Database_properties=\u00d1\u00e2\u00ee\u00e9\u00f1\u00f2\u00e2\u00e0_\u00c1\u00c4
 
-Date_format=Date_format
+Date_format=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00c1\u00c4
 
-Default=Default
+Default=\u00cf\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Default_encoding=Default_encoding
+Default_encoding=\u00ca\u00ee\u00e4\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Default_grouping_field=Default_grouping_field
+Default_grouping_field=\u00cf\u00ee\u00eb\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Default_look_and_feel=Default_look_and_feel
+Default_look_and_feel=\u00c8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Default_pattern=Default_pattern
+Default_pattern=\u00d8\u00e0\u00e1\u00eb\u00ee\u00ed_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Default_sort_criteria=Default_sort_criteria
-Define_'%0'=Define_'%0'
+Default_sort_criteria=\u00ca\u00f0\u00e8\u00f2\u00e5\u00f0\u00e8\u00e9_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
+Define_'%0'=\u00ce\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_'%0'
 
 Delete=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc
 
-Delete_custom_format=Delete_custom_format
+Delete_custom_format=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2
 
-delete_entries=delete_entries
+delete_entries=\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Delete_entry=Delete_entry
+Delete_entry=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-delete_entry=delete_entry
+delete_entry=\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-Delete_multiple_entries=Delete_multiple_entries
+Delete_multiple_entries=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Delete_rows=Delete_rows
+Delete_rows=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f0\u00ff\u00e4\u00fb
 
-Delete_strings=Delete_strings
+Delete_strings=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-Deleted=Deleted
+Deleted=\u00d3\u00e4\u00e0\u00eb\u00e5\u00ed\u00ee
 
-Delimit_fields_with_semicolon,_ex.=Delimit_fields_with_semicolon,_ex.
+Delimit_fields_with_semicolon,_ex.=\u00d0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e8\u00f2\u00e5\u00eb\u00fc_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00eb\u00e5\u00e9:_\u00f2\u00ee\u00f7\u00ea\u00e0_\u00f1_\u00e7\u00e0\u00ef\u00ff\u00f2\u00ee\u00e9,_\u00ed\u00e0\u00ef\u00f0.:
 
-Descending=Descending
+Descending=\u00c2_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ea\u00e5_\u00f3\u00e1\u00fb\u00e2\u00e0\u00ed\u00e8\u00ff
 
-Description=Description
+Description=\u00ce\u00ef\u00e8\u00f1\u00e0\u00ed\u00e8\u00e5
 
-Deselect_all=Deselect_all
-Deselect_all_duplicates=Deselect_all_duplicates
+Deselect_all=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00ee\u00f0_\u00e2\u00f1\u00e5\u00f5
+Deselect_all_duplicates=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00ee\u00f0_\u00e2\u00f1\u00e5\u00f5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2
 
-Details=Details
+Details=\u00cf\u00ee\u00e4\u00f0\u00ee\u00e1\u00ed\u00ee\u00f1\u00f2\u00e8
 
-Disable_entry_editor_when_multiple_entries_are_selected=Disable_entry_editor_when_multiple_entries_are_selected
+Disable_entry_editor_when_multiple_entries_are_selected=\u00cd\u00e5_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e0\u00f2\u00fc_\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ef\u00f0\u00e8_\u00e2\u00fb\u00e1\u00ee\u00f0\u00e5_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00e8\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Disable_this_confirmation_dialog=Disable_this_confirmation_dialog
+Disable_this_confirmation_dialog=\u00ce\u00f2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00fd\u00f2\u00ee_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee_\u00ef\u00ee\u00e4\u00f2\u00e2\u00e5\u00f0\u00e6\u00e4\u00e5\u00ed\u00e8\u00ff
 
-Disable_this_warning_dialog=Disable_this_warning_dialog
+Disable_this_warning_dialog=\u00ce\u00f2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00fd\u00f2\u00ee_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00ff
 
-Display_all_entries_belonging_to_one_or_more_of_the_selected_groups.=Display_all_entries_belonging_to_one_or_more_of_the_selected_groups.
+Display_all_entries_belonging_to_one_or_more_of_the_selected_groups.=\u00ce\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e0\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00ef\u00f0\u00e8\u00ed\u00e0\u00e4\u00eb\u00e5\u00e6\u00e0\u00f9\u00e8\u00e5_\u00e1\u00ee\u00eb\u00e5\u00e5_\u00f7\u00e5\u00ec_\u00ee\u00e4\u00ed\u00ee\u00e9_\u00e8\u00e7_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e3\u00f0\u00f3\u00ef\u00ef.
 
-Display_all_error_messages=Display_all_error_messages
+Display_all_error_messages=\u00ce\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e0\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00f1\u00ee\u00ee\u00e1\u00f9\u00e5\u00ed\u00e8\u00ff_\u00ee\u00e1_\u00ee\u00f8\u00e8\u00e1\u00ea\u00e0\u00f5
 
-Display_help_on_command_line_options=Display_help_on_command_line_options
+Display_help_on_command_line_options=\u00ce\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e0\u00f2\u00fc_\u00f1\u00ef\u00f0\u00e0\u00e2\u00ea\u00f3_\u00ef\u00ee_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00e0\u00ec_\u00ea\u00ee\u00ec\u00e0\u00ed\u00e4\u00ed\u00ee\u00e9_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-Display_imported_entries_in_an_inspection_window_before_they_are_added.=Display_imported_entries_in_an_inspection_window_before_they_are_added.
+Display_imported_entries_in_an_inspection_window_before_they_are_added.=\u00ce\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e0\u00f2\u00fc_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00ea\u00ee\u00ed\u00f2\u00f0\u00ee\u00eb\u00fc\u00ed\u00ee\u00ec_\u00ee\u00ea\u00ed\u00e5_\u00ef\u00e5\u00f0\u00e5\u00e4_\u00e8\u00f5_\u00e4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5\u00ec.
 
-Display_only_entries_belonging_to_all_selected_groups.=Display_only_entries_belonging_to_all_selected_groups.
-Display_version=Display_version
+Display_only_entries_belonging_to_all_selected_groups.=\u00ce\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e0\u00f2\u00fc_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00ef\u00f0\u00e8\u00ed\u00e0\u00e4\u00eb\u00e5\u00e6\u00e0\u00f9\u00e8\u00e5_\u00e2\u00f1\u00e5\u00ec_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00ec_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0\u00ec.
+Display_version=\u00ce\u00f2\u00ee\u00e1\u00f0\u00e0\u00e7\u00e8\u00f2\u00fc_\u00f1\u00e2\u00e5\u00e4\u00e5\u00ed\u00e8\u00ff_\u00ee_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e8
 
-Displaying_no_groups=Displaying_no_groups
+Displaying_no_groups=\u00c1\u00e5\u00e7_\u00ee\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef
 
-Do_not_abbreviate_names=Do_not_abbreviate_names
+Do_not_abbreviate_names=\u00cd\u00e5_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e0\u00f2\u00fc_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00ff
 
-Do_not_autoset=Do_not_autoset
+Do_not_autoset=\u00c1\u00e5\u00e7_\u00e0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00ff
 
-Do_not_import_entry=Do_not_import_entry
+Do_not_import_entry=\u00cd\u00e5_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-Do_not_open_any_files_at_startup=Do_not_open_any_files_at_startup
+Do_not_open_any_files_at_startup=\u00cd\u00e5_\u00ee\u00f2\u00ea\u00f0\u00fb\u00e2\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb\u00fb_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5
 
-Do_not_overwrite_existing_keys=Do_not_overwrite_existing_keys
-Do_not_show_splash_window_at_startup=Do_not_show_splash_window_at_startup
-Do_not_show_these_options_in_the_future=Do_not_show_these_options_in_the_future
+Do_not_overwrite_existing_keys=\u00cd\u00e5_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00fb\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e8
+Do_not_show_splash_window_at_startup=\u00cd\u00e5_\u00ef\u00ee\u00ea\u00e0\u00e7\u00fb\u00e2\u00e0\u00f2\u00fc_\u00e7\u00e0\u00f1\u00f2\u00e0\u00e2\u00ea\u00f3_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5
+Do_not_show_these_options_in_the_future=\u00cd\u00e5_\u00ef\u00ee\u00ea\u00e0\u00e7\u00fb\u00e2\u00e0\u00f2\u00fc_\u00fd\u00f2\u00e8_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00e2_\u00e4\u00e0\u00eb\u00fc\u00ed\u00e5\u00e9\u00f8\u00e5\u00ec
 
-Do_not_wrap_the_following_fields_when_saving=Do_not_wrap_the_following_fields_when_saving
-Do_not_write_the_following_fields_to_XMP_Metadata\:=Do_not_write_the_following_fields_to_XMP_Metadata\:
+Do_not_wrap_the_following_fields_when_saving=\u00cd\u00e5_\u00f1\u00e2\u00ee\u00f0\u00e0\u00f7\u00e8\u00e2\u00e0\u00f2\u00fc_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff_\u00ef\u00f0\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e8
+Do_not_write_the_following_fields_to_XMP_Metadata\:=\u00cd\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fb\u00e2\u00e0\u00f2\u00fc_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff_\u00e2_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_XMP:
 
-Do_you_want_JabRef_to_do_the_following_operations?=Do_you_want_JabRef_to_do_the_following_operations?
+Do_you_want_JabRef_to_do_the_following_operations?=\u00cf\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_JabRef_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00ee\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00e8._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
 
 DocBook=DocBook
 
-Down=Down
+Down=\u00c2\u00ed\u00e8\u00e7
 
-Download=Download
+Download=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00e8\u00f2\u00fc
 
-Download_completed=Download_completed
+Download_completed=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e0_\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e0
 
-Download_file=Download_file
+Download_file=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
 
-Downloading...=Downloading...
-Drag_and_Drop_Error=Drag_and_Drop_Error
-Drop_%0=Drop_%0
+Downloading...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e0...
+Drag_and_Drop_Error=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00e5\u00f0\u00e5\u00f2\u00e0\u00f1\u00ea\u00e8\u00e2\u00e0\u00ed\u00e8\u00ff
+Drop_%0=\u00ce\u00f2\u00e1\u00f0\u00ee\u00f8\u00e5\u00ed\u00ee:_%0
 
-Duplicate_BibTeX_key._Grouping_may_not_work_for_this_entry.=Duplicate_BibTeX_key._Grouping_may_not_work_for_this_entry.
+Duplicate_BibTeX_key._Grouping_may_not_work_for_this_entry.=\u00c4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00e0_\u00ee\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8.
 
-Duplicate_Key_Warning=Duplicate_Key_Warning
+Duplicate_Key_Warning=\u00cf\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5:_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2_\u00ea\u00eb\u00fe\u00f7\u00e0
 
-Duplicate_pairs_found=Duplicate_pairs_found
+Duplicate_pairs_found=\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb
 
-duplicate_removal=duplicate_removal
+duplicate_removal=\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2
 
-Duplicate_string_name=Duplicate_string_name
+Duplicate_string_name=\u00c4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2_\u00e8\u00ec\u00e5\u00ed\u00e8_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-Duplicates_found=Duplicates_found
+Duplicates_found=\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb
 
-Duplicates_removed=Duplicates_removed
+Duplicates_removed=\u00c4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb
 
-Dynamic_groups=Dynamic_groups
+Dynamic_groups=\u00c4\u00e8\u00ed\u00e0\u00ec\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Dynamically_group_entries_by_a_free-form_search_expression=Dynamically_group_entries_by_a_free-form_search_expression
+Dynamically_group_entries_by_a_free-form_search_expression=\u00c4\u00e8\u00ed\u00e0\u00ec\u00e8\u00f7\u00e5\u00f1\u00ea\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ef\u00ee_\u00ef\u00f0\u00ee\u00e8\u00e7\u00e2\u00ee\u00eb\u00fc\u00ed\u00ee\u00ec\u00f3_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00fe_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
 
-Dynamically_group_entries_by_searching_a_field_for_a_keyword=Dynamically_group_entries_by_searching_a_field_for_a_keyword
+Dynamically_group_entries_by_searching_a_field_for_a_keyword=\u00c4\u00e8\u00ed\u00e0\u00ec\u00e8\u00f7\u00e5\u00f1\u00ea\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ef\u00ee_\u00ef\u00ee\u00e8\u00f1\u00ea\u00f3_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e3\u00ee\u00e3\u00ee_\u00f1\u00eb\u00ee\u00e2\u00e0_\u00e2_\u00ef\u00ee\u00eb\u00e5
 
-Each_line_must_be_on_the_following_form=Each_line_must_be_on_the_following_form
+Each_line_must_be_on_the_following_form=\u00ca\u00e0\u00e6\u00e4\u00e0\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e0_\u00e4\u00ee\u00eb\u00e6\u00ed\u00e0_\u00e8\u00ec\u00e5\u00f2\u00fc_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00f3\u00fe_\u00f4\u00ee\u00f0\u00ec\u00f3
 
 Edit=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc
 
-Edit_custom_export=Edit_custom_export
+Edit_custom_export=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2
 Edit_entry=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
-Edit_file_link=Edit_file_link
-Edit_file_type=Edit_file_type
+Edit_file_link=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00f3_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb
+Edit_file_type=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Edit_group=Edit_group
+Edit_group=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Edit_journal=Edit_journal
+Edit_journal=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb
 
 Edit_preamble=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e0\u00ec\u00e1\u00f3\u00eb\u00f3
-Edit_strings=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3
-Editor_options=Editor_options
+Edit_strings=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
+Editor_options=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0\u00e0
 
-empty_BibTeX_key=empty_BibTeX_key
+empty_BibTeX_key=\u00ef\u00f3\u00f1\u00f2\u00ee\u00e9_\u00ea\u00eb\u00fe\u00f7_BibTeX
 
-Empty_BibTeX_key._Grouping_may_not_work_for_this_entry.=Empty_BibTeX_key._Grouping_may_not_work_for_this_entry.
+Empty_BibTeX_key._Grouping_may_not_work_for_this_entry.=\u00cf\u00f3\u00f1\u00f2\u00ee\u00e9_\u00ea\u00eb\u00fe\u00f7_BibTeX._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00e0_\u00ee\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8.
 
-empty_database=empty_database
-Enable_word/name_autocompletion=Enable_word/name_autocompletion
+empty_database=\u00ef\u00f3\u00f1\u00f2\u00e0\u00ff_\u00e1\u00e0\u00e7\u00e0_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5
+Enable_word/name_autocompletion=\u00c2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00e0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00eb\u00ee\u00e2/\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9
 
 Endnote=Endnote
 
-Enter_URL=Enter_URL
+Enter_URL=\u00c2\u00e2\u00ee\u00e4_URL-\u00e0\u00e4\u00f0\u00e5\u00f1\u00e0
 
-Enter_URL_to_download=Enter_URL_to_download
+Enter_URL_to_download=\u00c2\u00e2\u00ee\u00e4_URL-\u00e0\u00e4\u00f0\u00e5\u00f1\u00e0_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8
 
-entries=entries
+entries=\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Entries_cannot_be_manually_assigned_to_or_removed_from_this_group.=Entries_cannot_be_manually_assigned_to_or_removed_from_this_group.
+Entries_cannot_be_manually_assigned_to_or_removed_from_this_group.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e8\u00f2\u00fc/\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00fd\u00f2\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00e2\u00f0\u00f3\u00f7\u00ed\u00f3\u00fe.
 
-Entries_exported_to_clipboard=Entries_exported_to_clipboard
+Entries_exported_to_clipboard=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00fb_\u00e2_\u00e1\u00f3\u00f4\u00e5\u00f0_\u00ee\u00e1\u00ec\u00e5\u00ed\u00e0
 
-entries_have_undefined_BibTeX_key=entries_have_undefined_BibTeX_key
+entries_have_undefined_BibTeX_key=\u00ed\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed_\u00ea\u00eb\u00fe\u00f7_BibTeX_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-entries_into_new_database=entries_into_new_database
+entries_into_new_database=\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00ed\u00ee\u00e2\u00f3\u00fe_\u00c1\u00c4
 
-entry=entry
+entry=\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-Entry_editor=Entry_editor
+Entry_editor=\u00d0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Entry_in_current_database=Entry_in_current_database
+Entry_in_current_database=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e9_\u00c1\u00c4
 
-Entry_in_import=Entry_in_import
+Entry_in_import=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e4\u00eb\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Entry_preview=Entry_preview
+Entry_preview=\u00cf\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Entry_table=Entry_table
+Entry_table=\u00d2\u00e0\u00e1\u00eb\u00e8\u00f6\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Entry_table_columns=Entry_table_columns
+Entry_table_columns=\u00d1\u00f2\u00ee\u00eb\u00e1\u00f6\u00fb_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Entry_type=Entry_type
+Entry_type=\u00d2\u00e8\u00ef_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Entry_type_names_are_not_allowed_to_contain_white_space_or_the_following_characters=Entry_type_names_are_not_allowed_to_contain_white_space_or_the_following_characters
+Entry_type_names_are_not_allowed_to_contain_white_space_or_the_following_characters=\u00c8\u00ec\u00e5\u00ed\u00e0_\u00f2\u00e8\u00ef\u00ee\u00e2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ed\u00e5_\u00e4\u00ee\u00eb\u00e6\u00ed\u00fb_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f2\u00fc_\u00ef\u00f0\u00ee\u00e1\u00e5\u00eb\u00ee\u00e2_\u00e8\u00eb\u00e8_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00f5_\u00e7\u00ed\u00e0\u00ea\u00ee\u00e2
 
-Entry_types=Entry_types
+Entry_types=\u00d2\u00e8\u00ef\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Error=Error
-Error\:_=Error\:_
-Error_converting_BibTeX_to_XMP\:_%0=Error_converting_Bibtex_to_XMP\:_%0
-Error_converting_XMP_to_'%0'...=Error_converting_XMP_to_'%0'...
-Error_exporting_to_clipboard=Error_exporting_to_clipboard
+Error=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0
+Error\:_=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0:_
+Error_converting_BibTeX_to_XMP\:_%0=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_BibTex_\u00e2_XMP:_%0
+Error_converting_XMP_to_'%0'...=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_XMP_\u00e2_'%0'...
+Error_exporting_to_clipboard=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0_\u00e2_\u00e1\u00f3\u00f4\u00e5\u00f0_\u00ee\u00e1\u00ec\u00e5\u00ed\u00e0
 
 ##Error:_check_your_External_viewer_settings_in_Preferences=Error:_check_your_External_viewer_settings_in_Preferences
-Error_in_field=Error_in_field
-Error_in_starting_plug-in_system._Starting_without,_but_some_functionality_may_be_missing.=Error_in_starting_plug-in_system._Starting_without,_but_some_functionality_may_be_missing.
-Error_occured_when_parsing_entry=Error_occured_when_parsing_entry
+Error_in_field=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2_\u00ef\u00ee\u00eb\u00e5
+Error_in_starting_plug-in_system._Starting_without,_but_some_functionality_may_be_missing.=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e0_\u00f1\u00e8\u00f1\u00f2\u00e5\u00ec\u00fb_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e5\u00e9._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00e0_\u00ed\u00e5\u00ef\u00ee\u00eb\u00ed\u00e0\u00ff_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00ee\u00f1\u00f2\u00fc.
+Error_occured_when_parsing_entry=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e0\u00ed\u00e0\u00eb\u00e8\u00e7\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Error_opening_file=Error_opening_file
+Error_opening_file=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00e8\u00e8_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Error_setting_field=Error_setting_field
-Error_while_converting_BibtexEntry_to_XMP_%0=Error_while_converting_BibtexEntry_to_XMP_%0
-Error_while_downloading_file\:=Error_while_downloading_file\:
-Error_while_writing=Error_while_writing
-Error_writing_to_%0_file(s).=Error_writing_to_%0_file(s).
-Error_writing_XMP_to_file\:_%0=Error_writing_XMP_to_file\:_%0
+Error_setting_field=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ea\u00ee\u00ed\u00f4\u00e8\u00e3\u00f3\u00f0\u00e0\u00f6\u00e8\u00e8_\u00ef\u00ee\u00eb\u00ff
+Error_while_converting_BibtexEntry_to_XMP_%0=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_BibTex_\u00e2_XMP_%0
+Error_while_downloading_file\:=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8_\u00f4\u00e0\u00e9\u00eb\u00e0:
+Error_while_writing=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Error_writing_to_%0_file(s).=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00f4\u00e0\u00e9\u00eb(\u00fb)_%0.
+Error_writing_XMP_to_file\:_%0=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_XMP_\u00e2_\u00f4\u00e0\u00e9\u00eb:_%0
 
 
-Establishing_SQL_connection...=Establishing_SQL_connection...
-Exceptions=Exceptions
+Establishing_SQL_connection...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_SQL...
+Exceptions=\u00c8\u00f1\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff
 
-Existing_file=Existing_file
+Existing_file=\u00d1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e8\u00e9_\u00f4\u00e0\u00e9\u00eb
 
-exists._Overwrite_file?=exists._Overwrite_file?
-exists._Overwrite?=exists._Overwrite?
+exists._Overwrite_file?=\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2._\u00cf\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb?
+exists._Overwrite?=\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2._\u00cf\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc?
 
-Expand_subtree=Expand_subtree
+Expand_subtree=\u00d0\u00e0\u00e7\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e5\u00e2\u00ee
 
 #previousentrynottranslated.Toviewit,openGroupinterfaceandclickonthe"newgroup"button
 Export=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2
 
-Export_name=Export_name
+Export_name=\u00c8\u00ec\u00ff_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Export_preferences=Export_preferences
+Export_preferences=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea
 
-Export_preferences_to_file=Export_preferences_to_file
+Export_preferences_to_file=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea_\u00e2_\u00f4\u00e0\u00e9\u00eb
 
-Export_properties=Export_properties
+Export_properties=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00f1\u00e2\u00ee\u00e9\u00f1\u00f2\u00e2
 
-Export_to_clipboard=Export_to_clipboard
-Export_to_SQL_database=Export_to_SQL_database
+Export_to_clipboard=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e2_\u00e1\u00f3\u00f4\u00e5\u00f0_\u00ee\u00e1\u00ec\u00e5\u00ed\u00e0
+Export_to_SQL_database=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e2_\u00c1\u00c4_SQL
 
-Exporting=Exporting
-Extension=Extension
+Exporting=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2
+Extension=\u00d0\u00e0\u00f1\u00f8\u00e8\u00f0\u00e5\u00ed\u00e8\u00e5
 
-External_changes=External_changes
+External_changes=\u00c2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff
 
-External_file_links=External_file_links
+External_file_links=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ed\u00e0_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00fb
 
-External_files=External_files
+External_files=\u00c2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00fb
 
-External_programs=External_programs
+External_programs=\u00c2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00fb
 
-External_viewer_called=External_viewer_called
+External_viewer_called=\u00c2\u00fb\u00e7\u00ee\u00e2_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e5\u00e9_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00fb_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0
 
-Failed_to_read_groups_data_(unsupported_version\:_%0)=Failed_to_read_groups_data_(unsupported_version\:_%0)
+Failed_to_read_groups_data_(unsupported_version\:_%0)=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00f7\u00f2\u00e5\u00ed\u00e8\u00ff_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e3\u00f0\u00f3\u00ef\u00ef_(\u00ed\u00e5\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e6\u00e8\u00e2\u00e0\u00e5\u00ec\u00e0\u00ff_\u00e2\u00e5\u00f0\u00f1\u00e8\u00ff:_%0)
 
-Fetch=Fetch
+Fetch=\u00c2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0
 
-Field=Field
+Field=\u00cf\u00ee\u00eb\u00e5
 
-field=field
+field=\u00ef\u00ee\u00eb\u00e5
 
 #Integritycheckisaprocessthatchecksforindicationsofwronglyfilledoutbibtexfields."Scan"isthebuttonthatstartsthecheck.
-Field_content=Field_content
+Field_content=\u00d1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5_\u00ef\u00ee\u00eb\u00ff
 
-Field_name=Field_name
-Field_names_are_not_allowed_to_contain_white_space_or_the_following_characters=Field_names_are_not_allowed_to_contain_white_space_or_the_following_characters
+Field_name=\u00c8\u00ec\u00ff_\u00ef\u00ee\u00eb\u00ff
+Field_names_are_not_allowed_to_contain_white_space_or_the_following_characters=\u00c8\u00ec\u00e5\u00ed\u00e0_\u00ef\u00ee\u00eb\u00e5\u00e9_\u00ed\u00e5_\u00e4\u00ee\u00eb\u00e6\u00ed\u00fb_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f2\u00fc_\u00ef\u00f0\u00ee\u00e1\u00e5\u00eb\u00ee\u00e2_\u00e8\u00eb\u00e8_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00f5_\u00e7\u00ed\u00e0\u00ea\u00ee\u00e2
 
-Field_sizes=Field_sizes
-Field_to_filter=Field_to_filter
+Field_sizes=\u00d0\u00e0\u00e7\u00ec\u00e5\u00f0_\u00ef\u00ee\u00eb\u00e5\u00e9
+Field_to_filter=\u00cf\u00ee\u00eb\u00e5_\u00e4\u00eb\u00ff_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0\u00e0
 
-Field_to_group_by=Field_to_group_by
+Field_to_group_by=\u00cf\u00ee\u00eb\u00e5_\u00e4\u00eb\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8
 
 File=\u00d4\u00e0\u00e9\u00eb
 
-file=file
+file=\u00f4\u00e0\u00e9\u00eb
 
-File_'%0'_is_already_open.=File_'%0'_is_already_open.
+File_'%0'_is_already_open.=\u00d4\u00e0\u00e9\u00eb_'%0'_\u00f3\u00e6\u00e5_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2.
 
-File_'%0'_not_found=File_'%0'_not_found
+File_'%0'_not_found=\u00d4\u00e0\u00e9\u00eb_'%0'_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed
 
-File_changed=File_changed
-File_directory_is_'%0'\:=File_directory_is_'%0'\:
+File_changed=\u00d4\u00e0\u00e9\u00eb_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed
+File_directory_is_'%0'\:=\u00ca\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_-_'%0':
 
-File_directory_is_not_set_or_does_not_exist!=File_directory_is_not_set_or_does_not_exist!
-File_download=File_download
-File_exists=File_exists
+File_directory_is_not_set_or_does_not_exist!=\u00ca\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00ed\u00e5_\u00e7\u00e0\u00e4\u00e0\u00ed_\u00e8\u00eb\u00e8_\u00ed\u00e5_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2.
+File_download=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e0_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+File_exists=\u00d4\u00e0\u00e9\u00eb_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2
 
-File_extension=File_extension
-File_has_been_updated_externally._What_do_you_want_to_do?=File_has_been_updated_externally._What_do_you_want_to_do?
+File_extension=\u00d0\u00e0\u00f1\u00f8\u00e8\u00f0\u00e5\u00ed\u00e8\u00ff_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+File_has_been_updated_externally._What_do_you_want_to_do?=\u00d4\u00e0\u00e9\u00eb_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00ec\u00e8_\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0\u00ec\u00e8._\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00e4\u00e0\u00eb\u00fc\u00ed\u00e5\u00e9\u00f8\u00e8\u00e5_\u00e4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00ff.
 
-File_not_found=File_not_found
-File_type=File_type
+File_not_found=\u00d4\u00e0\u00e9\u00eb_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed
+File_type=\u00d2\u00e8\u00ef_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-File_updated_externally=File_updated_externally
+File_updated_externally=\u00d4\u00e0\u00e9\u00eb_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00ec\u00e8_\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0\u00ec\u00e8
 
-filename=filename
+filename=\u00e8\u00ec\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Files_opened=Files_opened
+Files_opened=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fb\u00e5_\u00f4\u00e0\u00e9\u00eb\u00fb
 
-Filter=Filter
+Filter=\u00d4\u00e8\u00eb\u00fc\u00f2\u00f0
 
-Finished_autosetting_external_links.=Finished_autosetting_external_links.
+Finished_autosetting_external_links.=\u00c0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00f5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00ee.
 
-Finished_synchronizing_%0_links._Entries_changed%c_%1.=Finished_synchronizing_%0_links._Entries_changed%c_%1.
-Finished_writing_XMP-metadata._Wrote_to_%0_file(s).=Finished_writing_XMP-metadata._Wrote_to_%0_file(s).
-Finished_writing_XMP_for_%0_file_(%1_skipped,_%2_errors).=Finished_writing_XMP_for_%0_file_(%1_skipped,_%2_errors).
+Finished_synchronizing_%0_links._Entries_changed%c_%1.=\u00d1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e0\u00f6\u00e8\u00ff_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_%0_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e0._\u00c7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00f1_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff\u00ec\u00e8%c_%1.
+Finished_writing_XMP-metadata._Wrote_to_%0_file(s).=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e0._\u00d4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00f1_\u00e7\u00e0\u00ef\u00e8\u00f1\u00ff\u00ec\u00e8:_%0.
+Finished_writing_XMP_for_%0_file_(%1_skipped,_%2_errors).=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_XMP_\u00e2_%0_\u00f4\u00e0\u00e9\u00eb(\u00ee\u00e2)_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e0_(\u00ef\u00f0\u00ee\u00ef\u00f3\u00f9\u00e5\u00ed\u00ee:_%1_,\u00f1_\u00ee\u00f8\u00e8\u00e1\u00ea\u00e0\u00ec\u00e8:_%2).
 
-First_select_the_entries_you_want_keys_to_be_generated_for.=First_select_the_entries_you_want_keys_to_be_generated_for.
+First_select_the_entries_you_want_keys_to_be_generated_for.=\u00d1\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_\u00e2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e4\u00eb\u00ff_\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00f5_\u00f1\u00eb\u00e5\u00e4\u00f3\u00e5\u00f2_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e8.
 
-Fit_table_horizontally_on_screen=Fit_table_horizontally_on_screen
+Fit_table_horizontally_on_screen=\u00d0\u00e0\u00e7\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e3\u00ee\u00f0\u00e8\u00e7\u00ee\u00ed\u00f2\u00e0\u00eb\u00fc\u00ed\u00ee_\u00ed\u00e0_\u00fd\u00ea\u00f0\u00e0\u00ed\u00e5
 
-Float=Float
-Float_marked_entries=Float_marked_entries
+Float=\u00cd\u00e5\u00f4\u00e8\u00ea\u00f1\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e5
+Float_marked_entries=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f1_\u00ec\u00e5\u00f2\u00ea\u00e0\u00ec\u00e8_\u00ea\u00e0\u00ea_\u00ed\u00e5\u00f4\u00e8\u00ea\u00f1\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e5
 
-Font_Family=Font_Family
+Font_Family=\u00c3\u00e0\u00f0\u00ed\u00e8\u00f2\u00f3\u00f0\u00e0_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0
 
-Font_Preview=Font_Preview
+Font_Preview=\u00cf\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0
 
-Font_Size=Font_Size
+Font_Size=\u00ca\u00e5\u00e3\u00eb\u00fc
 
-Font_Style=Font_Style
+Font_Style=\u00cd\u00e0\u00f7\u00e5\u00f0\u00f2\u00e0\u00ed\u00e8\u00e5_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0
 
-FontSelector=FontSelector
+FontSelector=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0
 
-for=for
+for=\u00e4\u00eb\u00ff
 
-Format_of_author_and_editor_names=Format_of_author_and_editor_names
-Format_String=Format_String
+Format_of_author_and_editor_names=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e8\u00ec\u00e5\u00ed\u00e8_\u00e0\u00e2\u00f2\u00ee\u00f0\u00e0/\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0\u00e0
+Format_String=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3
 
-Format_used=Format_used
-Formatter_Name=Formatter_Name
+Format_used=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00f3\u00e5\u00ec\u00fb\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2
+Formatter_Name=\u00c8\u00ec\u00ff_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00fb_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff
 
-Formatter_not_found=Formatter_not_found
+Formatter_not_found=\u00cf\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00e0_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00e0
 
-found=found
-Found_%0_plugin(s)=Found_%0_plugin(s)
+found=\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee
+Found_%0_plugin(s)=\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e5\u00e9:_%0
 
-found_in_aux_file=found_in_aux_file
+found_in_aux_file=\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee_\u00e2_\u00f4\u00e0\u00e9\u00eb\u00e5_AUX
 
-Full_name=Full_name
+Full_name=\u00cf\u00ee\u00eb\u00ed\u00ee\u00e5_\u00e8\u00ec\u00ff
 
-General=General
+General=\u00ce\u00e1\u00f9\u00e8\u00e5
 
-General_fields=General_fields
+General_fields=\u00ce\u00e1\u00f9\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff
 
-Generate=Generate
+Generate=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc
 
-Generate_BibTeX_key=Generate_BibTeX_key
+Generate_BibTeX_key=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7_BibTeX
 
-Generate_keys=Generate_keys
+Generate_keys=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e8
 
-Generate_keys_before_saving_(for_entries_without_a_key)=Generate_keys_before_saving_(for_entries_without_a_key)
-Generate_keys_for_imported_entries=Generate_keys_for_imported_entries
+Generate_keys_before_saving_(for_entries_without_a_key)=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e8_\u00ef\u00e5\u00f0\u00e5\u00e4_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec_(\u00e4\u00eb\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e1\u00e5\u00e7_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9)
+Generate_keys_for_imported_entries=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e8_\u00e4\u00eb\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Generate_now=Generate_now
+Generate_now=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00f1\u00e5\u00e9\u00f7\u00e0\u00f1
 
-Generated_BibTeX_key_for=Generated_BibTeX_key_for
+Generated_BibTeX_key_for=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7_BibTeX_\u00e4\u00eb\u00ff
 
-Generating_BibTeX_key_for=Generating_BibTeX_key_for
+Generating_BibTeX_key_for=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX_\u00e4\u00eb\u00ff
 
-Grab=Grab
+Grab=\u00c7\u00e0\u00f5\u00e2\u00e0\u00f2
 
-Gray_out_entries_not_in_group_selection=Gray_out_entries_not_in_group_selection
+Gray_out_entries_not_in_group_selection=\u00c4\u00e5\u00e0\u00ea\u00f2\u00e8\u00e2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00ed\u00e5_\u00e2\u00fb\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00e5_\u00e2_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Gray_out_non-hits=Gray_out_non-hits
+Gray_out_non-hits=\u00c4\u00e5\u00e0\u00ea\u00f2\u00e8\u00e2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ed\u00e5\u00ef\u00ee\u00e4\u00f5\u00ee\u00e4\u00ff\u00f9\u00e8\u00e5
 
-Gray_out_non-matching_entries=Gray_out_non-matching_entries
+Gray_out_non-matching_entries=\u00c4\u00e5\u00e0\u00ea\u00f2\u00e8\u00e2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e1\u00e5\u00e7_\u00f1\u00ee\u00e2\u00ef\u00e0\u00e4\u00e5\u00ed\u00e8\u00ff
 
-Group_properties=Group_properties
+Group_properties=\u00d1\u00e2\u00ee\u00e9\u00f1\u00f2\u00e2\u00e0_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-grouping_may_not_work_for_this_entry=grouping_may_not_work_for_this_entry
+grouping_may_not_work_for_this_entry=\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00e0_\u00ee\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Groups=Groups
+Groups=\u00c3\u00f0\u00f3\u00ef\u00ef\u00fb
 
 Harvard_RTF=Harvard_RTF
 
-Have_you_chosen_the_correct_package_path?=Have_you_chosen_the_correct_package_path?
+Have_you_chosen_the_correct_package_path?=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00fc\u00f2\u00e5_\u00ef\u00f0\u00e0\u00e2\u00e8\u00eb\u00fc\u00ed\u00ee\u00f1\u00f2\u00fc_\u00ef\u00f3\u00f2\u00e8_\u00ef\u00e0\u00ea\u00e5\u00f2\u00e0.
 
 Help=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0
 
 Help_contents=\u00d1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00ed\u00e8\u00e5_\u00f1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e8
 
-Help_on_groups=Help_on_groups
+Help_on_groups=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_\u00ef\u00ee_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0\u00ec
 
-Help_on_key_patterns=Help_on_key_patterns
-Help_on_Preview_Settings=Help_on_Preview_Settings
-Help_on_Regular_Expression_Search=Help_on_Regular_Expression_Search
+Help_on_key_patterns=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_\u00ef\u00ee_\u00f8\u00e0\u00e1\u00eb\u00ee\u00ed\u00e0\u00ec_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9
+Help_on_Preview_Settings=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_\u00ef\u00ee_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00e0\u00ec_\u00ef\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0
+Help_on_Regular_Expression_Search=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_\u00ef\u00ee_\u00ef\u00ee\u00e8\u00f1\u00ea\u00f3_\u00f1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00fb\u00f5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e9
 
-Hide_non-hits=Hide_non-hits
+Hide_non-hits=\u00d1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ed\u00e5\u00ef\u00ee\u00e4\u00f5\u00ee\u00e4\u00ff\u00f9\u00e8\u00e5
 
-Hide_non-matching_entries=Hide_non-matching_entries
+Hide_non-matching_entries=\u00d1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e1\u00e5\u00e7_\u00f1\u00ee\u00e2\u00ef\u00e0\u00e4\u00e5\u00ed\u00e8\u00ff
 
-Hierarchical_context=Hierarchical_context
+Hierarchical_context=\u00c8\u00e5\u00f0\u00e0\u00f0\u00f5\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8\u00e9_\u00ea\u00ee\u00ed\u00f2\u00e5\u00ea\u00f1\u00f2
 
-Highlight=Highlight
-Highlight_groups_matching_all_selected_entries=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e8\u00e5_\u00e2\u00f1\u00e5\u00ec_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00ec_\u00e7\u00e0\u00ef\u00e8\u00f1\u00ff\u00ec
-Highlight_groups_matching_any_selected_entry=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb,_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e8\u00e5_\u00e2\u00f1\u00e5\u00ec_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00ec_\u00e7\u00e0\u00ef\u00e8\u00f1\u00ff\u00ec
+Highlight=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5
+Highlight_groups_matching_all_selected_entries=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00e5\u00ec_\u00e4\u00eb\u00ff_\u00e2\u00f1\u00e5\u00f5_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Highlight_groups_matching_any_selected_entry=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00e5\u00ec_\u00e4\u00eb\u00ff_\u00eb\u00fe\u00e1\u00ee\u00e9_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Highlight_overlapping_groups=Highlight_overlapping_groups
+Highlight_overlapping_groups=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00ef\u00e5\u00f0\u00e5\u00f1\u00e5\u00ea\u00e0\u00fe\u00f9\u00e8\u00e5\u00f1\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Hint%c_To_search_specific_fields_only,_enter_for_example%c<p><tt>author%esmith_and_title%eelectrical</tt>=Hint%c_To_search_specific_fields_only,_enter_for_example%c<p><tt>author%esmith_and_title%eelectrical</tt>
+Hint%c_To_search_specific_fields_only,_enter_for_example%c<p><tt>author%esmith_and_title%eelectrical</tt>=\u00cf\u00ee\u00e4\u00f1\u00ea\u00e0\u00e7\u00ea\u00e0%c_\u00c4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00ef\u00ee_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00ec_\u00ef\u00ee\u00eb\u00ff\u00ec,_\u00ed\u00e0\u00ef\u00f0.%c<p><tt>\u00e0\u00e2\u00f2\u00ee\u00f0%esmith_\u00e8_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u0 [...]
 
 HTML=HTML
-HTML_table=HTML_table
-HTML_table_(with_Abstract_&_BibTeX)=HTML_table_(with_Abstract_&_BibTeX)
-Icon=Icon
+HTML_table=\u00d2\u00e0\u00e1\u00eb\u00e8\u00f6\u00e0_HTML
+HTML_table_(with_Abstract_&_BibTeX)=\u00d2\u00e0\u00e1\u00eb\u00e8\u00f6\u00e0_HTML_(\u00f1_\u00f0\u00e5\u00e7\u00fe\u00ec\u00e5_&_BibTeX)
+Icon=\u00c7\u00ed\u00e0\u00f7\u00ee\u00ea
 
-Ignore=Ignore
+Ignore=\u00cf\u00f0\u00ee\u00ef\u00f3\u00f1\u00ea
 
-Immediate_subgroups=Immediate_subgroups
+Immediate_subgroups=\u00cd\u00e5\u00ef\u00ee\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e5\u00ed\u00ed\u00fb\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Import=Import
+Import=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2
 
-Import_and_keep_old_entry=Import_and_keep_old_entry
+Import_and_keep_old_entry=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00f1_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec_\u00f1\u00f2\u00e0\u00f0\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Import_and_remove_old_entry=Import_and_remove_old_entry
+Import_and_remove_old_entry=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00f1_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e8\u00e5\u00ec_\u00f1\u00f2\u00e0\u00f0\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Import_entries=Import_entries
+Import_entries=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Import_failed=Import_failed
+Import_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Import_file=Import_file
+Import_file=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Import_group_definitions=Import_group_definitions
+Import_group_definitions=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef
 
-Import_name=Import_name
+Import_name=\u00c8\u00ec\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Import_preferences=Import_preferences
+Import_preferences=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea
 
-Import_preferences_from_file=Import_preferences_from_file
+Import_preferences_from_file=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea_\u00e8\u00e7_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Import_strings=Import_strings
+Import_strings=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00f1\u00f2\u00f0\u00ee\u00ea
 
-Import_to_open_tab=Import_to_open_tab
+Import_to_open_tab=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e2_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00f3\u00fe_\u00e2\u00ea\u00eb\u00e0\u00e4\u00ea\u00f3
 
-Import_word_selector_definitions=Import_word_selector_definitions
+Import_word_selector_definitions=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e9_\u00e2\u00fb\u00e1\u00ee\u00f0\u00e0_\u00f1\u00eb\u00ee\u00e2
 
-Imported_database=Imported_database
+Imported_database=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00e0\u00ff_\u00c1\u00c4
 
-Imported_entries=Imported_entries
+Imported_entries=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Imported_from_database=Imported_from_database
+Imported_from_database=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ee_\u00e8\u00e7_\u00c1\u00c4
 
-ImportFormat_class=ImportFormat_class
+ImportFormat_class=\u00ca\u00eb\u00e0\u00f1\u00f1_ImportFormat
 
-Importing=Importing
+Importing=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2
 
-Importing_in_unknown_format=Importing_in_unknown_format
+Importing_in_unknown_format=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ed\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00ee\u00e3\u00ee_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0
 
-In_JabRef,_use_pairs_of_#_characters_to_indicate_a_string.=In_JabRef,_use_pairs_of_#_characters_to_indicate_a_string.
+In_JabRef,_use_pairs_of_#_characters_to_indicate_a_string.=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00f3\u00e9\u00f2\u00e5_\u00ef\u00e0\u00f0\u00ed\u00fb\u00e5_#_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed\u00e8\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea_\u00e2_JabRef.
 
-Include_abstracts=Include_abstracts
-Include_entries=Include_entries
+Include_abstracts=\u00c2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00ea\u00ee\u00ed\u00f1\u00ef\u00e5\u00ea\u00f2
+Include_entries=\u00c2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Include_subgroups\:_When_selected,_view_entries_contained_in_this_group_or_its_subgroups=Include_subgroups\:_When_selected,_view_entries_contained_in_this_group_or_its_subgroups
+Include_subgroups\:_When_selected,_view_entries_contained_in_this_group_or_its_subgroups=\u00c2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb:_\u00cf\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9,_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f9\u00e8\u00f5\u00f1\u00ff_\u00e2_\u00fd\u00f2\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5_\u00e8\u00eb\u00e8_\u00e5\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\ [...]
 
-Incremental=Incremental
+Incremental=\u00c8\u00ed\u00ea\u00f0\u00e5\u00ec\u00e5\u00ed\u00f2\u00e0\u00eb\u00fc\u00ed\u00fb\u00e9
 
 Incremental_search=\u00c8\u00ed\u00ea\u00f0\u00e5\u00ec\u00e5\u00ed\u00f2\u00e0\u00eb\u00fc\u00ed\u00fb\u00e9_\u00ef\u00ee\u00e8\u00f1\u00ea
 
-Incremental_search_failed._Repeat_to_search_from_top.=Incremental_search_failed._Repeat_to_search_from_top.
+Incremental_search_failed._Repeat_to_search_from_top.=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e8\u00ed\u00ea\u00f0\u00e5\u00ec\u00e5\u00ed\u00f2\u00e0\u00eb\u00fc\u00ed\u00ee\u00e3\u00ee_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0._\u00cf\u00ee\u00e2\u00f2\u00ee\u00f0\u00e8\u00f2\u00e5_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00f1\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0.
 
-Independent_group\:_When_selected,_view_only_this_group's_entries=Independent_group\:_When_selected,_view_only_this_group's_entries
+Independent_group\:_When_selected,_view_only_this_group's_entries=\u00cd\u00e5\u00e7\u00e0\u00e2\u00e8\u00f1\u00e8\u00ec\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0:_\u00cf\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00fd\u00f2\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_(\u00e5\u00f1\u00eb\u00e8_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ee)
 
-Initially_show_groups_tree_expanded=Initially_show_groups_tree_expanded
+Initially_show_groups_tree_expanded=\u00d0\u00e0\u00e7\u00e2\u00ee\u00f0\u00e0\u00f7\u00e8\u00e2\u00e0\u00f2\u00fc_\u00e4\u00e5\u00f0\u00e5\u00e2\u00ee_\u00e3\u00f0\u00f3\u00ef\u00ef_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Input=Input
+Input=\u00d0\u00e0\u00e1\u00ee\u00f7\u00e8\u00e5_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb
 
-Input_error=Input_error
+Input_error=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00e2\u00ee\u00e4\u00e0
 
-Insert=Insert
+Insert=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc
 
-Insert_rows=Insert_rows
+Insert_rows=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
 Insert_selected_citations_into_LyX/Kile=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_LyX/Kile
 
 Insert_selected_citations_into_WinEdt=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_WinEdt
 
-insert_string_=insert_string_
+insert_string_=\u00e2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_
 
-Insert_URL=Insert_URL
+Insert_URL=\u00c2\u00e2\u00ee\u00e4_URL-\u00e0\u00e4\u00f0\u00e5\u00f1\u00e0
 
 #Integritycheckisaprocessthatchecksforindicationsofwronglyfilledoutbibtexfields."Scan"isthebuttonthatstartsthecheck.
-Integrity_check=\u00cf\u00f0\u00ee\u00f1\u00e5\u00f0\u00ea\u00e0_\u00f6\u00e5\u00eb\u00ee\u00f1\u00f2\u00ed\u00ee\u00f1\u00f2\u00e8
+Integrity_check=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00ea\u00e0_\u00f6\u00e5\u00eb\u00ee\u00f1\u00f2\u00ed\u00ee\u00f1\u00f2\u00e8
 
-Intersection=Intersection
+Intersection=\u00cf\u00e5\u00f0\u00e5\u00f1\u00e5\u00f7\u00e5\u00ed\u00e8\u00e5
 
-Invalid_BibTeX_key=Invalid_BibTeX_key
+Invalid_BibTeX_key=\u00cd\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00e9_\u00ea\u00eb\u00fe\u00f7_BibTeX
 
-Invalid_date_format=Invalid_date_format
+Invalid_date_format=\u00cd\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e4\u00e0\u00f2\u00fb
 
-Invalid_URL=Invalid_URL
+Invalid_URL=\u00cd\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00e9_URL-\u00e0\u00e4\u00f0\u00e5\u00f1
 
-Inverted=Inverted
+Inverted=\u00ce\u00e1\u00f0\u00e0\u00f2\u00ed\u00fb\u00e9
 
-ISO_abbreviation=ISO_abbreviation
+ISO_abbreviation=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00e5_(ISO)
 
 JabRef_help=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_JabRef
 
-JabRef_preferences=JabRef_preferences
+JabRef_preferences=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_JabRef
 
-Journal_abbreviations=Journal_abbreviations
+Journal_abbreviations=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00e4\u00eb\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
 
-Journal_list_preview=Journal_list_preview
+Journal_list_preview=\u00cf\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00f1\u00ef\u00e8\u00f1\u00ea\u00e0_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
 
-Journal_name=Journal_name
+Journal_name=\u00cd\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e5_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00e0
 
-Keep=Keep
+Keep=\u00ce\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc
 
-Keep_both=Keep_both
+Keep_both=\u00ce\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ee\u00e1\u00e0
 
-Keep_lower=Keep_lower
+Keep_lower=\u00ce\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ed\u00e8\u00e6\u00ed\u00e8\u00e9
 
-Keep_upper=Keep_upper
+Keep_upper=\u00ce\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00e5\u00f0\u00f5\u00ed\u00e8\u00e9
 
-Key_bindings=Key_bindings
+Key_bindings=\u00d4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8\u00e8
 
-Key_bindings_changed=Key_bindings_changed
+Key_bindings_changed=\u00cd\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00fb
 
-Key_generator_settings=Key_generator_settings
+Key_generator_settings=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00ff_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9
 
-Key_pattern=Key_pattern
+Key_pattern=\u00d8\u00e0\u00e1\u00eb\u00ee\u00ed_\u00ea\u00eb\u00fe\u00f7\u00e0
 
-keys_in_database=keys_in_database
+keys_in_database=\u00ea\u00eb\u00fe\u00f7\u00e8_\u00e2_\u00e1\u00e0\u00e7\u00e5_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5
 
 #nottranslated.Toviewit,usemenu"Tools|NewBibTeXfilefromAUxfile",andlaunchtheactiononanon-existantauxfile.
-Keyword=Keyword
+Keyword=\u00ca\u00eb\u00fe\u00f7\u00e5\u00e2\u00ee\u00e5_\u00f1\u00eb\u00ee\u00e2\u00ee
 
-Label=Label
+Label=\u00cc\u00e5\u00f2\u00ea\u00e0
 
-Language=Language
+Language=\u00df\u00e7\u00fb\u00ea
 
-Last_modified=Last_modified
+Last_modified=\u00cf\u00ee\u00f1\u00eb\u00e5\u00e4\u00ed\u00e5\u00e5_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5
 
-LaTeX_AUX_file=LaTeX_AUX_file
-Leave_file_in_its_current_directory.=Leave_file_in_its_current_directory.
-Leave_files_in_their_current_directory.=Leave_files_in_their_current_directory.
+LaTeX_AUX_file=\u00d4\u00e0\u00e9\u00eb_AUX_\u00e4\u00eb\u00ff_LaTeX
+Leave_file_in_its_current_directory.=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb_\u00e2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00ec_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e5.
+Leave_files_in_their_current_directory.=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb\u00fb_\u00e2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00ec_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e5.
 
-Left=Left
+Left=\u00cb\u00e5\u00e2\u00fb\u00e9
 
-License=License
+License=\u00cb\u00e8\u00f6\u00e5\u00ed\u00e7\u00e8\u00ff
 
-Limit_to_fields=Limit_to_fields
+Limit_to_fields=\u00ce\u00e3\u00f0\u00e0\u00ed\u00e8\u00f7\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00eb\u00e5\u00e9
 
-Limit_to_selected_entries=Limit_to_selected_entries
+Limit_to_selected_entries=\u00ce\u00e3\u00f0\u00e0\u00ed\u00e8\u00f7\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Link=Link
-Link_local_file=Link_local_file
-Link_to_file_%0=Link_to_file_%0
+Link=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e0
+Link_local_file=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e0_\u00ed\u00e0_\u00eb\u00ee\u00ea\u00e0\u00eb\u00fc\u00ed\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb
+Link_to_file_%0=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e0_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb_%0
 
-Listen_for_remote_operation_on_port=Listen_for_remote_operation_on_port
-Load_and_Save_preferences_from/to_jabref.xml_on_start-up_(memory_stick_mode)=Load_and_Save_preferences_from/to_jabref.xml_on_start-up_(memory_stick_mode)
+Listen_for_remote_operation_on_port=\u00cf\u00f0\u00ee\u00f1\u00eb\u00f3\u00f8\u00e8\u00e2\u00e0\u00f2\u00fc_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00ed\u00fb\u00e5_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00f0\u00f2\u00e0
+Load_and_Save_preferences_from/to_jabref.xml_on_start-up_(memory_stick_mode)=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e0_\u00e8\u00eb\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea_\u00e8\u00e7/\u00e2_\u00f4\u00e0\u00e9\u00eb_jabref.xml_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5_(\u00f0\u00e5\u00e6\u0 [...]
 
 Load_session=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00e8\u00f2\u00fc_\u00f1\u00e5\u00e0\u00ed\u00f1
 
-Loading_session...=Loading_session...
+Loading_session...=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e0_\u00f1\u00e5\u00e0\u00ed\u00f1\u00e0...
 
-Look_and_feel=Look_and_feel
-Looking_for_pdf...=Looking_for_pdf...
-lower=lower
-Main_file_directory=Main_file_directory
+Look_and_feel=\u00c8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1
+Looking_for_pdf...=\u00cf\u00ee\u00e8\u00f1\u00ea_pdf...
+lower=\u00f1\u00f2\u00f0\u00ee\u00f7\u00ed\u00fb\u00e5
+Main_file_directory=\u00ce\u00f1\u00ed\u00ee\u00e2\u00ed\u00ee\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
 
-Main_layout_file=Main_layout_file
+Main_layout_file=\u00c3\u00eb\u00e0\u00e2\u00ed\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb_\u00ec\u00e0\u00ea\u00e5\u00f2\u00e0
 
-Main_PDF_directory=Main_PDF_directory
+Main_PDF_directory=\u00ce\u00f1\u00ed\u00ee\u00e2\u00ed\u00ee\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_PDF
 
-Main_PS_directory=Main_PS_directory
+Main_PS_directory=\u00ce\u00f1\u00ed\u00ee\u00e2\u00ed\u00ee\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_PS
 
-Manage=Manage
+Manage=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5
 
-Manage_custom_exports=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0\u00ec\u00e8_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0
+Manage_custom_exports=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00ec_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00ee\u00ec
 
-Manage_custom_imports=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0\u00ec\u00e8_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
+Manage_custom_imports=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00ec_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00ee\u00ec
 Manage_external_file_types=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00ec\u00e8_\u00f2\u00e8\u00ef\u00e0\u00ec\u00e8_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
 
 Manage_journal_abbreviations=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff\u00ec\u00e8_\u00e4\u00eb\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
 
 Mark_entries=\u00cc\u00e5\u00f2\u00ea\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Mark_entry=Mark_entry
+Mark_entry=\u00cc\u00e5\u00f2\u00ea\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Mark_new_entries_with_addition_date=Mark_new_entries_with_addition_date
+Mark_new_entries_with_addition_date=\u00cc\u00e5\u00f2\u00ea\u00e0_\u00e4\u00e0\u00f2\u00fb_\u00e4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00ff_\u00e4\u00eb\u00ff_\u00ed\u00ee\u00e2\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Mark_new_entries_with_owner_name=Mark_new_entries_with_owner_name
+Mark_new_entries_with_owner_name=\u00cc\u00e5\u00f2\u00ea\u00e0_\u00e8\u00ec\u00e5\u00ed\u00e8_\u00e2\u00eb\u00e0\u00e4\u00e5\u00eb\u00fc\u00f6\u00e0_\u00e4\u00eb\u00ff_\u00ed\u00ee\u00e2\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Marked_selected=Marked_selected
-Memory_Stick_Mode=Memory_Stick_Mode
+Marked_selected=\u00cf\u00ee\u00ec\u00e5\u00f2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5
+Memory_Stick_Mode=\u00d0\u00e5\u00e6\u00e8\u00ec_\u00f4\u00eb\u00e5\u00f8-\u00ef\u00e0\u00ec\u00ff\u00f2\u00e8
 
-Menu_and_label_font_size=Menu_and_label_font_size
+Menu_and_label_font_size=\u00ca\u00e5\u00e3\u00eb\u00fc_\u00ec\u00e5\u00ed\u00fe_\u00e8_\u00ef\u00ee\u00e4\u00ef\u00e8\u00f1\u00e8
 
-Merged_external_changes=Merged_external_changes
+Merged_external_changes=\u00c2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff_\u00f1_\u00ee\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec
 
-Messages=Messages
+Messages=\u00d1\u00ee\u00ee\u00e1\u00f9\u00e5\u00ed\u00e8\u00ff
 
-Messages_and_Hints=Messages_and_Hints
+Messages_and_Hints=\u00cf\u00ee\u00e4\u00f1\u00ea\u00e0\u00e7\u00ea\u00e8_\u00e8_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00ff
 
-Modification_of_field=Modification_of_field
+Modification_of_field=\u00cc\u00ee\u00e4\u00e8\u00f4\u00e8\u00ea\u00e0\u00f6\u00e8\u00ff_\u00ef\u00ee\u00eb\u00ff
 
-Modified_group_"%0".=Modified_group_"%0".
+Modified_group_"%0".=\u00cc\u00ee\u00e4\u00e8\u00f4\u00e8\u00f6\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0_"%0".
 
-Modified_groups=Modified_groups
+Modified_groups=\u00cc\u00ee\u00e4\u00e8\u00f4\u00e8\u00f6\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Modified_string=Modified_string
+Modified_string=\u00cc\u00ee\u00e4\u00e8\u00f4\u00e8\u00f6\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00e0\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e0
 
-Modify=Modify
+Modify=\u00cc\u00ee\u00e4\u00e8\u00f4\u00e8\u00f6\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc
 
-modify_group=modify_group
+modify_group=\u00ec\u00ee\u00e4\u00e8\u00f4\u00e8\u00f6\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
 MODS=MODS
 
-Move=Move
+Move=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc
 
-Move_down=Move_down
+Move_down=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e2\u00ed\u00e8\u00e7
 
-Move_entries_in_group_selection_to_the_top=Move_entries_in_group_selection_to_the_top
-Move_external_links_to_'file'_field=Move_external_links_to_'file'_field
-Move_files_to_file_directory.=Move_files_to_file_directory.
+Move_entries_in_group_selection_to_the_top=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2\u00e2\u00e5\u00f0\u00f5
+Move_external_links_to_'file'_field=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00e2_\u00ef\u00ee\u00eb\u00e5_'\u00f4\u00e0\u00e9\u00eb'
+Move_files_to_file_directory.=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb\u00fb_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3
 
-move_group=move_group
+move_group=\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Move_string_down=Move_string_down
+Move_string_down=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_\u00e2\u00ed\u00e8\u00e7
 
-Move_string_up=Move_string_up
+Move_string_up=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_\u00e2\u00e2\u00e5\u00f0\u00f5
 
-Move_up=Move_up
+Move_up=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e2\u00e2\u00e5\u00f0\u00f5
 
-Moved_group_"%0".=Moved_group_"%0".
+Moved_group_"%0".=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f9\u00e5\u00ed\u00ed\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0_"%0".
 MS_Office_2007=MS_Office_2007
 MySQL=MySQL
-MySQL_database=MySQL_database
+MySQL_database=\u00c1\u00e0\u00e7\u00e0_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_MySQL
 
-Name=Name
-Name_formatter=Name_formatter
+Name=\u00c8\u00ec\u00ff
+Name_formatter=\u00cf\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00e0_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e8\u00ec\u00e5\u00ed\u00e8
 
-Natbib_style=Natbib_style
+Natbib_style=\u00d1\u00f2\u00e8\u00eb\u00fc_Natbib
 
-nested_aux_files=nested_aux_files
+nested_aux_files=\u00f0\u00ee\u00e4\u00f1\u00f2\u00e2\u00e5\u00ed\u00ed\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb_AUX
 
-New=New
+New=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc
 
-new=new
+new=\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc
 
-New_BibTeX_database=New_BibTeX_database
+New_BibTeX_database=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00c1\u00c4_BibTeX
 
-New_BibTeX_entry=New_BibTeX_entry
+New_BibTeX_entry=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_BibTeX
 
-New_BibTeX_subdatabase=New_BibTeX_subdatabase
+New_BibTeX_subdatabase=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ef\u00ee\u00e4\u00f7\u00e8\u00ed\u00e5\u00ed\u00ed\u00f3\u00fe_\u00c1\u00c4_BibTeX
 
-New_content=New_content
+New_content=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00ee\u00ed\u00f2\u00e5\u00ed\u00f2
 
-New_database_created.=New_database_created.
-New_field_value=New_field_value
+New_database_created.=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e0_\u00ed\u00ee\u00e2\u00e0\u00ff_\u00c1\u00c4.
+New_field_value=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff
 
-New_file=New_file
-New_file_link_(INSERT)=New_file_link_(INSERT)
+New_file=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
+New_file_link_(INSERT)=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00f3_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb_(INSERT)
 
-New_group=New_group
+New_group=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-New_string=New_string
+New_string=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3
 
-Next_entry=Next_entry
+Next_entry=\u00d1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e0\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-No_%0_found=No_%0_found
+No_%0_found=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee:_%0
 
-No_actual_changes_found.=No_actual_changes_found.
+No_actual_changes_found.=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee.
 
-no_base-bibtex-file_specified=no_base-bibtex-file_specified
+no_base-bibtex-file_specified=\u00ed\u00e5_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed_\u00e1\u00e0\u00e7\u00ee\u00e2\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb_BibTeX!
 
-no_database_generated=no_database_generated
+no_database_generated=\u00c1\u00c4_\u00ed\u00e5_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e0
 
-No_duplicates_found=No_duplicates_found
+No_duplicates_found=\u00c4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb
 
-No_entries_found._Please_make_sure_you_are_using_the_correct_import_filter.=No_entries_found._Please_make_sure_you_are_using_the_correct_import_filter.
+No_entries_found._Please_make_sure_you_are_using_the_correct_import_filter.=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb._\u00d3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\u00f1\u00fc,_\u00f7\u00f2\u00ee_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00f3\u00e5\u00f2\u00f1\u00ff_\u00ef\u00f0\u00e0\u00e2\u00e8\u00eb\u00fc\u00ed\u00fb\u00e9_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0.
 
 
-No_entries_found_for_the_search_string_'%0'=No_entries_found_for_the_search_string_'%0'
+No_entries_found_for_the_search_string_'%0'=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e4\u00eb\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0_'%0'
 
-No_entries_imported.=No_entries_imported.
+No_entries_imported.=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ed\u00e5_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00fb.
 
-No_entries_or_multiple_entries_selected.=No_entries_or_multiple_entries_selected.
-No_entries_selected.=No_entries_selected.
+No_entries_or_multiple_entries_selected.=\u00cd\u00e5\u00f2_\u00e5\u00e4\u00e8\u00ed\u00e8\u00f7\u00ed\u00ee\u00e3\u00ee_\u00e8\u00eb\u00e8_\u00ec\u00ed\u00ee\u00e6\u00e5\u00f1\u00f2\u00e2\u00e5\u00ed\u00ed\u00ee\u00e3\u00ee_\u00e2\u00fb\u00e1\u00ee\u00f0\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9.
+No_entries_selected.=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ed\u00e5_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00fb.
 
-No_exceptions_have_ocurred.=No_exceptions_have_ocurred.
-No_files_found.=No_files_found.
+No_exceptions_have_ocurred.=\u00c8\u00f1\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ee\u00f2\u00f1\u00f3\u00f2\u00f1\u00f2\u00e2\u00f3\u00fe\u00f2.
+No_files_found.=\u00d4\u00e0\u00e9\u00eb\u00fb_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb.
 
-No_GUI._Only_process_command_line_options.=No_GUI._Only_process_command_line_options.
+No_GUI._Only_process_command_line_options.=\u00c1\u00e5\u00e7_\u00c8\u00cf._\u00ce\u00e1\u00f0\u00e0\u00e1\u00ee\u00f2\u00ea\u00e0_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00f1_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5\u00ec_\u00ea\u00ee\u00ec\u00e0\u00ed\u00e4\u00ed\u00ee\u00e9_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8.
 
-No_journal_names_could_be_abbreviated.=No_journal_names_could_be_abbreviated.
+No_journal_names_could_be_abbreviated.=\u00cd\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_\u00ed\u00e5_\u00ec\u00ee\u00e3\u00f3\u00f2_\u00e1\u00fb\u00f2\u00fc_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00fb.
 
-No_journal_names_could_be_unabbreviated.=No_journal_names_could_be_unabbreviated.
-No_PDF_linked=No_PDF_linked
+No_journal_names_could_be_unabbreviated.=\u00cd\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_\u00ed\u00e5_\u00ec\u00ee\u00e3\u00f3\u00f2_\u00e1\u00fb\u00f2\u00fc_\u00f0\u00e0\u00e7\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fb.
+No_PDF_linked=\u00c1\u00e5\u00e7_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_\u00ed\u00e0_PDF
 
-No_pdf_or_ps_defined,_and_no_file_matching_Bibtex_key_found=No_pdf_or_ps_defined,_and_no_file_matching_Bibtex_key_found
-No_plugins_were_found_in_the_following_folders\:=No_plugins_were_found_in_the_following_folders\:
+No_pdf_or_ps_defined,_and_no_file_matching_Bibtex_key_found=\u00cd\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed_PDF_\u00e8\u00eb\u00e8_PS,_\u00f4\u00e0\u00e9\u00eb_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e8\u00e9_\u00ea\u00eb\u00fe\u00f7\u00f3_Bibtex,_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed
+No_plugins_were_found_in_the_following_folders\:=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e8_\u00e2_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00f5_\u00ef\u00e0\u00ef\u00ea\u00e0\u00f5:
 
-No_references_found=No_references_found
+No_references_found=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb
 
-No_saved_session_found.=No_saved_session_found.
+No_saved_session_found.=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00ed\u00fb\u00f5_\u00f1\u00e5\u00e0\u00ed\u00f1\u00ee\u00e2.
 
-No_url_defined=No_url_defined
-No_XMP_metadata_found_in_=No_XMP_metadata_found_in_
+No_url_defined=URL-\u00e0\u00e4\u00f0\u00e5\u00f1_\u00ed\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed
+No_XMP_metadata_found_in_=\u00cc\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_XMP_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00e2_
 
-not=not
+not=\u00ed\u00e5
 
-not_found=not_found
+not_found=\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee
 
-Not_saved_(empty_session)=Not_saved_(empty_session)
+Not_saved_(empty_session)=\u00cd\u00e5_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00ee_(\u00ef\u00f3\u00f1\u00f2\u00ee\u00e9_\u00f1\u00e5\u00e0\u00ed\u00f1)
 
-Note_that_the_entry_causing_the_problem_has_been_selected.=Note_that_the_entry_causing_the_problem_has_been_selected.
+Note_that_the_entry_causing_the_problem_has_been_selected.=\u00ce\u00e1\u00f0\u00e0\u00f2\u00e8\u00f2\u00e5_\u00e2\u00ed\u00e8\u00ec\u00e0\u00ed\u00e8\u00e5,_\u00f7\u00f2\u00ee_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00e0\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ff\u00e2\u00eb\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea\u00ee\u00ec_\u00ee\u00f8\u00e8\u00e1\u00ea\u00e8.
 
-Note_that_you_must_specify_the_fully_qualified_class_name_for_the_look_and_feel,=Note_that_you_must_specify_the_fully_qualified_class_name_for_the_look_and_feel,
+Note_that_you_must_specify_the_fully_qualified_class_name_for_the_look_and_feel,=\u00ce\u00e1\u00f0\u00e0\u00f2\u00e8\u00f2\u00e5_\u00e2\u00ed\u00e8\u00ec\u00e0\u00ed\u00e8\u00e5,_\u00f7\u00f2\u00ee_\u00f1\u00eb\u00e5\u00e4\u00f3\u00e5\u00f2_\u00f3\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ed\u00ee\u00f1\u00f2\u00fc\u00fe_\u00ea\u00e2\u00e0\u00eb\u00e8\u00f4\u00e8\u00f6\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00ee\u00e5_\u00e8\u00ec\u00ff_\u00ea\u00eb\u00e0\u00f1\u00f1 [...]
 
-Nothing_to_redo=Nothing_to_redo
+Nothing_to_redo=\u00cd\u00e5\u00f2_\u00e4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00e9_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e2\u00f2\u00ee\u00f0\u00e0
 
-Nothing_to_undo=Nothing_to_undo
+Nothing_to_undo=\u00cd\u00e5\u00f2_\u00e4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00e9_\u00e4\u00eb\u00ff_\u00ee\u00f2\u00ec\u00e5\u00ed\u00fb
 
 #Thenextisusedlikein"Referencesfound:1Numberofreferencestofetch?"
-Number_of_references_to_fetch?=Number_of_references_to_fetch?
+Number_of_references_to_fetch?=\u00d7\u00e8\u00f1\u00eb\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8?
 
-occurences=occurences
+occurences=\u00e2\u00f1\u00f2\u00f0\u00e5\u00f7\u00e0\u00e5\u00ec\u00ee\u00f1\u00f2\u00fc
 
-Ok=Ok
-One_or_more_file_links_are_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?=One_or_more_file_links_are_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?
+Ok=OK
+One_or_more_file_links_are_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?=\u00ce\u00e4\u00e8\u00ed_\u00e8\u00eb\u00e8_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00ee_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e8\u00ec\u00e5\u00fe\u00f2_\u00ed\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00e9_\u00f2\u00e8\u00ef_'%0'._\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00e4\u00e0\u00eb\u00fc\u00ed\u00e5\u00e9\u00f8\u00e8\u00e5_\u00e4\u00e5\u0 [...]
 
-One_or_more_keys_will_be_overwritten._Continue?=One_or_more_keys_will_be_overwritten._Continue?
-Only_one_item_is_supported=Only_one_item_is_supported
+One_or_more_keys_will_be_overwritten._Continue?=\u00ce\u00e4\u00e8\u00ed_\u00e8\u00eb\u00e8_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00ee_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_\u00e1\u00f3\u00e4\u00f3\u00f2_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00ed\u00fb._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+Only_one_item_is_supported=\u00cf\u00ee\u00e4\u00e4\u00e5\u00f0\u00e6\u00e8\u00e2\u00e0\u00e5\u00f2\u00f1\u00ff_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00ee\u00e4\u00e8\u00ed_\u00ee\u00e1\u00fa\u00e5\u00ea\u00f2
 
-Open=Open
+Open=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc
 
-Open_BibTeX_database=Open_BibTeX_database
+Open_BibTeX_database=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00c1\u00c4_BibTeX
 
 Open_database=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00c1\u00c4
 
-Open_editor_when_a_new_entry_is_created=Open_editor_when_a_new_entry_is_created
+Open_editor_when_a_new_entry_is_created=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00ef\u00f0\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e8_\u00ed\u00ee\u00e2\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+
+Open_folder=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ef\u00e0\u00ef\u00ea\u00f3
 
 Open_file=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
 
-Open_last_edited_databases_at_startup=Open_last_edited_databases_at_startup
+Open_last_edited_databases_at_startup=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00c1\u00c4_\u00f1_\u00ef\u00ee\u00f1\u00eb\u00e5\u00e4\u00ed\u00e8\u00ec_\u00e2\u00f0\u00e5\u00ec\u00e5\u00ed\u00e5\u00ec_\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5
 
 Open_PDF_or_PS=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_PDF_\u00e8\u00eb\u00e8_PS
 
-Open_right-click_menu_with_Ctrl+left_button=Open_right-click_menu_with_Ctrl+left_button
+Open_right-click_menu_with_Ctrl+left_button=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ea\u00ee\u00ed\u00f2\u00e5\u00ea\u00f1\u00f2\u00ed\u00ee\u00e5_\u00ec\u00e5\u00ed\u00fe_\u00f1\u00ee\u00f7\u00e5\u00f2\u00e0\u00ed\u00e8\u00e5\u00ec_Ctrl+\u00eb\u00e5\u00e2\u00e0\u00ff_\u00ea\u00ed\u00ee\u00ef\u00ea\u00e0_\u00ec\u00fb\u00f8\u00e8
 
 Open_URL_or_DOI=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_URL-\u00e0\u00e4\u00f0\u00e5\u00f1_\u00e8\u00eb\u00e8_DOI
-OpenDocument_Spreadsheet=OpenDocument_Spreadsheet
+OpenDocument_Spreadsheet=\u00dd\u00eb\u00e5\u00ea\u00f2\u00f0\u00ee\u00ed\u00ed\u00e0\u00ff_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00e0_OpenDocument
 
-Opened_database=Opened_database
+Opened_database=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00e0\u00ff_\u00c1\u00c4
 
-Opening=Opening
+Opening=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00e8\u00e5
 
-Opening_preferences...=Opening_preferences...
+Opening_preferences...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e0_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea...
 
 OpenOffice_Calc=OpenOffice_Calc
-OpenOffice_CSV=OpenOffice_CSV
-Operation_canceled.\n=Operation_canceled.\n
-Operation_not_supported=Operation_not_supported
+OpenOffice_CSV=CSV_(OpenOffice)
+Operation_canceled.\n=\u00ce\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00ff_\u00ee\u00f2\u00ec\u00e5\u00ed\u00e5\u00ed\u00e0.\n
+Operation_not_supported=\u00ce\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00ff_\u00ed\u00e5_\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e6\u00e8\u00e2\u00e0\u00e5\u00f2\u00f1\u00ff
 
-Optional_fields=Optional_fields
+Optional_fields=\u00c4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff
 
 Options=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb
 
-or=or
+or=\u00e8\u00eb\u00e8
 
-out_of=out_of
-Output=Output
+out_of=\u00e8\u00e7
+Output=\u00c2\u00fb\u00e2\u00ee\u00e4
 
-Output_or_export_file=Output_or_export_file
+Output_or_export_file=\u00c2\u00fb\u00e2\u00ee\u00e4_\u00e8\u00eb\u00e8_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Override=Override
+Override=\u00cf\u00e5\u00f0\u00e5\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc
 
-Override_default_file_directories=Override_default_file_directories
+Override_default_file_directories=\u00cf\u00e5\u00f0\u00e5\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e8_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2,_\u00e7\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Override_default_font_settings=Override_default_font_settings
+Override_default_font_settings=\u00cf\u00e5\u00f0\u00e5\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0,_\u00e7\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-override_the_bibtex_key_by_the_selected_text=override_the_bibtex_key_by_the_selected_text
+override_the_bibtex_key_by_the_selected_text=\u00e7\u00e0\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7_BibTeX_\u00ed\u00e0_\u00e2\u00fb\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00e9_\u00f2\u00e5\u00ea\u00f1\u00f2
 
 
-Overwrite=Overwrite
-Overwrite_existing_field_values=Overwrite_existing_field_values
+Overwrite=\u00cf\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc
+Overwrite_existing_field_values=\u00cf\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00e5_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00ee\u00eb\u00e5\u00e9
 
-Overwrite_keys=Overwrite_keys
+Overwrite_keys=\u00cf\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e8
 
-pairs_processed=pairs_processed
-Password_\:=Password_\:
+pairs_processed=\u00ee\u00e1\u00f0\u00e0\u00e1\u00ee\u00f2\u00e0\u00ed\u00ed\u00fb\u00e5_\u00ef\u00e0\u00f0\u00fb
+Password_\:=\u00cf\u00e0\u00f0\u00ee\u00eb\u00fc:
 
 Paste=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc
 
-paste_entries=paste_entries
+paste_entries=\u00e2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-paste_entry=paste_entry
-Paste_from_clipboard=Paste_from_clipboard
+paste_entry=\u00e2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
+Paste_from_clipboard=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e8\u00e7_\u00e1\u00f3\u00f4\u00e5\u00f0\u00e0_\u00ee\u00e1\u00ec\u00e5\u00ed\u00e0
 
-Pasted=Pasted
+Pasted=\u00c2\u00f1\u00f2\u00e0\u00e2\u00eb\u00e5\u00ed\u00ee
 
-Path_to_%0_not_defined=Path_to_%0_not_defined
+Path_to_%0_not_defined=\u00cd\u00e5_\u00e7\u00e0\u00e4\u00e0\u00ed_\u00ef\u00f3\u00f2\u00fc_\u00ea_%0
 
-Path_to_LatexEditor_(LEd.exe)=Path_to_LatexEditor_(LEd.exe)
+Path_to_LatexEditor_(LEd.exe)=\u00cf\u00f3\u00f2\u00fc_\u00ea_LatexEditor_(LEd.exe)
 
-Path_to_LyX_pipe=Path_to_LyX_pipe
+Path_to_LyX_pipe=\u00cf\u00f3\u00f2\u00fc_\u00ea_\u00ea\u00e0\u00ed\u00e0\u00eb\u00f3_LyX
 
-Path_to_Vim=Path_to_Vim
+Path_to_Vim=\u00cf\u00f3\u00f2\u00fc_\u00ea_Vim
 
-Path_to_WinEdt.exe=Path_to_WinEdt.exe
+Path_to_WinEdt.exe=\u00cf\u00f3\u00f2\u00fc_\u00ea_WinEdt.exe
 
-PDF_directory=PDF_directory
-PDF_does_not_exist=PDF_does_not_exist
+PDF_directory=\u00ca\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_PDF
+PDF_does_not_exist=PDF_\u00ed\u00e5_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2
 
-Personal_journal_list=Personal_journal_list
+Personal_journal_list=\u00cb\u00e8\u00f7\u00ed\u00fb\u00e9_\u00f1\u00ef\u00e8\u00f1\u00ee\u00ea_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
 
-Plain_text_import=Plain_text_import
+Plain_text_import=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ed\u00e5\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00ee\u00e3\u00ee_\u00f2\u00e5\u00ea\u00f1\u00f2\u00e0
 
-Please_enter_a_name_for_the_group.=Please_enter_a_name_for_the_group.
+Please_enter_a_name_for_the_group.=\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00e8\u00ec\u00ff_\u00e4\u00eb\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb.
 
-Please_enter_a_search_term._For_example,_to_search_all_fields_for_<b>Smith</b>,_enter%c<p><tt>smith</tt><p>To_search_the_field_<b>Author</b>_for_<b>Smith</b>_and_the_field_<b>Title</b>_for_<b>electrical</b>,_enter%c<p><tt>author%esmith_and_title%eelectrical</tt>=Please_enter_a_search_term._For_example,_to_search_all_fields_for_<b>Smith</b>,_enter%c<p><tt>smith</tt><p>To_search_the_field_<b>Author</b>_for_<b>Smith</b>_and_the_field_<b>Title</b>_for_<b>electrical</b>,_enter%c<p><tt>author% [...]
+Please_enter_a_search_term._For_example,_to_search_all_fields_for_<b>Smith</b>,_enter%c<p><tt>smith</tt><p>To_search_the_field_<b>Author</b>_for_<b>Smith</b>_and_the_field_<b>Title</b>_for_<b>electrical</b>,_enter%c<p><tt>author%esmith_and_title%eelectrical</tt>=\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00e5_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0._\u00cd\u00e0\u00ef\u00f0\u00e8\u00ec\u00e5\u00f0,_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0 [...]
 
-Please_enter_the_field_to_search_(e.g._<b>keywords</b>)_and_the_keyword_to_search_it_for_(e.g._<b>electrical</b>).=Please_enter_the_field_to_search_(e.g._<b>keywords</b>)_and_the_keyword_to_search_it_for_(e.g._<b>electrical</b>).
+Please_enter_the_field_to_search_(e.g._<b>keywords</b>)_and_the_keyword_to_search_it_for_(e.g._<b>electrical</b>).=\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00ef\u00ee\u00eb\u00e5_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0_(\u00ed\u00e0\u00ef\u00f0.,_<b>\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00e5_\u00f1\u00eb\u00ee\u00e2\u00e0</b>)_\u00e8_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00ee\u00e5_\u00f1\u00eb\u00ee\u00e2\u00ee_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\ [...]
 
-Please_enter_the_string's_label=Please_enter_the_string's_label
+Please_enter_the_string's_label=\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00ef\u00ee\u00e4\u00ef\u00e8\u00f1\u00fc_\u00e4\u00eb\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-Please_select_an_importer.=Please_select_an_importer.
+Please_select_an_importer.=\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0.
 
-Please_select_exactly_one_group_to_move.=Please_select_exactly_one_group_to_move.
-Please_specify_the_=Please_specify_the_
+Please_select_exactly_one_group_to_move.=\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00ee\u00e4\u00ed\u00f3_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_\u00e4\u00eb\u00ff_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f9\u00e5\u00ed\u00e8\u00ff.
+Please_specify_the_=\u00d3\u00ea\u00e0\u00e6\u00e8\u00f2\u00e5_
 
-Possible_duplicate_entries=Possible_duplicate_entries
+Possible_duplicate_entries=\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00fb\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Possible_duplicate_of_existing_entry._Click_to_resolve.=Possible_duplicate_of_existing_entry._Click_to_resolve.
+Possible_duplicate_of_existing_entry._Click_to_resolve.=\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00fb\u00e9_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e5\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8._\u00d9\u00e5\u00eb\u00ea\u00ed\u00e8\u00f2\u00e5_\u00e4\u00eb\u00ff_\u00f0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00e8\u00ff.
 
-Preamble=Preamble
+Preamble=\u00cf\u00f0\u00e5\u00e0\u00ec\u00e1\u00f3\u00eb\u00e0
 
-Preferences=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8
+Preferences=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8
 
-Preferences_recorded.=Preferences_recorded.
+Preferences_recorded.=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea.
 
-Preview=Preview
+Preview=\u00cf\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0
 
-Previous_entry=Previous_entry
+Previous_entry=\u00cf\u00f0\u00e5\u00e4\u00fb\u00e4\u00f3\u00f9\u00e0\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-Primary_sort_criterion=Primary_sort_criterion
-Print_Preview=Print_Preview
-Printing_Entry_Preview=Printing_Entry_Preview
+Primary_sort_criterion=\u00cf\u00e5\u00f0\u00e2\u00e8\u00f7\u00ed\u00fb\u00e9_\u00ea\u00f0\u00e8\u00f2\u00e5\u00f0\u00e8\u00e9_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8
+Print_Preview=\u00cf\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00ef\u00e5\u00f7\u00e0\u00f2\u00e8
+Printing_Entry_Preview=\u00cf\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e4\u00eb\u00ff_\u00ef\u00e5\u00f7\u00e0\u00f2\u00e8
 
-Problem_with_parsing_entry=Problem_with_parsing_entry
-Processing_=Processing_
-Program_output=Program_output
+Problem_with_parsing_entry=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e0\u00ed\u00e0\u00eb\u00e8\u00e7\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Processing_=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ee\u00e1\u00f0\u00e0\u00e1\u00ee\u00f2\u00ea\u00e0_
+Program_output=\u00c2\u00fb\u00e2\u00ee\u00e4_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00fb
 
-PS_directory=PS_directory
+PS_directory=\u00ca\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_PS
 Push_entries_to_external_application_(%0)=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2\u00ee_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e5\u00e5_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_(%0)
 
-Push_selection_to_Emacs=Push_selection_to_Emacs
+Push_selection_to_Emacs=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00e2_Emacs
 
-Push_selection_to_LyX/Kile=Push_selection_to_LyX/Kile
-Push_selection_to_Vim=Push_selection_to_Vim
+Push_selection_to_LyX/Kile=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00e2_LyX/Kile
+Push_selection_to_Vim=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00e2_Vim
 
-Push_selection_to_WinEdt=Push_selection_to_WinEdt
+Push_selection_to_WinEdt=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00e2_WinEdt
 
-Push_to_LatexEditor=Push_to_LatexEditor
-Pushed_citations_to_%0=Pushed_citations_to_%0
+Push_to_LatexEditor=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e2_LatexEditor
+Pushed_citations_to_%0=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00ef\u00e5\u00f0\u00e5\u00e4\u00e0\u00ed\u00fb_\u00e2_%0
 
-Pushed_citations_to_Emacs=Pushed_citations_to_Emacs
-Pushed_citations_to_Vim=Pushed_citations_to_Vim
+Pushed_citations_to_Emacs=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00ef\u00e5\u00f0\u00e5\u00e4\u00e0\u00ed\u00fb_\u00e2_Emacs
+Pushed_citations_to_Vim=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00ef\u00e5\u00f0\u00e5\u00e4\u00e0\u00ed\u00fb_\u00e2_Vim
 
-Pushed_citations_to_WinEdt=Pushed_citations_to_WinEdt
+Pushed_citations_to_WinEdt=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00ef\u00e5\u00f0\u00e5\u00e4\u00e0\u00ed\u00fb_\u00e2_WinEdt
 
-Pushed_the_citations_for_the_following_rows_to=Pushed_the_citations_for_the_following_rows_to
+Pushed_the_citations_for_the_following_rows_to=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e4\u00eb\u00ff_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00f5_\u00f1\u00f2\u00f0\u00ee\u00ea_\u00ef\u00e5\u00f0\u00e5\u00e4\u00e0\u00ed\u00fb_\u00e2
 
-Quit_JabRef=Quit_JabRef
+Quit_JabRef=\u00c2\u00fb\u00f5\u00ee\u00e4_\u00e8\u00e7_JabRef
 
-Quit_synchronization=Quit_synchronization
+Quit_synchronization=\u00c7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e8\u00f2\u00fc_\u00f1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e0\u00f6\u00e8\u00fe
 
-Raw_source=Raw_source
+Raw_source=\u00cd\u00e5\u00ee\u00e1\u00f0\u00e0\u00e1\u00ee\u00f2\u00e0\u00ed\u00ed\u00fb\u00e9_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea
 
-Really_delete_the_selected=Really_delete_the_selected
+Really_delete_the_selected=\u00cf\u00ee\u00e4\u00f2\u00e2\u00e5\u00f0\u00e4\u00e8\u00f2\u00e5_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e3\u00ee
 
-Rearrange_tabs_alphabetically_by_title=Rearrange_tabs_alphabetically_by_title
+Rearrange_tabs_alphabetically_by_title=\u00cf\u00e5\u00f0\u00e5\u00f3\u00ef\u00ee\u00f0\u00ff\u00e4\u00ee\u00f7\u00e8\u00f2\u00fc_\u00e2\u00ea\u00eb\u00e0\u00e4\u00ea\u00e8_\u00e2_\u00e0\u00eb\u00f4\u00e0\u00e2\u00e8\u00f2\u00ed\u00ee\u00ec_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ea\u00e5_\u00ef\u00ee_\u00e7\u00e0\u00e3\u00ee\u00eb\u00ee\u00e2\u00ea\u00f3
 
-Redo=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e0
+Redo=\u00cf\u00ee\u00e2\u00f2\u00ee\u00f0\u00e8\u00f2\u00fc
 
-Reference_database=Reference_database
+Reference_database=\u00c1\u00c4_\u00e4\u00eb\u00ff_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8
 
 #Thenexttwolinesareusedlikein"Referencesfound:1Numberofreferencestofetch?"
-References_found=References_found
+References_found=\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8
 
-Refine_supergroup\:_When_selected,_view_entries_contained_in_both_this_group_and_its_supergroup=Refine_supergroup\:_When_selected,_view_entries_contained_in_both_this_group_and_its_supergroup
+Refine_supergroup\:_When_selected,_view_entries_contained_in_both_this_group_and_its_supergroup=\u00c4\u00e5\u00f2\u00e0\u00eb\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f3\u00ef\u00e5\u00f0\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3:_\u00cf\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9,_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f9\u00e8\u00f5\u00f1\u00ff_\u00e2_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5_\u00e8_\u00e5\u00e5_\u00f1\u00f3\ [...]
 
-Refresh_view=Refresh_view
+Refresh_view=\u00ce\u00e1\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00f1\u00f2\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5
 
-Regular_Expression=Regular_Expression
+Regular_Expression=\u00d0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5
 
-Remember_these_entry_types?=Remember_these_entry_types?
+Remember_these_entry_types?=\u00c7\u00e0\u00ef\u00ee\u00ec\u00ed\u00e8\u00f2\u00fc_\u00fd\u00f2\u00e8_\u00f2\u00e8\u00ef\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9?
 
-Remote_operation=Remote_operation
+Remote_operation=\u00ce\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00e8_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00ed\u00ee\u00e3\u00ee_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff
 
-Remote_server_port=Remote_server_port
+Remote_server_port=\u00cf\u00ee\u00f0\u00f2_\u00f1\u00e5\u00f0\u00e2\u00e5\u00f0\u00e0_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00ed\u00ee\u00e3\u00ee_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff
 
-Remove=Remove
+Remove=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc
 
-Remove_all?=Remove_all?
+Remove_all?=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5?
 
-Remove_all_subgroups=Remove_all_subgroups
+Remove_all_subgroups=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Remove_all_subgroups_of_"%0"?=Remove_all_subgroups_of_"%0"?
+Remove_all_subgroups_of_"%0"?=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_"%0"?
 
-Remove_double_braces_around_BibTeX_fields_when_loading.=Remove_double_braces_around_BibTeX_fields_when_loading.
+Remove_double_braces_around_BibTeX_fields_when_loading.=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f4\u00e8\u00e3\u00f3\u00f0\u00ed\u00fb\u00e5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e9_\u00ef\u00ee\u00eb\u00e5\u00e9_BibTeX_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e5.
 
-Remove_duplicates=Remove_duplicates
+Remove_duplicates=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb
 
-Remove_entry_from_import=Remove_entry_from_import
+Remove_entry_from_import=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e8\u00e7_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00fb\u00f5
 
-Remove_entry_selection_from_this_group=Remove_entry_selection_from_this_group
+Remove_entry_selection_from_this_group=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e8\u00e7_\u00fd\u00f2\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Remove_entry_type=Remove_entry_type
-Remove_file_link_(DELETE)=Remove_file_link_(DELETE)
+Remove_entry_type=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Remove_file_link_(DELETE)=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00f3_\u00e4\u00eb\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0_(DELETE)
 
-remove_from_group=remove_from_group
+remove_from_group=\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e8\u00e7_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Remove_from_group=Remove_from_group
+Remove_from_group=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e8\u00e7_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Remove_group=Remove_group
+Remove_group=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3
 
-Remove_group,_keep_subgroups=Remove_group,_keep_subgroups
+Remove_group,_keep_subgroups=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3,_\u00ee\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Remove_group_"%0"?=Remove_group_"%0"?
+Remove_group_"%0"?=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_"%0"?
 
-Remove_group_"%0"_and_its_subgroups?=Remove_group_"%0"_and_its_subgroups?
+Remove_group_"%0"_and_its_subgroups?=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_"%0"_\u00e8_\u00e5\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb?
 
-remove_group_(keep_subgroups)=remove_group_(keep_subgroups)
+remove_group_(keep_subgroups)=\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_(\u00ee\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb)
 
-remove_group_and_subgroups=remove_group_and_subgroups
+remove_group_and_subgroups=\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_\u00e8_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Remove_group_and_subgroups=Remove_group_and_subgroups
+Remove_group_and_subgroups=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_\u00e8_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
 
-Remove_link=Remove_link
+Remove_link=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00f3
 
-Remove_old_entry=Remove_old_entry
+Remove_old_entry=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f1\u00f2\u00e0\u00f0\u00f3\u00fe_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-Remove_selected_strings=Remove_selected_strings
+Remove_selected_strings=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-remove_string_=remove_string_
+remove_string_=\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_
 
-Removed_group_"%0".=Removed_group_"%0".
+Removed_group_"%0".=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_"%0"_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e0.
 
-Removed_group_"%0"_and_its_subgroups.=Removed_group_"%0"_and_its_subgroups.
+Removed_group_"%0"_and_its_subgroups.=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_"%0"_\u00e8_\u00e5\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb.
 
-Removed_string=Removed_string
+Removed_string=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e0
 
-Renamed_string=Renamed_string
+Renamed_string=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00ed\u00e0
 
-Replace_(regular_expression)=Replace_(regular_expression)
+Replace_(regular_expression)=\u00c7\u00e0\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_(\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5)
 
 Replace_string=\u00c7\u00e0\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3
 
-Replace_with=Replace_with
+Replace_with=\u00c7\u00e0\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ed\u00e0
 
-Replaced=Replaced
+Replaced=\u00c7\u00e0\u00ec\u00e5\u00ed\u00e5\u00ed\u00ee
 
-Required_fields=Required_fields
+Required_fields=\u00ce\u00e1\u00ff\u00e7\u00e0\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff
 
-Reset_all=Reset_all
-Reset_file_type_definitons=Reset_file_type_definitons
+Reset_all=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff
+Reset_file_type_definitons=\u00c2\u00ee\u00f1\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00ff_\u00f2\u00e8\u00ef\u00ee\u00e2_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
 
-Resolve_strings_for_all_fields_except=Resolve_strings_for_all_fields_except
-Resolve_strings_for_standard_BibTeX_fields_only=Resolve_strings_for_standard_BibTeX_fields_only
+Resolve_strings_for_all_fields_except=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea_\u00e2\u00f1\u00e5\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9,_\u00ea\u00f0\u00ee\u00ec\u00e5
+Resolve_strings_for_standard_BibTeX_fields_only=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00f2\u00f0\u00ee\u00ea_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00f1\u00f2\u00e0\u00ed\u00e4\u00e0\u00f0\u00f2\u00ed\u00fb\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9_BibTeX
 
-resolved=resolved
+resolved=\u00f0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00ee
 
-Results=Results
+Results=\u00d0\u00e5\u00e7\u00f3\u00eb\u00fc\u00f2\u00e0\u00f2\u00fb
 
-Revert_to_original_source=Revert_to_original_source
+Revert_to_original_source=\u00c2\u00ee\u00f1\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00e8\u00f1\u00f5\u00ee\u00e4\u00ed\u00fb\u00e9_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea
 
-Review=Review
+Review=\u00cf\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0
 
-Review_changes=Review_changes
+Review_changes=\u00cf\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9
 
-Right=Right
+Right=\u00d1\u00ef\u00f0\u00e0\u00e2\u00e0
 
-Save=Save
-Save_all_finished.=Save_all_finished.
+Save=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc
+Save_all_finished.=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00ed\u00fb\u00e5.
 
-Save_all_open_databases=Save_all_open_databases
+Save_all_open_databases=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fb\u00e5_\u00c1\u00c4
 
-Save_before_closing=Save_before_closing
+Save_before_closing=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00ef\u00e5\u00f0\u00e5\u00e4_\u00e7\u00e0\u00ea\u00f0\u00fb\u00f2\u00e8\u00e5\u00ec
 
 Save_database=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00c1\u00c4
 Save_database_as_...=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00c1\u00c4_\u00ea\u00e0\u00ea...
 
-Save_entries_in_their_original_order=Save_entries_in_their_original_order
+Save_entries_in_their_original_order=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00e8\u00f1\u00f5\u00ee\u00e4\u00ed\u00ee\u00ec_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ea\u00e5
 
-Save_failed=Save_failed
+Save_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff
 
-Save_failed_during_backup_creation=Save_failed_during_backup_creation
+Save_failed_during_backup_creation=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e8_\u00f0\u00e5\u00e7\u00e5\u00f0\u00e2\u00ed\u00ee\u00e9_\u00ea\u00ee\u00ef\u00e8\u00e8
 
-Save_failed_while_committing_changes=Save_failed_while_committing_changes
+Save_failed_while_committing_changes=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8_\u00ef\u00ee\u00e4\u00f2\u00e2\u00e5\u00f0\u00e6\u00e4\u00e5\u00ed\u00e8\u00e8_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9
 
-Save_ordered_by_author/editor/year=Save_ordered_by_author/editor/year
-Save_selected_as_...=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00ea\u00e0\u00ea_...
+Save_ordered_by_author/editor/year=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f1_\u00f3\u00ef\u00ee\u00f0\u00ff\u00e4\u00ee\u00f7\u00e5\u00ed\u00e8\u00e5\u00ec_\u00ef\u00ee:_\u00e0\u00e2\u00f2\u00ee\u00f0/\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0/\u00e3\u00ee\u00e4
+Save_selected_as_...=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00ea\u00e0\u00ea...
 
-Saved_database=Saved_database
+Saved_database=\u00c1\u00c4_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e0
 
-Saved_selected_to=Saved_selected_to
+Saved_selected_to=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00e2
 
-Saved_session=Saved_session
+Saved_session=\u00d1\u00e5\u00e0\u00ed\u00f1_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed
 
-Saving=Saving
-Saving_all_databases...=Saving_all_databases...
+Saving=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5
+Saving_all_databases...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00e2\u00f1\u00e5\u00f5_\u00c1\u00c4...
 
-Saving_database=Saving_database
+Saving_database=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00c1\u00c4
 
-Scan=Scan
+Scan=\u00d1\u00ea\u00e0\u00ed\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5
 
-Search=Search
+Search=\u00cf\u00ee\u00e8\u00f1\u00ea
 
-Search_all_fields=Search_all_fields
+Search_all_fields=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ef\u00ee_\u00e2\u00f1\u00e5\u00ec_\u00ef\u00ee\u00eb\u00ff\u00ec
 
-Search_error=Search_error
+Search_error=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
 
-Search_expression=Search_expression
+Search_expression=\u00c2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
 
-Search_for=Search_for
+Search_for=\u00cf\u00ee\u00e8\u00f1\u00ea
 
-Search_general_fields=Search_general_fields
+Search_general_fields=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ef\u00ee_\u00ee\u00e1\u00f9\u00e8\u00ec_\u00ef\u00ee\u00eb\u00ff\u00ec
 
 Search_IEEEXplore=\u00cf\u00ee\u00e8\u00f1\u00ea_IEEEXplore
 
-Search_optional_fields=Search_optional_fields
+Search_optional_fields=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ef\u00ee_\u00e4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00ec_\u00ef\u00ee\u00eb\u00ff\u00ec
 
-Search_required_fields=Search_required_fields
+Search_required_fields=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ef\u00ee_\u00ee\u00e1\u00ff\u00e7\u00e0\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00ec_\u00ef\u00ee\u00eb\u00ff\u00ec
 
-Search_specified_field(s)=Search_specified_field(s)
+Search_specified_field(s)=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ef\u00ee_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00ec_\u00ef\u00ee\u00eb\u00ff\u00ec
 
-Searched_database._Global_number_of_hits=Searched_database._Global_number_of_hits
+Searched_database._Global_number_of_hits=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ef\u00ee_\u00c1\u00c4._\u00ce\u00e1\u00f9\u00e5\u00e5_\u00f7\u00e8\u00f1\u00eb\u00ee_\u00f1\u00ee\u00e2\u00ef\u00e0\u00e4\u00e5\u00ed\u00e8\u00e9
 
-Searched_database._Number_of_hits=Searched_database._Number_of_hits
+Searched_database._Number_of_hits=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ef\u00ee_\u00c1\u00c4._\u00d7\u00e8\u00f1\u00eb\u00ee_\u00f1\u00ee\u00e2\u00ef\u00e0\u00e4\u00e5\u00ed\u00e8\u00e9
 
-Searching_for_%0_file=Searching_for_%0_file
+Searching_for_%0_file=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00f4\u00e0\u00e9\u00eb\u00e0_%0
 
-Searching_for_duplicates...=Searching_for_duplicates...
+Searching_for_duplicates...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2...
 
-Searching_for_files=Searching_for_files
+Searching_for_files=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2...
 
-Secondary_sort_criterion=Secondary_sort_criterion
+Secondary_sort_criterion=\u00c2\u00f2\u00ee\u00f0\u00e8\u00f7\u00ed\u00fb\u00e9_\u00ea\u00f0\u00e8\u00f2\u00e5\u00f0\u00e8\u00e9_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8
 
-Select=Select
+Select=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc
 
-Select_a_Zip-archive=Select_a_Zip-archive
+Select_a_Zip-archive=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_ZIP-\u00e0\u00f0\u00f5\u00e8\u00e2
 
-Select_action=Select_action
+Select_action=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00e5
 
 Select_all=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e2\u00f1\u00e5
 
-Select_Classpath_of_New_Importer=Select_Classpath_of_New_Importer
+Select_Classpath_of_New_Importer=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00ef\u00f3\u00f2\u00fc_\u00ea\u00eb\u00e0\u00f1\u00f1\u00e0_\u00e4\u00eb\u00ff_\u00ed\u00ee\u00e2\u00ee\u00e3\u00ee_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0\u00e0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
 
-Select_encoding=Select_encoding
+Select_encoding=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00ea\u00ee\u00e4\u00e8\u00f0\u00ee\u00e2\u00ea\u00f3
 
-Select_entries_in_group_selection=Select_entries_in_group_selection
+Select_entries_in_group_selection=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5
 
-Select_entry_type=Select_entry_type
-Select_external_application=Select_external_application
+Select_entry_type=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f2\u00e8\u00ef_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Select_external_application=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e5\u00e5_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5
 
-Select_file_from_ZIP-archive=Select_file_from_ZIP-archive
+Select_file_from_ZIP-archive=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb_\u00e8\u00e7_ZIP-\u00e0\u00f0\u00f5\u00e8\u00e2\u00e0
 
-Select_format=Select_format
-Select_icon=Select_icon
+Select_format=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2
+Select_icon=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00ee\u00ea
 
-Select_matches=Select_matches
+Select_matches=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00ff
 
-Select_new_ImportFormat_Subclass=Select_new_ImportFormat_Subclass
+Select_new_ImportFormat_Subclass=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00ed\u00ee\u00e2\u00fb\u00e9_\u00ef\u00ee\u00e4\u00ea\u00eb\u00e0\u00f1\u00f1_ImportFormat
 
-Select_the_tree_nodes_to_view_and_accept_or_reject_changes=Select_the_tree_nodes_to_view_and_accept_or_reject_changes
-Selected_entries=Selected_entries
-Server_Hostname_\:=Server_Hostname_\:
-Server_Type_\:=Server_Type_\:
-Set_field=Set_field
-Set_fields=Set_fields
+Select_the_tree_nodes_to_view_and_accept_or_reject_changes=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f3\u00e7\u00eb\u00fb_\u00e4\u00e5\u00f0\u00e5\u00e2\u00e0_\u00e4\u00eb\u00ff_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0_\u00e8_\u00ef\u00f0\u00e8\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff/\u00ee\u00f2\u00ea\u00eb\u00ee\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9
+Selected_entries=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00fb
+Server_Hostname_\:=\u00c8\u00ec\u00ff_\u00f5\u00ee\u00f1\u00f2\u00e0_\u00f1\u00e5\u00f0\u00e2\u00e5\u00f0\u00e0:
+Server_Type_\:=\u00d2\u00e8\u00ef_\u00f1\u00e5\u00f0\u00e2\u00e5\u00f0\u00e0:
+Set_field=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0_\u00ef\u00ee\u00eb\u00ff
+Set_fields=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0_\u00ef\u00ee\u00eb\u00e5\u00e9
 
-Set_general_fields=Set_general_fields
-Set_main_external_file_directory=Set_main_external_file_directory
+Set_general_fields=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0_\u00ee\u00e1\u00f9\u00e8\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9
+Set_main_external_file_directory=\u00c7\u00e0\u00e4\u00e0\u00f2\u00fc_\u00ee\u00f1\u00ed\u00ee\u00e2\u00ed\u00ee\u00e9_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2\u00fb\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00f5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
 
-Set_table_font=Set_table_font
+Set_table_font=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
 
-Settings=Settings
+Settings=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb
 
-Setup_selectors=Setup_selectors
+Setup_selectors=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00e2\u00fb\u00e1\u00ee\u00f0\u00e0
 
-Short_form=Short_form
+Short_form=\u00ca\u00f0\u00e0\u00f2\u00ea\u00e0\u00ff_\u00f4\u00ee\u00f0\u00ec\u00e0
 
-Shortcut=Shortcut
+Shortcut=\u00df\u00f0\u00eb\u00fb\u00ea
 
-Show/edit_BibTeX_source=Show/edit_BibTeX_source
+Show/edit_BibTeX_source=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea_BibTeX
 
-Show_'Firstname_Lastname'=Show_'Firstname_Lastname'
+Show_'Firstname_Lastname'=\u00cf\u00ee\u00f0\u00ff\u00e4\u00ee\u00ea_\u00e2\u00fb\u00e2\u00ee\u00e4\u00e0_'\u00c8\u00ec\u00ff_\u00d4\u00e0\u00ec\u00e8\u00eb\u00e8\u00ff'
 
-Show_'Lastname,_Firstname'=Show_'Lastname,_Firstname'
+Show_'Lastname,_Firstname'=\u00cf\u00ee\u00f0\u00ff\u00e4\u00ee\u00ea_\u00e2\u00fb\u00e2\u00ee\u00e4\u00e0_'\u00d4\u00e0\u00ec\u00e8\u00eb\u00e8\u00ff,_\u00c8\u00ec\u00ff'
 
-Show_BibTeX_source_by_default=Show_BibTeX_source_by_default
+Show_BibTeX_source_by_default=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea_BibTeX_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Show_BibTeX_source_panel=Show_BibTeX_source_panel
+Show_BibTeX_source_panel=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ef\u00e0\u00ed\u00e5\u00eb\u00fc_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea\u00e0_BibTeX
 
-Show_confirmation_dialog_when_deleting_entries=Show_confirmation_dialog_when_deleting_entries
+Show_confirmation_dialog_when_deleting_entries=\u00c7\u00e0\u00ef\u00f0\u00ee\u00f1_\u00ef\u00ee\u00e4\u00f2\u00e2\u00e5\u00f0\u00e6\u00e4\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e8\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Show_description=Show_description
+Show_description=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ee\u00ef\u00e8\u00f1\u00e0\u00ed\u00e8\u00e5
 
-Show_dynamic_groups_in_<i>italics</i>=Show_dynamic_groups_in_<i>italics</i>
+Show_dynamic_groups_in_<i>italics</i>=\u00d8\u00f0\u00e8\u00f4\u00f2_\u00e4\u00eb\u00ff_\u00ee\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00ff_\u00e4\u00e8\u00ed\u00e0\u00ec\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8\u00f5_\u00e3\u00f0\u00f3\u00ef\u00ef_<i>\u00ea\u00f3\u00f0\u00f1\u00e8\u00e2</i>
 
-Show_entries_*not*_in_group_selection=Show_entries_*not*_in_group_selection
+Show_entries_*not*_in_group_selection=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_*\u00ed\u00e5*_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e2_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5
 
-Show_file_column=Show_file_column
+Show_file_column=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f1\u00f2\u00ee\u00eb\u00e1\u00e5\u00f6_\u00d4\u00e0\u00e9\u00eb
 
-Show_icons_for_groups=Show_icons_for_groups
-Show_last_names_only=Show_last_names_only
+Show_icons_for_groups=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef
+Show_last_names_only=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00f4\u00e0\u00ec\u00e8\u00eb\u00e8\u00e8
 
-Show_names_unchanged=Show_names_unchanged
+Show_names_unchanged=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e8\u00ec\u00e5\u00ed\u00e0_\u00e1\u00e5\u00e7_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9
 
-Show_one_less_rows=Show_one_less_rows
+Show_one_less_rows=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ed\u00e0_\u00ee\u00e4\u00ed\u00f3_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_\u00ec\u00e5\u00ed\u00fc\u00f8\u00e5
 
-Show_one_more_row=Show_one_more_row
+Show_one_more_row=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ed\u00e0_\u00ee\u00e4\u00ed\u00f3_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_\u00e1\u00ee\u00eb\u00fc\u00f8\u00e5
 
-Show_optional_fields=Show_optional_fields
+Show_optional_fields=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff
 
-Show_PDF/PS_column=Show_PDF/PS_column
+Show_PDF/PS_column=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f1\u00f2\u00ee\u00eb\u00e1\u00e5\u00f6_PDF/PS
 
-Show_required_fields=Show_required_fields
+Show_required_fields=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ee\u00e1\u00ff\u00e7\u00e0\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff
 
-Show_URL/DOI_column=Show_URL/DOI_column
+Show_URL/DOI_column=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f1\u00f2\u00ee\u00eb\u00e1\u00e5\u00f6_URL/DOI
 
-Show_warning_dialog_when_a_duplicate_BibTeX_key_is_entered=Show_warning_dialog_when_a_duplicate_BibTeX_key_is_entered
+Show_warning_dialog_when_a_duplicate_BibTeX_key_is_entered=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5_\u00ef\u00f0\u00e8_\u00e2\u00e2\u00ee\u00e4\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00e0_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX
 
-Show_warning_dialog_when_an_empty_BibTeX_key_is_entered=Show_warning_dialog_when_an_empty_BibTeX_key_is_entered
+Show_warning_dialog_when_an_empty_BibTeX_key_is_entered=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5_\u00ef\u00f0\u00e8_\u00e2\u00e2\u00ee\u00e4\u00e5_\u00ef\u00f3\u00f1\u00f2\u00ee\u00e3\u00ee_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX
 
-Simple_HTML=Simple_HTML
+Simple_HTML=HTML_(\u00ef\u00f0\u00ee\u00f1\u00f2\u00ee\u00e9)
 
-Size=Size
+Size=\u00d0\u00e0\u00e7\u00ec\u00e5\u00f0
 
-Skip=Skip
-Skipped_-_No_PDF_linked=Skipped_-_No_PDF_linked
-Skipped_-_PDF_does_not_exist=Skipped_-_PDF_does_not_exist
+Skip=\u00cf\u00f0\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00f2\u00fc
+Skipped_-_No_PDF_linked=\u00cf\u00f0\u00ee\u00ef\u00f3\u00f9\u00e5\u00ed\u00ee_-_\u00c1\u00e5\u00e7_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_\u00ed\u00e0_PDF
+Skipped_-_PDF_does_not_exist=\u00cf\u00f0\u00ee\u00ef\u00f3\u00f9\u00e5\u00ed\u00ee_-_PDF_\u00ed\u00e5_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2
 
-Skipped_entry.=Skipped_entry.
+Skipped_entry.=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ef\u00f0\u00ee\u00ef\u00f3\u00f9\u00e5\u00ed\u00e0.
 
-Sort_alphabetically=Sort_alphabetically
+Sort_alphabetically=\u00d1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00e2_\u00e0\u00eb\u00f4\u00e0\u00e2\u00e8\u00f2\u00ed\u00ee\u00ec_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ea\u00e5
 
-Sort_Automatically=Sort_Automatically
+Sort_Automatically=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0
 
-Sort_order=Sort_order
+Sort_order=\u00cf\u00ee\u00f0\u00ff\u00e4\u00ee\u00ea_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8
 
-sort_subgroups=sort_subgroups
+sort_subgroups=\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef
 
-Sorted_all_subgroups_recursively.=Sorted_all_subgroups_recursively.
+Sorted_all_subgroups_recursively.=\u00c2\u00f1\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1_\u00f0\u00e5\u00ea\u00f3\u00f0\u00f1\u00e8\u00e2\u00ed\u00ee\u00e9_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00ee\u00e9.
 
-Sorted_immediate_subgroups.=Sorted_immediate_subgroups.
+Sorted_immediate_subgroups.=\u00cd\u00e5\u00ef\u00ee\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e5\u00ed\u00ed\u00fb\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00ee\u00e9.
 
-source_edit=source_edit
-Special_Name_Formatters=Special_Name_Formatters
+source_edit=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea\u00e0
+Special_Name_Formatters=\u00ce\u00f1\u00ee\u00e1\u00fb\u00e5_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00fb_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e8\u00ec\u00e5\u00ed\u00e8
 
-Special_table_columns=Special_table_columns
-SQL_connection_established.=SQL_connection_established.
+Special_table_columns=\u00ce\u00f1\u00ee\u00e1\u00fb\u00e5_\u00f1\u00f2\u00ee\u00eb\u00e1\u00f6\u00fb_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
+SQL_connection_established.=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00ee_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_SQL.
 
-Start_incremental_search=Start_incremental_search
+Start_incremental_search=\u00cd\u00e0\u00f7\u00e0\u00f2\u00fc_\u00e8\u00ed\u00ea\u00f0\u00e5\u00ec\u00e5\u00ed\u00f2\u00e0\u00eb\u00fc\u00ed\u00fb\u00e9_\u00ef\u00ee\u00e8\u00f1\u00ea
 
-Start_search=Start_search
-Starting_import=Starting_import
+Start_search=\u00cd\u00e0\u00f7\u00e0\u00f2\u00fc_\u00ef\u00ee\u00e8\u00f1\u00ea
+Starting_import=\u00c7\u00e0\u00ef\u00f3\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2
 
-Statically_group_entries_by_manual_assignment=Statically_group_entries_by_manual_assignment
+Statically_group_entries_by_manual_assignment=\u00d4\u00e8\u00ea\u00f1\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5\u00ec_\u00e2\u00f0\u00f3\u00f7\u00ed\u00f3\u00fe
 
-Status=Status
+Status=\u00d1\u00f2\u00e0\u00f2\u00f3\u00f1
 
-Stop=Stop
+Stop=\u00ce\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc
 
-Store_journal_abbreviations=Store_journal_abbreviations
+Store_journal_abbreviations=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00e4\u00eb\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
 
-Store_string=Store_string
+Store_string=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-Store_the_following_fields_with_braces_around_capital_letters=Store_the_following_fields_with_braces_around_capital_letters
+Store_the_following_fields_with_braces_around_capital_letters=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff_\u00f1_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u00ed\u00fb\u00ec\u00e8_\u00e1\u00f3\u00ea\u00e2\u00e0\u00ec\u00e8_\u00e2_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e0\u00f5
 
-Stored_entry=Stored_entry
+Stored_entry=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e0
 
-Strings=Strings
+Strings=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e8
 
-Strings_for_database=Strings_for_database
+Strings_for_database=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e8_\u00c1\u00c4
 
-Subdatabase_from_aux=Subdatabase_from_aux
+Subdatabase_from_aux=\u00cf\u00ee\u00e4\u00f7\u00e8\u00ed\u00e5\u00ed\u00ed\u00e0\u00ff_\u00c1\u00c4_\u00e8\u00e7_AUX
 
-Suggest=Suggest
+Suggest=\u00cf\u00f0\u00e5\u00e4\u00eb\u00ee\u00e6\u00e8\u00f2\u00fc
 
-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.
+Switches_between_full_and_abbreviated_journal_name_if_the_journal_name_is_known.=\u00cf\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ed\u00ee\u00e3\u00ee/\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00ed\u00ee\u00e3\u00ee_\u00e8\u00ec\u00e5\u00ed\u00e8_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00e0_\u00e4\u00eb\u00ff_\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00f5_\u00e8\u00ec\u00e5\u00ed_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2.
 
-Synchronize_%0_links=Synchronize_%0_links
-Synchronize_file_links=Synchronize_file_links
+Synchronize_%0_links=\u00d1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_%0
+Synchronize_file_links=\u00d1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb\u00fb
 
-Synchronizing_%0_links...=Synchronizing_%0_links...
+Synchronizing_%0_links...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00f1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e0\u00f6\u00e8\u00ff_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_%0...
 
-Table_appearance=Table_appearance
+Table_appearance=\u00cf\u00f0\u00e5\u00e4\u00f1\u00f2\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
 
-Table_background_color=Table_background_color
+Table_background_color=\u00d6\u00e2\u00e5\u00f2_\u00f4\u00ee\u00ed\u00e0_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
 
-Table_grid_color=Table_grid_color
+Table_grid_color=\u00d6\u00e2\u00e5\u00f2_\u00f1\u00e5\u00f2\u00ea\u00e8_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
 
-Table_text_color=Table_text_color
+Table_text_color=\u00d6\u00e2\u00e5\u00f2_\u00f2\u00e5\u00ea\u00f1\u00f2\u00e0_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
 
-Tabname=Tabname
-Target_file_cannot_be_a_directory.=Target_file_cannot_be_a_directory.
+Tabname=\u00c8\u00ec\u00ff_\u00e2\u00ea\u00eb\u00e0\u00e4\u00ea\u00e8
+Target_file_cannot_be_a_directory.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00f3\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e2_\u00ea\u00e0\u00f7\u00e5\u00f1\u00f2\u00e2\u00e5_\u00f6\u00e5\u00eb\u00e5\u00e2\u00ee\u00e3\u00ee_\u00f4\u00e0\u00e9\u00eb\u00e0.
 
-Tertiary_sort_criterion=Tertiary_sort_criterion
+Tertiary_sort_criterion=\u00d2\u00f0\u00e5\u00f2\u00e8\u00f7\u00ed\u00fb\u00e9_\u00ea\u00f0\u00e8\u00f2\u00e5\u00f0\u00e8\u00e9_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8
 
-Test=Test
+Test=\u00d2\u00e5\u00f1\u00f2
 
-Text_Input_Area=Text_Input_Area
+Text_Input_Area=\u00ec\u00e5\u00f1\u00f2\u00ee_\u00e2\u00f1\u00f2\u00e0\u00e2\u00ea\u00e8_\u00f2\u00e5\u00ea\u00f1\u00f2\u00e0
 
-The_chosen_date_format_for_new_entries_is_not_valid=The_chosen_date_format_for_new_entries_is_not_valid
+The_chosen_date_format_for_new_entries_is_not_valid=\u00c2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e4\u00e0\u00f2\u00fb_\u00e4\u00eb\u00ff_\u00ed\u00ee\u00e2\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ed\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec
 
-The_chosen_encoding_'%0'_could_not_encode_the_following_characters\:_=The_chosen_encoding_'%0'_could_not_encode_the_following_characters\:_
+The_chosen_encoding_'%0'_could_not_encode_the_following_characters\:_=\u00c2_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e9_\u00ea\u00ee\u00e4\u00e8\u00f0\u00ee\u00e2\u00ea\u00e5_'%0'_\u00ed\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ef\u00f0\u00ee\u00f7\u00e8\u00f2\u00e0\u00f2\u00fc_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00fb:_
 
 
-The_current_version_features_a_new_way_of_handling_links_to_external_files.<br>To_take_advantage_of_this,_your_links_must_be_changed_into_the_new_format,_and<br>JabRef_must_be_configured_to_show_the_new_links.=The_current_version_features_a_new_way_of_handling_links_to_external_files.<br>To_take_advantage_of_this,_your_links_must_be_changed_into_the_new_format,_and<br>JabRef_must_be_configured_to_show_the_new_links.
+The_current_version_features_a_new_way_of_handling_links_to_external_files.<br>To_take_advantage_of_this,_your_links_must_be_changed_into_the_new_format,_and<br>JabRef_must_be_configured_to_show_the_new_links.=\u00c2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e9_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e8_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00f3\u00e5\u00f2\u00f1\u00ff_\u00ed\u00ee\u00e2\u00fb\u00e9_\u00f1\u00ef\u00ee\u00f1\u00ee\u00e1_\u00ee\u00e1\u00f0\u00e0\u00e1\u00ee\u00f2\u00ea\u00e8 [...]
 
-the_field_<b>%0</b>=the_field_<b>%0</b>
+the_field_<b>%0</b>=\u00ef\u00ee\u00eb\u00e5_<b>%0</b>
 
-The_file<BR>'%0'<BR>has_been_modified<BR>externally!=The_file<BR>'%0'<BR>has_been_modified<BR>externally!
+The_file<BR>'%0'<BR>has_been_modified<BR>externally!=\u00d4\u00e0\u00e9\u00eb_<BR>'%0'<BR>\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed<BR>\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00ec\u00e8_\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0\u00ec\u00e8!
 
-The_group_"%0"_already_contains_the_selection.=The_group_"%0"_already_contains_the_selection.
+The_group_"%0"_already_contains_the_selection.=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_"%0"_\u00f3\u00e6\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5.
 
-The_label_of_the_string_can_not_be_a_number.=The_label_of_the_string_can_not_be_a_number.
+The_label_of_the_string_can_not_be_a_number.=\u00cc\u00e5\u00f2\u00ea\u00e0_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8_\u00ed\u00e5_\u00ec\u00ee\u00e6\u00e5\u00f2_\u00e1\u00fb\u00f2\u00fc_\u00f7\u00e8\u00f1\u00eb\u00ee\u00ec.
 
-The_label_of_the_string_can_not_contain_spaces.=The_label_of_the_string_can_not_contain_spaces.
+The_label_of_the_string_can_not_contain_spaces.=\u00cc\u00e5\u00f2\u00ea\u00e0_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8_\u00ed\u00e5_\u00ec\u00ee\u00e6\u00e5\u00f2_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f2\u00fc_\u00ef\u00f0\u00ee\u00e1\u00e5\u00eb\u00ee\u00e2.
 
-The_label_of_the_string_can_not_contain_the_'#'_character.=The_label_of_the_string_can_not_contain_the_'#'_character.
+The_label_of_the_string_can_not_contain_the_'#'_character.=\u00cc\u00e5\u00f2\u00ea\u00e0_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8_\u00ed\u00e5_\u00ec\u00ee\u00e6\u00e5\u00f2_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f2\u00fc_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb_'#'.
 
-The_output_option_depends_on_a_valid_import_option.=The_output_option_depends_on_a_valid_import_option.
-The_PDF_contains_one_or_several_bibtex-records.\nDo_you_want_to_import_these_as_new_entries_into_the_current_database?=The_PDF_contains_one_or_several_bibtex-records.\nDo_you_want_to_import_these_as_new_entries_into_the_current_database?
+The_output_option_depends_on_a_valid_import_option.=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00e2\u00fb\u00e2\u00ee\u00e4\u00e0_\u00e7\u00e0\u00e2\u00e8\u00f1\u00ff\u00f2_\u00ee\u00f2_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00f5_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00ee\u00e2_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0.
+The_PDF_contains_one_or_several_bibtex-records.\nDo_you_want_to_import_these_as_new_entries_into_the_current_database?=PDF_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00ee\u00e4\u00ed\u00f3_\u00e8\u00eb\u00e8_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_BibTeX.\n\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00e8\u00f5_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00f3\u00fe_\u00c1\u00c4_\ [...]
 
-The_regular_expression_<b>%0</b>_is_invalid%c=The_regular_expression_<b>%0</b>_is_invalid%c
+The_regular_expression_<b>%0</b>_is_invalid%c=\u00d0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5_<b>%0</b>_\u00ed\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee%c
 
-The_search_is_case_insensitive.=The_search_is_case_insensitive.
+The_search_is_case_insensitive.=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00e1\u00e5\u00e7_\u00f3\u00f7\u00e5\u00f2\u00e0_\u00f0\u00e5\u00e3\u00e8\u00f1\u00f2\u00f0\u00e0.
 
-The_search_is_case_sensitive.=The_search_is_case_sensitive.
+The_search_is_case_sensitive.=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00f1_\u00f3\u00f7\u00e5\u00f2\u00ee\u00ec_\u00f0\u00e5\u00e3\u00e8\u00f1\u00f2\u00f0\u00e0.
 
-The_string_has_been_removed_locally=The_string_has_been_removed_locally
+The_string_has_been_removed_locally=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e0_\u00eb\u00ee\u00ea\u00e0\u00eb\u00fc\u00ed\u00ee
 
-There_are_possible_duplicates_(marked_with_a_'D'_icon)_that_haven't_been_resolved._Continue?=There_are_possible_duplicates_(marked_with_a_'D'_icon)_that_haven't_been_resolved._Continue?
-This_database_was_written_using_an_older_version_of_JabRef.=This_database_was_written_using_an_older_version_of_JabRef.
+There_are_possible_duplicates_(marked_with_a_'D'_icon)_that_haven't_been_resolved._Continue?=\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ed\u00e0\u00eb\u00e8\u00f7\u00e8\u00e5_\u00ed\u00e5\u00f0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00ed\u00fb\u00f5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2_(\u00ee\u00f2\u00ec\u00e5\u00f7\u00e5\u00ed\u00fb_\u00e7\u00ed\u00e0\u00ea\u00ee\u00ec_'D')._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+This_database_was_written_using_an_older_version_of_JabRef.=\u00dd\u00f2\u00e0_\u00c1\u00c4_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00ed\u00e0_\u00f1_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5\u00ec_\u00f1\u00f2\u00e0\u00f0\u00ee\u00e9_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e8_JabRef.
 
-This_entry_has_no_BibTeX_key._Generate_key_now?=This_entry_has_no_BibTeX_key._Generate_key_now?
+This_entry_has_no_BibTeX_key._Generate_key_now?=\u00ce\u00f2\u00f1\u00f3\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2_\u00ea\u00eb\u00fe\u00f7_BibTeX_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8._\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7_\u00f1\u00e5\u00e9\u00f7\u00e0\u00f1?
 
-This_entry_is_incomplete=This_entry_is_incomplete
+This_entry_is_incomplete=\u00dd\u00f2\u00ee_\u00ed\u00e5\u00ef\u00ee\u00eb\u00ed\u00e0\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
 
-This_entry_type_cannot_be_removed.=This_entry_type_cannot_be_removed.
+This_entry_type_cannot_be_removed.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00fd\u00f2\u00ee\u00f2_\u00f2\u00e8\u00ef_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8.
 
-This_external_link_is_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?=This_external_link_is_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?
+This_external_link_is_of_the_type_'%0',_which_is_undefined._What_do_you_want_to_do?=\u00c2\u00ed\u00e5\u00f8\u00ed\u00ff\u00ff_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e0_\u00ed\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00ee\u00e3\u00ee_\u00f2\u00e8\u00ef\u00e0_'%0'._\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00e4\u00e0\u00eb\u00fc\u00ed\u00e5\u00e9\u00f8\u00e8\u00e5_\u00e4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00ff.
 
-This_group_contains_entries_based_on_manual_assignment._Entries_can_be_assigned_to_this_group_by_selecting_them_then_using_either_drag_and_drop_or_the_context_menu._Entries_can_be_removed_from_this_group_by_selecting_them_then_using_the_context_menu._Every_entry_assigned_to_this_group_must_have_a_unique_key._The_key_may_be_changed_at_any_time_as_long_as_it_remains_unique.=This_group_contains_entries_based_on_manual_assignment._Entries_can_be_assigned_to_this_group_by_selecting_them_then_ [...]
+This_group_contains_entries_based_on_manual_assignment._Entries_can_be_assigned_to_this_group_by_selecting_them_then_using_either_drag_and_drop_or_the_context_menu._Entries_can_be_removed_from_this_group_by_selecting_them_then_using_the_context_menu._Every_entry_assigned_to_this_group_must_have_a_unique_key._The_key_may_be_changed_at_any_time_as_long_as_it_remains_unique.=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\ [...]
 
-This_group_contains_entries_in_which=This_group_contains_entries_in_which
+This_group_contains_entries_in_which=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e2_\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00f5
 
-This_group_contains_entries_in_which_any_field_contains_the_regular_expression_<b>%0</b>=This_group_contains_entries_in_which_any_field_contains_the_regular_expression_<b>%0</b>
+This_group_contains_entries_in_which_any_field_contains_the_regular_expression_<b>%0</b>=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e2_\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00f5_\u00eb\u00fe\u00e1\u00ee\u00e5_\u00ef\u00ee\u00eb\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5_<b>%0</b> 
 
-This_group_contains_entries_in_which_any_field_contains_the_term_<b>%0</b>=This_group_contains_entries_in_which_any_field_contains_the_term_<b>%0</b>
+This_group_contains_entries_in_which_any_field_contains_the_term_<b>%0</b>=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e2_\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00f5_\u00eb\u00fe\u00e1\u00ee\u00e5_\u00ef\u00ee\u00eb\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00e5_<b>%0</b> 
 
-This_group_contains_entries_whose_<b>%0</b>_field_contains_the_keyword_<b>%1</b>=This_group_contains_entries_whose_<b>%0</b>_field_contains_the_keyword_<b>%1</b>
+This_group_contains_entries_whose_<b>%0</b>_field_contains_the_keyword_<b>%1</b>=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e2_\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00f5_\u00ef\u00ee\u00eb\u00e5_<b>%0</b>_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00ee\u00e5_\u00f1\u00eb\u00ee\u00e2\u00ee_<b>%1</b> 
 
-This_group_contains_entries_whose_<b>%0</b>_field_contains_the_regular_expression_<b>%1</b>=This_group_contains_entries_whose_<b>%0</b>_field_contains_the_regular_expression_<b>%1</b>
-This_makes_JabRef_look_up_each_%0_link_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.=This_makes_JabRef_look_up_each_%0_link_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.
+This_group_contains_entries_whose_<b>%0</b>_field_contains_the_regular_expression_<b>%1</b>=\u00c3\u00f0\u00f3\u00ef\u00ef\u00e0_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e2_\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00f5_\u00ef\u00ee\u00eb\u00e5_<b>%0</b>_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00ee\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5_<b>%1</b> 
+This_makes_JabRef_look_up_each_%0_link_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.=\u00cf\u00f0\u00e8_\u00fd\u00f2\u00ee\u00ec_JabRef_\u00ef\u00f0\u00ee\u00e8\u00e7\u00e2\u00e5\u00e4\u00e5\u00f2_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00e2\u00f1\u00e5\u00f5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_%0_\u00f1_\u00ef\u00f0\u00ee\u00e2\u00e5\u00f0\u00ea\u00ee\u00e9_\u00ed\u00e0\u00eb\u00e8\u00f7\u00e8\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0._\u00c2_\u00ef\u00 [...]
 
-This_operation_requires_all_selected_entries_to_have_BibTex_keys_defined.=This_operation_requires_all_selected_entries_to_have_BibTex_keys_defined.
-This_operation_requires_at_least_one_entry.=This_operation_requires_at_least_one_entry.
+This_operation_requires_all_selected_entries_to_have_BibTex_keys_defined.=\u00c4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00ee\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00e8_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTex_\u00e2\u00f1\u00e5\u00f5_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9.
+This_operation_requires_at_least_one_entry.=\u00c4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00ee\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00e8_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00e0_\u00ef\u00ee_\u00ea\u00f0\u00e0\u00e9\u00ed\u00e5\u00e9_\u00ec\u00e5\u00f0\u00e5_\u00ee\u00e4\u00ed\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc.
 
-This_operation_requires_one_or_more_entries_to_be_selected.=This_operation_requires_one_or_more_entries_to_be_selected.
+This_operation_requires_one_or_more_entries_to_be_selected.=\u00c4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00ee\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00e8_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00ee\u00e4\u00ed\u00f3_\u00e8\u00eb\u00e8_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9.
 
-To_set_up,_go_to_<B>Tools_->_Manage_journal_abbreviations</B>=To_set_up,_go_to_<B>Tools_->_Manage_journal_abbreviations</B>
+To_set_up,_go_to_<B>Tools_->_Manage_journal_abbreviations</B>=\u00c4\u00eb\u00ff_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ef\u00e5\u00f0\u00e5\u00e9\u00e4\u00e8\u00f2\u00e5:_<B>\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_->_\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff\u00ec\u00e8_\u00e4\u00eb\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2</B>
 
-Toggle_abbreviation=Toggle_abbreviation
-Toggle_entry_preview=\u00cf\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
-Toggle_groups_interface=\u00cf\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1_\u00e3\u00f0\u00f3\u00ef\u00ef
-Toggle_search_panel=Toggle_search_panel
+Toggle_abbreviation=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff
+Toggle_entry_preview=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Toggle_groups_interface=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1_\u00e3\u00f0\u00f3\u00ef\u00ef
+Toggle_search_panel=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ef\u00e0\u00ed\u00e5\u00eb\u00fc_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
 
-Try_different_encoding=Try_different_encoding
+Try_different_encoding=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00f3\u00e9\u00f2\u00e5_\u00e4\u00f0\u00f3\u00e3\u00f3\u00fe_\u00ea\u00ee\u00e4\u00e8\u00f0\u00ee\u00e2\u00ea\u00f3
 
-Type_set_to_'other'=Type_set_to_'other'
-Unabbreviate_journal_names_of_the_selected_entries=Unabbreviate_journal_names_of_the_selected_entries
-Unabbreviated_%0_journal_names.=Unabbreviated_%0_journal_names.
+Type_set_to_'other'=\u00c7\u00e0\u00e4\u00e0\u00ed_\u00f2\u00e8\u00ef_'\u00ef\u00f0\u00ee\u00f7\u00e8\u00e5'
+Unabbreviate_journal_names_of_the_selected_entries=\u00d0\u00e0\u00e7\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Unabbreviated_%0_journal_names.=\u00d0\u00e0\u00e7\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fb_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_%0.
 
-Unable_to_create_graphical_interface=Unable_to_create_graphical_interface
+Unable_to_create_graphical_interface=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e3\u00f0\u00e0\u00f4\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8\u00e9_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1
 
-Unable_to_open_file.=Unable_to_open_file.
-Unable_to_open_link._The_application_'%0'_associated_with_the_file_type_'%1'_could_not_be_called.=Unable_to_open_link._The_application_'%0'_associated_with_the_file_type_'%1'_could_not_be_called.
-Unable_to_read_default_icon_theme.=Unable_to_read_default_icon_theme.
-Unable_to_read_icon_theme_file=Unable_to_read_icon_theme_file
+Unable_to_open_file.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb.
+Unable_to_open_link._The_application_'%0'_associated_with_the_file_type_'%1'_could_not_be_called.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00e5\u00f0\u00e5\u00e9\u00f2\u00e8_\u00ef\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e5._\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e7\u00ee\u00e2\u00e0_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00ff_'%0'_\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00ed\u00ee\u00e3\u00ee_\u00f1_\u00f2\u00e8\u00ef\u00ee\u00ec_'%1'.
+Unable_to_read_default_icon_theme.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00f0\u00e8\u00f7\u00e8\u00f2\u00e0\u00f2\u00fc_\u00f2\u00e5\u00ec\u00f3_\u00e7\u00ed\u00e0\u00f7\u00ea\u00ee\u00e2_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe.
+Unable_to_read_icon_theme_file=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00f0\u00ee\u00f7\u00e8\u00f2\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb_\u00f2\u00e5\u00ec\u00fb_\u00e7\u00ed\u00e0\u00f7\u00ea\u00ee\u00e2
 
-unable_to_write_to=unable_to_write_to
-Undefined_file_type=Undefined_file_type
+unable_to_write_to=\u00ee\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2
+Undefined_file_type=\u00d2\u00e8\u00ef_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00ed\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed
 
-Undo=Undo
+Undo=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e0
 
-Union=Union
+Union=\u00ce\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5
 
-Unknown_bibtex_entries=Unknown_bibtex_entries
+Unknown_bibtex_entries=\u00cd\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_BibTeX
 
-unknown_edit=unknown_edit
+unknown_edit=\u00ed\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00ee\u00e5_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5
 
-unknown_entry_type=unknown_entry_type
+unknown_entry_type=\u00ed\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00e9_\u00f2\u00e8\u00ef_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Unknown_export_format=Unknown_export_format
+Unknown_export_format=\u00cd\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0
 
 Unmark_all=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00ec\u00e5\u00f2\u00ea\u00e8
 
 Unmark_entries=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00ec\u00e5\u00f2\u00ea\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Unmark_entry=Unmark_entry
+Unmark_entry=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00ec\u00e5\u00f2\u00ea\u00f3_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 
-Unmarked_selected=Unmarked_selected
+Unmarked_selected=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00ec\u00e5\u00f2\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e3\u00ee
 
-Unpack_EndNote_filter_set=Unpack_EndNote_filter_set
+Unpack_EndNote_filter_set=\u00d0\u00e0\u00f1\u00ef\u00e0\u00ea\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ed\u00e0\u00e1\u00ee\u00f0_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0\u00ee\u00e2_EndNote
 
-Unpacked_file.=Unpacked_file.
+Unpacked_file.=\u00d4\u00e0\u00e9\u00eb_\u00f0\u00e0\u00f1\u00ef\u00e0\u00ea\u00ee\u00e2\u00e0\u00ed.
 
-Unsupported_version_of_class_%0\:_%1=Unsupported_version_of_class_%0\:_%1
+Unsupported_version_of_class_%0\:_%1=\u00cd\u00e5\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e6\u00e8\u00e2\u00e0\u00e5\u00ec\u00e0\u00ff_\u00e2\u00e5\u00f0\u00f1\u00e8\u00ff_\u00ea\u00eb\u00e0\u00f1\u00f1\u00e0_%0:_%1
 
-untitled=untitled
+untitled=\u00e1\u00e5\u00e7_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u00e8\u00ff
 
-Up=Up
+Up=\u00c2\u00e2\u00e5\u00f0\u00f5
 
-Update_to_current_column_widths=Update_to_current_column_widths
+Update_to_current_column_widths=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f2\u00e5\u00ea\u00f3\u00f9\u00f3\u00fe_\u00f8\u00e8\u00f0\u00e8\u00ed\u00f3_\u00f1\u00f2\u00ee\u00eb\u00e1\u00f6\u00e0
 
-Updated_group_selection=Updated_group_selection
-Upgrade_external_PDF/PS_links_to_use_the_'%0'_field.=Upgrade_external_PDF/PS_links_to_use_the_'%0'_field.
-Upgrade_file=Upgrade_file
-Upgrade_old_external_file_links_to_use_the_new_feature=Upgrade_old_external_file_links_to_use_the_new_feature
-Upgraded_links.=Upgraded_links.
-UPPER=UPPER
-Upper_Each_First=Upper_Each_First
-Upper_first=Upper_first
+Updated_group_selection=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed
+Upgrade_external_PDF/PS_links_to_use_the_'%0'_field.=\u00ce\u00e1\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ed\u00e0_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_PDF/PS_\u00e4\u00eb\u00ff_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e2_\u00ef\u00ee\u00eb\u00e5_'%0'.
+Upgrade_file=\u00ce\u00e1\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
+Upgrade_old_external_file_links_to_use_the_new_feature=\u00ce\u00e1\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f1\u00f2\u00e0\u00f0\u00fb\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ed\u00e0_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00fb_\u00e4\u00eb\u00ff_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00ed\u00ee\u00e2\u00fb\u00f5_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00e9
+Upgraded_links.=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ee\u00e1\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00fb.
+UPPER=\u00cf\u00d0\u00ce\u00cf\u00c8\u00d1\u00cd\u00db\u00c5
+Upper_Each_First=\u00ca\u00e0\u00e6\u00e4\u00ee\u00e5_\u00f1\u00eb\u00ee\u00e2\u00ee_\u00f1_\u00ef\u00f0\u00ee\u00ef\u00e8\u00f1\u00ed\u00ee\u00e9
+Upper_first=\u00cd\u00e0\u00f7\u00e8\u00ed\u00e0\u00f2\u00fc_\u00f1_\u00ef\u00f0\u00ee\u00ef\u00e8\u00f1\u00ed\u00ee\u00e9
 
-usage=usage
-Use_autocompletion_for_the_following_fields=Use_autocompletion_for_the_following_fields
-Use_default_viewer=Use_default_viewer
+usage=\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5
+Use_autocompletion_for_the_following_fields=\u00c0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9
+Use_default_viewer=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00f3_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
 
-Use_inspection_window_also_when_a_single_entry_is_imported.=Use_inspection_window_also_when_a_single_entry_is_imported.
-Use_native_file_dialog=Use_native_file_dialog
+Use_inspection_window_also_when_a_single_entry_is_imported.=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ea\u00ee\u00ed\u00f2\u00f0\u00ee\u00eb\u00fc\u00ed\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee_\u00f2\u00e0\u00ea\u00e6\u00e5_\u00ef\u00f0\u00e8_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e5_\u00e5\u00e4\u00e8\u00ed\u00e8\u00f7\u00ed\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8.
+Use_native_file_dialog=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00ee\u00e1\u00f1\u00f2\u00e2\u00e5\u00ed\u00ed\u00ee\u00e5_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee_\u00e4\u00eb\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Use_other_look_and_feel=Use_other_look_and_feel
-Use_Regular_Expression_Search=Use_Regular_Expression_Search
+Use_other_look_and_feel=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e4\u00f0\u00f3\u00e3\u00ee\u00e9_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1
+Use_Regular_Expression_Search=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00f1_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5\u00ec_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00fb\u00f5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e9
 
-Use_regular_expressions=Use_regular_expressions
-Username_\:=Username_\:
+Use_regular_expressions=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f0\u00e5\u00e3\u00f3\u00eb\u00ff\u00f0\u00ed\u00fb\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00ff
+Username_\:=\u00c8\u00ec\u00ff_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00ff:
 
-Value_cleared_externally=Value_cleared_externally
+Value_cleared_externally=\u00c7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00ee_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00ec\u00e8_\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0\u00ec\u00e8
 
-Value_set_externally=Value_set_externally
+Value_set_externally=\u00c7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00e7\u00e0\u00e4\u00e0\u00ed\u00ee_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00ec\u00e8_\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0\u00ec\u00e8
 
-verify_that_LyX_is_running_and_that_the_lyxpipe_is_valid=verify_that_LyX_is_running_and_that_the_lyxpipe_is_valid
+verify_that_LyX_is_running_and_that_the_lyxpipe_is_valid=\u00f3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\u00f1\u00fc,_\u00f7\u00f2\u00ee_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_LyX_\u00e7\u00e0\u00ef\u00f3\u00f9\u00e5\u00ed\u00ee,_\u00e8_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed\u00ee_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee\u00e5_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ea\u00e0\u00ed\u00e0\u00eb\u00e0_LyX
 
 View=\u00c2\u00e8\u00e4
-Vim_Server_Name=Vim_Server_Name
+Vim_Server_Name=\u00c8\u00ec\u00ff_\u00f1\u00e5\u00f0\u00e2\u00e5\u00f0\u00e0_Vim
 
-Waiting_for_ArXiv...=Waiting_for_ArXiv...
+Waiting_for_ArXiv...=\u00ce\u00e6\u00e8\u00e4\u00e0\u00ed\u00e8\u00e5_ArXiv...
 
-Warn_about_unresolved_duplicates_when_closing_inspection_window=Warn_about_unresolved_duplicates_when_closing_inspection_window
+Warn_about_unresolved_duplicates_when_closing_inspection_window=\u00c2\u00fb\u00e4\u00e0\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5_\u00ee_\u00ed\u00e5\u00f0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00ed\u00fb\u00f5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00e0\u00f5_\u00ef\u00f0\u00e8_\u00e7\u00e0\u00ea\u00f0\u00fb\u00f2\u00e8\u00e8_\u00ea\u00ee\u00ed\u00f2\u00f0\u00ee\u00eb\u00fc\u00ed\u00ee\u00e3\u00ee_\u00ee\u00ea\u00ed\u00e0
 
-Warn_before_overwriting_existing_keys=Warn_before_overwriting_existing_keys
+Warn_before_overwriting_existing_keys=\u00c2\u00fb\u00e4\u00e0\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5_\u00ef\u00f0\u00e8_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00f5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9
 
-Warning=Warning
-Warning\:_could_not_complete_file_repair;_your_file_may_have_been_corrupted._Error_message=Warning\:_could_not_complete_file_repair;_your_file_may_have_been_corrupted._Error_message
+Warning=\u00cf\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5
+Warning\:_could_not_complete_file_repair;_your_file_may_have_been_corrupted._Error_message=\u00cf\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5:_\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e8\u00f2\u00fc_\u00e2\u00ee\u00f1\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00e0;_\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00f4\u00e0\u00e9\u00eb_\u00ef\u00ee\ [...]
 
-Warning_there_is_a_duplicate_key=Warning_there_is_a_duplicate_key
+Warning_there_is_a_duplicate_key=\u00cf\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5_\u00ee_\u00ed\u00e0\u00eb\u00e8\u00f7\u00e8\u00e8_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00e0_\u00ea\u00eb\u00fe\u00f7\u00e0
 
-Warnings=Warnings
+Warnings=\u00cf\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00ff
 
-web_link=web_link
+web_link=\u00e2\u00e5\u00e1-\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8
 
-What_do_you_want_to_do?=What_do_you_want_to_do?
+What_do_you_want_to_do?=\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00e4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00ef\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e5\u00ed\u00e8\u00ff.
 
-When_adding/removing_keywords,_separate_them_by=When_adding/removing_keywords,_separate_them_by
-Will_write_XMP-metadata_to_the_PDFs_linked_from_selected_entries.=Will_write_XMP-metadata_to_the_PDFs_linked_from_selected_entries.
+When_adding/removing_keywords,_separate_them_by=\u00cf\u00f0\u00e8_\u00e4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e8/\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e8\u00e8_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00f5_\u00f1\u00eb\u00ee\u00e2_\u00f0\u00e0\u00e7\u00e4\u00e5\u00eb\u00ff\u00f2\u00fc_\u00e8\u00f5_\u00f1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe
+Will_write_XMP-metadata_to_the_PDFs_linked_from_selected_entries.=\u00c1\u00f3\u00e4\u00e5\u00f2_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP_\u00e2_PDF_\u00f1\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e0\u00ec\u00e8_\u00e8\u00e7_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9.
 
-with=with
+with=\u00f1
 
-Word=Word
-Write_BibtexEntry_as_XMP-metadata_to_PDF.=Write_BibtexEntry_as_XMP-metadata_to_PDF.
+Word=\u00d1\u00eb\u00ee\u00e2\u00ee
+Write_BibtexEntry_as_XMP-metadata_to_PDF.=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_BibTeX_\u00ea\u00e0\u00ea_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP_\u00e2_PDF.
 
-Write_XMP=Write_XMP
-Write_XMP-metadata=Write_XMP-metadata
-Write_XMP-metadata_for_all_PDFs_in_current_database?=Write_XMP-metadata_for_all_PDFs_in_current_database?
-Writing_XMP=Writing_XMP
-Writing_XMP_metadata...=Writing_XMP_metadata...
-Writing_XMP_metadata_for_selected_entries...=Writing_XMP_metadata_for_selected_entries...
-Writing_XMP_to_'%0'...=Writing_XMP_to_'%0'...
+Write_XMP=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_XMP
+Write_XMP-metadata=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP
+Write_XMP-metadata_for_all_PDFs_in_current_database?=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP_\u00e4\u00eb\u00ff_\u00e2\u00f1\u00e5\u00f5_PDF_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e9_\u00c1\u00c4?
+Writing_XMP=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_XMP
+Writing_XMP_metadata...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP...
+Writing_XMP_metadata_for_selected_entries...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9...
+Writing_XMP_to_'%0'...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_XMP_\u00e2_'%0'...
 
-Wrong_file_format=Wrong_file_format
+Wrong_file_format=\u00cd\u00e5\u00e2\u00e5\u00f0\u00ed\u00fb\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00f4\u00e0\u00e9\u00eb\u00e0
 
-Wrote_XMP-metadata=Wrote_XMP-metadata
-Wrote_XMP_to_'%0'.=Wrote_XMP_to_'%0'.
+Wrote_XMP-metadata=\u00cc\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_XMP_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00ed\u00fb
+Wrote_XMP_to_'%0'.=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_XMP_\u00e2_'%0'.
 
-XMP-annotated_PDF=XMP-annotated_PDF
-XMP_Export_Privacy_Settings=XMP_Export_Privacy_Settings
-XMP_metadata=XMP_metadata
-XMP_metadata_found_in_PDF\:_%0=XMP_metadata_found_in_PDF\:_%0
-You_must_restart_JabRef_for_this_to_come_into_effect.=You_must_restart_JabRef_for_this_to_come_into_effect.
-You_have_changed_the_language_setting.=You_have_changed_the_language_setting.
+XMP-annotated_PDF=PDF_\u00f1_\u00e0\u00ed\u00ed\u00ee\u00f2\u00e0\u00f6\u00e8\u00ff\u00ec\u00e8_XMP
+XMP_Export_Privacy_Settings=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00e7\u00e0\u00f9\u00e8\u00f2\u00fb_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0_XMP
+XMP_metadata=\u00cc\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_XMP
+XMP_metadata_found_in_PDF\:_%0=\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_XMP_\u00e2_PDF:_%0
+You_must_restart_JabRef_for_this_to_come_into_effect.=\u00c4\u00eb\u00ff_\u00ef\u00f0\u00e8\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00f3\u00f1\u00f2\u00e8\u00f2\u00fc_JabRef.
+You_have_changed_the_language_setting.=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ff\u00e7\u00fb\u00ea\u00e0_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00fb_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00e5\u00ec.
 
-You_have_changed_the_look_and_feel_setting.=You_have_changed_the_look_and_feel_setting.
+You_have_changed_the_look_and_feel_setting.=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1\u00e0_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00fb_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00e5\u00ec.
 
-You_have_cleared_this_field._Original_value=You_have_cleared_this_field._Original_value
+You_have_cleared_this_field._Original_value=\u00cf\u00ee\u00eb\u00e5_\u00ee\u00f7\u00e8\u00f9\u00e5\u00ed\u00ee_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00e5\u00ec._\u00c8\u00f1\u00f5\u00ee\u00e4\u00ed\u00ee\u00e5_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5
 
-You_have_entered_an_invalid_search_'%0'.=You_have_entered_an_invalid_search_'%0'.
+You_have_entered_an_invalid_search_'%0'.=\u00d3\u00ea\u00e0\u00e7\u00e0\u00ed\u00ee_\u00ed\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee\u00e5_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0_'%0'.
 
-You_must_choose_a_file_name_to_store_journal_abbreviations=You_must_choose_a_file_name_to_store_journal_abbreviations
+You_must_choose_a_file_name_to_store_journal_abbreviations=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e8\u00ec\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e4\u00eb\u00ff_\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00e9_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
 
-You_must_restart_JabRef_for_the_new_key_bindings_to_work_properly.=You_must_restart_JabRef_for_the_new_key_bindings_to_work_properly.
+You_must_restart_JabRef_for_the_new_key_bindings_to_work_properly.=\u00c4\u00eb\u00ff_\u00ef\u00f0\u00e0\u00e2\u00e8\u00eb\u00fc\u00ed\u00ee\u00e9_\u00f0\u00e0\u00e1\u00ee\u00f2\u00fb_\u00ed\u00ee\u00e2\u00fb\u00f5_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e9_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00ef\u00e5\u00f0\u00e5\u00e7\u0 [...]
 
-You_must_set_both_BibTeX_key_and_%0_directory=You_must_set_both_BibTeX_key_and_%0_directory
+You_must_set_both_BibTeX_key_and_%0_directory=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00f3\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00e4\u00eb\u00ff_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX_\u00e8_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e0_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_%0
 
-Your_new_key_bindings_have_been_stored.=Your_new_key_bindings_have_been_stored.
+Your_new_key_bindings_have_been_stored.=\u00cd\u00ee\u00e2\u00fb\u00e5_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00fb.
 
 
-The_following_fetchers_are_available\:=The_following_fetchers_are_available\:
-Could_not_find_fetcher_'%0'=Could_not_find_fetcher_'%0'
-Running_Query_'%0'_with_fetcher_'%1'.=Running_Query_'%0'_with_fetcher_'%1'.
-Query_'%0'_with_fetcher_'%1'_did_not_return_any_results.=Query_'%0'_with_fetcher_'%1'_did_not_return_any_results.
-Open_SPIRES_entry=Open_SPIRES_entry
-Move/Rename_file=Move/Rename_file
-File_moved=File_moved
-Move_file_failed=Move_file_failed
-Could_not_move_file=Could_not_move_file
-Could_not_find_file_'%0'.=Could_not_find_file_'%0'.
-Number_of_entries_successfully_imported=Number_of_entries_successfully_imported
-Import_canceled_by_user=Import_canceled_by_user
-Progress\:_%0_of_%1=Progress\:_%0_of_%1
-Error_while_fetching_from_JSTOR=Error_while_fetching_from_JSTOR
+The_following_fetchers_are_available\:=\u00c4\u00ee\u00f1\u00f2\u00f3\u00ef\u00ed\u00fb_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00e8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2\u00fb_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8:
+Could_not_find_fetcher_'%0'=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00e8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_'%0'
+Running_Query_'%0'_with_fetcher_'%1'.=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e7\u00e0\u00ef\u00f0\u00ee\u00f1_'%0'_\u00e4\u00eb\u00ff_\u00e8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_'%1'.
+Query_'%0'_with_fetcher_'%1'_did_not_return_any_results.=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee_\u00f0\u00e5\u00e7\u00f3\u00eb\u00fc\u00f2\u00e0\u00f2\u00ee\u00e2_\u00e7\u00e0\u00ef\u00f0\u00ee\u00f1\u00e0_'%0'_\u00e4\u00eb\u00ff_\u00e8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_'%1'.
+Open_SPIRES_entry=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_SPIRES
+Move/Rename_file=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc/\u00cf\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
+File_moved=\u00d4\u00e0\u00e9\u00eb_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f9\u00e5\u00ed
+Move_file_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f9\u00e5\u00ed\u00e8\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0
+Could_not_move_file=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
+Could_not_find_file_'%0'.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00f4\u00e0\u00e9\u00eb_'%0'.
+Number_of_entries_successfully_imported=\u00d7\u00e8\u00f1\u00eb\u00ee_\u00f3\u00f1\u00ef\u00e5\u00f8\u00ed\u00ee_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Import_canceled_by_user=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ee\u00f2\u00ec\u00e5\u00ed\u00e5\u00ed_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00e5\u00ec
+Progress\:_%0_of_%1=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00ee:_%0_\u00e8\u00e7_%1
+Error_while_fetching_from_JSTOR=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_JSTOR
 
-Fetching_Medline_by_id...=Fetching_Medline_by_id...
+Fetching_Medline_by_id...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0_Medline_\u00ef\u00ee_\u00e8\u00e4...
 
-Fetching_Medline_by_term...=Fetching_Medline_by_term...
-Medline_import_canceled=Medline_import_canceled
-Please_enter_a_valid_number=Please_enter_a_valid_number
-Please_enter_a_comma_separated_list_of_Medline_IDs_(numbers)_or_search_terms.=Please_enter_a_comma_separated_list_of_Medline_IDs_(numbers)_or_search_terms.
-An_Error_occurred_while_fetching_from_SPIRES_source_(%0)\:=An_Error_occurred_while_fetching_from_SPIRES_source_(%0)\:
-Error_while_fetching_from_Spires\:_=Error_while_fetching_from_Spires\:_
+Fetching_Medline_by_term...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0_Medline_\u00ef\u00ee_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00fe...
+Medline_import_canceled=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_\u00e4\u00eb\u00ff_Medline
+Please_enter_a_valid_number=\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee\u00e5_\u00f7\u00e8\u00f1\u00eb\u00ee
+Please_enter_a_comma_separated_list_of_Medline_IDs_(numbers)_or_search_terms.=\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00f1\u00ef\u00e8\u00f1\u00ee\u00ea_\u00e8\u00e4._Medline_(\u00f7\u00e8\u00f1\u00eb.),_\u00f0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00ff\u00f2\u00fb\u00ec\u00e8_\u00e8\u00eb\u00e8_\u00f3\u00f1\u00eb\u00ee\u00e2\u00e8\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0.
+An_Error_occurred_while_fetching_from_SPIRES_source_(%0)\:=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea\u00e0_SPIRES_(%0):
+Error_while_fetching_from_Spires\:_=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_SPIRES:_
 Connect_to_external_SQL_database=\u00cf\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ea_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e5\u00e9_\u00c1\u00c4_SQL
 Export_to_external_SQL_database=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e2\u00ee_\u00e2\u00ed\u00e5\u00f8\u00ed\u00fe\u00fe_\u00c1\u00c4_SQL
 
-Show_results_in_dialog=Show_results_in_dialog
-Global_search=Global_search
-Show_search_results_in_a_window=Show_search_results_in_a_window
-Search_results=Search_results
-Move_file_to_file_directory?=Move_file_to_file_directory?
-Rename_to_'%0'=Rename_to_'%0'
-Move_to_file_directory=Move_to_file_directory
-You_have_changed_the_menu_and_label_font_size.=You_have_changed_the_menu_and_label_font_size.
-
-Database_is_protected._Cannot_save_until_external_changes_have_been_reviewed.=Database_is_protected._Cannot_save_until_external_changes_have_been_reviewed.
-Protected_database=Protected_database
-Refuse_to_save_the_database_before_external_changes_have_been_reviewed.=Refuse_to_save_the_database_before_external_changes_have_been_reviewed.
-Database_protection=Database_protection
-Unable_to_save_database=Unable_to_save_database
-
-BibTeX_key_generator=BibTeX_key_generator
-Unable_to_open_link.=Unable_to_open_link.
+Show_results_in_dialog=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f0\u00e5\u00e7\u00f3\u00eb\u00fc\u00f2\u00e0\u00f2\u00fb_\u00e2_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00ec_\u00ee\u00ea\u00ed\u00e5
+Global_search=\u00c3\u00eb\u00ee\u00e1\u00e0\u00eb\u00fc\u00ed\u00fb\u00e9_\u00ef\u00ee\u00e8\u00f1\u00ea
+Show_search_results_in_a_window=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f0\u00e5\u00e7\u00f3\u00eb\u00fc\u00f2\u00e0\u00f2\u00fb_\u00e2_\u00ee\u00ea\u00ed\u00e5
+Search_results=\u00d0\u00e5\u00e7\u00f3\u00eb\u00fc\u00f2\u00e0\u00f2\u00fb_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
+Move_file_to_file_directory?=\u00d4\u00e0\u00e9\u00eb_\u00e1\u00f3\u00e4\u00e5\u00f2_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f9\u00e5\u00ed_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+Rename_to_'%0'=\u00cf\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e2_'%0'
+Move_to_file_directory=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+You_have_changed_the_menu_and_label_font_size.=\u00ca\u00e5\u00e3\u00eb\u00fc_\u00ec\u00e5\u00ed\u00fe_\u00e8_\u00ed\u00e0\u00e4\u00ef\u00e8\u00f1\u00e8_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00e5\u00ec.
+
+Database_is_protected._Cannot_save_until_external_changes_have_been_reviewed.=\u00c7\u00e0\u00f9\u00e8\u00f9\u00e5\u00ed\u00ed\u00e0\u00ff_\u00c1\u00c4._\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e1\u00e5\u00e7_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00f5_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9.
+Protected_database=\u00c7\u00e0\u00f9\u00e8\u00f9\u00e5\u00ed\u00ed\u00e0\u00ff_\u00c1\u00c4
+Refuse_to_save_the_database_before_external_changes_have_been_reviewed.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00c1\u00c4_\u00e1\u00e5\u00e7_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00f5_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e9.
+Database_protection=\u00c7\u00e0\u00f9\u00e8\u00f2\u00e0_\u00c1\u00c4
+Unable_to_save_database=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00c1\u00c4
+
+BibTeX_key_generator=\u00c3\u00e5\u00ed\u00e5\u00f0\u00e0\u00f2\u00ee\u00f0_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX
+Unable_to_open_link.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00e5\u00f0\u00e5\u00e9\u00f2\u00e8_\u00ef\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e5.
 Search_JSTOR=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00e2_JSTOR
-Attempting_SQL_import...=Attempting_SQL_import...
-BibO_RDF=BibO_RDF
-HTML_parser=HTML_parser
+Attempting_SQL_import...=\u00cf\u00ee\u00ef\u00fb\u00f2\u00ea\u00e0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_SQL...
+BibO_RDF=RDF_(BibO)
+HTML_parser=\u00cf\u00e0\u00f0\u00f1\u00e5\u00f0_HTML
+
+Move_the_keyboard_focus_to_the_entry_table=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ea\u00f3\u00f0\u00f1\u00ee\u00f0_\u00e2_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00f3_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+MIME_type=MIME-\u00f2\u00e8\u00ef
 
-Move_the_keyboard_focus_to_the_entry_table=Move_the_keyboard_focus_to_the_entry_table
-MIME_type=MIME_type
+This_feature_lets_new_files_be_opened_or_imported_into_an_already_running_instance_of_JabRef<BR>instead_of_opening_a_new_instance._For_instance,_this_is_useful_when_you_open_a_file_in_JabRef<br>from_your_web_browser.<BR>Note_that_this_will_prevent_you_from_running_more_than_one_instance_of_JabRef_at_a_time.=\u00dd\u00f2\u00e0_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ff_\u00ef\u00ee\u00e7\u00e2\u00ee\u00eb\u00ff\u00e5\u00f2_\u00ee\u00f2\u00ea\u00f0\u00fb\u00e2\u00e0\u00f2\u00fc_\u00e8\u00e [...]
+Note_that_these_settings_are_used_for_the_legacy_<b>pdf</b>_and_<b>ps</b>_fields_only.<br>For_most_users,_setting_the_<b>Main_file_directory</b>_above_should_be_sufficient.=\u00ce\u00e1\u00f0\u00e0\u00f2\u00e8\u00f2\u00e5_\u00e2\u00ed\u00e8\u00ec\u00e0\u00ed\u00e8\u00e5,_\u00f7\u00f2\u00ee_\u00fd\u00f2\u00e8_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00f3\u00fe\u00f2\u00f1\u00ff_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e4\u00eb\u00f [...]
+Legacy_file_fields=\u00cf\u00ee\u00eb\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e4\u00eb\u00ff_\u00ef\u00f0\u00e5\u00e6\u00ed\u00e8\u00f5_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e9
 
-This_feature_lets_new_files_be_opened_or_imported_into_an_already_running_instance_of_JabRef<BR>instead_of_opening_a_new_instance._For_instance,_this_is_useful_when_you_open_a_file_in_JabRef<br>from_your_web_browser.<BR>Note_that_this_will_prevent_you_from_running_more_than_one_instance_of_JabRef_at_a_time.=This_feature_lets_new_files_be_opened_or_imported_into_an_already_running_instance_of_JabRef<BR>instead_of_opening_a_new_instance._For_instance,_this_is_useful_when_you_open_a_file_in [...]
-Note_that_these_settings_are_used_for_the_legacy_<b>pdf</b>_and_<b>ps</b>_fields_only.<br>For_most_users,_setting_the_<b>Main_file_directory</b>_above_should_be_sufficient.=Note_that_these_settings_are_used_for_the_legacy_<b>pdf</b>_and_<b>ps</b>_fields_only.<br>For_most_users,_setting_the_<b>Main_file_directory</b>_above_should_be_sufficient.
-Legacy_file_fields=Legacy_file_fields
+This_makes_JabRef_look_up_each_%0_extension_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.=\u00cf\u00f0\u00e8_\u00fd\u00f2\u00ee\u00ec_JabRef_\u00ef\u00f0\u00ee\u00e8\u00e7\u00e2\u00e5\u00e4\u00e5\u00f2_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00e2\u00f1\u00e5\u00f5_\u00f0\u00e0\u00f1\u00f8\u00e8\u00f0\u00e5\u00ed\u00e8\u00e9_%0_\u00f1_\u00ef\u00f0\u00ee\u00e2\u00e5\u00f0\u00ea\u00ee\u00e9_\u00ed\u00e0\u00eb\u00e8\u00f7\u00e8\u00ff_\u00f4\u00e0\u00e9\u [...]
+Run_Fetcher,_e.g._"--fetch\=Medline\:cancer"=\u00c7\u00e0\u00ef\u00f3\u00f1\u00ea_\u00e8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8,_\u00ed\u00e0\u00ef\u00f0.:_"--fetch=Medline:cancer"
 
-This_makes_JabRef_look_up_each_%0_extension_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.=This_makes_JabRef_look_up_each_%0_extension_and_check_if_the_file_exists._If_not,_you_will_be_given_options<BR>to_resolve_the_problem.
-The_ACM_Digital_Library=The_ACM_Digital_Library
-Reset=Reset
+The_ACM_Digital_Library=\u00d6\u00e8\u00f4\u00f0\u00ee\u00e2\u00e0\u00ff_\u00e1\u00e8\u00e1\u00eb\u00e8\u00ee\u00f2\u00e5\u00ea\u00e0_ACM
+Reset=\u00c8\u00ed\u00e8\u00f6\u00e8\u00e0\u00eb\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc
 
-Use_IEEE_LaTeX_abbreviations=Use_IEEE_LaTeX_abbreviations
-The_Guide_to_Computing_Literature=The_Guide_to_Computing_Literature
+Use_IEEE_LaTeX_abbreviations=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_LaTeX_\u00e4\u00eb\u00ff_IEEE
+The_Guide_to_Computing_Literature=ACM_-_\u00ca\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00ef\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f6\u00e8\u00e9_\u00ef\u00ee_\u00e8\u00ed\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00ea\u00e5_\u00e8_\u00c2\u00d2
 Search_ACM_Portal=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ed\u00e0_\u00ef\u00ee\u00f0\u00f2\u00e0\u00eb\u00e5_ACM
-Connection_to_ACM_Portal_failed=Connection_to_ACM_Portal_failed
+Connection_to_ACM_Portal_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ea_\u00ef\u00ee\u00f0\u00f2\u00e0\u00eb\u00f3_ACM
 
-When_opening_file_link,_search_for_matching_file_if_no_link_is_defined=When_opening_file_link,_search_for_matching_file_if_no_link_is_defined
-Settings_for_%0=Settings_for_%0
-Insert_selected_citations_into_Vim=Insert_selected_citations_into_Vim
+When_opening_file_link,_search_for_matching_file_if_no_link_is_defined=\u00cf\u00f0\u00e8_\u00ef\u00e5\u00f0\u00e5\u00f5\u00ee\u00e4\u00e5_\u00ef\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e5_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00f2\u00fc_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e5\u00e3\u00ee_\u00f4\u00e0\u00e9\u00eb\u00e0,_\u00e5\u00f1\u00eb\u00e8_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e0_\u00ed\u00e5_\u00ee\u00ef\ [...]
+Settings_for_%0=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00e4\u00eb\u00ff_%0
+Insert_selected_citations_into_Vim=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_Vim
 RIS=RIS
 
-Assign_exclusively_to_group=Assign_exclusively_to_group
+Assign_exclusively_to_group=\u00c8\u00f1\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00ee\u00e5_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5
 
-Bad_Request_'%0'.=Bad_Request_'%0'.
+Bad_Request_'%0'.=\u00cd\u00e5\u00e2\u00e5\u00f0\u00ed\u00fb\u00e9_\u00e7\u00e0\u00ef\u00f0\u00ee\u00f1_'%0'.
 
-Mark_entries_imported_into_an_existing_database=Mark_entries_imported_into_an_existing_database
-Unmark_all_entries_before_importing_new_entries_into_an_existing_database=Unmark_all_entries_before_importing_new_entries_into_an_existing_database
+Mark_entries_imported_into_an_existing_database=\u00cf\u00ee\u00ec\u00e5\u00f2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00f3\u00fe_\u00c1\u00c4
+Unmark_all_entries_before_importing_new_entries_into_an_existing_database=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00ec\u00e5\u00f2\u00ea\u00e8_\u00e2\u00f1\u00e5\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ef\u00e5\u00f0\u00e5\u00e4_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_\u00ed\u00ee\u00e2\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e2_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00f3 [...]
 
 Forward=\u00c2\u00ef\u00e5\u00f0\u00e5\u00e4
-Back=Back
-Sort_the_following_fields_as_numeric_fields=Sort_the_following_fields_as_numeric_fields
-Line_%0\:_Found_corrupted_BibTeX-key.=Line_%0\:_Found_corrupted_BibTeX-key.
-Line_%0\:_Found_corrupted_BibTeX-key_(contains_whitespaces).=Line_%0\:_Found_corrupted_BibTeX-key_(contains_whitespaces).
-Line_%0\:_Found_corrupted_BibTeX-key_(comma_missing).=Line_%0\:_Found_corrupted_BibTeX-key_(comma_missing).
-Finished_downloading_full_text_document=Finished_downloading_full_text_document
-Unable_to_find_full_text_document_in_the_linked_web_page.=Unable_to_find_full_text_document_in_the_linked_web_page.
-Connection_error_when_trying_to_find_full_text_document.=Connection_error_when_trying_to_find_full_text_document.
-This_entry_provides_no_URL_or_DOI_links.=This_entry_provides_no_URL_or_DOI_links.
-Full_text_article_download_failed=Full_text_article_download_failed
-Update_to_current_column_order=Update_to_current_column_order
-
-Rename_field=Rename_field
+Back=\u00cd\u00e0\u00e7\u00e0\u00e4
+Sort_the_following_fields_as_numeric_fields=\u00d1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff_\u00ea\u00e0\u00ea_\u00f7\u00e8\u00f1\u00eb\u00ee\u00e2\u00fb\u00e5
+Line_%0\:_Found_corrupted_BibTeX-key.=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_%0:_\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed_\u00ef\u00ee\u00e2\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00ed\u00fb\u00e9_\u00ea\u00eb\u00fe\u00f7_BibTeX.
+Line_%0\:_Found_corrupted_BibTeX-key_(contains_whitespaces).=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_%0:_\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed_\u00ef\u00ee\u00e2\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00ed\u00fb\u00e9_\u00ea\u00eb\u00fe\u00f7_BibTeX_(\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00ef\u00f0\u00ee\u00e1\u00e5\u00eb\u00fb)
+Line_%0\:_Found_corrupted_BibTeX-key_(comma_missing).=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_%0:_\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed_\u00ef\u00ee\u00e2\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00ed\u00fb\u00e9_\u00ea\u00eb\u00fe\u00f7_BibTeX_(\u00ef\u00f0\u00ee\u00ef\u00f3\u00f9\u00e5\u00ed\u00e0_\u00e7\u00e0\u00ef\u00ff\u00f2\u00e0\u00ff)
+Finished_downloading_full_text_document=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e0_\u00f6\u00e8\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00ee\u00e3\u00ee_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0_\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e0
+Unable_to_find_full_text_document_in_the_linked_web_page.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00f6\u00e8\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00fb\u00e9_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2_\u00ed\u00e0_\u00e2\u00e5\u00e1-\u00f1\u00f2\u00f0\u00e0\u00ed\u00e8\u00f6\u00e5_\u00ef\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e5.
+Connection_error_when_trying_to_find_full_text_document.=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e5_\u00f6\u00e8\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00ee\u00e3\u00ee_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0.
+This_entry_provides_no_URL_or_DOI_links.=\u00ce\u00f2\u00f1\u00f3\u00f2\u00f1\u00f2\u00e2\u00f3\u00fe\u00f2_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_URL_\u00e8\u00eb\u00e8_DOI_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8.
+Full_text_article_download_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8_\u00f6\u00e8\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00ee\u00e9_\u00f1\u00f2\u00e0\u00f2\u00fc\u00e8
+Update_to_current_column_order=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00e9_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ee\u00ea_\u00f1\u00f2\u00ee\u00eb\u00e1\u00f6\u00ee\u00e2
+
+Rename_field=\u00cf\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00e5
 Set/clear/rename_fields=\u00c7\u00e0\u00e4\u00e0\u00f2\u00fc/\u00ee\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc/\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ff
-Rename_field_to\:=Rename_field_to\:
-Move_contents_of_a_field_into_a_field_with_a_different_name=Move_contents_of_a_field_into_a_field_with_a_different_name
-You_can_only_rename_one_field_at_a_time=You_can_only_rename_one_field_at_a_time
-
-Remove_all_broken_links=Remove_all_broken_links
-
-Cannot_use_port_%0_for_remote_operation;_another_application_may_be_using_it._Try_specifying_another_port.=Cannot_use_port_%0_for_remote_operation;_another_application_may_be_using_it._Try_specifying_another_port.
-
-Plugin_installer=Plugin_installer
-Unable_to_create_plugin_directory=Unable_to_create_plugin_directory
-Unable_to_copy_file=Unable_to_copy_file
-Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.=Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.
-Unable_to_create_user_plugin_directory=Unable_to_create_user_plugin_directory
-Plugin_installation_failed.=Plugin_installation_failed.
-The_same_version_of_this_plugin_is_already_installed.=The_same_version_of_this_plugin_is_already_installed.
-A_newer_version_of_this_plugin_is_already_installed.=A_newer_version_of_this_plugin_is_already_installed.
-One_or_more_older_versions_of_this_plugin_is_installed._Delete_old_versions?=One_or_more_older_versions_of_this_plugin_is_installed._Delete_old_versions?
-Old_versions_deleted_successfully.=Old_versions_deleted_successfully.
-
-
-Install_plugin=Install_plugin
-Download_plugin=Download_plugin
-Plugin_manager=Plugin_manager
-Delete_the_%0_selected_plugins?=Delete_the_%0_selected_plugins?
-Delete_plugins=Delete_plugins
-Delete_the_selected_plugin?=Delete_the_selected_plugin?
-Delete_plugin=Delete_plugin
-Enter_download_URL=Enter_download_URL
-Plugin_name=Plugin_name
-Version=Version
-Unknown=Unknown
-Not_loaded=Not_loaded
-Loaded=Loaded
-Install_anyway?=Install_anyway?
-
-Looking_for_full_text_document...=Looking_for_full_text_document...
-Unable_to_find_full_text_article._No_search_algorithm_defined_for_the_'%0'_web_site.=Unable_to_find_full_text_article._No_search_algorithm_defined_for_the_'%0'_web_site.
-Found_pdf_link,_but_received_the_wrong_MIME_type._This_could_indicate_that_you_don't_have_access_to_the_fulltext_article.=Found_pdf_link,_but_received_the_wrong_MIME_type._This_could_indicate_that_you_don't_have_access_to_the_fulltext_article.
-
-Autosave=Autosave
-Prompt_before_recovering_a_database_from_an_autosave_file=Prompt_before_recovering_a_database_from_an_autosave_file
-Autosave_interval_(minutes)=Autosave_interval_(minutes)
-Do_you_want_to_recover_the_database_from_the_autosave_file?=Do_you_want_to_recover_the_database_from_the_autosave_file?
-Recover_from_autosave=Recover_from_autosave
-%0_warnings=%0_warnings
-
-Save_in_current_table_sort_order=Save_in_current_table_sort_order
-Export_in_current_table_sort_order=Export_in_current_table_sort_order
-Export_ordered_by_author/editor/year=Export_ordered_by_author/editor/year
-Export_entries_in_their_original_order=Export_entries_in_their_original_order
-Error_opening_file_'%0'.=Error_opening_file_'%0'.
-Autosave_of_file_'%0'=Autosave_of_file_'%0'
-Error_opening_autosave_of_'%0'._Trying_to_load_'%0'_instead.=Error_opening_autosave_of_'%0'._Trying_to_load_'%0'_instead.
-
-
-Plugins_installed_in_your_user_plugin_directory_(%0)\:=Plugins_installed_in_your_user_plugin_directory_(%0)\:
-Plugins_installed_in_other_locations\:=Plugins_installed_in_other_locations\:
-Plugins_will_be_deleted_next_time_JabRef_starts_up.=Plugins_will_be_deleted_next_time_JabRef_starts_up.
-Plugin_will_be_deleted_next_time_JabRef_starts_up.=Plugin_will_be_deleted_next_time_JabRef_starts_up.
-Old_plugin_versions_will_be_deleted_next_time_JabRef_starts_up.=Old_plugin_versions_will_be_deleted_next_time_JabRef_starts_up.
-Formatter_not_found\:_%0=Formatter_not_found\:_%0
-The_following_formatters_could_not_be_found=The_following_formatters_could_not_be_found
-
-Clear_inputarea=Clear_inputarea
-
-Automatically_set_file_links_for_this_entry=Automatically_set_file_links_for_this_entry
-Could_not_save,_file_locked_by_another_JabRef_instance.=Could_not_save,_file_locked_by_another_JabRef_instance.
-File_is_locked_by_another_JabRef_instance.=File_is_locked_by_another_JabRef_instance.
-Do_you_want_to_override_the_file_lock?=Do_you_want_to_override_the_file_lock?
-File_locked=File_locked
-Current_tmp_value=Current_tmp_value
-Metadata_change=Metadata_change
-Changes_have_been_made_to_the_following_metadata_elements=Changes_have_been_made_to_the_following_metadata_elements
-
-Generate_groups_for_author_last_names=Generate_groups_for_author_last_names
-Generate_groups_for_editor_last_names=Generate_groups_for_editor_last_names
-Generate_groups_from_keywords_in_a_BibTeX_field=Generate_groups_from_keywords_in_a_BibTeX_field
-Enforce_legal_characters_in_BibTeX_keys=Enforce_legal_characters_in_BibTeX_keys
-The_#_character_is_not_allowed_in_BibTeX_strings_unless_escaped_as_in_'\\#'.=The_#_character_is_not_allowed_in_BibTeX_strings_unless_escaped_as_in_'\\#'.
-Before_saving,_please_edit_any_strings_containing_the_#_character.=Before_saving,_please_edit_any_strings_containing_the_#_character.
-
-Save_without_backup?=Save_without_backup?
-Unable_to_create_backup=Unable_to_create_backup
-Move_file_to_file_directory.=Move_file_to_file_directory.
-Rename_file_to=Rename_file_to
-<b>All_Entries</b>_(this_group_cannot_be_edited_or_removed)=<b>All_Entries</b>_(this_group_cannot_be_edited_or_removed)
-static_group=static_group
-includes_subgroups=includes_subgroups
-refines_supergroup=refines_supergroup
-dynamic_group=dynamic_group
-contains=contains
-search_expression=search_expression
-
-Disable_file_renaming_in_non-native_file_dialog=Disable_file_renaming_in_non-native_file_dialog
-File_dialog=File_dialog
-No_entries_found._It_looks_like_you_do_not_have_access_to_search_JStor.=No_entries_found._It_looks_like_you_do_not_have_access_to_search_JStor.
+Rename_field_to\:=\u00cf\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00e5_\u00e2_:
+Move_contents_of_a_field_into_a_field_with_a_different_name=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5_\u00ef\u00ee\u00eb\u00ff_\u00e2_\u00ef\u00ee\u00eb\u00e5_\u00f1_\u00e4\u00f0\u00f3\u00e3\u00e8\u00ec_\u00e8\u00ec\u00e5\u00ed\u00e5\u00ec
+You_can_only_rename_one_field_at_a_time=\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00ee\u00e4\u00ed\u00ee_\u00ef\u00ee\u00eb\u00e5_\u00ee\u00e4\u00ed\u00ee\u00e2\u00f0\u00e5\u00ec\u00e5\u00ed\u00ed\u00ee
+
+Remove_all_broken_links=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00f1_\u00ee\u00f8\u00e8\u00e1\u00ea\u00e0\u00ec\u00e8
+
+Cannot_use_port_%0_for_remote_operation;_another_application_may_be_using_it._Try_specifying_another_port.=\u00cd\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00f0\u00f2_%0_\u00e4\u00eb\u00ff_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00ed\u00ee\u00e3\u00ee_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff;_another_application_may_be_using_it._Try_specifying_another_port.
+
+Plugin_installer=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00f9\u00e8\u00ea_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e5\u00e9
+Unable_to_create_plugin_directory=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e5\u00e9
+Unable_to_copy_file=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00ea\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00e0
+Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.=\u00cc\u00ee\u00e4\u00f3\u00eb\u00fc_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed_\u00f3\u00f1\u00ef\u00e5\u00f8\u00ed\u00ee._\u00c4\u00eb\u00ff_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8_\u00ed\u00ee\u00e2\u00ee\u00e3\u00ee_\u00ec\u00ee\u00e4\u00f3\u00eb\u00ff_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00f3\u00f1\u00f2\u00e8\u [...]
+Unable_to_create_user_plugin_directory=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e5\u00e9
+Plugin_installation_failed.=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00ea\u00e8_\u00ec\u00ee\u00e4\u00f3\u00eb\u00ff.
+The_same_version_of_this_plugin_is_already_installed.=\u00cc\u00ee\u00e4\u00f3\u00eb\u00fc_\u00f1_\u00fd\u00f2\u00ee\u00e9_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e5\u00e9_\u00f3\u00e6\u00e5_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed.
+A_newer_version_of_this_plugin_is_already_installed.=\u00cc\u00ee\u00e4\u00f3\u00eb\u00fc_\u00f1_\u00e1\u00ee\u00eb\u00e5\u00e5_\u00ed\u00ee\u00e2\u00ee\u00e9_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e5\u00e9_\u00f3\u00e6\u00e5_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed.
+One_or_more_older_versions_of_this_plugin_is_installed._Delete_old_versions?=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00fb_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e8_\u00ef\u00f0\u00e5\u00e4\u00f8\u00e5\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e8\u00f5_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e9._\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00f3\u00f1\u00f2\u00e0\u00f0\u00e5\u00e2\u00f8\u00e8\u00e5?
+Old_versions_deleted_successfully.=\u00d3\u00f1\u00f2\u00e0\u00f0\u00e5\u00e2\u00f8\u00e8\u00e5_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e8_\u00f3\u00f1\u00ef\u00e5\u00f8\u00ed\u00ee_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb.
+
+
+Install_plugin=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00ec\u00ee\u00e4\u00f3\u00eb\u00fc
+Download_plugin=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00e8\u00f2\u00fc_\u00ec\u00ee\u00e4\u00f3\u00eb\u00fc
+Plugin_manager=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ec\u00ee\u00e4\u00f3\u00eb\u00ff\u00ec\u00e8
+Delete_the_%0_selected_plugins?=\u00c2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_%0_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e5\u00e9_\u00e1\u00f3\u00e4\u00f3\u00f2_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+Delete_plugins=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00ec\u00ee\u00e4\u00f3\u00eb\u00e8
+Delete_the_selected_plugin?=\u00c2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e9_\u00ec\u00ee\u00e4\u00f3\u00eb\u00fc_\u00e1\u00f3\u00e4\u00e5\u00f2_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+Delete_plugin=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00ec\u00ee\u00e4\u00f3\u00eb\u00fc
+Enter_download_URL=\u00c2\u00e2\u00e5\u00f1\u00f2\u00e8_URL-\u00e0\u00e4\u00f0\u00e5\u00f1_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8
+Plugin_name=\u00cd\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e5_\u00ec\u00ee\u00e4\u00f3\u00eb\u00ff
+Version=\u00c2\u00e5\u00f0\u00f1\u00e8\u00ff
+Unknown=\u00cd\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00e9
+Not_loaded=\u00cd\u00e5_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e6\u00e5\u00ed
+Loaded=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e6\u00e5\u00ed
+Install_anyway?=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00ea\u00f3?
+
+Looking_for_full_text_document...=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00f6\u00e8\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00ee\u00e3\u00ee_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0...
+Unable_to_find_full_text_article._No_search_algorithm_defined_for_the_'%0'_web_site.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00f6\u00e8\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00f3\u00fe_\u00f1\u00f2\u00e0\u00f2\u00fc\u00fe._\u00cd\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed_\u00e0\u00eb\u00e3\u00ee\u00f0\u00e8\u00f2\u00ec_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0_\u00e4\u00eb\u00ff_\u00e2\u00e5\u00e1-\u00f1\u00e0\u00e9\u00f2\u00e0_'%0'.
+Found_pdf_link,_but_received_the_wrong_MIME_type._This_could_indicate_that_you_don't_have_access_to_the_fulltext_article.=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e0_\u00ed\u00e0_PDF_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00e0,_\u00ed\u00ee_\u00ef\u00ee\u00eb\u00f3\u00f7\u00e5\u00ed_\u00ed\u00e5\u00e2\u00e5\u00f0\u00ed\u00fb\u00e9_MIME-\u00f2\u00e8\u00ef._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00f3_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00ff_\u00ed\u00e5\ [...]
+
+Autosave=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5
+Prompt_before_recovering_a_database_from_an_autosave_file=\u00c2\u00fb\u00e4\u00e0\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e5_\u00ef\u00f0\u00e8_\u00e2\u00ee\u00f1\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00e8\u00e8_\u00c1\u00c4_\u00e8\u00e7_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e0\u00e2\u00f2\u00ee\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff
+Autosave_interval_(minutes)=\u00c8\u00ed\u00f2\u00e5\u00f0\u00e2\u00e0\u00eb_\u00e0\u00e2\u00f2\u00ee\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff_(\u00e2_\u00ec\u00e8\u00ed.)
+Do_you_want_to_recover_the_database_from_the_autosave_file?=\u00c1\u00f3\u00e4\u00e5\u00f2_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00ee_\u00e2\u00ee\u00f1\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00c1\u00c4_\u00e8\u00e7_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e0\u00e2\u00f2\u00ee\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+Recover_from_autosave=\u00c2\u00ee\u00f1\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e8\u00e7_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e0\u00e2\u00f2\u00ee\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff
+%0_warnings=%0_\u00ef\u00f0\u00e5\u00e4\u00f3\u00ef\u00f0\u00e5\u00e6\u00e4\u00e5\u00ed\u00e8\u00e9
+
+Save_in_current_table_sort_order=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f1_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00ec_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ea\u00ee\u00ec_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
+Export_in_current_table_sort_order=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00f1_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e8\u00ec_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ea\u00ee\u00ec_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb
+Export_ordered_by_author/editor/year=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00f1_\u00f3\u00ef\u00ee\u00f0\u00ff\u00e4\u00ee\u00f7\u00e5\u00ed\u00e8\u00e5\u00ec_\u00ef\u00ee:_\u00e0\u00e2\u00f2\u00ee\u00f0/\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0/\u00e3\u00ee\u00e4
+Export_entries_in_their_original_order=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e2_\u00e8\u00f1\u00f5\u00ee\u00e4\u00ed\u00ee\u00ec_\u00ef\u00ee\u00f0\u00ff\u00e4\u00ea\u00e5
+Error_opening_file_'%0'.=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00e8\u00e8_\u00f4\u00e0\u00e9\u00eb\u00e0_'%0'.
+Autosave_of_file_'%0'=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00e0_'%0'
+Error_opening_autosave_of_'%0'._Trying_to_load_'%0'_instead.=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00e8\u00e8_\u00e0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00ed\u00ee\u00e9_\u00ea\u00ee\u00ef\u00e8\u00e8_'%0'._\u00cf\u00ee\u00ef\u00f0\u00ee\u00e1\u00f3\u00e9\u00f2\u00e5_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00e8\u00f2\u00fc_'%0'.
+
+
+Plugins_installed_in_your_user_plugin_directory_(%0)\:=\u00cc\u00ee\u00e4\u00f3\u00eb\u00e8,_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00ed\u00fb\u00e5_\u00e2_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_(%0):
+Plugins_installed_in_other_locations\:=\u00cc\u00ee\u00e4\u00f3\u00eb\u00e8,_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00ed\u00fb\u00e5_\u00e2_\u00e4\u00f0\u00f3\u00e3\u00e8\u00e5_\u00f0\u00e0\u00f1\u00ef\u00ee\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00ff:
+Plugins_will_be_deleted_next_time_JabRef_starts_up.=\u00cc\u00ee\u00e4\u00f3\u00eb\u00e8_\u00e1\u00f3\u00e4\u00f3\u00f2_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb_\u00ef\u00f0\u00e8_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e5\u00ec_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5_JabRef.
+Plugin_will_be_deleted_next_time_JabRef_starts_up.=\u00cc\u00ee\u00e4\u00f3\u00eb\u00fc_\u00e1\u00f3\u00e4\u00e5\u00f2_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed_\u00ef\u00f0\u00e8_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e5\u00ec_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5_JabRef.
+Old_plugin_versions_will_be_deleted_next_time_JabRef_starts_up.=\u00d3\u00f1\u00f2\u00e0\u00f0\u00e5\u00e2\u00f8\u00e8\u00e5_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e8_\u00e1\u00f3\u00e4\u00f3\u00f2_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb_\u00ef\u00f0\u00e8_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e5\u00ec_\u00e7\u00e0\u00ef\u00f3\u00f1\u00ea\u00e5_JabRef.
+Formatter_not_found\:_%0=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00e0_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00e0_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff:_%0
+The_following_formatters_could_not_be_found=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00fb_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff
+
+Clear_inputarea=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ee\u00e1\u00eb\u00e0\u00f1\u00f2\u00fc_\u00e2\u00e2\u00ee\u00e4\u00e0
+
+Automatically_set_file_links_for_this_entry=\u00c0\u00e2\u00f2\u00ee\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb\u00fb_\u00e4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Could_not_save,_file_locked_by_another_JabRef_instance.=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00ed\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc,_\u00f4\u00e0\u00e9\u00eb_\u00e7\u00e0\u00e1\u00eb\u00ee\u00ea\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed_\u00e4\u00f0\u00f3\u00e3\u00e8\u00ec_\u00fd\u00ea\u00e7\u00e5\u00ec\u00ef\u00eb\u00ff\u00f0\u00ee\u00ec_JabRef.
+File_is_locked_by_another_JabRef_instance.=\u00d4\u00e0\u00e9\u00eb_\u00e7\u00e0\u00e1\u00eb\u00ee\u00ea\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed_\u00e4\u00f0\u00f3\u00e3\u00e8\u00ec_\u00fd\u00ea\u00e7\u00e5\u00ec\u00ef\u00eb\u00ff\u00f0\u00ee\u00ec_JabRef.
+Do_you_want_to_override_the_file_lock?=\u00c1\u00eb\u00ee\u00ea\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e1\u00f3\u00e4\u00e5\u00f2_\u00ef\u00e5\u00f0\u00e5\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e0._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+File_locked=\u00d4\u00e0\u00e9\u00eb_\u00e7\u00e0\u00e1\u00eb\u00ee\u00ea\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed
+Current_tmp_value=\u00d2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e5_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_TMP
+Metadata_change=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5
+Changes_have_been_made_to_the_following_metadata_elements=\u00cf\u00f0\u00ee\u00e8\u00e7\u00e2\u00e5\u00e4\u00e5\u00ed\u00fb_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e4\u00eb\u00ff_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00f5_\u00fd\u00eb\u00e5\u00ec\u00e5\u00ed\u00f2\u00ee\u00e2_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5
+
+Generate_groups_for_author_last_names=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef_\u00e4\u00eb\u00ff_\u00f4\u00e0\u00ec\u00e8\u00eb\u00e8\u00e9_\u00e0\u00e2\u00f2\u00ee\u00f0\u00ee\u00e2
+Generate_groups_for_editor_last_names=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef_\u00e4\u00eb\u00ff_\u00f4\u00e0\u00ec\u00e8\u00eb\u00e8\u00e9_\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0\u00ee\u00e2
+Generate_groups_from_keywords_in_a_BibTeX_field=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef_\u00e8\u00e7_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00f5_\u00f1\u00eb\u00ee\u00e2_\u00e2_\u00ef\u00ee\u00eb\u00e5_BibTeX
+Enforce_legal_characters_in_BibTeX_keys=\u00cf\u00f0\u00e8\u00ed\u00f3\u00e4\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00ee\u00e5_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee\u00e3\u00ee_\u00ed\u00e0\u00e1\u00ee\u00f0\u00e0_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00ee\u00e2_\u00e2_\u00ea\u00eb\u00fe\u00f7\u00e0\u00f5_BibTeX
+The_#_character_is_not_allowed_in_BibTeX_strings_unless_escaped_as_in_'\\#'.=\u00cd\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00e0_#_\u00e2_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e0\u00f5_BibTeX_\u00e1\u00e5\u00e7_\u00e7\u00e0\u00ea\u00f0\u00fb\u00e2\u00e0\u00fe\u00f9\u00e5\u00e3\u00ee_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00e0_'\\#'.
+Before_saving,_please_edit_any_strings_containing_the_#_character.=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00e5_\u00e2\u00f1\u00e5_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8,_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f9\u00e8\u00e5_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb_#_\u00ef\u00e5\u00f0\u00e5\u00e4_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec.
+
+Save_without_backup?=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00e1\u00e5\u00e7_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00ff_\u00f0\u00e5\u00e7\u00e5\u00f0\u00e2\u00ed\u00ee\u00e9_\u00ea\u00ee\u00ef\u00e8\u00e8?
+Unable_to_create_backup=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00f0\u00e5\u00e7\u00e5\u00f0\u00e2\u00ed\u00f3\u00fe_\u00ea\u00ee\u00ef\u00e8\u00fe
+Move_file_to_file_directory.=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2.
+Rename_file_to=\u00cf\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb_\u00e2
+<b>All_Entries</b>_(this_group_cannot_be_edited_or_removed)=<b>\u00c2\u00f1\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8</b>_(\u00ed\u00e5\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e8\u00eb\u00e8_\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00fd\u00f2\u00f3_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3)
+static_group=\u00f4\u00e8\u00ea\u00f1\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0
+includes_subgroups=\u00e2\u00ea\u00eb\u00fe\u00f7\u00e0\u00e5\u00f2_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
+refines_supergroup=\u00e4\u00e5\u00f2\u00e0\u00eb\u00e8\u00e7\u00e0\u00f6\u00e8\u00ff_\u00f1\u00f3\u00ef\u00e5\u00f0\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb
+dynamic_group=\u00e4\u00e8\u00ed\u00e0\u00ec\u00e8\u00f7\u00e5\u00f1\u00ea\u00e0\u00ff_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0
+contains=\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2
+search_expression=\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
+
+Disable_file_renaming_in_non-native_file_dialog=\u00ce\u00f2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e2_\u00f1\u00f2\u00ee\u00f0\u00ee\u00ed\u00ed\u00e5\u00ec_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00ec_\u00ee\u00ea\u00ed\u00e5
+File_dialog=\u00c4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee_\u00f4\u00e0\u00e9\u00eb\u00e0
+No_entries_found._It_looks_like_you_do_not_have_access_to_search_JStor.=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00f3_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00ff_\u00ed\u00e5\u00f2_\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00e0_\u00ea_\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0\u00ec_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0_JStor.
 
 Search_ScienceDirect=\u00cf\u00ee\u00e8\u00f1\u00ea_ScienceDirect
-Error_while_fetching_from_ScienceDirect=Error_while_fetching_from_ScienceDirect
-
-Error_initializing_custom_export_format_from_string_'%0'=Error_initializing_custom_export_format_from_string_'%0'
-BibLaTeX_mode=BibLaTeX_mode
-Optional_fields_2=Optional_fields_2
-Waiting_for_save_operation_to_finish=Waiting_for_save_operation_to_finish
-Resolving_duplicate_BibTeX_keys...=Resolving_duplicate_BibTeX_keys...
-Finished_resolving_duplicate_BibTeX_keys._%0_entries_modified.=Finished_resolving_duplicate_BibTeX_keys._%0_entries_modified.
-This_database_contains_one_or_more_duplicated_BibTeX_keys.=This_database_contains_one_or_more_duplicated_BibTeX_keys.
-Do_you_want_to_resolve_duplicate_keys_now?=Do_you_want_to_resolve_duplicate_keys_now?
-
-Find_and_remove_duplicate_BibTeX_keys=Find_and_remove_duplicate_BibTeX_keys
-Duplicate_key=Duplicate_key
-Generate_key=Generate_key
-Import_marking_color=Import_marking_color
-BibTeX_importer=BibTeX_importer
-Always_add_letter_(a,_b,_...)_to_generated_keys=Always_add_letter_(a,_b,_...)_to_generated_keys
-
-Ensure_unique_keys_using_letters_(a,_b,_...)=Ensure_unique_keys_using_letters_(a,_b,_...)
-Ensure_unique_keys_using_letters_(b,_c,_...)=Ensure_unique_keys_using_letters_(b,_c,_...)
-Entry_editor_active_background_color=Entry_editor_active_background_color
-Entry_editor_background_color=Entry_editor_background_color
-Entry_editor_font_color=Entry_editor_font_color
-Entry_editor_invalid_field_color=Entry_editor_invalid_field_color
-
-Table_and_entry_editor_colors=Table_and_entry_editor_colors
-
-An_autosave_file_was_found_for_this_database._This_could_indicate_=An_autosave_file_was_found_for_this_database._This_could_indicate_
-that_JabRef_didn't_shut_down_cleanly_last_time_the_file_was_used.=that_JabRef_didn't_shut_down_cleanly_last_time_the_file_was_used.
-General_file_directory=General_file_directory
-User-specific_file_directory=User-specific_file_directory
-Search_failed\:_illegal_search_expression=Search_failed\:_illegal_search_expression
-Show_ArXiv_column=Show_ArXiv_column
-<HTML>Unpack_the_zip_file_containing_import/export_filters_for_Endnote,<BR>for_optimal_interoperability_with_JabRef</HTML>=<HTML>Unpack_the_zip_file_containing_import/export_filters_for_Endnote,<BR>for_optimal_interoperability_with_JabRef</HTML>
-Highlight_groups_that_contain_entries_contained_in_any_currently_selected_group=Highlight_groups_that_contain_entries_contained_in_any_currently_selected_group
-
-You_must_enter_an_integer_value_in_the_interval_1025-65535_in_the_text_field_for=You_must_enter_an_integer_value_in_the_interval_1025-65535_in_the_text_field_for
-Automatically_open_browse_dialog_when_creating_new_file_link=Automatically_open_browse_dialog_when_creating_new_file_link
-Import_Metadata_from\:=Import_Metadata_from\:
-Choose_the_source_for_the_metadata_import=Choose_the_source_for_the_metadata_import
-Create_entry_based_on_XMP_data=Create_entry_based_on_XMP_data
-Create_entry_based_on_data_fetched_from=Create_entry_based_on_data_fetched_from
-Create_blank_entry_linking_the_PDF=Create_blank_entry_linking_the_PDF
-Only_attach_PDF=Only_attach_PDF
-Mr._dLib_Metadata_Entries_Associated_With_PDF_File=Mr._dLib_Metadata_Entries_Associated_With_PDF_File
-Title=Title
-Author(s)=Author(s)
-Published_Year=Published_Year
-No_metadata_found.=No_metadata_found.
-Mr._dLib_web_service_is_temporarily_unavailable.=Mr._dLib_web_service_is_temporarily_unavailable.
-Mr._dLib_web_service_is_temporarily_down._Please_try_again_later.=Mr._dLib_web_service_is_temporarily_down._Please_try_again_later.
-You_are_not_connected_to_the_Internet._To_access_Mr._dLib_web_service_an_internet_connection_is_needed.=You_are_not_connected_to_the_Internet._To_access_Mr._dLib_web_service_an_internet_connection_is_needed.
-No_Internet_Connection.=No_Internet_Connection.
-This_JabRef_version_is_trying_to_access_an_old_version_of_Mr._dLib's_webservice_that_is_not_working_any_more.\nPlease_visit_http\://jabref.sourceforge.net_or_http\://www.mr-dlib.org_for_more_information_and_updates.=This_JabRef_version_is_trying_to_access_an_old_version_of_Mr._dLib's_webservice_that_is_not_working_any_more.\nPlease_visit_http\://jabref.sourceforge.net_or_http\://www.mr-dlib.org_for_more_information_and_updates.
-Web_Service_Version_Outdated=Web_Service_Version_Outdated
-The_Mr._dLib_web_service_version_you_trying_to_access_is_outdated.=The_Mr._dLib_web_service_version_you_trying_to_access_is_outdated.
-Update_empty_fields_with_data_fetched_from=Update_empty_fields_with_data_fetched_from
-Create_New_Entry=Create_New_Entry
-Update_Existing_Entry=Update_Existing_Entry
+Error_while_fetching_from_ScienceDirect=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_ScienceDirect
+
+Error_initializing_custom_export_format_from_string_'%0'=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e8\u00ed\u00e8\u00f6\u00e8\u00e0\u00eb\u00e8\u00e7\u00e0\u00f6\u00e8\u00e8_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00ee\u00e3\u00ee_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0_\u00e8\u00e7_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8_'%0'
+BibLaTeX_mode=\u00d0\u00e5\u00e6\u00e8\u00ec_BibLaTeX
+Optional_fields_2=\u00c4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff_2
+Waiting_for_save_operation_to_finish=\u00ce\u00e6\u00e8\u00e4\u00e0\u00e5\u00f2\u00f1\u00ff_\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00ee\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff
+Resolving_duplicate_BibTeX_keys...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00f0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX...
+Finished_resolving_duplicate_BibTeX_keys._%0_entries_modified.=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e5\u00ed\u00ee._\u00c7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00ee:_%0
+This_database_contains_one_or_more_duplicated_BibTeX_keys.=\u00c2_\u00fd\u00f2\u00ee\u00e9_\u00c1\u00c4_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2\u00f1\u00ff_\u00ee\u00e4\u00e8\u00ed_\u00e8\u00eb\u00e8_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX.
+Do_you_want_to_resolve_duplicate_keys_now?=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00f0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_\u00f1\u00e5\u00e9\u00f7\u00e0\u00f1?
+
+Find_and_remove_duplicate_BibTeX_keys=\u00cd\u00e0\u00e9\u00f2\u00e8_\u00e8_\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX
+Expected_syntax_for_--fetch\='<name_of_fetcher>\:<query>'=\u00d1\u00f2\u00e0\u00ed\u00e4\u00e0\u00f0\u00f2\u00ed\u00fb\u00e9_\u00f1\u00e8\u00ed\u00f2\u00e0\u00ea\u00f1\u00e8\u00f1_--fetch='<\u00e8\u00ec\u00ff_\u00e8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0>:<\u00e7\u00e0\u00ef\u00f0\u00ee\u00f1>'
+Duplicate_BibTeX_key=\u00c4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2_\u00ea\u00eb\u00fe\u00f7\u00e0_BibTeX
+Duplicate_key=\u00c4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2_\u00ea\u00eb\u00fe\u00f7\u00e0
+Generate_key=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7
+Import_marking_color=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00f6\u00e2\u00e5\u00f2\u00e0_\u00ec\u00e5\u00f2\u00ea\u00e8
+BibTeX_importer=\u00d4\u00e8\u00eb\u00fc\u00f2\u00f0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_BibTeX
+Always_add_letter_(a,_b,_...)_to_generated_keys=\u00c2\u00f1\u00e5\u00e3\u00e4\u00e0_\u00e4\u00ee\u00e1\u00e0\u00e2\u00eb\u00ff\u00f2\u00fc_\u00e1\u00f3\u00ea\u00e2\u00f3_(a,_b,_...)_\u00ea_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00ed\u00fb\u00ec_\u00ea\u00eb\u00fe\u00f7\u00e0\u00ec
+
+Ensure_unique_keys_using_letters_(a,_b,_...)=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00ea\u00e0_\u00f3\u00ed\u00e8\u00ea\u00e0\u00eb\u00fc\u00ed\u00ee\u00f1\u00f2\u00e8_\u00ea\u00eb\u00fe\u00f7\u00e0_\u00ef\u00ee_\u00eb\u00e8\u00f2\u00e5\u00f0\u00e5_(a,_b,_...)
+Ensure_unique_keys_using_letters_(b,_c,_...)=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00ea\u00e0_\u00f3\u00ed\u00e8\u00ea\u00e0\u00eb\u00fc\u00ed\u00ee\u00f1\u00f2\u00e8_\u00ea\u00eb\u00fe\u00f7\u00e0_\u00ef\u00ee_\u00eb\u00e8\u00f2\u00e5\u00f0\u00e5_(b_c,_...)
+Entry_editor_active_background_color=\u00d0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9:_\u00f6\u00e2\u00e5\u00f2_\u00f4\u00ee\u00ed\u00e0_\u00e0\u00ea\u00f2\u00e8\u00e2\u00ed\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Entry_editor_background_color=\u00d0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9:_\u00f6\u00e2\u00e5\u00f2_\u00f4\u00ee\u00ed\u00e0
+Entry_editor_font_color=\u00d0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9:_\u00f6\u00e2\u00e5\u00f2_\u00f8\u00f0\u00e8\u00f4\u00f2\u00e0
+Entry_editor_invalid_field_color=\u00d0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9:_\u00f6\u00e2\u00e5\u00f2_\u00ed\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee\u00e3\u00ee_\u00ef\u00ee\u00eb\u00ff
+
+Table_and_entry_editor_colors=\u00d6\u00e2\u00e5\u00f2\u00e0_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00fb_\u00e8_\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+
+An_autosave_file_was_found_for_this_database._This_could_indicate_=\u00c4\u00eb\u00ff_\u00fd\u00f2\u00ee\u00e9_\u00c1\u00c4_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00e0_\u00e0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00ed\u00e0\u00ff_\u00ea\u00ee\u00ef\u00e8\u00ff._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00fd\u00f2\u00ee_\u00f3\u00ea\u00e0\u00e7\u00fb\u00e2\u00e0\u00e5\u00f2_
+that_JabRef_didn't_shut_down_cleanly_last_time_the_file_was_used.=\u00f7\u00f2\u00ee_\u00e2\u00ee_\u00e2\u00f0\u00e5\u00ec\u00ff_\u00ef\u00ee\u00f1\u00eb\u00e5\u00e4\u00ed\u00e5\u00e3\u00ee_\u00f1\u00e5\u00e0\u00ed\u00f1\u00e0_\u00f1_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5\u00ec_\u00e4\u00e0\u00ed\u00ed\u00ee\u00e3\u00ee_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00f0\u00e0\u00e1\u00ee\u00f2\u00e0_JabRef_\u00ed\u00e5_\u00e1\u00fb\u00eb\u00e0_\u00e7\u00e0\u00e [...]
+General_file_directory=\u00ce\u00e1\u00f9\u00e8\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+User-specific_file_directory=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Search_failed\:_illegal_search_expression=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0:_\u00ed\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00ee\u00e5_\u00e2\u00fb\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
+Show_ArXiv_column=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f1\u00f2\u00ee\u00eb\u00e1\u00e5\u00f6_ArXiv
+<HTML>Unpack_the_zip_file_containing_import/export_filters_for_Endnote,<BR>for_optimal_interoperability_with_JabRef</HTML>=<HTML>\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2_\u00f0\u00e0\u00f1\u00ef\u00e0\u00ea\u00ee\u00e2\u00ea\u00f3_ZIP-\u00f4\u00e0\u00e9\u00eb\u00e0,_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f9\u00e5\u00e3\u00ee_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0\u00fb_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0/\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0_Endnote,< [...]
+Highlight_groups_that_contain_entries_contained_in_any_currently_selected_group=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00f6\u00e2\u00e5\u00f2\u00ee\u00ec_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1_\u00e7\u00e0\u00ef\u00e8\u00f1\u00ff\u00ec\u00e8,_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00f9\u00e8\u00ec\u00e8\u00f1\u00ff_\u00e2_\u00eb\u00fe\u00e1\u00ee\u00e9_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e9_\u00e2_\u00ed\u00e0\u00f1\u00f2\u00ee\u00ff\u00f9\u00e5\u00e [...]
+
+You_must_enter_an_integer_value_in_the_interval_1025-65535_in_the_text_field_for=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e2\u00e2\u00e5\u00f1\u00f2\u00e8_\u00f6\u00e5\u00eb\u00ee\u00e5_\u00f7\u00e8\u00f1\u00eb\u00ee_\u00e8\u00e7_\u00e8\u00ed\u00f2\u00e5\u00f0\u00e2\u00e0\u00eb\u00e0_1025-65535_\u00e2_\u00f2\u00e5\u00ea\u00f1\u00f2\u00ee\u00e2\u00ee\u00e5_\u00ef\u00ee\u00eb\u00e5_\u00e4\u00eb\u00ff
+Automatically_open_browse_dialog_when_creating_new_file_link=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00ee\u00f2\u00ea\u00f0\u00fb\u00e2\u00e0\u00f2\u00fc_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee_\u00ee\u00e1\u00e7\u00ee\u00f0\u00e0_\u00ef\u00f0\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e8_\u00ed\u00ee\u00e2\u00ee\u00e9_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb
+Import_Metadata_from\:=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e8\u00e7:
+Choose_the_source_for_the_metadata_import=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea_\u00e4\u00eb\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5
+Create_entry_based_on_XMP_data=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ed\u00e0_\u00ee\u00f1\u00ed\u00ee\u00e2\u00e5_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP
+Create_entry_based_on_data_fetched_from=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ed\u00e0_\u00ee\u00f1\u00ed\u00ee\u00e2\u00e5_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_\u00e8\u00e7
+Create_blank_entry_linking_the_PDF=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00ef\u00f3\u00f1\u00f2\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f1\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00ee\u00e9_\u00ed\u00e0_PDF
+Only_attach_PDF=\u00cf\u00f0\u00e8\u00eb\u00ee\u00e6\u00e8\u00f2\u00fc_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_PDF
+Mr._dLib_Metadata_Entries_Associated_With_PDF_File=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_Mr._dLib_\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f1_\u00f4\u00e0\u00e9\u00eb\u00ee\u00ec_PDF
+Title=\u00c7\u00e0\u00e3\u00eb\u00e0\u00e2\u00e8\u00e5
+Author(s)=\u00c0\u00e2\u00f2\u00ee\u00f0(\u00fb)
+Published_Year=\u00c3\u00ee\u00e4_\u00ef\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f6\u00e8\u00e8
+No_metadata_found.=\u00cc\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00e5_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00fb.
+Mr._dLib_web_service_is_temporarily_unavailable.=\u00c2\u00e5\u00e1-\u00f1\u00eb\u00f3\u00e6\u00e1\u00e0_Mr._dLib_\u00e2\u00f0\u00e5\u00ec\u00e5\u00ed\u00ed\u00ee_\u00ed\u00e5\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00ed\u00e0.
+Mr._dLib_web_service_is_temporarily_down._Please_try_again_later.=\u00c2\u00f0\u00e5\u00ec\u00e5\u00ed\u00ed\u00fb\u00e9_\u00ee\u00f2\u00ea\u00e0\u00e7_\u00e2\u00e5\u00e1-\u00f1\u00eb\u00f3\u00e6\u00e1\u00fb_Mr._dLib._\u00cf\u00ee\u00e2\u00f2\u00ee\u00f0\u00e8\u00f2\u00e5_\u00ef\u00ee\u00ef\u00fb\u00f2\u00ea\u00f3_\u00ef\u00ee\u00e7\u00e6\u00e5.
+You_are_not_connected_to_the_Internet._To_access_Mr._dLib_web_service_an_internet_connection_is_needed.=\u00cd\u00e5\u00f2_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ea_\u00c8\u00ed\u00f2\u00e5\u00f0\u00ed\u00e5\u00f2._\u00c4\u00eb\u00ff_\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00e0_\u00ea_\u00e2\u00e5\u00e1-\u00f1\u00eb\u00f3\u00e6\u00e1\u00e5_Mr._dLib_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e8\u00ed\u00f2\u00e5\u00f0\u00ed\u00e5\u00f2-\ [...]
+No_Internet_Connection.=\u00c8\u00ed\u00f2\u00e5\u00f0\u00ed\u00e5\u00f2-\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ee\u00f2\u00f1\u00f3\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2.
+This_JabRef_version_is_trying_to_access_an_old_version_of_Mr._dLib's_webservice_that_is_not_working_any_more.\nPlease_visit_http\://jabref.sourceforge.net_or_http\://www.mr-dlib.org_for_more_information_and_updates.=\u00dd\u00f2\u00e0_\u00e2\u00e5\u00f0\u00f1\u00e8\u00ff_JabRef_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2_\u00ef\u00ee\u00ef\u00fb\u00f2\u00ea\u00f3_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ea_\u00f3\u00f1\u00f2\u00e0\u00f0\u00e5\u00e [...]
+Web_Service_Version_Outdated=\u00d3\u00f1\u00f2\u00e0\u00f0\u00e5\u00e2\u00f8\u00e0\u00ff_\u00e2\u00e5\u00f0\u00f1\u00e8\u00ff_\u00e2\u00e5\u00e1-\u00f1\u00eb\u00f3\u00e6\u00e1\u00fb
+The_Mr._dLib_web_service_version_you_trying_to_access_is_outdated.=\u00cf\u00ee\u00ef\u00fb\u00f2\u00ea\u00e0_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ea_\u00f3\u00f1\u00f2\u00e0\u00f0\u00e5\u00e2\u00f8\u00e5\u00e9_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e8_\u00e2\u00e5\u00e1-\u00f1\u00eb\u00f3\u00e6\u00e1\u00fb_The_Mr._dLib
+Update_empty_fields_with_data_fetched_from=\u00c7\u00e0\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5_\u00ef\u00f3\u00f1\u00f2\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff_\u00e4\u00e0\u00ed\u00ed\u00fb\u00ec\u00e8_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_\u00e8\u00e7
+Create_New_Entry=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00ed\u00ee\u00e2\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Update_Existing_Entry=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00e5\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
 Mr._dLib=Mr._dLib
-More_information=More_information
-Fetching_Metadata...=Fetching_Metadata...
-Autocomplete_names_in_'Firstname_Lastname'_format_only=Autocomplete_names_in_'Firstname_Lastname'_format_only
-Autocomplete_names_in_'Lastname,_Firstname'_format_only=Autocomplete_names_in_'Lastname,_Firstname'_format_only
-Autocomplete_names_in_both_formats=Autocomplete_names_in_both_formats
-Marking_color_%0=Marking_color_%0
-The_name_'comment'_can_not_be_used_as_an_entry_type_name.=The_name_'comment'_can_not_be_used_as_an_entry_type_name.
-You_must_enter_an_integer_value_in_the_text_field_for=You_must_enter_an_integer_value_in_the_text_field_for
-Send_as_email=Send_as_email
-References=References
-Sending_of_emails=Sending_of_emails
-Subject_for_sending_an_email_with_references=Subject_for_sending_an_email_with_references
-Automatically_open_folders_of_attached_files=Automatically_open_folders_of_attached_files
-Create_entry_based_on_content=Create_entry_based_on_content
-Do_not_show_this_box_again_for_this_import=Do_not_show_this_box_again_for_this_import
-Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)
-Error_creating_email=Error_creating_email
-Could_not_open_directory=Could_not_open_directory
-Entries_added_to_an_email=Entries_added_to_an_email
-exportFormat=exportFormat
-Output_file_missing=Output_file_missing
-No_search_matches.=No_search_matches.
-The_output_option_depends_on_a_valid_input_option.=The_output_option_depends_on_a_valid_input_option.
-Default_import_style_for_drag&drop_of_PDFs=Default_import_style_for_drag&drop_of_PDFs
-Default_PDF_file_link_action=Default_PDF_file_link_action
-File_name_format_pattern=File_name_format_pattern
-PostgreSQL_database=PostgreSQL_database
+More_information=\u00c4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00f1\u00e2\u00e5\u00e4\u00e5\u00ed\u00e8\u00ff
+Fetching_Metadata...=\u00c2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5...
+Autocomplete_names_in_'Firstname_Lastname'_format_only=\u00c0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e8\u00ec\u00e5\u00ed_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e4\u00eb\u00ff_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0_'\u00c8\u00ec\u00ff_\u00d4\u00e0\u00ec\u00e8\u00eb\u00e8\u00ff'
+Autocomplete_names_in_'Lastname,_Firstname'_format_only=\u00c0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e8\u00ec\u00e5\u00ed_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e4\u00eb\u00ff_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0_'\u00d4\u00e0\u00ec\u00e8\u00eb\u00e8\u00ff,_\u00c8\u00ec\u00ff'
+Autocomplete_names_in_both_formats=\u00c0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e8\u00ec\u00e5\u00ed_\u00e2_\u00ee\u00e1\u00ee\u00e8\u00f5_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0\u00f5
+Marking_color_%0=\u00d6\u00e2\u00e5\u00f2_\u00ee\u00f2\u00ec\u00e5\u00f2\u00ea\u00e8_%0
+The_name_'comment'_can_not_be_used_as_an_entry_type_name.=\u00c8\u00ec\u00ff_'\u00ea\u00ee\u00ec\u00ec\u00e5\u00ed\u00f2\u00e0\u00f0\u00e8\u00e9'_\u00ed\u00e5_\u00ec\u00ee\u00e6\u00e5\u00f2_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc\u00f1\u00ff_\u00ea\u00e0\u00ea_\u00e8\u00ec\u00ff_\u00f2\u00e8\u00ef\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8.
+You_must_enter_an_integer_value_in_the_text_field_for=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e2\u00e2\u00e5\u00f1\u00f2\u00e8_\u00f6\u00e5\u00eb\u00ee\u00e5_\u00f7\u00e8\u00f1\u00eb\u00ee_\u00e2_\u00f2\u00e5\u00ea\u00f1\u00f2\u00ee\u00e2\u00ee\u00e5_\u00ef\u00ee\u00eb\u00e5_\u00e4\u00eb\u00ff
+Send_as_email=\u00ce\u00f2\u00ef\u00f0\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ef\u00ee_\u00fd\u00eb.\u00ef\u00ee\u00f7\u00f2\u00e5
+References=\u00d1\u00f1\u00fb\u00eb\u00ea\u00e8
+Sending_of_emails=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ee\u00f2\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_\u00fd\u00eb.\u00ef\u00ee\u00f7\u00f2\u00fb
+Subject_for_sending_an_email_with_references=\u00d2\u00e5\u00ec\u00e0_\u00ef\u00e8\u00f1\u00fc\u00ec\u00e0_\u00fd\u00eb.\u00ef\u00ee\u00f7\u00f2\u00fb_\u00f1\u00ee_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e0\u00ec\u00e8
+Automatically_open_folders_of_attached_files=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00ee\u00f2\u00ea\u00f0\u00fb\u00e2\u00e0\u00f2\u00fc_\u00ef\u00e0\u00ef\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00ed\u00fb\u00f5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Create_entry_based_on_content=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ed\u00e0_\u00ee\u00f1\u00ed\u00ee\u00e2\u00e5_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e3\u00ee
+Do_not_show_this_box_again_for_this_import=\u00cd\u00e5_\u00ef\u00ee\u00ea\u00e0\u00e7\u00fb\u00e2\u00e0\u00f2\u00fc_\u00fd\u00f2\u00ee_\u00ee\u00ea\u00ed\u00ee_\u00e2_\u00e4\u00e0\u00eb\u00fc\u00ed\u00e5\u00e9\u00f8\u00e5\u00ec_\u00e4\u00eb\u00ff_\u00e4\u00e0\u00ed\u00ed\u00ee\u00e3\u00ee_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
+Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=\u00c2\u00f1\u00e5\u00e3\u00e4\u00e0_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00fd\u00f2\u00ee\u00f2_\u00f1\u00f2\u00e8\u00eb\u00fc_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_PDF_(\u00ed\u00e5_\u00f1\u00ef\u00f0\u00e0\u00f8\u00e8\u00e2\u00e0\u00f2\u00fc_\u00ef\u00f0\u00e8_\u00ef\u00ee\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e5\u00ec_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e5)
+Error_creating_email=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e8_\u00f1\u00ee\u00ee\u00e1\u00f9\u00e5\u00ed\u00e8\u00ff_\u00fd\u00eb.\u00ef\u00ee\u00f7\u00f2\u00fb
+Entries_added_to_an_email=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8,_\u00e4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00ed\u00fb\u00e5_\u00e2_\u00f1\u00ee\u00ee\u00e1\u00f9\u00e5\u00ed\u00e8\u00e5_\u00fd\u00eb.\u00ef\u00ee\u00f7\u00f2\u00fb
+exportFormat=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0
+Output_file_missing=\u00ce\u00f2\u00f1\u00f3\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2_\u00f4\u00e0\u00e9\u00eb_\u00e2\u00fb\u00e2\u00ee\u00e4\u00e0
+No_search_matches.=\u00cd\u00e5\u00f2_\u00f1\u00ee\u00e2\u00ef\u00e0\u00e4\u00e5\u00ed\u00e8\u00e9_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0.
+The_output_option_depends_on_a_valid_input_option.=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00e2\u00fb\u00e2\u00ee\u00e4\u00e0_\u00e7\u00e0\u00e2\u00e8\u00f1\u00ff\u00f2_\u00ee\u00f2_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00f5_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00ee\u00e2_\u00e2\u00e2\u00ee\u00e4\u00e0.
+Default_import_style_for_drag&drop_of_PDFs=\u00d1\u00f2\u00e8\u00eb\u00fc_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe_\u00e4\u00eb\u00ff_\u00f0\u00e5\u00e6\u00e8\u00ec\u00e0_\u00ef\u00e5\u00f0\u00e5\u00f2\u00e0\u00f1\u00ea\u00e8\u00e2\u00e0\u00ed\u00e8\u00ff_PDF
+Default_PDF_file_link_action=\u00c4\u00e5\u00e9\u00f1\u00f2\u00e2\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb_PDF_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
+File_name_format_pattern=\u00d8\u00e0\u00e1\u00eb\u00ee\u00ed_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0_\u00e8\u00ec\u00e5\u00ed\u00e8_\u00f4\u00e0\u00e9\u00eb\u00e0
+PostgreSQL_database=\u00c1\u00e0\u00e7\u00e0_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_PostgreSQL
 DIN_1505=DIN_1505
-Wrong_Format=Wrong_Format
-Path_to_gnuclient_or_emacsclient=Path_to_gnuclient_or_emacsclient
-Additional_parameters=Additional_parameters
-Encrypted_documents_are_not_supported=Encrypted_documents_are_not_supported
-Cite_selected_entries=Cite_selected_entries
-Cite_selected_entries_with_in-text_citation=Cite_selected_entries_with_in-text_citation
-Cite_special=Cite_special
-Extra_information_(e.g._page_number)=Extra_information_(e.g._page_number)
-Manage_citations=Manage_citations
-Problem_modifying_citation=Problem_modifying_citation
-Citation=Citation
-Extra_information=Extra_information
-Could_not_resolve_BibTeX_entry_for_citation_marker_'%0'.=Could_not_resolve_BibTeX_entry_for_citation_marker_'%0'.
-Styles=Styles
-Select_style=Select_style
-This_is_the_list_of_available_styles._Select_the_one_you_want_to_use.=This_is_the_list_of_available_styles._Select_the_one_you_want_to_use.
-Journals=Journals
-Cite=Cite
-Cite_in-text=Cite_in-text
-Insert_empty_citation=Insert_empty_citation
-Merge_citations=Merge_citations
-Manual_connect=Manual_connect
-Select_Writer_document=Select_Writer_document
-Sync_OO_bibliography=Sync_OO_bibliography
-OpenOffice=OpenOffice
-Select_which_open_Writer_document_to_work_on=Select_which_open_Writer_document_to_work_on
-Connected_to_document=Connected_to_document
-Insert_a_citation_without_text_(the_entry_will_appear_in_the_reference_list)=Insert_a_citation_without_text_(the_entry_will_appear_in_the_reference_list)
-Cite_selected_entries_with_extra_information=Cite_selected_entries_with_extra_information
-Ensure_that_the_bibliography_is_up-to-date=Ensure_that_the_bibliography_is_up-to-date
-Your_OpenOffice_document_references_the_BibTeX_key_'%0',_which_could_not_be_found_in_your_current_database.=Your_OpenOffice_document_references_the_BibTeX_key_'%0',_which_could_not_be_found_in_your_current_database.
-Unable_to_synchronize_bibliography=Unable_to_synchronize_bibliography
-Combine_pairs_of_citations_that_are_separated_by_spaces_only=Combine_pairs_of_citations_that_are_separated_by_spaces_only
-Autodetection_failed=Autodetection_failed
-Connecting=Connecting
-Please_wait...=Please_wait...
-Set_connection_parameters=Set_connection_parameters
-Path_to_OpenOffice_directory=Path_to_OpenOffice_directory
-Path_to_OpenOffice_executable=Path_to_OpenOffice_executable
-Path_to_OpenOffice_library_dir=Path_to_OpenOffice_library_dir
-Connection_lost=Connection_lost
-The_paragraph_format_is_controlled_by_the_property_'ReferenceParagraphFormat'_or_'ReferenceHeaderParagraphFormat'_in_the_style_file.=The_paragraph_format_is_controlled_by_the_property_'ReferenceParagraphFormat'_or_'ReferenceHeaderParagraphFormat'_in_the_style_file.
-The_character_format_is_controlled_by_the_citation_property_'CitationCharacterFormat'_in_the_style_file.=The_character_format_is_controlled_by_the_citation_property_'CitationCharacterFormat'_in_the_style_file.
-Automatically_sync_bibliography_when_inserting_citations=Automatically_sync_bibliography_when_inserting_citations
-Look_up_BibTeX_entries_in_the_active_tab_only=Look_up_BibTeX_entries_in_the_active_tab_only
-Look_up_BibTeX_entries_in_all_open_databases=Look_up_BibTeX_entries_in_all_open_databases
-Use_in-parenthesis_citation=Use_in-parenthesis_citation
-Use_in-text_citation=Use_in-text_citation
-Autodetecting_paths...=Autodetecting_paths...
-Unable_to_autodetect_OpenOffice_installation._Please_choose_the_installation_directory_manually.=Unable_to_autodetect_OpenOffice_installation._Please_choose_the_installation_directory_manually.
-Could_not_find_OpenOffice_installation=Could_not_find_OpenOffice_installation
-Directories=Directories
-Found_more_than_one_OpenOffice_executable._Please_choose_which_one_to_connect_to\:=Found_more_than_one_OpenOffice_executable._Please_choose_which_one_to_connect_to\:
-Choose_OpenOffice_executable=Choose_OpenOffice_executable
-Select_document=Select_document
-Edit_Group_Membership=Edit_Group_Membership
+Wrong_Format=\u00cd\u00e5\u00e2\u00e5\u00f0\u00ed\u00fb\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2
+Path_to_gnuclient_or_emacsclient=\u00cf\u00f3\u00f2\u00fc_\u00ea_gnuclient/emacsclient
+Additional_parameters=\u00c4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb
+Encrypted_documents_are_not_supported=\u00c4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00fb_\u00f1_\u00f8\u00e8\u00f4\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5\u00ec_\u00ed\u00e5_\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e6\u00e8\u00e2\u00e0\u00fe\u00f2\u00f1\u00ff
+Cite_selected_entries=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_\u00ea\u00f0\u00f3\u00e3\u00eb\u00fb\u00f5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e0\u00f5_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Cite_selected_entries_with_in-text_citation=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_\u00f3\u00e3\u00eb\u00ee\u00e2\u00fb\u00f5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e0\u00f5_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Cite_special=\u00ce\u00f1\u00ee\u00e1\u00ee\u00e5_\u00f6\u00e8\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5
+Extra_information_(e.g._page_number)=\u00c4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00f1\u00e2\u00e5\u00e4\u00e5\u00ed\u00e8\u00ff_(\u00ed\u00e0\u00ef\u00f0.,_\u00ed\u00ee\u00ec\u00e5\u00f0_\u00f1\u00f2\u00f0\u00e0\u00ed\u00e8\u00f6\u00fb)
+Manage_citations=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f6\u00e8\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5\u00ec
+Problem_modifying_citation=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00f0\u00e8_\u00ec\u00ee\u00e4\u00e8\u00f4\u00e8\u00ea\u00e0\u00f6\u00e8\u00e8_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb
+Citation=\u00d6\u00e8\u00f2\u00e0\u00f2\u00e0
+Extra_information=\u00c4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00f1\u00e2\u00e5\u00e4\u00e5\u00ed\u00e8\u00ff
+Could_not_resolve_BibTeX_entry_for_citation_marker_'%0'.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00f0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_BibTeX_\u00e4\u00eb\u00ff_\u00ec\u00e5\u00f2\u00ea\u00e8_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_'%0'.
+Styles=\u00d1\u00f2\u00e8\u00eb\u00e8
+Select_style=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00f1\u00f2\u00e8\u00eb\u00ff
+This_is_the_list_of_available_styles._Select_the_one_you_want_to_use.=\u00d1\u00ef\u00e8\u00f1\u00ee\u00ea_\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00ed\u00fb\u00f5_\u00f1\u00f2\u00e8\u00eb\u00e5\u00e9._\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00ee\u00e4\u00e8\u00ed_\u00e4\u00eb\u00ff_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff.
+Journals=\u00c6\u00f3\u00f0\u00ed\u00e0\u00eb\u00fb
+Cite=\u00d6\u00e8\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_(\u00e2_\u00ea\u00f0\u00f3\u00e3\u00eb\u00fb\u00f5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e0\u00f5)
+Cite_in-text=\u00d6\u00e8\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_(\u00e2_\u00f3\u00e3\u00eb\u00ee\u00e2\u00fb\u00f5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e0\u00f5)
+Insert_empty_citation=\u00c2\u00f1\u00f2\u00e0\u00e2\u00ea\u00e0_\u00ef\u00f3\u00f1\u00f2\u00ee\u00e9_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb
+Merge_citations=\u00ce\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2
+Manual_connect=\u00c8\u00f1\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00f0\u00f3\u00f7\u00ed\u00f3\u00fe
+Select_Writer_document=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0_OpenOffice_Writer
+Sync_OO_bibliography=\u00d1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e0\u00f6\u00e8\u00ff_\u00e1\u00e8\u00e1\u00eb\u00e8\u00ee\u00e3\u00f0\u00e0\u00f4\u00e8\u00e8_OO
+OpenOffice=OpenOffice/LibreOffice
+Select_which_open_Writer_document_to_work_on=\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fb\u00e9_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2_OpenOffice_Writer_\u00e4\u00eb\u00ff_\u00f0\u00e0\u00e1\u00ee\u00f2\u00fb
+Connected_to_document=\u00cf\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00ee_\u00ea_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00f3
+Insert_a_citation_without_text_(the_entry_will_appear_in_the_reference_list)=\u00c2\u00f1\u00f2\u00e0\u00e2\u00ea\u00e0_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e1\u00e5\u00e7_\u00f2\u00e5\u00ea\u00f1\u00f2\u00e0_(\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ee\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e0\u00e5\u00f2\u00f1\u00ff_\u00e2_\u00f1\u00ef\u00e8\u00f1\u00ea\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea)
+Cite_selected_entries_with_extra_information=\u00d6\u00e8\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f1_\u00e4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00ec\u00e8_\u00f1\u00e2\u00e5\u00e4\u00e5\u00ed\u00e8\u00ff\u00ec\u00e8
+Ensure_that_the_bibliography_is_up-to-date=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00fc\u00f2\u00e5_\u00e0\u00ea\u00f2\u00f3\u00e0\u00eb\u00fc\u00ed\u00ee\u00f1\u00f2\u00fc_\u00e1\u00e8\u00e1\u00eb\u00e8\u00ee\u00e3\u00f0\u00e0\u00f4\u00e8\u00e8
+Your_OpenOffice_document_references_the_BibTeX_key_'%0',_which_could_not_be_found_in_your_current_database.=\u00c4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2_OpenOffice_\u00f1\u00f1\u00fb\u00eb\u00e0\u00e5\u00f2\u00f1\u00ff_\u00ed\u00e0_\u00ea\u00eb\u00fe\u00f7_BibTeX_'%0',_\u00ea\u00ee\u00f2\u00ee\u00f0\u00fb\u00e9_\u00ed\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00e2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e9_\u00c1\u00c4.
+Unable_to_synchronize_bibliography=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00f1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e0\u00f6\u00e8\u00fe_\u00e1\u00e8\u00e1\u00eb\u00e8\u00ee\u00e3\u00f0\u00e0\u00f4\u00e8\u00e8
+Combine_pairs_of_citations_that_are_separated_by_spaces_only=\u00ce\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e8\u00f2\u00fc_\u00ef\u00e0\u00f0\u00fb_\u00f6\u00e8\u00f2\u00e0\u00f2,_\u00f0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00e5_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00ef\u00f0\u00ee\u00e1\u00e5\u00eb\u00ee\u00ec
+Autodetection_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00ff
+Connecting=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5
+Please_wait...=\u00cf\u00ee\u00e4\u00ee\u00e6\u00e4\u00e8\u00f2\u00e5...
+Set_connection_parameters=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00ee\u00e2_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff
+Path_to_OpenOffice_directory=\u00cf\u00f3\u00f2\u00fc_\u00ea_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00f3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_OpenOffice
+Path_to_OpenOffice_executable=\u00cf\u00f3\u00f2\u00fc_\u00ea_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00ff\u00ec_OpenOffice
+Path_to_OpenOffice_library_dir=\u00cf\u00f3\u00f2\u00fc_\u00ea_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00f3_\u00e1\u00e8\u00e1\u00eb\u00e8\u00ee\u00f2\u00e5\u00ea\u00e8_OpenOffice
+Connection_lost=\u00d1\u00ee\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5_\u00ef\u00f0\u00e5\u00f0\u00e2\u00e0\u00ed\u00ee
+The_paragraph_format_is_controlled_by_the_property_'ReferenceParagraphFormat'_or_'ReferenceHeaderParagraphFormat'_in_the_style_file.=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e0\u00e1\u00e7\u00e0\u00f6\u00e0_\u00e7\u00e0\u00e4\u00e0\u00e5\u00f2\u00f1\u00ff_\u00f1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe_\u00f1\u00e2\u00ee\u00e9\u00f1\u00f2\u00e2\u00e0_'ReferenceParagraphFormat'_\u00e8\u00eb\u00e8_'ReferenceHeaderParagraphFormat'_\u00e2_\u00f4\u00e0\u00e9\u00eb\u00e5_\u00f1\u00f2\u00e8\u [...]
+The_character_format_is_controlled_by_the_citation_property_'CitationCharacterFormat'_in_the_style_file.=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00e0_\u00e7\u00e0\u00e4\u00e0\u00e5\u00f2\u00f1\u00ff_\u00f1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe_\u00f1\u00e2\u00ee\u00e9\u00f1\u00f2\u00e2\u00e0_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_'CitationCharacterFormat'_\u00e2_\u00f4\u00e0\u00e9\u00eb\u00e5_\u00f1\u00f2\u00e8\u00eb\u00ff.
+Automatically_sync_bibliography_when_inserting_citations=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00f1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e1\u00e8\u00e1\u00eb\u00e8\u00ee\u00e3\u00f0\u00e0\u00f4\u00e8\u00fe_\u00ef\u00f0\u00e8_\u00e2\u00f1\u00f2\u00e0\u00e2\u00ea\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2
+Look_up_BibTeX_entries_in_the_active_tab_only=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_BibTeX_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_\u00e2_\u00e0\u00ea\u00f2\u00e8\u00e2\u00ed\u00ee\u00e9_\u00e2\u00ea\u00eb\u00e0\u00e4\u00ea\u00e5
+Look_up_BibTeX_entries_in_all_open_databases=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_BibTeX_\u00e2\u00ee_\u00e2\u00f1\u00e5\u00f5_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fb\u00f5_\u00c1\u00c4
+Use_in-parenthesis_citation=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ea\u00f0\u00f3\u00e3\u00eb\u00fb\u00e5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00f6\u00e8\u00f2\u00e0\u00f2
+Use_in-text_citation=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f3\u00e3\u00eb\u00ee\u00e2\u00fb\u00e5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00f6\u00e8\u00f2\u00e0\u00f2
+Autodetecting_paths...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ef\u00f3\u00f2\u00e5\u00e9...
+Unable_to_autodetect_OpenOffice_installation._Please_choose_the_installation_directory_manually.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00e0\u00e2\u00f2\u00ee\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00ea\u00e8_OpenOffice._\u00d3\u00ea\u00e0\u00e6\u00e8\u00f2\u00e5_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00 [...]
+Could_not_find_OpenOffice_installation=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ed\u00e0\u00e9\u00f2\u00e8_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00eb\u00e5\u00ed\u00ed\u00ee\u00e5_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_OpenOffice
+Directories=\u00ca\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e8_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Found_more_than_one_OpenOffice_executable._Please_choose_which_one_to_connect_to\:=\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee_\u00ed\u00e5\u00f1\u00ea\u00ee\u00eb\u00fc\u00ea\u00ee_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e9_OpenOffice._\u00d3\u00ea\u00e0\u00e6\u00e8\u00f2\u00e5_\u00ee\u00e4\u00ed\u00ee_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff:
+Choose_OpenOffice_executable=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00ff_OpenOffice
+Select_document=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2
+Edit_Group_Membership=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e8\u00ed\u00e0\u00e4\u00eb\u00e5\u00e6\u00ed\u00ee\u00f1\u00f2\u00fc_\u00ea_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5
 PostgreSQL=PostgreSQL
 
-Highlight_Words=Highlight_Words
-JSTOR_import_cancelled=JSTOR_import_cancelled
-HTML_list=HTML_list
-Click_group_to_toggle_membership_of_selected_entries=Click_group_to_toggle_membership_of_selected_entries
-Use_EMACS_23_insertion_string=Use_EMACS_23_insertion_string
-If_possible,_normalize_this_list_of_names_to_conform_to_standard_BibTeX_name_formatting=If_possible,_normalize_this_list_of_names_to_conform_to_standard_BibTeX_name_formatting
-Could_not_open_%0=Could_not_open_%0
-Unknown_import_format=Unknown_import_format
-Open_INSPIRE_entry=Open_INSPIRE_entry
-An_Error_occurred_while_fetching_from_INSPIRE_source_(%0)\:=An_Error_occurred_while_fetching_from_INSPIRE_source_(%0)\:
-Error_while_fetching_from_Inspire\:_=Error_while_fetching_from_Inspire\:_
+Highlight_Words=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f1\u00eb\u00ee\u00e2_\u00f6\u00e2\u00e5\u00f2\u00ee\u00ec
+JSTOR_import_cancelled=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_JSTOR
+HTML_list=\u00d1\u00ef\u00e8\u00f1\u00ee\u00ea_HTML
+Click_group_to_toggle_membership_of_selected_entries=\u00d9\u00e5\u00eb\u00ea\u00ed\u00e8\u00f2\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00f3_\u00e4\u00eb\u00ff_\u00ef\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8\u00ed\u00e0\u00e4\u00eb\u00e5\u00e6\u00ed\u00ee\u00f1\u00f2\u00e8_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Use_EMACS_23_insertion_string=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_\u00e2\u00f1\u00f2\u00e0\u00e2\u00ea\u00e8_EMACS_23
+If_possible,_normalize_this_list_of_names_to_conform_to_standard_BibTeX_name_formatting=\u00c5\u00f1\u00eb\u00e8_\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee,_\u00ef\u00f0\u00e8\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00f1\u00ef\u00e8\u00f1\u00ee\u00ea_\u00e8\u00ec\u00e5\u00ed_\u00e2_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00e5_\u00f1\u00ee_\u00f1\u00f2\u00e0\u00ed\u00e4\u00e0\u00f0\u00f2\u00ed\u00fb\u00ec_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00 [...]
+Could_not_open_%0=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_%0
+Unknown_import_format=\u00cd\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00e9_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
+Open_INSPIRE_entry=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_INSPIRE
+An_Error_occurred_while_fetching_from_INSPIRE_source_(%0)\:=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_\u00e8\u00e7_\u00e8\u00f1\u00f2\u00ee\u00f7\u00ed\u00e8\u00ea\u00e0_INSPIRE_(%0):
+Error_while_fetching_from_Inspire\:_=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_Inspire:_
 Web_search=\u00c2\u00e5\u00e1-\u00ef\u00ee\u00e8\u00f1\u00ea
-Autocomplete_names=Autocomplete_names
-Default_style=Default_style
-Choose_style_file_directly=Choose_style_file_directly
-Choose_from_a_directory=Choose_from_a_directory
-No_directory_defined_for_%0-files=No_directory_defined_for_%0-files
-Allow_file_links_relative_to_each_bib_file's_location=Allow_file_links_relative_to_each_bib_file's_location
-Style_selection=Style_selection
-The_panel_below_shows_the_definition_of_the_default_style.=The_panel_below_shows_the_definition_of_the_default_style.
-If_you_want_to_use_it_as_a_template_for_a_new_style,_you_can_copy_the_contents_into_a_new_.jstyle_file=If_you_want_to_use_it_as_a_template_for_a_new_style,_you_can_copy_the_contents_into_a_new_.jstyle_file
-Default_style_(author-year_citations)=Default_style_(author-year_citations)
-Default_style_(numerical_citations)=Default_style_(numerical_citations)
-No_valid_style_file_defined=No_valid_style_file_defined
-Choose_pattern=Choose_pattern
-Use_the_bib_file_location_as_primary_file_directory=Use_the_bib_file_location_as_primary_file_directory
-Could_not_run_the_gnuclient/emacsclient_program._Make_sure_you_have_the_emacsclient/gnuclient_program_installed_and_available_in_the_PATH.=Could_not_run_the_gnuclient/emacsclient_program._Make_sure_you_have_the_emacsclient/gnuclient_program_installed_and_available_in_the_PATH.
-Built-in_journal_list=Built-in_journal_list
-OpenOffice/LibreOffice_connection=OpenOffice/LibreOffice_connection
-You_can_add_additional_journal_names_by_setting_up_a_personal_journal_list,<br>as_well_as_linking_to_external_journal_lists.=You_can_add_additional_journal_names_by_setting_up_a_personal_journal_list,<br>as_well_as_linking_to_external_journal_lists.
-JabRef_includes_a_built-in_list_of_journal_abbreviations.=JabRef_includes_a_built-in_list_of_journal_abbreviations.
-You_must_select_either_a_valid_style_file,_or_use_one_of_the_default_styles.=You_must_select_either_a_valid_style_file,_or_use_one_of_the_default_styles.
-You_must_select_either_a_valid_style_file,_or_use_a_default_style.=You_must_select_either_a_valid_style_file,_or_use_a_default_style.
-Show=Show
-
-This_is_a_simple_copy_and_paste_dialog._First_load_or_paste_some_text_into_the_text_input_area.<br>After_that,_you_can_mark_text_and_assign_it_to_a_BibTeX_field.=This_is_a_simple_copy_and_paste_dialog._First_load_or_paste_some_text_into_the_text_input_area.<br>After_that,_you_can_mark_text_and_assign_it_to_a_BibTeX_field.
-Java_Bouncy_Castle_library_not_found._Please_download_and_install_it._For_more_information_see_http\://www.bouncycastle.org/.=Java_Bouncy_Castle_library_not_found._Please_download_and_install_it._For_more_information_see_http\://www.bouncycastle.org/.
-This_feature_generates_a_new_database_based_on_which_entries_are_needed_in_an_existing_LaTeX_document.=This_feature_generates_a_new_database_based_on_which_entries_are_needed_in_an_existing_LaTeX_document.
-You_need_to_select_one_of_your_open_databases_from_which_to_choose_entries,_as_well_as_the_AUX_file_produced_by_LaTeX_when_compiling_your_document.=You_need_to_select_one_of_your_open_databases_from_which_to_choose_entries,_as_well_as_the_AUX_file_produced_by_LaTeX_when_compiling_your_document.
-
-First_select_entries_to_clean_up.=First_select_entries_to_clean_up.
-Cleanup_entry=Cleanup_entry
-Autogenerate_PDF_Names=Autogenerate_PDF_Names
-Auto-generating_PDF-Names_does_not_support_undo._Continue?=Auto-generating_PDF-Names_does_not_support_undo._Continue?
-File_rename_failed_for=File_rename_failed_for
-You_have_toggled_the_BibLaTeX_mode.=You_have_toggled_the_BibLaTeX_mode.
-
-Use_full_firstname_whenever_possible=Use_full_firstname_whenever_possible
-Use_abbreviated_firstname_whenever_possible=Use_abbreviated_firstname_whenever_possible
-Use_abbreviated_and_full_firstname=Use_abbreviated_and_full_firstname
-Autocompletion_options=Autocompletion_options
-Autocomplete_after_following_number_of_characters=Autocomplete_after_following_number_of_characters
-Name_format_used_for_autocompletion=Name_format_used_for_autocompletion
-Treatment_of_first_names=Treatment_of_first_names
+Autocomplete_names=\u00c0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e8\u00ec\u00e5\u00ed
+Default_style=\u00d1\u00f2\u00e8\u00eb\u00fc_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe
+Choose_style_file_directly=\u00d3\u00ea\u00e0\u00e6\u00e8\u00f2\u00e5_\u00f4\u00e0\u00e9\u00eb_\u00f1\u00f2\u00e8\u00eb\u00ff_\u00ed\u00e5\u00ef\u00ee\u00f1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e5\u00ed\u00ed\u00ee
+Choose_from_a_directory=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e8\u00e7_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e0_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+No_directory_defined_for_%0-files=\u00cd\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00e4\u00eb\u00ff_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_%0
+Allow_file_links_relative_to_each_bib_file's_location=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e8\u00f2\u00fc_\u00ee\u00f2\u00ed\u00ee\u00f1\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00e4\u00eb\u00ff_\u00f0\u00e0\u00f1\u00ef\u00ee\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00ff_\u00ea\u00e0\u00e6\u00e4\u00ee\u00e3\u00ee_\u00f4\u00e0\u00e9\u00eb\u00e0_BibTeX
+Style_selection=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00f1\u00f2\u00e8\u00eb\u00ff
+The_panel_below_shows_the_definition_of_the_default_style.=\u00c2_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e5\u00e9_\u00ef\u00e0\u00ed\u00e5\u00eb\u00e8_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2\u00f1\u00ff_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00f2\u00e8\u00eb\u00ff_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe.
+If_you_want_to_use_it_as_a_template_for_a_new_style,_you_can_copy_the_contents_into_a_new_.jstyle_file=\u00c4\u00eb\u00ff_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e2_\u00ea\u00e0\u00f7\u00e5\u00f1\u00f2\u00e2\u00e5_\u00f8\u00e0\u00e1\u00eb\u00ee\u00ed\u00e0_\u00e4\u00eb\u00ff_\u00ed\u00ee\u00e2\u00ee\u00e3\u00ee_\u00f1\u00f2\u00e8\u00eb\u00ff,_\u00f1\u00ea\u00ee\u00ef\u00e8\u00f0\u00f3\u00e9\u00f2\u00e5_\u00fd\u00f2\u00ee_\u00f1\u00ee\u00e4\u00e5 [...]
+Default_style_(author-year_citations)=\u00d1\u00f2\u00e8\u00eb\u00fc_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe_(\u00e0\u00e2\u00f2\u00ee\u00f0-\u00e3\u00ee\u00e4_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb)
+Default_style_(numerical_citations)=\u00d1\u00f2\u00e8\u00eb\u00fc_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe_(\u00f7\u00e8\u00f1\u00eb\u00ee\u00e2\u00ee\u00e5_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb)
+No_valid_style_file_defined=\u00cd\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb_\u00f1\u00f2\u00e8\u00eb\u00ff
+Choose_pattern=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00f8\u00e0\u00e1\u00eb\u00ee\u00ed\u00e0
+Use_the_bib_file_location_as_primary_file_directory=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f0\u00e0\u00f1\u00ef\u00ee\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_\u00f4\u00e0\u00e9\u00eb\u00e0_bib_\u00ea\u00e0\u00ea_\u00ee\u00f1\u00ed\u00ee\u00e2\u00ed\u00ee\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Could_not_run_the_gnuclient/emacsclient_program._Make_sure_you_have_the_emacsclient/gnuclient_program_installed_and_available_in_the_PATH.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e7\u00e0\u00ef\u00f3\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_gnuclient/emacsclient._\u00d3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\u00f1\u00fc,_\u00f7\u00f2\u00ee_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_gnuclient/emacsclient_ [...]
+Built-in_journal_list=\u00c2\u00f1\u00f2\u00f0\u00ee\u00e5\u00ed\u00ed\u00fb\u00e9_\u00f1\u00ef\u00e8\u00f1\u00ee\u00ea_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
+OpenOffice/LibreOffice_connection=\u00cf\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ea_OpenOffice/LibreOffice
+You_can_add_additional_journal_names_by_setting_up_a_personal_journal_list,<br>as_well_as_linking_to_external_journal_lists.=\u00c2\u00fb_\u00ec\u00ee\u00e6\u00e5\u00f2\u00e5_\u00e4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_\u00f1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe_\u00ed\u00e0\u00f1\u00f2\u00f0\u00e [...]
+JabRef_includes_a_built-in_list_of_journal_abbreviations.=JabRef_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00f2_\u00e2\u00f1\u00f2\u00f0\u00ee\u00e5\u00ed\u00ed\u00fb\u00e9_\u00f1\u00ef\u00e8\u00f1\u00ee\u00ea_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00e9_\u00e4\u00eb\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
+You_must_select_either_a_valid_style_file,_or_use_one_of_the_default_styles.=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb_\u00f1\u00f2\u00e8\u00eb\u00ff_\u00e8\u00eb\u00e8_\u00ee\u00e4\u00e8\u00ed_\u00e8\u00e7_\u00f1\u00f2\u00e8\u00eb\u00e5\u00e9_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe.
+You_must_select_either_a_valid_style_file,_or_use_a_default_style.=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00e9_\u00f4\u00e0\u00e9\u00eb_\u00f1\u00f2\u00e8\u00eb\u00ff_\u00e8\u00eb\u00e8_\u00f1\u00f2\u00e8\u00eb\u00fc_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe.
+Show=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc
+
+This_is_a_simple_copy_and_paste_dialog._First_load_or_paste_some_text_into_the_text_input_area.<br>After_that,_you_can_mark_text_and_assign_it_to_a_BibTeX_field.=\u00dd\u00f2\u00ee_\u00ef\u00f0\u00ee\u00f1\u00f2\u00ee\u00e5_\u00ee\u00ea\u00ed\u00ee_\u00ea\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff/\u00e2\u00f1\u00f2\u00e0\u00e2\u00ea\u00e8._\u00d1\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00e8\u00f2\u00e5_\u00e8\u00eb\u00e8_\u00e2\u00f1\u0 [...]
+Java_Bouncy_Castle_library_not_found._Please_download_and_install_it._For_more_information_see_http\://www.bouncycastle.org/.=\u00cd\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00e0_\u00e1\u00e8\u00e1\u00eb\u00e8\u00ee\u00f2\u00e5\u00ea\u00e0_Java_Bouncy_Castle._\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00e5_\u00e5\u00e5_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00f3_\u00e8_\u00f3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00ea\u00f3._\u00c4\u00ee\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\ [...]
+This_feature_generates_a_new_database_based_on_which_entries_are_needed_in_an_existing_LaTeX_document.=\u00d1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe_\u00e4\u00e0\u00ed\u00ed\u00ee\u00e9_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00e5\u00f2\u00f1\u00ff_\u00ed\u00ee\u00e2\u00e0\u00ff_\u00c1\u00c4_\u00ed\u00e0_\u00ee\u00f1\u00ed\u00ee\u00e2\u00e5_\u00ee\u00e1\u00ff\u00e7\u00e0\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\ [...]
+You_need_to_select_one_of_your_open_databases_from_which_to_choose_entries,_as_well_as_the_AUX_file_produced_by_LaTeX_when_compiling_your_document.=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00f3\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ee\u00e4\u00ed\u00f3_\u00e8\u00e7_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fb\u00f5_\u00c1\u00c4,_\u00e8\u00e7_\u00ea\u00ee\u00f2\u00ee\u00f0\u00ee\u00e9_\u00e2\u00fb\u00e1\u00e8\u00f0\u00e0\u00fe\u00f2\u00f1\u00ff_\u00e7\u00e0\u00ef\u00 [...]
+
+First_select_entries_to_clean_up.=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00f1\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_\u00e2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e4\u00eb\u00ff_\u00ee\u00f7\u00e8\u00f1\u00f2\u00ea\u00e8.
+Cleanup_entry=\u00ce\u00f7\u00e8\u00f1\u00f2\u00ea\u00e0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Autogenerate_PDF_Names=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e8\u00ec\u00e5\u00ed_PDF
+Auto-generating_PDF-Names_does_not_support_undo._Continue?=\u00ce\u00ef\u00e5\u00f0\u00e0\u00f6\u00e8\u00ff_\u00ee\u00f2\u00ec\u00e5\u00ed\u00fb-\u00ed\u00e5_\u00ef\u00ee\u00e4\u00e4\u00e5\u00f0\u00e6\u00e8\u00e2\u00e0\u00e5\u00f2\u00f1\u00ff_\u00e4\u00eb\u00ff_\u00e0\u00e2\u00f2\u00ee\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00ff_\u00e8\u00ec\u00e5\u00ed_PDF._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+File_rename_failed_for=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_\u00f4\u00e0\u00e9\u00eb\u00e0_\u00e4\u00eb\u00ff
+You_have_toggled_the_BibLaTeX_mode.=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00eb_\u00ef\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00f0\u00e5\u00e6\u00e8\u00ec\u00e0_BibLaTeX.
+
+Use_full_firstname_whenever_possible=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ed\u00ee\u00e5_\u00e8\u00ec\u00ff_(\u00e5\u00f1\u00eb\u00e8_\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee)
+Use_abbreviated_firstname_whenever_possible=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00ed\u00ee\u00e5_\u00e8\u00ec\u00ff_(\u00e5\u00f1\u00eb\u00e8_\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee)
+Use_abbreviated_and_full_firstname=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00ed\u00ee\u00e5_\u00e8_\u00ef\u00ee\u00eb\u00ed\u00ee\u00e5_\u00e8\u00ec\u00ff
+Autocompletion_options=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00e0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00ff
+Autocomplete_after_following_number_of_characters=\u00c0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00f1\u00eb\u00e5_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e5\u00e3\u00ee_\u00f7\u00e8\u00f1\u00eb\u00e0_\u00e7\u00ed\u00e0\u00ea\u00ee\u00e2
+Name_format_used_for_autocompletion=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e8\u00ec\u00e5\u00ed\u00e8_\u00e4\u00eb\u00ff_\u00e0\u00e2\u00f2\u00ee\u00e7\u00e0\u00e2\u00e5\u00f0\u00f8\u00e5\u00ed\u00e8\u00ff
+Treatment_of_first_names=\u00d1\u00ef\u00ee\u00f1\u00ee\u00e1_\u00ee\u00e1\u00f0\u00e0\u00e1\u00ee\u00f2\u00ea\u00e8_\u00e8\u00ec\u00e5\u00ed
 Cleanup_entries=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
-Automatically_assign_new_entry_to_selected_groups=Automatically_assign_new_entry_to_selected_groups
-
-Move_DOIs_from_note_and_URL_field_to_DOI_field_and_remove_http_prefix=Move_DOIs_from_note_and_URL_field_to_DOI_field_and_remove_http_prefix
-Format_content_of_month_field_to_#mon#=Format_content_of_month_field_to_#mon#
-Ensure_that_page_ranges_are_of_the_form_num1--num2=Ensure_that_page_ranges_are_of_the_form_num1--num2
-Make_paths_of_linked_files_relative_(if_possible)=Make_paths_of_linked_files_relative_(if_possible)
-Rename_PDFs_to_given_file_name_format_pattern=Rename_PDFs_to_given_file_name_format_pattern
-Rename_only_PDFs_having_a_relative_path=Rename_only_PDFs_having_a_relative_path
-What_would_you_like_to_clean_up?=What_would_you_like_to_clean_up?
-Doing_a_cleanup_for_%0_entries...=Doing_a_cleanup_for_%0_entries...
-No_entry_needed_a_clean_up=No_entry_needed_a_clean_up
-One_entry_needed_a_clean_up=One_entry_needed_a_clean_up
-%0_entries_needed_a_clean_up=%0_entries_needed_a_clean_up
-Error_importing_from_database=Error_importing_from_database
-%0_databases_will_be_imported=%0_databases_will_be_imported
-Imported_%0_databases_successfully=Imported_%0_databases_successfully
-Minimize_to_system_tray=\u00d1\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00e2_\u00f1\u00e8\u00f1\u00f2\u00e5\u00ec\u00ed\u00fb\u00e9_\u00f2\u00f0\u00e5\u00e9
-
-Error_downloading_file_'%0'=Error_downloading_file_'%0'
-Download_failed=Download_failed
-
-Importing_cancelled=Importing_cancelled
-There_are_no_available_databases_to_be_imported=There_are_no_available_databases_to_be_imported
-Import_from_SQL_database=Import_from_SQL_database
-<_CREATE_NEW_DATABASE_>=<_CREATE_NEW_DATABASE_>
-Remove_Selected=Remove_Selected
-SQL_Database_Exporter=SQL_Database_Exporter
-Select_target_SQL_database\:=Select_target_SQL_database\:
-SQL_Database_Importer=SQL_Database_Importer
-Please_select_which_JabRef_databases_do_you_want_to_import\:=Please_select_which_JabRef_databases_do_you_want_to_import\:
-
-Group_tree_could_not_be_parsed._If_you_save_the_BibTeX_database,_all_groups_will_be_lost.=Group_tree_could_not_be_parsed._If_you_save_the_BibTeX_database,_all_groups_will_be_lost.
-Attach_file=Attach_file
-Setting_all_preferences_to_default_values.=Setting_all_preferences_to_default_values.
-Resetting_preference_key_'%0'=Resetting_preference_key_'%0'
-Unknown_preference_key_'%0'=Unknown_preference_key_'%0'
-Unable_to_clear_preferences.=Unable_to_clear_preferences.
-
-Reset_preferences_(key1,key2,..._or_'all')=Reset_preferences_(key1,key2,..._or_'all')
-Find_unlinked_files=Find_unlinked_files
-Unselect_all=Unselect_All
-Expand_all=Expand_All
-Collapse_all=Collapse_All
-Select_Directory=Select_Directory
-Choose_Directory=Choose_Directory
-Use_the_selected_directory_to_start_with_the_search.=Use_the_selected_directory_to_start_with_the_search.
-Browse...=Browse...
-Opens_the_file_browser.=Opens_the_file_browser.
-Scan_directory=Scan_directory
-Searches_the_selected_directory_for_unlinked_files.=Searches_the_selected_directory_for_unlinked_files.
-Starts_the_import_of_bibtex_entries.=Starts_the_import_of_bibtex_entries.
-Leave_this_dialog.=Leave_this_dialog.
-Create_directory_based_keywords=Create_directory_based_keywords
-Creates_keywords_in_created_entrys_with_directory_pathnames=Creates_keywords_in_created_entrys_with_directory_pathnames
-Select_a_directory_where_the_search_shall_start.=Select_a_directory_where_the_search_shall_start.
-Select_file_type\:=Select_file_type\:
-These_files_are_not_linked_in_the_active_database.=These_files_are_not_linked_in_the_active_database.
-Entry_type_to_be_created\:=Entry_type_to_be_created\:
-Searching_file_system...=Searching_file_system...
-Importing_into_Database...=Importing_into_Database...
-Select_directory=Select_directory
-Select_files=Select_files
-Bibtex_entry_creation=Bibtex_entry_creation
-<No_selection>=<No_selection>
-Push_selection_to_TeXstudio=Push_selection_to_TeXstudio
-Path_to_TeXstudio=Path_to_TeXstudio
-Program_'%0'_not_found=Program_'%0'_not_found
-Pushed_citations_to_TeXstudio=Pushed_citations_to_TeXstudio
-Unable_to_connect_to_freecite_online_service.=Unable_to_connect_to_freecite_online_service.
-Parse_with_FreeCite=Parse_with_FreeCite
-Insert_selected_citations_into_TeXstudio=Insert_selected_citations_into_TeXstudio
-The_current_BibTeX_key_will_be_overwritten._Continue?=The_current_BibTeX_key_will_be_overwritten._Continue?
-Overwrite_key=Overwrite_key
-Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefererences_->_BibTeX_key_generator=Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefererences_->_BibTeX_key_generator
-How_would_you_like_to_link_to_'%0'?=How_would_you_like_to_link_to_'%0'?
-Marked_entries_as_relevant=Marked_entries_as_relevant
-Marked_entries'_quality_as_good=Marked_entries'_quality_as_good
-no_preview_available=no_preview_available
-Enable_PDF_preview=Enable_PDF_preview
-Show_one_letter_heading_for_icon_columns=Show_one_letter_heading_for_icon_columns
-Help_on_special_fields=Help_on_special_fields
-Enable_special_fields=Enable_special_fields
-Show_rank=Show_rank
-Compact_rank=Compact_rank
-Show_quality=Show_quality
-Show_priority=Show_priority
-Show_relevance=Show_relevance
-Synchronize_with_keywords=Synchronize_with_keywords
-Write_values_of_special_fields_as_separate_fields_to_BibTeX=Write_values_of_special_fields_as_separate_fields_to_BibTeX
-You_have_changed_settings_for_special_fields.=You_have_changed_settings_for_special_fields.
-Changed_special_field_settings=Changed_special_field_settings
-Bibtex_key_patterns=Bibtex_key_patterns
-Convert_1st,_2nd,_..._to_real_superscripts=Convert_1st,_2nd,_..._to_real_superscripts
-Manage_content_selectors=Manage_content_selectors
-Dropped_comment_from_database=Dropped_comment_from_database
-Synchronized_special_fields_based_on_keywords=Synchronized_special_fields_based_on_keywords
-Clear_priority=Clear_priority
-No_priority_information=No_priority_information
-Set_priority_to_high=Set_priority_to_high
-Priority_high=Priority_high
-Set_priority_to_medium=Set_priority_to_medium
-Priority_medium=Priority_medium
-Set_priority_to_low=Set_priority_to_low
-Priority_low=Priority_low
-Priority=Priority
-Toogle_quality_assured=Toogle_quality_assured
-Quality=Quality
-Rank=Rank
-Clear_rank=Clear_rank
-No_rank_information=No_rank_information
-Set_rank_to_one_star=Set_rank_to_one_star
-One_star=One_star
-Set_rank_to_two_stars=Set_rank_to_two_stars
-Two_stars=Two_stars
-Set_rank_to_three_stars=Set_rank_to_three_stars
-Three_stars=Three_stars
-Set_rank_to_four_stars=Set_rank_to_four_stars
-Four_stars=Four_stars
-Set_rank_to_five_stars=Set_rank_to_five_stars
-Five_stars=Five_stars
-Toggle_relevance=Toggle_relevance
-Relevance=Relevance
-Manage_keywords=Manage_keywords
-Keywords_of_selected_entries=Keywords_of_selected_entries
-Update_keywords=Update_keywords
-
-Correct_the_entry,_and_reopen_editor_to_display/edit_source.=Correct_the_entry,_and_reopen_editor_to_display/edit_source.
-When_downloading_files,_or_moving_linked_files_to_the_file_directory,_prefer_the_bib_file_location_rather_than_the_file_directory_set_above=When_downloading_files,_or_moving_linked_files_to_the_file_directory,_prefer_the_bib_file_location_rather_than_the_file_directory_set_above
-If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.=If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.
-To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.=To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.
-Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!=Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!
-A_string_with_that_label_already_exists=A_string_with_that_label_already_exists
-Could_not_connect_to_a_running_gnuserv_process._Make_sure_that_Emacs_or_XEmacs_is_running,<BR>and_that_the_server_has_been_started_(by_running_the_command_'server-start'/'gnuserv-start').=Could_not_connect_to_a_running_gnuserv_process._Make_sure_that_Emacs_or_XEmacs_is_running,<BR>and_that_the_server_has_been_started_(by_running_the_command_'server-start'/'gnuserv-start').
-Use_the_following_delimiter_character(s)\:=Use_the_following_delimiter_character(s)\:
-Created_group_"%0".=Created_group_"%0".
-Removed_all_subgroups_of_group_"%0".=Removed_all_subgroups_of_group_"%0".
-%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.=%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.
-Unable_to_connect._One_possible_reason_is_that_JabRef_and_OpenOffice/LibreOffice_are_not_both_running_in_either_32_bit_mode_or_64_bit_mode.=Unable_to_connect._One_possible_reason_is_that_JabRef_and_OpenOffice/LibreOffice_are_not_both_running_in_either_32_bit_mode_or_64_bit_mode.
-Could_not_connect_to_running_OpenOffice.\nMake_sure_you_have_installed_OpenOffice_with_Java_support.\nIf_connecting_manually,_please_verify_program_and_library_paths.\n\nError_message\:_=Could_not_connect_to_running_OpenOffice.\nMake_sure_you_have_installed_OpenOffice_with_Java_support.\nIf_connecting_manually,_please_verify_program_and_library_paths.\n\nError_message\:_
-Not_connected_to_any_Writer_document._Please_make_sure_a_document_is_open,_and_use_the_'Select_Writer_document'_button_to_connect_to_it.=Not_connected_to_any_Writer_document._Please_make_sure_a_document_is_open,_and_use_the_'Select_Writer_document'_button_to_connect_to_it.
-Connection_to_OpenOffice_has_been_lost._Please_make_sure_OpenOffice_is_running,_and_try_to_reconnect.=Connection_to_OpenOffice_has_been_lost._Please_make_sure_OpenOffice_is_running,_and_try_to_reconnect.
-Your_style_file_specifies_the_paragraph_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=Your_style_file_specifies_the_paragraph_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.
-Your_style_file_specifies_the_character_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=Your_style_file_specifies_the_character_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.
-Unable_to_determine_plugin_name_and_version._This_may_not_be_a_valid_JabRef_plugin.=Unable_to_determine_plugin_name_and_version._This_may_not_be_a_valid_JabRef_plugin.
-Import_Metadata_From_PDF=Import_Metadata_From_PDF
-
-Run_HTML_converter_on_title=Run_HTML_converter_on_title
-Searching...=Searching...
-Error_fetching_from_Google_Scholar=Error_fetching_from_Google_Scholar
-You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?
-Confirm_selection=Confirm_selection
-Unknown_DOI\:_'%0'.=Unknown_DOI\:_'%0'.
-Get_BibTeX_entry_from_DOI=Get_BibTeX_entry_from_DOI
-Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text
-Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case
-Import_conversions=Import_conversions
-Run_filter_on_title_keeping_the_case_of_selected_words=Run_filter_on_title_keeping_the_case_of_selected_words
-Intermittent_errors_on_the_IEEE_Xplore_server._Please_try_again_in_a_while.=Intermittent_errors_on_the_IEEE_Xplore_server._Please_try_again_in_a_while.
-Please_enter_a_search_string=Please_enter_a_search_string
-Please_open_or_start_a_new_database_before_searching=Please_open_or_start_a_new_database_before_searching
-Save_entries_ordered_by_title=
-Export_entries_ordered_by_title=
-Quotes=
-Curly_Brackets=
-Include_empty_fields=
-Field_saving_options=
-Field_value_delimiter._E.g.,_"author\={x}"_or_"author\='x'"=
-Run_Unicode_converter_on_title,_author(s),_and_abstract=
-Clear_connection_settings=
-Cleared_connection_settings.=
-Add_brackets_and_replace_separators_with_their_non-breaking_version_for_units=
-Add_new_entry_and_keep_both_old_entries=
-All_key_bindings_will_be_reset_to_their_defaults.=
-An_Error_occurred_while_fetching_from_ADS_(%0)\:=
-An_Error_occurred_while_parsing_abstract=
-Automatically_set_file_links=
-Cancelled_merging_entries=
-Continue?=
-Database_has_changed._Do_you_want_to_save_before_closing?=
-Duplicate_BibTeX_key=
-Error_in_entry=
-Error_while_fetching_from_ADS=
-Error_while_fetching_from_OAI2=
-Expected_syntax_for_--fetch\='<name_of_fetcher>\:<query>'=
-First_entry=
-Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=
-Get_BibTeX_entry_from_DiVA=
-Host=
-ISO_690=
-Invalid_setting=
-Log=
-Merge_entries=
-Merged_entries_into_a_new_and_kept_the_old=
-Merged_entries_into_a_new_and_removed_the_old=
-Merged_entry=
-Network=
-None=
-Parse=
-Please_specify_both_hostname_and_port=
-Port=
-Rebind_C-a,_too=
-Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=
-Replace_old_entries_with_new_entry=
-Resetting_all_key_bindings=
-Result=
-Run_Fetcher,_e.g._"--fetch\=Medline\:cancer"=
-Second_entry=
-Show_DOI_first=
-Show_URL_first=
-Start_field_contents_in_same_column=
-Unknown_DiVA_entry\:_'%0'.=
-Update_timestamp_on_modification=
-Use_1st=
-Use_2nd=
-Use_Emacs_key_bindings=
-Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=
-Use_custom_proxy_configuration=
-You_have_to_choose_exactly_two_entries_to_merge.=
-change_field=
-
-Show_number_of_elements_contained_in_each_group=
-
-Open_folder=
-Opened_%0_folder(s).=
+Automatically_assign_new_entry_to_selected_groups=\u00c0\u00e2\u00f2\u00ee\u00ec\u00e0\u00f2\u00e8\u00f7\u00e5\u00f1\u00ea\u00e8_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e0\u00f2\u00fc_\u00ed\u00ee\u00e2\u00f3\u00fe_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00ec_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0\u00ec
+
+Move_DOIs_from_note_and_URL_field_to_DOI_field_and_remove_http_prefix=\u00cf\u00e5\u00f0\u00e5\u00ec\u00e5\u00f9\u00e0\u00f2\u00fc_DOI_\u00e8\u00e7_\u00ef\u00ee\u00eb\u00ff_\u00ef\u00f0\u00e8\u00ec\u00e5\u00f7\u00e0\u00ed\u00e8\u00ff_\u00e8_URL-\u00e0\u00e4\u00f0\u00e5\u00f1\u00e0_\u00e2_\u00ef\u00ee\u00eb\u00e5_DOI_\u00e8_\u00f3\u00e4\u00e0\u00eb\u00ff\u00f2\u00fc_\u00ef\u00f0\u00e5\u00f4\u00e8\u00ea\u00f1_http
+Format_content_of_month_field_to_#mon#=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e5_\u00ef\u00ee\u00eb\u00ff_\u00cc\u00e5\u00f1\u00ff\u00f6_\u00e2_#mon#
+Ensure_that_page_ranges_are_of_the_form_num1--num2=\u00d3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\u00f1\u00fc,_\u00f7\u00f2\u00ee_\u00e4\u00e8\u00e0\u00ef\u00e0\u00e7\u00ee\u00ed_\u00f1\u00f2\u00f0\u00e0\u00ed\u00e8\u00f6_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed_\u00e2_\u00e2\u00e8\u00e4\u00e5_\u00ed\u00ee\u00ec.1--\u00ed\u00ee\u00ec.2
+Make_paths_of_linked_files_relative_(if_possible)=\u00d1\u00ee\u00e7\u00e4\u00e0\u00e2\u00e0\u00f2\u00fc_\u00ee\u00f2\u00ed\u00ee\u00f1\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00f3\u00f2\u00e8_\u00e4\u00eb\u00ff_\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00ed\u00fb\u00f5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_(\u00e5\u00f1\u00eb\u00e8_\u00e2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee)
+Rename_PDFs_to_given_file_name_format_pattern=\u00cf\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_PDF_\u00e2_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00e8_\u00f1_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed\u00ed\u00fb\u00ec_\u00f8\u00e0\u00e1\u00eb\u00ee\u00ed\u00ee\u00ec_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e0_\u00e8\u00ec\u00e5\u00ed\u00e8
+Rename_only_PDFs_having_a_relative_path=\u00cf\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f2\u00ee\u00eb\u00fc\u00ea\u00ee_PDF_\u00f1_\u00ee\u00f2\u00ed\u00ee\u00f1\u00e8\u00f2\u00e5\u00eb\u00fc\u00ed\u00fb\u00ec\u00e8_\u00ef\u00f3\u00f2\u00ff\u00ec\u00e8
+What_would_you_like_to_clean_up?=\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00ee\u00e1\u00fa\u00e5\u00ea\u00f2\u00fb_\u00e4\u00eb\u00ff_\u00ee\u00f7\u00e8\u00f1\u00f2\u00ea\u00e8.
+Doing_a_cleanup_for_%0_entries...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ee\u00f7\u00e8\u00f1\u00f2\u00ea\u00e0_\u00e4\u00eb\u00ff_%0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9...
+No_entry_needed_a_clean_up=\u00cd\u00e5\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e4\u00eb\u00ff_\u00ee\u00f7\u00e8\u00f1\u00f2\u00ea\u00e8
+One_entry_needed_a_clean_up=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00e0_\u00ee\u00f7\u00e8\u00f1\u00f2\u00ea\u00e0_\u00e4\u00eb\u00ff_\u00ee\u00e4\u00ed\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+%0_entries_needed_a_clean_up=\u00cd\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00e0_\u00ee\u00f7\u00e8\u00f1\u00f2\u00ea\u00e0_\u00e4\u00eb\u00ff_%0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Error_importing_from_database=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_\u00e8\u00e7_\u00c1\u00c4
+%0_databases_will_be_imported=\u00c1\u00e0\u00e7_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e4\u00eb\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0:_%0
+Imported_%0_databases_successfully=\u00d3\u00f1\u00ef\u00e5\u00f8\u00ed\u00ee_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ee_%0_\u00c1\u00c4
+Minimize_to_system_tray=\u00d1\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00e2_\u00ee\u00e1\u00eb\u00e0\u00f1\u00f2\u00fc_\u00f3\u00e2\u00e5\u00e4\u00ee\u00ec\u00eb\u00e5\u00ed\u00e8\u00e9
+
+Error_downloading_file_'%0'=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8_\u00f4\u00e0\u00e9\u00eb\u00e0_'%0'
+Download_failed=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8
+
+Importing_cancelled=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ee\u00f2\u00ec\u00e5\u00ed\u00e5\u00ed
+There_are_no_available_databases_to_be_imported=\u00cd\u00e5\u00f2_\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00ed\u00fb\u00f5_\u00c1\u00c4_\u00e4\u00eb\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
+Import_from_SQL_database=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e8\u00e7_\u00c1\u00c4_SQL
+<_CREATE_NEW_DATABASE_>=<_\u00d1\u00ce\u00c7\u00c4\u00c0\u00d2\u00dc_\u00cd\u00ce\u00c2\u00d3\u00de_\u00c1\u00c4_>
+Remove_Selected=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5
+SQL_Database_Exporter=\u00d1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00e0_\u00c1\u00c4_SQL
+Select_target_SQL_database\:=\u00d3\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f6\u00e5\u00eb\u00e5\u00e2\u00f3\u00fe_\u00c1\u00c4_SQL:
+SQL_Database_Importer=\u00d1\u00f0\u00e5\u00e4\u00f1\u00f2\u00e2\u00e0_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0_\u00c1\u00c4_SQL
+Please_select_which_JabRef_databases_do_you_want_to_import\:=\u00d3\u00ea\u00e0\u00e6\u00e8\u00f2\u00e5_\u00c1\u00c4_JabRef_\u00e4\u00eb\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0:
+
+Group_tree_could_not_be_parsed._If_you_save_the_BibTeX_database,_all_groups_will_be_lost.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00f0\u00ee\u00e0\u00ed\u00e0\u00eb\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e4\u00e5\u00f0\u00e5\u00e2\u00ee_\u00e3\u00f0\u00f3\u00ef\u00ef._\u00cf\u00f0\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e8_\u00c1\u00c4_BibTeX_\u00e2\u00f1\u00e5_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00e1\u00f3\u00e4\u00f3 [...]
+Attach_file=\u00cf\u00f0\u00e8\u00eb\u00ee\u00e6\u00e8\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
+Setting_all_preferences_to_default_values.=\u00c8\u00ed\u00e8\u00f6\u00e8\u00e0\u00eb\u00e8\u00e7\u00e0\u00f6\u00e8\u00ff_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea_\u00ea_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff\u00ec_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe.
+Resetting_preference_key_'%0'=\u00d1\u00e1\u00f0\u00ee\u00f1_\u00ea\u00eb\u00fe\u00f7\u00e0_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea_'%0'
+Unknown_preference_key_'%0'=\u00cd\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00e9_\u00ea\u00eb\u00fe\u00f7_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea_'%0'
+Unable_to_clear_preferences.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ee\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8.
+
+Reset_preferences_(key1,key2,..._or_'all')=\u00d1\u00e1\u00f0\u00ee\u00f1_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00f5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea_(\u00ea\u00eb\u00fe\u00f71,_\u00ea\u00eb\u00fe\u00f72,..._\u00e8\u00eb\u00e8_'\u00e2\u00f1\u00e5')
+Find_unlinked_files=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ed\u00e5\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00ed\u00fb\u00f5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Unselect_all=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00ee\u00f0_\u00e2\u00f1\u00e5\u00f5
+Expand_all=\u00d0\u00e0\u00e7\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00e2\u00f1\u00e5
+Collapse_all=\u00d1\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00e2\u00f1\u00e5
+Select_Directory=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Choose_Directory=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Use_the_selected_directory_to_start_with_the_search.=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e9_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0.
+Browse...=\u00ce\u00e1\u00e7\u00ee\u00f0...
+Opens_the_file_browser.=\u00ce\u00f2\u00ea\u00f0\u00fb\u00e2\u00e0\u00e5\u00f2_\u00ee\u00ea\u00ed\u00ee_\u00ee\u00e1\u00e7\u00ee\u00f0\u00e0_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2.
+Scan_directory=\u00d1\u00ea\u00e0\u00ed\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Searches_the_selected_directory_for_unlinked_files.=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00ed\u00e5\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00ed\u00fb\u00f5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e2_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00ec_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2.
+Starts_the_import_of_bibtex_entries.=\u00cd\u00e0\u00f7\u00e8\u00ed\u00e0\u00e5\u00f2_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_BibTeX.
+Leave_this_dialog.=\u00c2\u00fb\u00e9\u00f2\u00e8_\u00e8\u00e7_\u00e4\u00e8\u00e0\u00eb\u00ee\u00e3\u00ee\u00e2\u00ee\u00e3\u00ee_\u00ee\u00ea\u00ed\u00e0.
+Create_directory_based_keywords=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00e5_\u00f1\u00eb\u00ee\u00e2\u00e0_\u00ed\u00e0_\u00ee\u00f1\u00ed\u00ee\u00e2\u00e5_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e0_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Creates_keywords_in_created_entrys_with_directory_pathnames=\u00d1\u00ee\u00e7\u00e4\u00e0\u00e5\u00f2_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00e5_\u00f1\u00eb\u00ee\u00e2\u00e0_\u00e4\u00eb\u00ff_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00f1_\u00ef\u00f3\u00f2\u00ff\u00ec\u00e8_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3\u00e0_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Select_a_directory_where_the_search_shall_start.=\u00c2\u00fb\u00e1\u00e8\u00f0\u00e0\u00e5\u00f2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e4\u00eb\u00ff_\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0.
+Select_file_type\:=\u00c2\u00fb\u00e1\u00ee\u00f0_\u00f2\u00e8\u00ef\u00e0_\u00f4\u00e0\u00e9\u00eb\u00e0:
+These_files_are_not_linked_in_the_active_database.=\u00dd\u00f2\u00e8_\u00f4\u00e0\u00e9\u00eb\u00fb_\u00ed\u00e5_\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00fb_\u00e2_\u00e0\u00ea\u00f2\u00e8\u00e2\u00ed\u00ee\u00e9_\u00c1\u00c4.
+Entry_type_to_be_created\:=\u00d1\u00ee\u00e7\u00e4\u00e0\u00e2\u00e0\u00e5\u00ec\u00fb\u00e9_\u00f2\u00e8\u00ef_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8:
+Searching_file_system...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea_\u00e2_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2\u00ee\u00e9_\u00f1\u00e8\u00f1\u00f2\u00e5\u00ec\u00e5...
+Importing_into_Database...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e2_\u00c1\u00c4...
+Select_directory=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
+Select_files=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb\u00fb
+Bibtex_entry_creation=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_BibTeX
+<No_selection>=<\u00cd\u00e5_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ee>
+Push_selection_to_TeXstudio=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00e2_TeXstudio
+Path_to_TeXstudio=\u00cf\u00f3\u00f2\u00fc_\u00ea_TeXstudio
+Program_'%0'_not_found=\u00cf\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00e0_'%0'_\u00ed\u00e5_\u00ed\u00e0\u00e9\u00e4\u00e5\u00ed\u00e0
+Pushed_citations_to_TeXstudio=\u00d6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00ef\u00e5\u00f0\u00e5\u00e4\u00e0\u00ed\u00fb_\u00e2_TeXstudio
+Unable_to_connect_to_freecite_online_service.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc\u00f1\u00ff_\u00ea_\u00ee\u00ed-\u00eb\u00e0\u00e9\u00ed_\u00f1\u00eb\u00f3\u00e6\u00e1\u00e5_FreeCite.
+Parse_with_FreeCite=\u00c0\u00ed\u00e0\u00eb\u00e8\u00e7_\u00f1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe_FreeCite
+Insert_selected_citations_into_TeXstudio=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_TeXstudio
+The_current_BibTeX_key_will_be_overwritten._Continue?=\u00d2\u00e5\u00ea\u00f3\u00f9\u00e8\u00e9_\u00ea\u00eb\u00fe\u00f7_BibTeX_\u00e1\u00f3\u00e4\u00e5\u00f2_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00ed._\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+Overwrite_key=\u00cf\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7
+Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefererences_->_BibTeX_key_generator=\u00c1\u00e5\u00e7_\u00ef\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f2\u00e5\u00ea\u00f3\u00f9\u00e5\u00e3\u00ee_\u00ea\u00eb\u00fe\u00f7\u00e0._\u00c4\u00eb\u00ff_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e5\u00ea:_\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_->_\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f [...]
+How_would_you_like_to_link_to_'%0'?=\u00c2\u00fb\u00e1\u00e5\u00f0\u00e8\u00f2\u00e5_\u00f2\u00e8\u00ef_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_\u00e4\u00eb\u00ff_'%0'.
+Marked_entries_as_relevant=\u00cf\u00ee\u00ec\u00e5\u00f2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ea\u00e0\u00ea_\u00e0\u00ea\u00f2\u00f3\u00e0\u00eb\u00fc\u00ed\u00fb\u00e5
+Marked_entries'_quality_as_good=\u00cf\u00ee\u00ec\u00e5\u00f2\u00e8\u00f2\u00fc_\u00ea\u00e0\u00f7\u00e5\u00f1\u00f2\u00e2\u00ee_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ea\u00e0\u00ea_\u00f5\u00ee\u00f0\u00ee\u00f8\u00e5\u00e5
+no_preview_available=\u00ef\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00ed\u00e5\u00e4\u00ee\u00f1\u00f2\u00f3\u00ef\u00e5\u00ed
+Enable_PDF_preview=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_PDF
+Show_one_letter_heading_for_icon_columns=\u00ce\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e0\u00f2\u00fc_\u00ee\u00e4\u00e8\u00ed_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00e3\u00ee\u00eb\u00ee\u00e2\u00ea\u00e0_\u00f1\u00f2\u00ee\u00eb\u00e1\u00f6\u00ee\u00e2_\u00e7\u00ed\u00e0\u00f7\u00ea\u00ee\u00e2
+Help_on_special_fields=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_\u00ef\u00ee_\u00ef\u00ee\u00eb\u00ff\u00ec_\u00ee\u00f1\u00ee\u00e1\u00fb\u00f5_\u00ee\u00f2\u00ec\u00e5\u00f2\u00ee\u00ea
+Enable_special_fields=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e8\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ff_\u00e4\u00eb\u00ff_\u00ee\u00f1\u00ee\u00e1\u00fb\u00f5_\u00ee\u00f2\u00ec\u00e5\u00f2\u00ee\u00ea
+Show_rank=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f0\u00e0\u00ed\u00e3\u00e0
+Compact_rank=\u00d1\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f0\u00e0\u00ed\u00e3\u00e0
+Show_quality=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ea\u00e0\u00f7\u00e5\u00f1\u00f2\u00e2\u00e0
+Show_priority=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2\u00e0
+Show_relevance=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f0\u00e5\u00eb\u00e5\u00e2\u00e0\u00ed\u00f2\u00ed\u00ee\u00f1\u00f2\u00e8
+Synchronize_with_keywords=\u00d1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00ec\u00e8_\u00f1\u00eb\u00ee\u00e2\u00e0\u00ec\u00e8
+Write_values_of_special_fields_as_separate_fields_to_BibTeX=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00ee\u00eb\u00e5\u00e9_\u00ee\u00f1\u00ee\u00e1\u00fb\u00f5_\u00ee\u00f2\u00ec\u00e5\u00f2\u00ee\u00ea_\u00e2_\u00ee\u00f2\u00e4\u00e5\u00eb\u00fc\u00ed\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff_BibTeX
+You_have_changed_settings_for_special_fields.=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ef\u00ee\u00eb\u00e5\u00e9_\u00ee\u00f1\u00ee\u00e1\u00fb\u00f5_\u00ee\u00f2\u00ec\u00e5\u00f2\u00ee\u00ea_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00fb_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00e5\u00ec.
+Changed_special_field_settings=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ef\u00ee\u00eb\u00e5\u00e9_\u00ee\u00f1\u00ee\u00e1\u00fb\u00f5_\u00ee\u00f2\u00ec\u00e5\u00f2\u00ee\u00ea_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00fb
+Bibtex_key_patterns=\u00d8\u00e0\u00e1\u00eb\u00ee\u00ed\u00fb_\u00ea\u00eb\u00fe\u00f7\u00e0_Bibtex
+Convert_1st,_2nd,_..._to_real_superscripts=\u00cf\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_1-\u00e9,_2-\u00e9,_..._\u00e2_\u00ed\u00e0\u00e4\u00f1\u00f2\u00f0\u00ee\u00f7\u00ed\u00fb\u00e5_\u00e7\u00ed\u00e0\u00ea\u00e8
+Manage_content_selectors=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ee\u00ec_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e3\u00ee
+Dropped_comment_from_database=\u00ca\u00ee\u00ec\u00ec\u00e5\u00ed\u00f2\u00e0\u00f0\u00e8,_\u00ee\u00f2\u00e1\u00f0\u00ee\u00f8\u00e5\u00ed\u00ed\u00fb\u00e5_\u00c1\u00c4
+Synchronized_special_fields_based_on_keywords=\u00cf\u00ee\u00eb\u00ff_\u00ee\u00f1\u00ee\u00e1\u00fb\u00f5_\u00ee\u00f2\u00ec\u00e5\u00f2\u00ee\u00ea_\u00f1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00fb_\u00ed\u00e0_\u00ee\u00f1\u00ed\u00ee\u00e2\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00f5_\u00f1\u00eb\u00ee\u00e2
+Clear_priority=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2\u00e0
+No_priority_information=\u00c1\u00e5\u00e7_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00ee_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2\u00e5
+Set_priority_to_high=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00f1\u00ee\u00ea\u00e8\u00e9_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2
+Priority_high=\u00c2\u00fb\u00f1\u00ee\u00ea\u00e8\u00e9_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2
+Set_priority_to_medium=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f1\u00f0\u00e5\u00e4\u00ed\u00e8\u00e9_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2
+Priority_medium=\u00d1\u00f0\u00e5\u00e4\u00ed\u00e8\u00e9_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2
+Set_priority_to_low=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00ed\u00e8\u00e7\u00ea\u00e8\u00e9_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2
+Priority_low=\u00cd\u00e8\u00e7\u00ea\u00e8\u00e9_\u00ef\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2
+Priority=\u00cf\u00f0\u00e8\u00ee\u00f0\u00e8\u00f2\u00e5\u00f2
+Toogle_quality_assured=\u00cf\u00f0\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ef\u00f0\u00ee\u00e2\u00e5\u00f0\u00ea\u00f3_\u00ea\u00ee\u00ed\u00f2\u00f0\u00ee\u00eb\u00ff_\u00ea\u00e0\u00f7\u00e5\u00f1\u00f2\u00e2\u00e0
+Quality=\u00ca\u00e0\u00f7\u00e5\u00f1\u00f2\u00e2\u00ee
+Rank=\u00d0\u00e0\u00ed\u00e3
+Clear_rank=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f0\u00e0\u00ed\u00e3\u00e0
+No_rank_information=\u00c1\u00e5\u00e7_\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00ee_\u00f0\u00e0\u00ed\u00e3\u00e5
+Set_rank_to_one_star=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f0\u00e0\u00ed\u00e3_'\u00ce\u00e4\u00ed\u00e0_\u00e7\u00e2\u00e5\u00e7\u00e4\u00e0'
+One_star=\u00ce\u00e4\u00ed\u00e0_\u00e7\u00e2\u00e5\u00e7\u00e4\u00e0
+Set_rank_to_two_stars=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f0\u00e0\u00ed\u00e3_'\u00c4\u00e2\u00e5_\u00e7\u00e2\u00e5\u00e7\u00e4\u00fb'
+Two_stars=\u00c4\u00e2\u00e5_\u00e7\u00e2\u00e5\u00e7\u00e4\u00fb
+Set_rank_to_three_stars=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f0\u00e0\u00ed\u00e3_'\u00d2\u00f0\u00e8_\u00e7\u00e2\u00e5\u00e7\u00e4\u00fb'
+Three_stars=\u00d2\u00f0\u00e8_\u00e7\u00e2\u00e5\u00e7\u00e4\u00fb
+Set_rank_to_four_stars=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f0\u00e0\u00ed\u00e3_'\u00d7\u00e5\u00f2\u00fb\u00f0\u00e5_\u00e7\u00e2\u00e5\u00e7\u00e4\u00fb'
+Four_stars=\u00d7\u00e5\u00f2\u00fb\u00f0\u00e5_\u00e7\u00e2\u00e5\u00e7\u00e4\u00fb
+Set_rank_to_five_stars=\u00d3\u00f1\u00f2\u00e0\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00f0\u00e0\u00ed\u00e3_'\u00cf\u00ff\u00f2\u00fc_\u00e7\u00e2\u00e5\u00e7\u00e4'
+Five_stars=\u00cf\u00ff\u00f2\u00fc_\u00e7\u00e2\u00e5\u00e7\u00e4
+Toggle_relevance=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f0\u00e5\u00eb\u00e5\u00e2\u00e0\u00ed\u00f2\u00ed\u00ee\u00f1\u00f2\u00fc
+Relevance=\u00d0\u00e5\u00eb\u00e5\u00e2\u00e0\u00ed\u00f2\u00ed\u00ee\u00f1\u00f2\u00fc
+Manage_keywords=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00ec\u00e8_\u00f1\u00eb\u00ee\u00e2\u00e0\u00ec\u00e8
+Keywords_of_selected_entries=\u00ca\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00e5_\u00f1\u00eb\u00ee\u00e2\u00e0_\u00e4\u00eb\u00ff_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Update_keywords=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00e5_\u00f1\u00eb\u00ee\u00e2\u00e0
+
+Correct_the_entry,_and_reopen_editor_to_display/edit_source.=\u00c8\u00f1\u00ef\u00f0\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e8_\u00ef\u00ee\u00e2\u00f2\u00ee\u00f0\u00ed\u00ee_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f0\u00e5\u00e4\u00e0\u00ea\u00f2\u00ee\u00f0_\u00e4\u00eb\u00ff_\u00ee\u00f2\u00ee\u00e1\u00f0\u00e0\u00e6\u00e5\u00ed\u00e8\u00ff/\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00ff_\u00e8\u00f1\u00f5\u00ee\u00e4\u00ed\u00e8\u00ea\u00e0.
+When_downloading_files,_or_moving_linked_files_to_the_file_directory,_prefer_the_bib_file_location_rather_than_the_file_directory_set_above=\u00cf\u00f0\u00e8_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e8\u00eb\u00e8_\u00ef\u00e5\u00f0\u00e5\u00ec\u00e5\u00f9\u00e5\u00ed\u00e8\u00e8_\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00ed\u00fb\u00f5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00ee\u00e3_\u00f4\u00e0\u00e9\ [...]
+If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.=\u00cf\u00e5\u00f0\u00e5\u00e7\u00e0\u00ef\u00e8\u00f1\u00e0\u00f2\u00fc,_\u00e5\u00f1\u00eb\u00e8_\u00ef\u00ee\u00eb\u00e5_\u00e4\u00eb\u00ff_\u00e2\u00f1\u00f2\u00e0\u00e2\u00eb\u00e5\u00ed\u00ed\u00ee\u00e9_\u00e8\u00eb\u00e8_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f3\u00e6\u00e5_\u00e7\u00e0\u00e4\u00e0\u00ed\u00ee.
+To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.=\u00c4\u00eb\u00ff_\u00ee\u00f2\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f0\u00e5\u00e6\u00e8\u00ec\u00e0_\u00f4\u00eb\u00e5\u00f8-\u00ef\u00e0\u00ec\u00ff\u00f2\u00e8_\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00f3\u00e9\u00f2\u00e5_\u00e8\u00eb\u00e8_\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00e5_\u00f4\u00e0\u00e9\u00eb_jabref.xml_\u00e2_\u00ea\u00e0\u00f2\u00e0\u00eb\u00e [...]
+Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!=\u00cf\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_\u00ed\u00e0\u00f5\u00ee\u00e4\u00e8\u00f2\u00f1\u00ff_\u00e2_\u00f1\u00f2\u00e0\u00e4\u00e8\u00e8_\u00e1\u00e5\u00f2\u00e0-\u00e2\u00e5\u00f0\u00f1\u00e8\u00e8._\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e9\u00f2\u00e5_\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00f0\u00e5\u00e7\u00e5\u00f0\u00e2\u00ed\u00fb\u00f5_\u00ea\u00e [...]
+A_string_with_that_label_already_exists=\u00d1\u00f2\u00f0\u00ee\u00ea\u00e0_\u00f1_\u00f2\u00e0\u00ea\u00ee\u00e9_\u00ec\u00e5\u00f2\u00ea\u00ee\u00e9_\u00f3\u00e6\u00e5_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2
+Could_not_connect_to_a_running_gnuserv_process._Make_sure_that_Emacs_or_XEmacs_is_running,<BR>and_that_the_server_has_been_started_(by_running_the_command_'server-start'/'gnuserv-start').=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc\u00f1\u00ff_\u00ea_\u00e7\u00e0\u00ef\u00f3\u00f9\u00e5\u00ed\u00ed\u00ee\u00ec\u00f3_\u00ef\u00f0\u00ee\u00f6\u00e5\u00f1\u00f1\u00f3_gnuserv._\u00d3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\ [...]
+Use_the_following_delimiter_character(s)\:=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00f3\u00e9\u00f2\u00e5_\u00f1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e8\u00e5_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00fb-\u00f0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e8\u00f2\u00e5\u00eb\u00e8:
+Created_group_"%0".=\u00d1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e0_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e0_"%0".
+Removed_all_subgroups_of_group_"%0".=\u00c2\u00f1\u00e5_\u00ef\u00ee\u00e4\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_"%0"_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb.
+%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.=\u00cd\u00e0\u00e9\u00e4\u00e5\u00ed\u00ee_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9:_%0._\u00c4\u00eb\u00ff_\u00f1\u00ed\u00e8\u00e6\u00e5\u00ed\u00e8\u00ff_\u00ed\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8_\u00f1\u00e5\u00f0\u00e2\u00e5\u00f0\u00e0,_\u00e1\u00f3\u00e4\u00e5\u00f2_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e6\u00e5\u00ed\u00ee_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9:_%1.
+Unable_to_connect._One_possible_reason_is_that_JabRef_and_OpenOffice/LibreOffice_are_not_both_running_in_either_32_bit_mode_or_64_bit_mode.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00e2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00e0\u00ff_\u00ef\u00f0\u00e8\u00f7\u00e8\u00ed\u00e0:_JabRef_\u00e8_OpenOffice/LibreOffice_\u00ed\u00e5_\u00e7\u00e0\u00ef\u00f3 [...]
+Could_not_connect_to_running_OpenOffice.\nMake_sure_you_have_installed_OpenOffice_with_Java_support.\nIf_connecting_manually,_please_verify_program_and_library_paths.\n\nError_message\:_=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc\u00f1\u00ff_\u00ea_\u00f0\u00e0\u00e1\u00ee\u00f2\u00e0\u00fe\u00f9\u00e5\u00ec\u00f3_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00fe_OpenOffice.\n\u00d3\u00e1\u00e5\u00e4\u00 [...]
+Not_connected_to_any_Writer_document._Please_make_sure_a_document_is_open,_and_use_the_'Select_Writer_document'_button_to_connect_to_it.=\u00ce\u00f2\u00f1\u00f3\u00f2\u00f1\u00f2\u00e2\u00f3\u00e5\u00f2_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ea_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00f3_Writer._\u00d3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\u00f1\u00fc,_\u00f7\u00f2\u00ee_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2_\u00ee\u00f2\u00ea\u00f0\u0 [...]
+Connection_to_OpenOffice_has_been_lost._Please_make_sure_OpenOffice_is_running,_and_try_to_reconnect.=\u00d1\u00ee\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5_\u00f1_OpenOffice_\u00ef\u00f0\u00e5\u00f0\u00e2\u00e0\u00ed\u00ee._\u00d3\u00e1\u00e5\u00e4\u00e8\u00f2\u00e5\u00f1\u00fc,_\u00f7\u00f2\u00ee_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_OpenOffice_\u00e7\u00e0\u00ef\u00f3\u00f9\u00e5\u00ed\u00ee_\u00e8_\u00ef\u00ee\u00e2\u00f2\u00ee\u00f0\u00e8\u00f2\u00e5_\u0 [...]
+Your_style_file_specifies_the_paragraph_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=\u00c2_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00ee\u00ec_\u00f4\u00e0\u00e9\u00eb\u00e5_\u00f1\u00f2\u00e8\u00eb\u00ff_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e0\u00e1\u00e7\u00e0\u00f6\u00e0_'%0',_\u00ed\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00e9_\u00e2_\u00f2\ [...]
+Your_style_file_specifies_the_character_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=\u00c2_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00ee\u00ec_\u00f4\u00e0\u00e9\u00eb\u00e5_\u00f1\u00f2\u00e8\u00eb\u00ff_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed_\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2_\u00e7\u00ed\u00e0\u00ea\u00e0_'%0',_\u00ed\u00e5_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00e9_\u00e2_\u00f2\u00e5\ [...]
+Unable_to_determine_plugin_name_and_version._This_may_not_be_a_valid_JabRef_plugin.=\u00cd\u00e5_\u00f3\u00e4\u00e0\u00eb\u00ee\u00f1\u00fc_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00e8\u00ec\u00ff_\u00e8_\u00e2\u00e5\u00f0\u00f1\u00e8\u00fe_\u00ec\u00ee\u00e4\u00f3\u00eb\u00ff._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00ee_\u00fd\u00f2\u00ee\u00f2_\u00ec\u00ee\u00e4\u00f3\u00eb\u00fc_\u00ed\u00e5\u00f1\u00ee\u00e2\u00ec\u00e5\u00f1\u00f2\u00e8\u00ec_\u00f1_JabRef.
+Import_Metadata_From_PDF=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e8\u00e7_PDF
+
+Run_HTML_converter_on_title=\u00c7\u00e0\u00ef\u00f3\u00f1\u00ea_\u00ef\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00ff_HTML_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00e3\u00ee\u00eb\u00ee\u00e2\u00ea\u00e0
+Searching...=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00ff\u00e5\u00f2\u00f1\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea...
+Error_fetching_from_Google_Scholar=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_Google_Scholar
+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?=\u00c2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ee_\u00e1\u00ee\u00eb\u00e5\u00e5_%0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e4\u00eb\u00ff_\u00e7\u00e0\u00e3\u00f0\u00f3\u00e7\u00ea\u00e8._\u00c2\u00ee\u00e7\u00ec\u00ee\u00e6\u00ed\u00e0_\u00e1\u00eb\u00ee\u00ea\u00e8\u00f0\u00ee\u00e2\u00ea\u00e0_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00 [...]
+Confirm_selection=\u00cf\u00ee\u00e4\u00f2\u00e2\u00e5\u00f0\u00e4\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00ee\u00f0
+Unknown_DOI\:_'%0'.=\u00cd\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00fb\u00e9_DOI:_'%0'.
+Get_BibTeX_entry_from_DOI=\u00cf\u00ee\u00eb\u00f3\u00f7\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_BibTeX_\u00e8\u00e7_DOI
+Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=\u00cf\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00fb\u00e2\u00e0\u00f2\u00fc_\u00ed\u00e0\u00e4\u00f1\u00f2\u00f0\u00ee\u00f7\u00ed\u00fb\u00e9_\u00e8_\u00ef\u00ee\u00e4\u00f1\u00f2\u00f0\u00ee\u00f7\u00ed\u00fb\u00e9_\u00e8\u00ed\u00e4\u00e5\u00ea\u00f1_\u00e2_\u00f4\u00ee\u00f0\u00ec\u00f3\u00eb\u00f3_\u00e2\u00ec\u00e5\u00f1\u00f2\u00ee_\u00f2\u00e5\u00ea\u00f1\u00f2\u00e0
+Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=\u00c4\u00ee\u00e1\u00e0\u00e2\u00eb\u00ff\u00f2\u00fc_{}_\u00ea_\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed\u00ed\u00fb\u00ec_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u00ed\u00fb\u00ec_\u00f1\u00eb\u00ee\u00e2\u00e0\u00ec_\u00ef\u00f0\u00e8_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e5_\u00e4\u00eb\u00ff_\u00f1\u00ee\u00e1\u00eb\u00fe\u00e4\u00e5\u00ed\u00e8\u00ff_\u00ef\u00f0\u00e0\u00e2\u00e8\u00eb\u00fc\u00ed\u00ee\u00f1\u00f2\u00e8_\u00 [...]
+Import_conversions=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00ef\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e9
+Run_filter_on_title_keeping_the_case_of_selected_words=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0\u00e0\u00f6\u00e8\u00fe_\u00ef\u00ee_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u00e8\u00fe_\u00f1_\u00f3\u00f7\u00e5\u00f2\u00ee\u00ec_\u00f0\u00e5\u00e3\u00e8\u00f1\u00f2\u00f0\u00e0_\u00e2\u00fb\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00f5_\u00f1\u00eb\u00ee\u00e2
+Intermittent_errors_on_the_IEEE_Xplore_server._Please_try_again_in_a_while.=\u00c2\u00f0\u00e5\u00ec\u00e5\u00ed\u00ed\u00fb\u00e9_\u00f1\u00e1\u00ee\u00e9_\u00f1\u00e5\u00f0\u00e2\u00e5\u00f0\u00e0_IEEE_Xplore._\u00cf\u00ee\u00e2\u00f2\u00ee\u00f0\u00e8\u00f2\u00e5_\u00ef\u00ee\u00ef\u00fb\u00f2\u00ea\u00f3_\u00ef\u00ee\u00e7\u00e6\u00e5.
+Please_enter_a_search_string=\u00c2\u00e2\u00e5\u00e4\u00e8\u00f2\u00e5_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3_\u00e4\u00eb\u00ff_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0
+Please_open_or_start_a_new_database_before_searching=\u00c4\u00eb\u00ff_\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_\u00ef\u00ee\u00e8\u00f1\u00ea\u00e0_\u00ee\u00f2\u00ea\u00f0\u00ee\u00e9\u00f2\u00e5_\u00f1\u00f3\u00f9\u00e5\u00f1\u00f2\u00e2\u00f3\u00fe\u00f9\u00f3\u00fe_\u00c1\u00c4_\u00e8\u00eb\u00e8_\u00f1\u00ee\u00e7\u00e4\u00e0\u00e9\u00f2\u00e5_\u00ed\u00ee\u00e2\u00f3\u00fe_\u00c1\u00c4
+An_Error_occurred_while_fetching_from_ADS_(%0)\:=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_\u00e8\u00e7_ADS_(%0):
+Error_while_fetching_from_ADS=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_ADS
+Error_while_fetching_from_OAI2=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e8_OAI2
+An_Error_occurred_while_parsing_abstract=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e0\u00ed\u00e0\u00eb\u00e8\u00e7\u00e0_\u00ea\u00ee\u00ed\u00f1\u00ef\u00e5\u00ea\u00f2\u00e0
+Unknown_DiVA_entry\:_'%0'.=\u00cd\u00e5\u00e8\u00e7\u00e2\u00e5\u00f1\u00f2\u00ed\u00e0\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_DiVA:_'%0'.
+Get_BibTeX_entry_from_DiVA=\u00cf\u00ee\u00eb\u00f3\u00f7\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_BibTeX_\u00e8\u00e7_DiVA
+Log=\u00ce\u00f2\u00f7\u00e5\u00f2
+
+ISO_690=ISO_690
+
+Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=\u00d4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5_\u00e5\u00e4\u00e8\u00ed\u00e8\u00f6_\u00f1_\u00ef\u00ee\u00ec\u00ee\u00f9\u00fc\u00fe_\u00ed\u00e5\u00f0\u00e0\u00e7\u00f0\u00fb\u00e2\u00ed\u00fb\u00f5_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00ee\u00e2-\u00f0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e8\u00f2\u00e5\u00eb\u00e5\u00e9_\u00f1_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u [...]
+Use_Emacs_key_bindings=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8_Emacs
+Merge_entries=\u00ce\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Show_URL_first=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f1\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_URL
+Show_DOI_first=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f1\u00ed\u00e0\u00f7\u00e0\u00eb\u00e0_DOI
+Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=\u00d3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e8\u00e7_\u00f4\u00ee\u00f0\u00ec\u00f3\u00eb_\u00eb\u00e8\u00f8\u00ed\u00e8\u00f5_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00ee\u00e2_$,_{,_}_\u00e8_\u00f0\u00e0\u00e7\u00ec\u00e5\u00f9\u00e5\u00ed\u00e8\u00e5_\u00e2_\u00ed\u00e8\u00f5_\u00ef\u00f0\u00e8\u00eb\u00e5\u00e6\u00e0\u00f9\u00e8\u00f5_\u00f7\u00e8\u00f1\u00e5\u00eb
+Add_brackets_and_replace_separators_with_their_non-breaking_version_for_units=\u00c4\u00ee\u00e1\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f1\u00ea\u00ee\u00e1\u00ee\u00ea_\u00e8_\u00e7\u00e0\u00ec\u00e5\u00ed\u00e0_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00ee\u00e2_\u00f0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e8\u00f2\u00e5\u00eb\u00e5\u00e9_\u00ed\u00e0_\u00ed\u00e5\u00f0\u00e0\u00e7\u00f0\u00fb\u00e2\u00ed\u00fb\u00e5_\u00f1\u00e8\u00ec\u00e2\u00ee\u00eb\u00fb_\u00e4\u00eb\u00ff_\u00e5\u [...]
+First_entry=\u00cf\u00e5\u00f0\u00e2\u00e0\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
+Use_1st=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00e5\u00f0\u00e2\u00f3\u00fe
+None=\u00cd\u00e8_\u00ee\u00e4\u00ed\u00ee\u00e9
+Use_2nd=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e2\u00f2\u00ee\u00f0\u00f3\u00fe
+Second_entry=\u00c2\u00f2\u00ee\u00f0\u00e0\u00ff_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
+You_have_to_choose_exactly_two_entries_to_merge.=\u00c4\u00eb\u00ff_\u00f1\u00eb\u00e8\u00ff\u00ed\u00e8\u00ff_\u00ed\u00e5\u00ee\u00e1\u00f5\u00ee\u00e4\u00e8\u00ec\u00ee_\u00e2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00e3\u00ee_\u00e4\u00e2\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8.
+Merged_entry=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00f1_\u00ee\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec
+Error_in_entry=\u00ce\u00f8\u00e8\u00e1\u00ea\u00e0_\u00e2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Add_new_entry_and_keep_both_old_entries=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00ed\u00ee\u00e2\u00f3\u00fe_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00ee\u00e1\u00e5_\u00f1\u00f2\u00e0\u00f0\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Replace_old_entries_with_new_entry=\u00c7\u00e0\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f2\u00e0\u00f0\u00fb\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00ed\u00e0_\u00ed\u00ee\u00e2\u00f3\u00fe
+Cancelled_merging_entries=\u00d1\u00eb\u00e8\u00ff\u00ed\u00e8\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00ee\u00f2\u00ec\u00e5\u00ed\u00e5\u00ed\u00ee
+Merged_entries_into_a_new_and_kept_the_old=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f1_\u00ee\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec_\u00e2_\u00ed\u00ee\u00e2\u00f3\u00fe_\u00e8_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec_\u00f1\u00f2\u00e0\u00f0\u00ee\u00e9
+Merged_entries_into_a_new_and_removed_the_old=\u00c7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00f1_\u00ee\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5\u00ec_\u00e2_\u00ed\u00ee\u00e2\u00f3\u00fe_\u00e8_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00e8\u00e5\u00ec_\u00f1\u00f2\u00e0\u00f0\u00ee\u00e9
+Parse=\u00c0\u00ed\u00e0\u00eb\u00e8\u00e7
+Result=\u00d0\u00e5\u00e7\u00f3\u00eb\u00fc\u00f2\u00e0\u00f2
+
+Update_timestamp_on_modification=\u00ce\u00e1\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00ec\u00e5\u00f2\u00ea\u00f3_\u00e2\u00f0\u00e5\u00ec\u00e5\u00ed\u00e8_\u00ef\u00f0\u00e8_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e8
+change_field=\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00ff
+
+Automatically_set_file_links=\u00c0\u00e2\u00f2\u00ee\u00f3\u00ea\u00e0\u00e7\u00e0\u00ed\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ee\u00ea_\u00ed\u00e0_\u00f4\u00e0\u00e9\u00eb\u00fb
+All_key_bindings_will_be_reset_to_their_defaults.=\u00c2\u00f1\u00e5_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8_\u00e1\u00f3\u00e4\u00f3\u00f2_\u00f1\u00e1\u00f0\u00ee\u00f8\u00e5\u00ed\u00fb_\u00ea_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff\u00ec_\u00ef\u00ee_\u00f3\u00ec\u00ee\u00eb\u00f7\u00e0\u00ed\u00e8\u00fe.
+Continue?=\u00cf\u00f0\u00ee\u00e4\u00ee\u00eb\u00e6\u00e8\u00f2\u00fc?
+Resetting_all_key_bindings=\u00d1\u00e1\u00f0\u00ee\u00f1_\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e9_\u00f4\u00f3\u00ed\u00ea\u00f6\u00e8\u00ee\u00ed\u00e0\u00eb\u00fc\u00ed\u00fb\u00f5_\u00ea\u00eb\u00e0\u00e2\u00e8\u00f8
+Save_entries_ordered_by_title=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00f1_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00ee\u00e9_\u00ef\u00ee_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u00e8\u00fe
+Export_entries_ordered_by_title=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00f1_\u00f1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00ea\u00ee\u00e9_\u00ef\u00ee_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u00e8\u00fe
+Quotes=\u00ca\u00e0\u00e2\u00fb\u00f7\u00ea\u00e8
+Curly_Brackets=\u00d4\u00e8\u00e3\u00f3\u00f0\u00ed\u00fb\u00e5_\u00f1\u00ea\u00ee\u00e1\u00ea\u00e8
+Include_empty_fields=\u00c2\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00ef\u00f3\u00f1\u00f2\u00fb\u00e5_\u00ef\u00ee\u00eb\u00ff
+Field_saving_options=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00ff_\u00ef\u00ee\u00eb\u00ff
+Field_value_delimiter._E.g.,_"author\={x}"_or_"author\='x'"=\u00d0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e8\u00f2\u00e5\u00eb\u00fc_\u00e4\u00eb\u00ff_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00ee\u00eb\u00ff._\u00cd\u00e0\u00ef\u00f0.,_"author={x}"_or_"author='x'"
+Run_Unicode_converter_on_title,_author(s),_and_abstract=\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e5\u00ee\u00e1\u00f0\u00e0\u00e7\u00ee\u00e2\u00e0\u00ed\u00e8\u00e5_\u00de\u00ed\u00e8\u00ea\u00ee\u00e4\u00e0_\u00e4\u00eb\u00ff_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00e9_\u00e7\u00e0\u00e3\u00eb\u00e0\u00e2\u00e8\u00ff,_\u00e0\u00e2\u00f2\u00ee\u00f0\u00e0_\u00e8_\u00ea\u00ee\u00ed\u00f1\u00ef\u00e5\u00ea\u00f2\u00e0.
+
+Start_field_contents_in_same_column=\u00c7\u00e0\u00ef\u00f3\u00f1\u00ea_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e3\u00ee_\u00ef\u00ee\u00eb\u00ff_\u00e2_\u00f2\u00ee\u00e9_\u00e6\u00e5_\u00ea\u00ee\u00eb\u00ee\u00ed\u00ea\u00e5
+Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ed\u00e0\u00ef\u00e8\u00f1\u00e0\u00ed\u00e8\u00e5_CamelCase_\u00e4\u00eb\u00ff_\u00e8\u00ec\u00e5\u00ed_\u00ef\u00ee\u00eb\u00e5\u00e9_(\u00ed\u00e0\u00ef\u00f0.,_"HowPublished"_\u00e2\u00ec\u00e5\u00f1\u00f2\u00ee_"howpublished")
+Database_has_changed._Do_you_want_to_save_before_closing?=\u00c1\u00c4_\u00e8\u00e7\u00ec\u00e5\u00ed\u00e5\u00ed\u00e0._\u00c2\u00fb\u00ef\u00ee\u00eb\u00ed\u00e8\u00f2\u00fc_\u00f1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e5\u00ed\u00e8\u00e5_\u00ef\u00e5\u00f0\u00e5\u00e4_\u00e7\u00e0\u00ea\u00f0\u00fb\u00f2\u00e8\u00e5\u00ec?
+Use_custom_proxy_configuration=\u00c8\u00f1\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ef\u00f0\u00ee\u00ea\u00f1\u00e8
+Network=\u00d1\u00e5\u00f2\u00fc
+Host=\u00d5\u00ee\u00f1\u00f2
+Port=\u00cf\u00ee\u00f0\u00f2
+Please_specify_both_hostname_and_port=\u00d3\u00ea\u00e0\u00e6\u00e8\u00f2\u00e5_\u00e8\u00ec\u00ff_\u00f5\u00ee\u00f1\u00f2\u00e0_\u00e8_\u00ef\u00ee\u00f0\u00f2
+Invalid_setting=\u00cd\u00e5\u00e4\u00ee\u00ef\u00f3\u00f1\u00f2\u00e8\u00ec\u00fb\u00e5_\u00ef\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb
+Clear_connection_settings=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff
+Cleared_connection_settings.=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8_\u00ef\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00ff_\u00f3\u00e4\u00e0\u00eb\u00e5\u00ed\u00fb.
+
+Rebind_C-a,_too=\u00cf\u00e5\u00f0\u00e5\u00ed\u00e0\u00e7\u00ed\u00e0\u00f7\u00e8\u00f2\u00fc_\u00f2\u00e0\u00ea\u00e6\u00e5_C-a
+
+Show_number_of_elements_contained_in_each_group=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00f7\u00e8\u00f1\u00eb\u00ee_\u00fd\u00eb\u00e5\u00ec\u00e5\u00ed\u00f2\u00ee\u00e2_\u00e2_\u00ea\u00e0\u00e6\u00e4\u00ee\u00e9_\u00e3\u00f0\u00f3\u00ef\u00ef\u00e5
+
+Opened_%0_folder(s).=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00ee_\u00ef\u00e0\u00ef\u00ee\u00ea:_%0.
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_tr.properties b/src/resource/JabRef_tr.properties
index 3b02262..bae2d9d 100644
--- a/src/resource/JabRef_tr.properties
+++ b/src/resource/JabRef_tr.properties
@@ -1236,7 +1236,6 @@ Create_entry_based_on_content=\u0130\u00e7eri\u011fe_ba\u011fl\u0131_olarak_gird
 Do_not_show_this_box_again_for_this_import=Bu_i\u00e7e_aktar\u0131m_i\u00e7in_bu_kutuyu_bir_daha_g\u00f6sterme
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=Her_zaman_bu_PDF_i\u00e7e_aktar\u0131m_stilini_kullan_(ve_her_i\u00e7e_aktar\u0131m_i\u00e7in_sorma)
 Error_creating_email=Eposta_olu\u015fturmada_hata
-Could_not_open_directory=Dizin_a\u00e7\u0131lamad\u0131
 Entries_added_to_an_email=Girdiler_bir_epostaya_eklendi
 exportFormat=d\u0131\u015fa-aktar\u0131mBi\u00e7imi
 Output_file_missing=\u00c7\u0131kt\u0131_dosyas\u0131_kay\u0131p
@@ -1527,58 +1526,60 @@ Get_BibTeX_entry_from_DiVA=BibTeX_girdisini_DIVA'dan_al
 Log=Kay\u0131t
 
 ISO_690=ISO_690
-Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=Birimleri_b\u00f6l\u00fcnemez_ayra\u00e7lar_ekleyerek_ve_aramadaki_b\u00fcy\u00fck_k\u00fc\u00e7\u00fck_harfleri_koruyarak_bi\u00e7imle
-Use_Emacs_key_bindings=Emacs_tu\u015f_ba\u011flant\u0131lar\u0131n\u0131_kullan
-Merge_entries=Girdileri_birle\u015ftir
-Show_URL_first=\u00d6nce_URL'yi_g\u00f6ster
-Show_DOI_first=\u00d6nce_DOI'y\u0131_g\u00f6ster
-Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=Gereksiz_$,_{,_ve_}'lar\u0131_sil_ve_biti\u015fik_numaralar\u0131_denkleme_ta\u015f\u0131
 Add_brackets_and_replace_separators_with_their_non-breaking_version_for_units=K\u00f6\u015feli_parantezler_ekle_ve_ayra\u00e7lar\u0131_birimler_i\u00e7in_b\u00f6l\u00fcnemez_s\u00fcr\u00fcmleriyle_de\u011fi\u015ftir
-First_entry=\u0130lk_girdi
-Use_1st=1._kullan
-None=Hi\u00e7
-Use_2nd=2._kullan
-Second_entry=\u0130kinci_girdi
-You_have_to_choose_exactly_two_entries_to_merge.=Birle\u015ftirmek_i\u00e7in_tam_tam\u0131na_iki_girdi_se\u00e7melisiniz.
-Merged_entry=Birle\u015fmi\u015f_girdi
-Error_in_entry=Girdide_hata
 Add_new_entry_and_keep_both_old_entries=Yeni_girdi_ekle_ve_her_iki_eski_girdiyi_de_koru
-Replace_old_entries_with_new_entry=Eski_girdileri_yenisiyle_de\u011fi\u015ftir
 Cancelled_merging_entries=Girdilerin_birle\u015ftirilmesi_iptal_edildi
+Error_in_entry=Girdide_hata
+First_entry=\u0130lk_girdi
+Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=Birimleri_b\u00f6l\u00fcnemez_ayra\u00e7lar_ekleyerek_ve_aramadaki_b\u00fcy\u00fck_k\u00fc\u00e7\u00fck_harfleri_koruyarak_bi\u00e7imle
+Merge_entries=Girdileri_birle\u015ftir
 Merged_entries_into_a_new_and_kept_the_old=Girdiler_yeni_birine_birle\u015ftirildi_ve_eskiler_korundu
 Merged_entries_into_a_new_and_removed_the_old=Girdiler_yeni_birine_birle\u015ftirildi_ve_eskiler_silindi
+Merged_entry=Birle\u015fmi\u015f_girdi
+None=Hi\u00e7
 Parse=Ayr\u0131\u015ft\u0131r
+Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=Gereksiz_$,_{,_ve_}'lar\u0131_sil_ve_biti\u015fik_numaralar\u0131_denkleme_ta\u015f\u0131
+Replace_old_entries_with_new_entry=Eski_girdileri_yenisiyle_de\u011fi\u015ftir
 Result=Sonu\u00e7
+Second_entry=\u0130kinci_girdi
+Show_DOI_first=\u00d6nce_DOI'y\u0131_g\u00f6ster
+Show_URL_first=\u00d6nce_URL'yi_g\u00f6ster
+Use_1st=1._kullan
+Use_2nd=2._kullan
+Use_Emacs_key_bindings=Emacs_tu\u015f_ba\u011flant\u0131lar\u0131n\u0131_kullan
+You_have_to_choose_exactly_two_entries_to_merge.=Birle\u015ftirmek_i\u00e7in_tam_tam\u0131na_iki_girdi_se\u00e7melisiniz.
 Update_timestamp_on_modification=De\u011fi\u015ftirirken_zaman_damgas\u0131n\u0131_g\u00fcncelle
 change_field=alan\u0131_de\u011fi\u015ftir
 All_key_bindings_will_be_reset_to_their_defaults.=T\u00fcm_tu\u015f_ba\u011flant\u0131lar\u0131_\u00f6ntan\u0131ml\u0131lara_d\u00f6n\u00fc\u015ft\u00fcr\u00fclecek.
 Automatically_set_file_links=Dosya_ba\u011flant\u0131lar\u0131n\u0131_otomatik_olarak_kur
 Continue?=Devam?
 Resetting_all_key_bindings=T\u00fcm_tu\u015f_ba\u011flant\u0131lar\u0131_ba\u015fa_d\u00f6nd\u00fcr\u00fcl\u00fcyor
+Save_entries_ordered_by_title=Girdileri_ba\u015fl\u0131k_s\u0131ras\u0131na_g\u00f6re_kaydet
+Export_entries_ordered_by_title=Girdileri_ba\u015fl\u0131k_s\u0131ras\u0131na_g\u00f6re_d\u0131\u015fa_aktar
+Quotes=T\u0131rnak_i\u015fareti
+Curly_Brackets=K\u00fcme_parantezi
+Include_empty_fields=Bo\u015f_alanlar\u0131_i\u00e7er
+Field_saving_options=Alan_kaydetme_se\u00e7enekleri
+Field_value_delimiter._E.g.,_"author\={x}"_or_"author\='x'"=Alan_de\u011feri_s\u0131n\u0131r_belirteci._\u00d6rnek:_"yazar\={x}"_ya_da_"yazar\='x'"
+Run_Unicode_converter_on_title,_author(s),_and_abstract=Ba\u015fl\u0131k,_yazar(lar),_ve_\u00f6zette_Unikod_d\u00f6n\u00fc\u015ft\u00fcr\u00fcc\u00fc_\u00e7al\u0131\u015ft\u0131r
+Database_has_changed._Do_you_want_to_save_before_closing?=Veri_taban\u0131_de\u011fi\u015fti._Kapatmadan_\u00f6nce_kaydetmek_ister_misiniz?
+Host=Makine
+Invalid_setting=Ge\u00e7ersiz_ayar
+Network=A\u011f
+Please_specify_both_hostname_and_port=L\u00fctfen_hem_makine_ad\u0131n\u0131_hem_de_ba\u011flant\u0131_noktas\u0131n\u0131_belirtin
+Port=Ba\u011flant\u0131_noktas\u0131
+Start_field_contents_in_same_column=Alan_i\u00e7eri\u011fini_ayn\u0131_s\u00fctunda_ba\u015flat
+Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=Alan_adlar\u0131_i\u00e7in_camel_case_kullan_(\u00f6rnek:_"yay\u0131n_\u015fekli"_yerine_"Yay\u0131n\u015eekli")
+Use_custom_proxy_configuration=\u00d6zelle\u015ftirilmi\u015f_vekil_konfig\u00fcrasyonu_kullan
+
 
+Clear_connection_settings=Ba\u011flant\u0131_ayarlar\u0131n\u0131_sil
+Cleared_connection_settings.=Ba\u011flant\u0131_ayarlar\u0131_silindi.
+Rebind_C-a,_too=C-a'y\u0131_da_yeniden_ba\u011fla
 
-Clear_connection_settings=
-Cleared_connection_settings.=
-Curly_Brackets=
-Database_has_changed._Do_you_want_to_save_before_closing?=
-Export_entries_ordered_by_title=
-Field_saving_options=
-Field_value_delimiter._E.g.,_"author\={x}"_or_"author\='x'"=
-Host=
-Include_empty_fields=
-Invalid_setting=
-Network=
-Please_specify_both_hostname_and_port=
-Port=
-Quotes=
-Rebind_C-a,_too=
-Run_Unicode_converter_on_title,_author(s),_and_abstract=
-Save_entries_ordered_by_title=
-Start_field_contents_in_same_column=
-Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=
-Use_custom_proxy_configuration=
+Show_number_of_elements_contained_in_each_group=Her_grubun_i\u00e7erdi\u011fi_\u00f6\u011fe_say\u0131s\u0131n\u0131_g\u00f6ster
 
-Show_number_of_elements_contained_in_each_group=
+Open_folder=Klas\u00f6r\u00fc_a\u00e7
+Opened_%0_folder(s).=%0_klas\u00f6r_a\u00e7\u0131ld\u0131.
 
-Open_folder=
-Opened_%0_folder(s).=
+Searches_for_unlinked_PDF_files_on_the_file_system=Dosya_sisteminde_ba\u011flant\u0131lanmam\u0131\u015f_PDF_dosyalar\u0131n\u0131_arar
diff --git a/src/resource/JabRef_vi.properties b/src/resource/JabRef_vi.properties
index 25aa215..fc1b80f 100644
--- a/src/resource/JabRef_vi.properties
+++ b/src/resource/JabRef_vi.properties
@@ -1957,7 +1957,6 @@ dynamic_group=nh\u00f3m_\u0111\u1ed9ng
 refines_supergroup=tinh_ch\u1ec9nh_l\u1ea1i_nh\u00f3m_l\u1edbn
 includes_subgroups=k\u1ec3_c\u1ea3_c\u00e1c_nh\u00f3m_con
 contains=ch\u1ee9a
-dynamic_group=nh\u00f3m_\u0111\u1ed9ng
 search_expression=bi\u1ec3u_th\u1ee9c_t\u00ecm
 
 Disable_file_renaming_in_non-native_file_dialog=B\u1ea5t_ho\u1ea1t_vi\u1ec7c_\u0111\u1ed5i_t\u00ean_trong_h\u1ed9p_tho\u1ea1i_t\u1eadp_tin_kh\u00f4ng_ph\u1ea3i_thu\u1ed9c_ch\u01b0\u01a1ng_tr\u00ecnh
@@ -2044,7 +2043,6 @@ Create_entry_based_on_content=
 Do_not_show_this_box_again_for_this_import=
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=
 Error_creating_email=
-Could_not_open_directory=
 Entries_added_to_an_email=
 exportFormat=
 Output_file_missing=
@@ -2393,3 +2391,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/JabRef_zh.properties b/src/resource/JabRef_zh.properties
index 9466f58..ef67743 100644
--- a/src/resource/JabRef_zh.properties
+++ b/src/resource/JabRef_zh.properties
@@ -2036,7 +2036,6 @@ Create_entry_based_on_content=
 Do_not_show_this_box_again_for_this_import=
 Always_use_this_PDF_import_style_(and_do_not_ask_for_each_import)=
 Error_creating_email=
-Could_not_open_directory=
 Entries_added_to_an_email=
 exportFormat=
 Output_file_missing=
@@ -2385,3 +2384,5 @@ Show_number_of_elements_contained_in_each_group=
 
 Open_folder=
 Opened_%0_folder(s).=
+
+Searches_for_unlinked_PDF_files_on_the_file_system=
diff --git a/src/resource/Menu_da.properties b/src/resource/Menu_da.properties
index c3f54a7..46f661d 100644
--- a/src/resource/Menu_da.properties
+++ b/src/resource/Menu_da.properties
@@ -128,3 +128,5 @@ Copy_BibTeX_key_and_title=
 Cleanup_entries=
 Manage_keywords=
 Merge_entries=
+Open_folder=
+Find_unlinked_files...=
diff --git a/src/resource/Menu_de.properties b/src/resource/Menu_de.properties
index 05ba70c..80af853 100644
--- a/src/resource/Menu_de.properties
+++ b/src/resource/Menu_de.properties
@@ -85,9 +85,9 @@ Load_session=Sitzung_&laden
 
 Manage_content_selectors=W&ortauswahl_verwalten
 
-Manage_custom_exports=&Verwalte_externe_Exportfilter
+Manage_custom_exports=Externe_Exportfilter_&verwalten
 
-Manage_custom_imports=Verwalte_externe_&Importfilter
+Manage_custom_imports=Externe_&Importfilter_verwalten
 
 Manage_journal_abbreviations=&Abk\u00fcrzungen_der_Zeitschriften_verwalten
 
@@ -228,3 +228,5 @@ Copy_BibTeX_key_and_title=BibTeX-Key_und_Titel_kopieren
 Cleanup_entries=Eintr\u00e4ge_bereinigen
 Manage_keywords=Stichworte_verwalten
 Merge_entries=Eintr\u00e4ge_zusammenf\u00fchren
+Open_folder=Ordner_\u00f6ffnen
+Find_unlinked_files...=Nicht_verlinkte_Dateien_finden...
diff --git a/src/resource/Menu_en.properties b/src/resource/Menu_en.properties
index 8dd3601..856cd6d 100644
--- a/src/resource/Menu_en.properties
+++ b/src/resource/Menu_en.properties
@@ -148,4 +148,6 @@ Copy_BibTeX_key_and_title=Copy_BibTeX_key_and_title
 
 Cleanup_entries=Cleanup_entries
 Manage_keywords=Manage_keywords
-Merge_entries=
+Merge_entries=Merge_entries
+Open_folder=Open_folder
+Find_unlinked_files...=Find_unlinked_files...
diff --git a/src/resource/Menu_es.properties b/src/resource/Menu_es.properties
index 99e3ca5..4d4596f 100644
--- a/src/resource/Menu_es.properties
+++ b/src/resource/Menu_es.properties
@@ -152,3 +152,5 @@ Copy_BibTeX_key_and_title=Copiar_clave_y_t\u00edtulo_BibTex
 Cleanup_entries=Limpiar_entradas
 Manage_keywords=Administrar_palabras_clave
 Merge_entries=Fusionar_entradas
+Open_folder=Abrir_pasta
+Find_unlinked_files...=Buscar_archivos_desenlazados...
diff --git a/src/resource/Menu_fr.properties b/src/resource/Menu_fr.properties
index 04a67ef..5cebe89 100644
--- a/src/resource/Menu_fr.properties
+++ b/src/resource/Menu_fr.properties
@@ -137,3 +137,6 @@ Copy_BibTeX_key_and_title=Copier_la_clef_BibTeX_et_le_titre
 Cleanup_entries=Nettoyage_des_entr\u00e9es
 Manage_keywords=G\u00e9rer_les_mots-clefs
 Merge_entries=Fusionner_les_entr\u00e9es
+Open_folder=Ouvrir_le_r\u00e9pertoire
+
+Find_unlinked_files...=Trouver_les_fichiers_non_li\u00e9s...
diff --git a/src/resource/Menu_in.properties b/src/resource/Menu_in.properties
index 4a04136..210ccd9 100644
--- a/src/resource/Menu_in.properties
+++ b/src/resource/Menu_in.properties
@@ -125,3 +125,5 @@ Copy_BibTeX_key_and_title=
 Cleanup_entries=
 Manage_keywords=
 Merge_entries=
+Open_folder=
+Find_unlinked_files...=
diff --git a/src/resource/Menu_it.properties b/src/resource/Menu_it.properties
index ad8645f..b02a391 100644
--- a/src/resource/Menu_it.properties
+++ b/src/resource/Menu_it.properties
@@ -146,3 +146,5 @@ Copy_BibTeX_key_and_title=Copia_la_chiave_BibTeX_ed_il_titolo
 Cleanup_entries=Pulizia_voci
 Manage_keywords=
 Merge_entries=
+Open_folder=
+Find_unlinked_files...=Trovati_file_non_collegati...
diff --git a/src/resource/Menu_ja.properties b/src/resource/Menu_ja.properties
index 4401f81..58fee0b 100644
--- a/src/resource/Menu_ja.properties
+++ b/src/resource/Menu_ja.properties
@@ -151,3 +151,5 @@ Copy_BibTeX_key_and_title=BibTeX\u9375\u3068\u30bf\u30a4\u30c8\u30eb\u3092\u30b3
 Cleanup_entries=\u9805\u76ee\u3092\u6d88\u53bb
 Manage_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u7ba1\u7406
 Merge_entries=\u9805\u76ee\u3092\u7d71\u5408
+Open_folder=
+Find_unlinked_files...=\u30ea\u30f3\u30af\u3057\u3066\u3044\u306a\u3044\u30d5\u30a1\u30a4\u30eb\u3092\u691c\u7d22
diff --git a/src/resource/Menu_nl.properties b/src/resource/Menu_nl.properties
index fa82ef9..239342a 100644
--- a/src/resource/Menu_nl.properties
+++ b/src/resource/Menu_nl.properties
@@ -235,3 +235,5 @@ Copy_BibTeX_key_and_title=
 Cleanup_entries=
 Manage_keywords=
 Merge_entries=
+Open_folder=
+Find_unlinked_files...=
diff --git a/src/resource/Menu_no.properties b/src/resource/Menu_no.properties
index 90243ab..4640c44 100644
--- a/src/resource/Menu_no.properties
+++ b/src/resource/Menu_no.properties
@@ -147,3 +147,6 @@ Copy_BibTeX_key_and_title=Kopier_BibTeX-n\u00f8kkel_og_tittel
 Cleanup_entries=
 Manage_keywords=
 Merge_entries=
+Open_folder=
+
+Find_unlinked_files...=Finn_filer_som_ikke_er_lenket...
diff --git a/src/resource/Menu_pt_BR.properties b/src/resource/Menu_pt_BR.properties
index f0bcae4..9239cdc 100644
--- a/src/resource/Menu_pt_BR.properties
+++ b/src/resource/Menu_pt_BR.properties
@@ -125,3 +125,5 @@ Copy_BibTeX_key_and_title=Copiar_chave_BibTeX_e_t\u00edtulo
 Cleanup_entries=
 Manage_keywords=
 Merge_entries=
+Open_folder=
+Find_unlinked_files...=
diff --git a/src/resource/Menu_ru.properties b/src/resource/Menu_ru.properties
index 54f79ad..323377f 100644
--- a/src/resource/Menu_ru.properties
+++ b/src/resource/Menu_ru.properties
@@ -1,151 +1,153 @@
 #!
-#! created/edited by Popeye version 0.54 (popeye.sourceforge.net)
-#! encoding:ISO-8859-1
-Abbreviate_journal_names_(ISO)=����������_��������_��������_(ISO)
-Abbreviate_journal_names_(MEDLINE)=����������_��������_��������_(MEDLINE)
-About_JabRef=�_���������_JabRef
-Append_database=��������_��
-Autogenerate_BibTeX_keys=������������_������_BibTeX
-BibTeX=BibTeX
-Close_database=�������_��
-Copy=����������
-Copy_\\cite{BibTeX_key}=����������_\\����������{����_BibTeX}
-Copy_BibTeX_key=����������_����_BibTeX
-Custom_export=����������������_�������
-Custom_importers=Custom_importers
-Customize_entry_types=���������_����_������
-Cut=��������
-Database_properties=��������_��
-Delete=�������
-Edit=��������
+#! created/edited
+#! encoding:Windows-1251
+Abbreviate_journal_names_(ISO)=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_(ISO)
+Abbreviate_journal_names_(MEDLINE)=\u00d1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00e9_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2_(MEDLINE)
+About_JabRef=\u00ce_\u00ef\u00f0\u00ee\u00e3\u00f0\u00e0\u00ec\u00ec\u00e5_JabRef
+Append_database=\u00c4\u00ee\u00e1\u00e0\u00e2\u00e8\u00f2\u00fc_\u00c1\u00c4
+Autogenerate_BibTeX_keys=\u00c0\u00e2\u00f2\u00ee\u00f1\u00ee\u00e7\u00e4\u00e0\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX
+BibTeX=&BibTeX
+Close_database=\u00c7\u00e0\u00ea\u00f0\u00fb\u00f2\u00fc_\u00c1\u00c4
+Copy=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc
+Copy_\\cite{BibTeX_key}=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\\\u00f6\u00e8\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc{\u00ea\u00eb\u00fe\u00f7_BibTeX}
+Copy_BibTeX_key=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7_BibTeX
+Custom_export=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e9_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2
+Custom_importers=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00f4\u00e8\u00eb\u00fc\u00f2\u00f0\u00fb_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00e0
+Customize_entry_types=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e8\u00f2\u00fc_\u00f2\u00e8\u00ef\u00fb_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Cut=\u00c2\u00fb\u00f0\u00e5\u00e7\u00e0\u00f2\u00fc
+Database_properties=\u00d1\u00e2\u00ee\u00e9\u00f1\u00f2\u00e2\u00e0_\u00c1\u00c4
+Delete=\u00d3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc
+Edit=\u00cf\u00f0\u00e0\u00e2\u00ea\u00e0
 # Bibtex
-Edit_entry=��������_������
-Edit_preamble=��������_���������
-Edit_strings=��������_������
-Export=�������
-Export_selected_entries_to_clipboard=�������_���������_�������_�_�����_������
-Fetch_Medline=�������_Medline
+Edit_entry=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
+Edit_preamble=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00ef\u00f0\u00e5\u00e0\u00ec\u00e1\u00f3\u00eb\u00f3
+Edit_strings=\u00c8\u00e7\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00e8
+Export=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2
+Export_selected_entries_to_clipboard=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9_\u00e2_\u00e1\u00f3\u00f4\u00e5\u00f0_\u00ee\u00e1\u00ec\u00e5\u00ed\u00e0
+Fetch_Medline=\u00c2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0_Medline
 
 # Menu names
-File=����
-Find_And_Fix=�����_�_���������
-Find_and_remove_exact_duplicates=�����_�_�������_������_���������
-Find_duplicates=�����_���������
-Help=�������
-Help_contents=����������_�������
-Highlight_groups_matching_all_selected_entries=��������_������_�_�������������_���_����_���������_�������
-Highlight_groups_matching_any_selected_entry=��������_������_�_�������������__���_�����_���������_������
-Incremental_search=���������������_�����
+File=\u00d4\u00e0\u00e9\u00eb
+Find_And_Fix=\u00cd\u00e0\u00e9\u00f2\u00e8_\u00e8_\u00e8\u00f1\u00ef\u00f0\u00e0\u00e2\u00e8\u00f2\u00fc
+Find_and_remove_exact_duplicates=\u00cd\u00e0\u00e9\u00f2\u00e8_\u00e8_\u00f3\u00e4\u00e0\u00eb\u00e8\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ed\u00fb\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb
+Find_duplicates=\u00cd\u00e0\u00e9\u00f2\u00e8_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00fb
+Help=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0
+Help_contents=\u00d1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e0\u00ed\u00e8\u00e5_\u00f1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e8
+Highlight_groups_matching_all_selected_entries=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00e5\u00ec_\u00e4\u00eb\u00ff_\u00e2\u00f1\u00e5\u00f5_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Highlight_groups_matching_any_selected_entry=\u00c2\u00fb\u00e4\u00e5\u00eb\u00e8\u00f2\u00fc_\u00e3\u00f0\u00f3\u00ef\u00ef\u00fb_\u00f1_\u00f1\u00ee\u00ee\u00f2\u00e2\u00e5\u00f2\u00f1\u00f2\u00e2\u00e8\u00e5\u00ec_\u00e4\u00eb\u00ff_\u00eb\u00fe\u00e1\u00ee\u00e9_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e9_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Incremental_search=\u00c8\u00ed\u00ea\u00f0\u00e5\u00ec\u00e5\u00ed\u00f2\u00e0\u00eb\u00fc\u00ed\u00fb\u00e9_\u00ef\u00ee\u00e8\u00f1\u00ea
 
-Insert_selected_citations_into_Emacs=��������_���������_������_�_Emacs
-Insert_selected_citations_into_LatexEditor=��������_���������_������_�_LatexEditor
-Insert_selected_citations_into_LyX/Kile=��������_���������_������_�_LyX/Kile
-Insert_selected_citations_into_WinEdt=��������_���������_������_�_WinEdt
-Integrity_check=��������_�����������
+Insert_selected_citations_into_Emacs=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_Emacs
+Insert_selected_citations_into_LatexEditor=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_LatexEditor
+Insert_selected_citations_into_LyX/Kile=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_&LyX/Kile
+Insert_selected_citations_into_WinEdt=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00e5_\u00f6\u00e8\u00f2\u00e0\u00f2\u00fb_\u00e2_&WinEdt
+Integrity_check=\u00cf\u00f0\u00ee\u00e2\u00e5\u00f0\u00ea\u00e0_\u00f6\u00e5\u00eb\u00ee\u00f1\u00f2\u00ed\u00ee\u00f1\u00f2\u00e8
 # Help
-JabRef_help=�������_JabRef
-Load_session=���������_�����
-Manage_content_selectors=Manage_content_selectors
-Manage_custom_exports=����������_����������������_���������
-Manage_custom_imports=����������_����������������_�������
-Manage_journal_abbreviations=����������_������������_���_��������
-Mark_entries=�����_�������
+JabRef_help=\u00d1\u00ef\u00f0\u00e0\u00e2\u00ea\u00e0_JabRef
+Load_session=\u00c7\u00e0\u00e3\u00f0\u00f3\u00e7\u00e8\u00f2\u00fc_\u00f1\u00e5\u00e0\u00ed\u00f1
+Manage_content_selectors=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00fb\u00e1\u00ee\u00f0\u00ee\u00ec_\u00f1\u00ee\u00e4\u00e5\u00f0\u00e6\u00e8\u00ec\u00ee\u00e3\u00ee
+Manage_custom_exports=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00ec_\u00fd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2\u00ee\u00ec
+Manage_custom_imports=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ef\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00ec_\u00e8\u00ec\u00ef\u00ee\u00f0\u00f2\u00ee\u00ec
+Manage_journal_abbreviations=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00f1\u00ee\u00ea\u00f0\u00e0\u00f9\u00e5\u00ed\u00e8\u00ff\u00ec\u00e8_\u00e4\u00eb\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
+Mark_entries=\u00cc\u00e5\u00f2\u00ea\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 # File menu
-New_database=�������_��
+New_database=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00c1\u00c4
 # Menu BibTeX (BibTeX)
-New_entry=�������_������
-New_entry...=�������_������...
-New_entry_from_plain_text=�������_������_��_������������������_������
-New_subdatabase_based_on_AUX_file=�������_�����������_��_��_������_AUX-�����
+New_entry=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc
+New_entry...=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc...
+New_entry_from_plain_text=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00e8\u00e7_\u00ed\u00e5\u00f4\u00ee\u00f0\u00ec\u00e0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00ed\u00ed\u00ee\u00e3\u00ee_\u00f2\u00e5\u00ea\u00f1\u00f2\u00e0
+New_subdatabase_based_on_AUX_file=\u00d1\u00ee\u00e7\u00e4\u00e0\u00f2\u00fc_\u00ef\u00ee\u00e4\u00f7\u00e8\u00ed\u00e5\u00ed\u00ed\u00f3\u00fe_\u00c1\u00c4_\u00ed\u00e0_\u00ee\u00f1\u00ed\u00ee\u00e2\u00e5_AUX-\u00f4\u00e0\u00e9\u00eb\u00e0
 # View
-Next_tab=���������_�������
-Open_database=�������_��
-Open_PDF_or_PS=�������_PDF_���_PS
-Open_URL_or_DOI=�������_URL-�����_���_DOI
-Options=���������
-Paste=��������
+Next_tab=\u00d1\u00eb\u00e5\u00e4\u00f3\u00fe\u00f9\u00e0\u00ff_\u00e2\u00ea\u00eb\u00e0\u00e4\u00ea\u00e0
+Open_database=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00c1\u00c4
+Open_PDF_or_PS=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_PDF_\u00e8\u00eb\u00e8_PS
+Open_URL_or_DOI=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_URL-\u00e0\u00e4\u00f0\u00e5\u00f1_\u00e8\u00eb\u00e8_DOI
+Options=\u00cf\u00e0\u00f0\u00e0\u00ec\u00e5\u00f2\u00f0\u00fb
+Paste=\u00c2\u00f1\u00f2\u00e0\u00e2\u00e8\u00f2\u00fc
 # Options
-Preferences=���������
-Previous_tab=�������_��������
-Quit=�����
-Recent_files=�������_��������_�����
-Redo=������
-Replace_string=��������_������
-Save_database=���������_��
-Save_database_as_...=���������_��_���...
-Save_selected_as_...=���������_���������_���_...
-Save_session=���������_�����
+Preferences=\u00cf\u00ee\u00eb\u00fc\u00e7\u00ee\u00e2\u00e0\u00f2\u00e5\u00eb\u00fc\u00f1\u00ea\u00e8\u00e5_\u00ed\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e8
+Previous_tab=\u00cf\u00f0\u00e5\u00e4\u00fb\u00e4\u00f3\u00f9\u00e0\u00ff_\u00e2\u00ea\u00eb\u00e0\u00e4\u00ea\u00e0
+Quit=\u00c2\u00fb\u00f5\u00ee\u00e4
+Recent_files=\u00cd\u00e5\u00e4\u00e0\u00e2\u00ed\u00ee_\u00ee\u00f2\u00ea\u00f0\u00fb\u00f2\u00fb\u00e5_\u00f4\u00e0\u00e9\u00eb\u00fb
+Redo=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e0
+Replace_string=\u00c7\u00e0\u00ec\u00e5\u00ed\u00e8\u00f2\u00fc_\u00f1\u00f2\u00f0\u00ee\u00ea\u00f3
+Save_database=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00c1\u00c4
+Save_database_as_...=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00c1\u00c4_\u00ea\u00e0\u00ea...
+Save_selected_as_...=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00ee\u00e5_\u00ea\u00e0\u00ea...
+Save_session=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00f1\u00e5\u00e0\u00ed\u00f1
 # Tools
-Search=�����
-Search_IEEEXplore=�����_IEEEXplore
-Search_ACM_Portal=�����_��_�������_ACM
-Select_all=�������_���
-Set_up_general_fields=���������_�����_�����
-Show_error_console=��������_�������_������
+Search=\u00cf\u00ee\u00e8\u00f1\u00ea
+Search_IEEEXplore=\u00cf\u00ee\u00e8\u00f1\u00ea_IEEEXplore
+Search_ACM_Portal=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ed\u00e0_\u00ef\u00ee\u00f0\u00f2\u00e0\u00eb\u00e5_ACM
+Select_all=\u00c2\u00fb\u00e1\u00f0\u00e0\u00f2\u00fc_\u00e2\u00f1\u00e5
+Set_up_general_fields=\u00cd\u00e0\u00f1\u00f2\u00f0\u00ee\u00e9\u00ea\u00e0_\u00ee\u00e1\u00f9\u00e8\u00f5_\u00ef\u00ee\u00eb\u00e5\u00e9
+Show_error_console=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc_\u00ea\u00ee\u00ed\u00f1\u00ee\u00eb\u00fc_\u00ee\u00f8\u00e8\u00e1\u00ee\u00ea
 
-Sort_tabs=�����������_�������
-Switch_preview_layout=�����������_�����_�������������
-Synchronize_PDF_links=����������������_������_PDF
-Synchronize_PS_links=����������������_������_PS
+Sort_tabs=\u00d1\u00ee\u00f0\u00f2\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00e2\u00ea\u00eb\u00e0\u00e4\u00ea\u00e8
+Switch_preview_layout=\u00cf\u00e5\u00f0\u00e5\u00ea\u00eb\u00fe\u00f7\u00e8\u00f2\u00fc_\u00ec\u00e0\u00ea\u00e5\u00f2_\u00ef\u00f0\u00e5\u00e4\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0\u00e0
+Synchronize_PDF_links=\u00d1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_PDF
+Synchronize_PS_links=\u00d1\u00e8\u00ed\u00f5\u00f0\u00ee\u00ed\u00e8\u00e7\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8_PS
 # Export menu
-Tab-separated_file=�����_�_������������_����������
-Toggle_entry_preview=�����������_��������_������
-Toggle_groups_interface=�����������_���������_�����
-Tools=�����������
-Unabbreviate_journal_names=������_��������_��������
+Tab-separated_file=\u00d4\u00e0\u00e9\u00eb\u00fb_\u00f1_\u00f0\u00e0\u00e7\u00e4\u00e5\u00eb\u00e8\u00f2\u00e5\u00eb\u00e5\u00ec_\u00f2\u00e0\u00e1\u00f3\u00eb\u00ff\u00f6\u00e8\u00e5\u00e9
+Toggle_entry_preview=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ef\u00f0\u00ee\u00f1\u00ec\u00ee\u00f2\u00f0_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Toggle_groups_interface=\u00cf\u00ee\u00ea\u00e0\u00e7\u00e0\u00f2\u00fc/\u00f1\u00ea\u00f0\u00fb\u00f2\u00fc_\u00e8\u00ed\u00f2\u00e5\u00f0\u00f4\u00e5\u00e9\u00f1_\u00e3\u00f0\u00f3\u00ef\u00ef
+Tools=\u00c8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2\u00fb
+Unabbreviate_journal_names=\u00cf\u00ee\u00eb\u00ed\u00fb\u00e5_\u00ed\u00e0\u00e7\u00e2\u00e0\u00ed\u00e8\u00ff_\u00e6\u00f3\u00f0\u00ed\u00e0\u00eb\u00ee\u00e2
 # Edit
-Undo=������
-Mark_specific_color=�����_������������_������
-Unmark_all=�����_���_�����
-Unmark_entries=�����_�����_�������
-View=���
-Web_search=���-�����
-Import_into_new_database=������_�_�����_��
-Import_into_current_database=������_�_�������_��
+Undo=\u00ce\u00f2\u00ec\u00e5\u00ed\u00e0
+Mark_specific_color=\u00cc\u00e5\u00f2\u00ea\u00e0_\u00ee\u00ef\u00f0\u00e5\u00e4\u00e5\u00eb\u00e5\u00ed\u00ed\u00fb\u00ec_\u00f6\u00e2\u00e5\u00f2\u00ee\u00ec
+Unmark_all=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00e2\u00f1\u00e5_\u00ec\u00e5\u00f2\u00ea\u00e8
+Unmark_entries=\u00d1\u00ed\u00ff\u00f2\u00fc_\u00ec\u00e5\u00f2\u00ea\u00e8_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+View=\u00c2\u00e8\u00e4
+Web_search=\u00c2\u00e5\u00e1-\u00ef\u00ee\u00e8\u00f1\u00ea
+Import_into_new_database=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e2_\u00ed\u00ee\u00e2\u00f3\u00fe_\u00c1\u00c4
+Import_into_current_database=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e2_\u00f2\u00e5\u00ea\u00f3\u00f9\u00f3\u00fe_\u00c1\u00c4
 
-Scan_database...=�����������_��...
+Scan_database...=\u00d1\u00ea\u00e0\u00ed\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00c1\u00c4...
 
-Push_entries_to_external_application_(%0)=��������_������_��_�������_����������_(%0)
-Write_XMP-metadata_to_PDFs=������_����������_XMP_�_PDF-����
+Push_entries_to_external_application_(%0)=\u00cf\u00e5\u00f0\u00e5\u00e4\u00e0\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8_\u00e2\u00ee_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e5\u00e5_\u00ef\u00f0\u00e8\u00eb\u00ee\u00e6\u00e5\u00ed\u00e8\u00e5_(%0)
+Write_XMP-metadata_to_PDFs=\u00c7\u00e0\u00ef\u00e8\u00f1\u00fc_\u00ec\u00e5\u00f2\u00e0\u00e4\u00e0\u00ed\u00ed\u00fb\u00f5_XMP_\u00e2_PDF-\u00f4\u00e0\u00e9\u00eb
 
-Set/clear_fields=������/��������_����
+Set/clear_fields=\u00c7\u00e0\u00e4\u00e0\u00f2\u00fc/\u00ee\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e7\u00ed\u00e0\u00f7\u00e5\u00ed\u00e8\u00ff_\u00ef\u00ee\u00eb\u00e5\u00e9
 
-Export_selected_entries=�������_���������_�������
-Fetch_ArXiv.org=�������_ArXiv.org
-Sessions=������
+Export_selected_entries=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e2\u00fb\u00e1\u00f0\u00e0\u00ed\u00ed\u00fb\u00f5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Fetch_ArXiv.org=\u00c2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0_ArXiv.org
+Sessions=\u00d1\u00e5\u00e0\u00ed\u00f1\u00fb
 
-Save_all=���������_���
+Save_all=\u00d1\u00ee\u00f5\u00f0\u00e0\u00ed\u00e8\u00f2\u00fc_\u00e2\u00f1\u00e5
 
-Upgrade_external_links=��������_�������_������
-Manage_external_file_types=����������_��������_������_������
+Upgrade_external_links=\u00ce\u00e1\u00ed\u00ee\u00e2\u00e8\u00f2\u00fc_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00e5_\u00f1\u00f1\u00fb\u00eb\u00ea\u00e8
+Manage_external_file_types=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e8\u00ec\u00e8_\u00f2\u00e8\u00ef\u00e0\u00ec\u00e8_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2
 
-Open_file=�������_����
+Open_file=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00f4\u00e0\u00e9\u00eb
 
-Plugins=������
-Connect_to_external_SQL_database=�����������_�_�������_��_SQL
-Export_to_external_SQL_database=�������_��_�������_��_SQL
-Search_JSTOR=�����_�_JSTOR
-Fetch_SPIRES=�������_SPIRES
-Fetch_INSPIRE=�������_INSPIRE
-Search_Medline=�����_�_Medline
-Import_from_external_SQL_database=������_��_�������_��_SQL
-Focus_entry_table=Focus_entry_table
+Plugins=\u00cc\u00ee\u00e4\u00f3\u00eb\u00e8
+Connect_to_external_SQL_database=\u00cf\u00ee\u00e4\u00ea\u00eb\u00fe\u00f7\u00e5\u00ed\u00e8\u00e5_\u00ea_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e5\u00e9_\u00c1\u00c4_SQL
+Export_to_external_SQL_database=\u00dd\u00ea\u00f1\u00ef\u00ee\u00f0\u00f2_\u00e2\u00ee_\u00e2\u00ed\u00e5\u00f8\u00ed\u00fe\u00fe_\u00c1\u00c4_SQL
+Search_JSTOR=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00e2_JSTOR
+Fetch_SPIRES=\u00c2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0_SPIRES
+Fetch_INSPIRE=\u00c2\u00fb\u00e1\u00ee\u00f0\u00ea\u00e0_INSPIRE
+Search_Medline=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00e2_Medline
+Import_from_external_SQL_database=\u00c8\u00ec\u00ef\u00ee\u00f0\u00f2_\u00e8\u00e7_\u00e2\u00ed\u00e5\u00f8\u00ed\u00e5\u00e9_\u00c1\u00c4_SQL
+Focus_entry_table=\u00cf\u00ee\u00ec\u00e5\u00f1\u00f2\u00e8\u00f2\u00fc_\u00ea\u00f3\u00f0\u00f1\u00ee\u00f0_\u00e2_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00f3_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
 
-Increase_table_font_size=���������_�����_�_�������
-Decrease_table_font_size=���������_�����_�_�������
-Forward=������
-Back=�����
+Increase_table_font_size=\u00d3\u00e2\u00e5\u00eb\u00e8\u00f7\u00e8\u00f2\u00fc_\u00f8\u00f0\u00e8\u00f4\u00f2_\u00e2_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00e5
+Decrease_table_font_size=\u00d3\u00ec\u00e5\u00ed\u00fc\u00f8\u00e8\u00f2\u00fc_\u00f8\u00f0\u00e8\u00f4\u00f2_\u00e2_\u00f2\u00e0\u00e1\u00eb\u00e8\u00f6\u00e5
+Forward=\u00c2\u00ef\u00e5\u00f0\u00e5\u00e4
+Back=\u00cd\u00e0\u00e7\u00e0\u00e4
 
-Manage_plugins=����������_��������
-Look_up_full_text_document=Look_up_full_text_document
-Set/clear/rename_fields=������/��������/�������������_����
+Manage_plugins=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ec\u00ee\u00e4\u00f3\u00eb\u00ff\u00ec\u00e8
+Look_up_full_text_document=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00f6\u00e8\u00f2\u00e8\u00f0\u00f3\u00e5\u00ec\u00ee\u00e3\u00ee_\u00e4\u00ee\u00ea\u00f3\u00ec\u00e5\u00ed\u00f2\u00e0
+Set/clear/rename_fields=\u00c7\u00e0\u00e4\u00e0\u00f2\u00fc/\u00ee\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc/\u00ef\u00e5\u00f0\u00e5\u00e8\u00ec\u00e5\u00ed\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ef\u00ee\u00eb\u00ff
 
-Search_ScienceDirect=�����_ScienceDirect
-Resolve_duplicate_BibTeX_keys=Resolve_duplicate_BibTeX_keys
-Minimize_to_system_tray=��������_�_�������_�����������
-Legacy_tools...=Legacy_tools...
-Copy_BibTeX_key_and_title=����������_����_�_���������_BibTeX
+Search_ScienceDirect=\u00cf\u00ee\u00e8\u00f1\u00ea_ScienceDirect
+Resolve_duplicate_BibTeX_keys=\u00d0\u00e0\u00e7\u00f0\u00e5\u00f8\u00e5\u00ed\u00e8\u00e5_\u00e4\u00f3\u00e1\u00eb\u00e8\u00ea\u00e0\u00f2\u00ee\u00e2_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e9_BibTeX
+Minimize_to_system_tray=\u00d1\u00e2\u00e5\u00f0\u00ed\u00f3\u00f2\u00fc_\u00e2_\u00ee\u00e1\u00eb\u00e0\u00f1\u00f2\u00fc_\u00f3\u00e2\u00e5\u00e4\u00ee\u00ec\u00eb\u00e5\u00ed\u00e8\u00e9
+Legacy_tools...=\u00c8\u00ed\u00f1\u00f2\u00f0\u00f3\u00ec\u00e5\u00ed\u00f2\u00fb_\u00ef\u00f0\u00e5\u00e6\u00ed\u00e8\u00f5_\u00e2\u00e5\u00f0\u00f1\u00e8\u00e9...
+Copy_BibTeX_key_and_title=\u00ca\u00ee\u00ef\u00e8\u00f0\u00ee\u00e2\u00e0\u00f2\u00fc_\u00ea\u00eb\u00fe\u00f7_\u00e8_\u00e7\u00e0\u00e3\u00ee\u00eb\u00ee\u00e2\u00ee\u00ea_BibTeX
 
-Cleanup_entries=��������_������
-Manage_keywords=
-Merge_entries=
+Cleanup_entries=\u00ce\u00f7\u00e8\u00f1\u00f2\u00e8\u00f2\u00fc_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e8
+Manage_keywords=\u00d3\u00ef\u00f0\u00e0\u00e2\u00eb\u00e5\u00ed\u00e8\u00e5_\u00ea\u00eb\u00fe\u00f7\u00e5\u00e2\u00fb\u00ec\u00e8_\u00f1\u00eb\u00ee\u00e2\u00e0\u00ec\u00e8
+Merge_entries=\u00ce\u00e1\u00fa\u00e5\u00e4\u00e8\u00ed\u00e5\u00ed\u00e8\u00e5_\u00e7\u00e0\u00ef\u00e8\u00f1\u00e5\u00e9
+Open_folder=\u00ce\u00f2\u00ea\u00f0\u00fb\u00f2\u00fc_\u00ef\u00e0\u00ef\u00ea\u00f3
+Find_unlinked_files...=\u00cf\u00ee\u00e8\u00f1\u00ea_\u00ed\u00e5\u00f1\u00e2\u00ff\u00e7\u00e0\u00ed\u00ed\u00fb\u00f5_\u00f4\u00e0\u00e9\u00eb\u00ee\u00e2...
diff --git a/src/resource/Menu_tr.properties b/src/resource/Menu_tr.properties
index f6e8d83..71bf814 100644
--- a/src/resource/Menu_tr.properties
+++ b/src/resource/Menu_tr.properties
@@ -127,3 +127,5 @@ Copy_BibTeX_key_and_title=BibTeX_anahtar\u0131_ve_ba\u015fl\u0131\u011f\u0131n\u
 Cleanup_entries=Girdileri_temizle
 Manage_keywords=Anahtar_s\u00f6zc\u00fckleri_y\u00f6net
 Merge_entries=Girdileri_birle\u015ftir
+Open_folder=Klas\u00f6r\u00fc_a\u00e7
+Find_unlinked_files...=Ba\u011flant\u0131lanmam\u0131\u015f_dosyalar\u0131_bul...
diff --git a/src/resource/Menu_vi.properties b/src/resource/Menu_vi.properties
index 1e55998..49d5fc3 100644
--- a/src/resource/Menu_vi.properties
+++ b/src/resource/Menu_vi.properties
@@ -151,3 +151,5 @@ Copy_BibTeX_key_and_title=
 Cleanup_entries=
 Manage_keywords=
 Merge_entries=
+Open_folder=
+Find_unlinked_files...=
diff --git a/src/resource/Menu_zh.properties b/src/resource/Menu_zh.properties
index d01305d..ce21cdb 100644
--- a/src/resource/Menu_zh.properties
+++ b/src/resource/Menu_zh.properties
@@ -149,3 +149,5 @@ Copy_BibTeX_key_and_title=
 
 Cleanup_entries=
 Merge_entries=
+Open_folder=
+Find_unlinked_files...=
diff --git a/src/txt/CHANGELOG b/src/txt/CHANGELOG
index 6d3b871..6383d1a 100644
--- a/src/txt/CHANGELOG
+++ b/src/txt/CHANGELOG
@@ -1,3 +1,9 @@
+[2.10 branch]
+    - Reintroduced right-click on type label in entry editor to change entry type.
+    - Fixed compatibility issue with OpenOffice plugin
+    - Added Russian as language
+    - Fix for bug 1160: Certain DOI references with "<" characters are not processed correctly (by Jonathan Powell)
+    - Fix for bug 1153: Bug in user-specific file paths stored in @comment (by  Thomas Arildsen)
 2.10 beta
     - Applied fix for JStor fetcher (patch 202 by Nicolas Brouard)
     - Added Settings menu item "Clear connection settings" in OpenOffice/LibreOffice panel.
diff --git a/src/txt/README b/src/txt/README
index 2ee09f2..35385b6 100644
--- a/src/txt/README
+++ b/src/txt/README
@@ -1,5 +1,5 @@
-JabRef 2.10 beta
-----------------
+JabRef 2.10 beta 2
+------------------
 
 Introduction:
 
diff --git a/src/windows/nsis/installer_languages/russian.nsh b/src/windows/nsis/installer_languages/russian.nsh
new file mode 100644
index 0000000..a0d9c98
--- /dev/null
+++ b/src/windows/nsis/installer_languages/russian.nsh
@@ -0,0 +1,33 @@
+!ifndef _JabRef_LANGUAGES_RUSSIAN_NSH_
+!define _JabRef_LANGUAGES_RUSSIAN_NSH_
+
+!ifdef JabRef_LANG
+  !undef JabRef_LANG
+!endif
+!define JabRef_LANG ${LANG_RUSSIAN}
+
+LicenseLangString JabRefLicenseData ${JabRef_LANG} "${PRODUCT_LICENSE_FILE}"
+
+LangString WelcomePageText "${JabRef_LANG}" "Вас приветствует мастер установки приложения JabRef!\r\n\
+					     \r\n\
+					     $_CLICK"
+
+LangString SecAssociateBibTitle "${JabRef_LANG}" "Связать с файлами BibTeX"
+LangString SecDesktopTitle "${JabRef_LANG}" "Значок на рабочем столе"
+
+LangString SecAssociateBibDescription "${JabRef_LANG}" "Файлы с расширением .bib будут открываться с помощью приложения JabRef по умолчанию."
+LangString SecDesktopDescription "${JabRef_LANG}" "Поместить значок приложения JabRef на рабочий стол."
+
+LangString StillInstalled "${JabRef_LANG}" "Существует установленный экземпляр приложения JabRef ${Version}!"
+
+LangString FinishPageMessage "${JabRef_LANG}" "Поздравляем! Приложение JabRef успешно установлено."
+LangString FinishPageRun "${JabRef_LANG}" "Запустить JabRef"
+
+LangString UnNotAdminLabel "${JabRef_LANG}" "Для удаления приложения JabRef вы должны иметь права администратора!"
+LangString UnReallyRemoveLabel "${JabRef_LANG}" "Приложение JabRef будет полностью удалено. Продолжить?"
+LangString UnRemoveSuccessLabel "${JabRef_LANG}" "Приложение JabRef успешно удалено."
+
+
+!undef JabRef_LANG
+
+!endif ; _JabRef_LANGUAGES_RUSSIAN_NSH_
diff --git a/src/windows/nsis/setup.nsi b/src/windows/nsis/setup.nsi
index d963e53..e012511 100644
--- a/src/windows/nsis/setup.nsi
+++ b/src/windows/nsis/setup.nsi
@@ -1,7 +1,6 @@
 # owner		JabRef Team
-# license	GPL version 2
-# author	Uwe Stöhr
-# file version	1.0	date	18-01-2007
+# license	GPL version 3
+# author	Uwe Stöhr and others
 
 ; To compile this script NSIS 2.23 and newer are required
 ; http://nsis.sourceforge.net/
@@ -121,12 +120,14 @@ Var InstDestination
 !insertmacro MUI_LANGUAGE "French"
 !insertmacro MUI_LANGUAGE "German"
 !insertmacro MUI_LANGUAGE "Italian"
+!insertmacro MUI_LANGUAGE "Russian"
 !insertmacro MUI_LANGUAGE "Spanish"
 
 !include "installer_languages\english.nsh"
 !include "installer_languages\french.nsh"
 !include "installer_languages\german.nsh"
 !include "installer_languages\italian.nsh"
+!include "installer_languages\russian.nsh"
 !include "installer_languages\spanish.nsh"
 
 
@@ -143,7 +144,7 @@ VIAddVersionKey ProductVersion "${VERSION}"
 VIAddVersionKey CompanyName "${COMPANY}"
 VIAddVersionKey CompanyWebsite "${URL}"
 VIAddVersionKey FileDescription "JabRef installation program"
-VIAddVersionKey LegalCopyright "under the GPL version 2"
+VIAddVersionKey LegalCopyright "under the GPL version 3"
 VIAddVersionKey FileVersion ""
 
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jabref.git



More information about the pkg-java-commits mailing list