[jabref] 423/459: Imported Upstream version 2.10~beta3+ds

gregor herrmann gregoa at debian.org
Thu Sep 15 20:41:33 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 d8c0315dc7738b46d6be8245a670f81e7bd91616
Author: gregor herrmann <gregoa at debian.org>
Date:   Thu Feb 13 17:13:29 2014 +0100

    Imported Upstream version 2.10~beta3+ds
---
 src/java/net/sf/jabref/BibtexEntry.java            |  10 +
 src/java/net/sf/jabref/BibtexEntryType.java        |  18 +-
 src/java/net/sf/jabref/BibtexFields.java           |  13 +
 src/java/net/sf/jabref/Util.java                   |   4 +
 .../net/sf/jabref/export/LatexFieldFormatter.java  |  21 +-
 .../net/sf/jabref/imports/FieldContentParser.java  |  41 +-
 .../sf/jabref/imports/GoogleScholarFetcher.java    |   2 +-
 .../sf/jabref/labelPattern/LabelPatternUtil.java   |   2 +-
 src/java/net/sf/jabref/sql/SQLUtil.java            |   4 +-
 src/resource/JabRef_ja.properties                  | 208 +++++-----
 src/resource/JabRef_pt_BR.properties               | 456 ++++++++++-----------
 src/resource/Menu_ja.properties                    |   8 +-
 src/resource/Menu_pt_BR.properties                 |  14 +-
 src/txt/CHANGELOG                                  |   6 +
 src/windows/nsis/setup.nsi                         |   4 +-
 15 files changed, 436 insertions(+), 375 deletions(-)

diff --git a/src/java/net/sf/jabref/BibtexEntry.java b/src/java/net/sf/jabref/BibtexEntry.java
index a2e3b14..7563b73 100644
--- a/src/java/net/sf/jabref/BibtexEntry.java
+++ b/src/java/net/sf/jabref/BibtexEntry.java
@@ -366,6 +366,16 @@ public class BibtexEntry
         return true;
     }
 
+    protected boolean atLeastOnePresent(String[] fields, BibtexDatabase database) {
+        for (int i = 0; i < fields.length; i++) {
+            String value = BibtexDatabase.getResolvedField(fields[i], this, database);
+            if ((value != null) && value.length()>0) {
+                return true;
+            }
+        }
+        return false;
+    }
+
     private void firePropertyChangedEvent(String fieldName, Object oldValue,
         Object newValue) throws PropertyVetoException
     {
diff --git a/src/java/net/sf/jabref/BibtexEntryType.java b/src/java/net/sf/jabref/BibtexEntryType.java
index 234a799..9d5eb21 100644
--- a/src/java/net/sf/jabref/BibtexEntryType.java
+++ b/src/java/net/sf/jabref/BibtexEntryType.java
@@ -192,10 +192,8 @@ public abstract class BibtexEntryType implements Comparable<BibtexEntryType>
                     {
                         "title", "publisher", "year", "bibtexkey"
                     }, database) &&
-		    (((entry.getField("author") != null) ||
-		      (entry.getField("editor") != null)) &&
-		     ((entry.getField("chapter") != null) ||
-		      (entry.getField("pages") != null)));
+                        entry.atLeastOnePresent(new String[] {"author", "editor"}, database) &&
+                        entry.atLeastOnePresent(new String[] {"chapter", "pages"}, database);
             }
         };
 
@@ -243,8 +241,8 @@ public abstract class BibtexEntryType implements Comparable<BibtexEntryType>
                     {
                         "title", "publisher", "year", "bibtexkey"
                     }, database) &&
-                ((entry.getField("author") != null) ||
-                (entry.getField("editor") != null));
+                        entry.atLeastOnePresent(new String[] {"author", "editor"}, database);
+
             }
         };
 
@@ -675,8 +673,8 @@ public abstract class BibtexEntryType implements Comparable<BibtexEntryType>
                     {
                         "number", "bibtexkey"
                     }, database) &&
-                ((entry.getField("year") != null) ||
-                (entry.getField("yearfiled") != null));
+                        entry.atLeastOnePresent(new String[] {"year", "yearfiled"}, database);
+
             }
         };
 
@@ -720,8 +718,8 @@ public abstract class BibtexEntryType implements Comparable<BibtexEntryType>
                     {
                         "title", "bibtexkey"
                     }, database) &&
-                ((entry.getField("organization") != null) ||
-                (entry.getField("institution") != null));
+                        entry.atLeastOnePresent(new String[] {"organization", "institution"}, database);
+
             }
         };
 
diff --git a/src/java/net/sf/jabref/BibtexFields.java b/src/java/net/sf/jabref/BibtexFields.java
index cc128b9..20a9845 100644
--- a/src/java/net/sf/jabref/BibtexFields.java
+++ b/src/java/net/sf/jabref/BibtexFields.java
@@ -434,6 +434,19 @@ public class BibtexFields
   {
     return runtime.PUBLIC_FIELDS ;
   }
+  
+  /** returns an string-array with only private fieldnames */
+  public static String[] getAllPrivateFieldNames(){
+	  Vector<String> pFields = new Vector<String>() ;
+	  for (BibtexSingleField sField : runtime.fieldSet.values()){
+		  if (sField.isPrivate()) {
+			  pFields.add( sField.getFieldName() );
+		  }
+	  }
+	  return pFields.toArray(new String[pFields.size()]);
+
+ }
+
 
   /** returns the fieldname of the entry at index t */
   public static String getFieldName( int t )
diff --git a/src/java/net/sf/jabref/Util.java b/src/java/net/sf/jabref/Util.java
index b7bc7b1..52d67d0 100644
--- a/src/java/net/sf/jabref/Util.java
+++ b/src/java/net/sf/jabref/Util.java
@@ -288,6 +288,10 @@ public class Util {
 		s = s.substring(beg, end);
 		return s;
 	}
+	
+	public static String rtrim(String s) {
+	    return s.replaceAll("\\s+$","");
+	}
 
 	/**
 	 * This method returns a String similar to the one passed in, except that it
diff --git a/src/java/net/sf/jabref/export/LatexFieldFormatter.java b/src/java/net/sf/jabref/export/LatexFieldFormatter.java
index 5ce5222..98250fb 100644
--- a/src/java/net/sf/jabref/export/LatexFieldFormatter.java
+++ b/src/java/net/sf/jabref/export/LatexFieldFormatter.java
@@ -42,6 +42,13 @@ public class LatexFieldFormatter implements FieldFormatter {
             text = Util.putBracesAroundCapitals(text);
         }
 
+        // normalize newlines
+        if (!text.contains(Globals.NEWLINE) && text.contains("\n")) {
+            // if we don't have real new lines, but pseudo newlines, we replace them
+            // On Win 8.1, this is always true for multiline fields
+            text = text.replaceAll("\n", Globals.NEWLINE);
+        }
+
         // If the field is non-standard, we will just append braces,
         // wrap and write.
         boolean resolveStrings = true;
@@ -83,6 +90,7 @@ public class LatexFieldFormatter implements FieldFormatter {
             //if (Globals.prefs.getBoolean("preserveFieldFormatting"))
             //  sb.append(text);
             //else
+            // currently, we do not do any more wrapping
             //if (!Globals.prefs.isNonWrappableField(fieldName))
             //    sb.append(Util.wrap2(text, GUIGlobals.LINE_LENGTH));
             //else
@@ -116,7 +124,7 @@ public class LatexFieldFormatter implements FieldFormatter {
             }
 
             if (pos1 == -1) {
-                pos1 = text.length(); // No more occurences found.
+                pos1 = text.length(); // No more occurrences found.
                 pos2 = -1;
             } else {
                 pos2 = text.indexOf('#', pos1 + 1);
@@ -136,7 +144,7 @@ public class LatexFieldFormatter implements FieldFormatter {
                 writeText(text, pivot, pos1);
             if ((pos1 < text.length()) && (pos2 - 1 > pos1))
                 // We check that the string label is not empty. That means
-                // an occurence of ## will simply be ignored. Should it instead
+                // an occurrence of ## will simply be ignored. Should it instead
                 // cause an error message?
                 writeStringLabel(text, pos1 + 1, pos2, (pos1 == pivot),
                         (pos2 + 1 == text.length()));
@@ -146,9 +154,12 @@ public class LatexFieldFormatter implements FieldFormatter {
             //if (tell++ > 10) System.exit(0);
         }
 
-        //if (!Globals.prefs.isNonWrappableField(fieldName))
-        //    return Util.wrap2(sb.toString(), GUIGlobals.LINE_LENGTH);
-        //else
+        // currently, we do not add newlines and new formatting
+        //if (!Globals.prefs.isNonWrappableField(fieldName)) {
+            // introduce a line break to be read at the parser
+            // the old code called Util.wrap2(sb.toString(), GUIGlobals.LINE_LENGTH), but that lead to ugly .tex
+            // alternative: return sb.toString().replaceAll(Globals.NEWLINE, Globals.NEWLINE + Globals.NEWLINE);
+        //} else
             return sb.toString();
 
 
diff --git a/src/java/net/sf/jabref/imports/FieldContentParser.java b/src/java/net/sf/jabref/imports/FieldContentParser.java
index 49a6643..f691f9f 100644
--- a/src/java/net/sf/jabref/imports/FieldContentParser.java
+++ b/src/java/net/sf/jabref/imports/FieldContentParser.java
@@ -17,6 +17,7 @@ package net.sf.jabref.imports;
 
 import net.sf.jabref.Globals;
 import net.sf.jabref.GUIGlobals;
+import net.sf.jabref.Util;
 
 
 /**
@@ -59,7 +60,7 @@ public class FieldContentParser {
                 if ((content.length()>i+1) && (content.charAt(i+1)=='\t')
                     && ((content.length()==i+2) || !Character.isWhitespace(content.charAt(i+2)))) {
                     // We have either \n\t followed by non-whitespace, or \n\t at the
-                    // end. Bothe cases indicate a wrap made by JabRef. Remove and insert space if necessary.
+                    // end. Both cases indicate a wrap made by JabRef. Remove and insert space if necessary.
 
                     content.deleteCharAt(i); // \n
                     content.deleteCharAt(i); // \t
@@ -107,16 +108,25 @@ public class FieldContentParser {
                     }
                 }
                 else if ((content.length()>i+1) && (content.charAt(i+1)!='\n')) {
-                    // We have a line break not followed by another line break. This is probably a normal
-                    // line break made by whatever other editor, so we will remove the line break.
-                    content.deleteCharAt(i);
-                    // If the line break is not accompanied by other whitespace we must add a space:
-                    if (!Character.isWhitespace(content.charAt(i)) &&  // No whitespace after?
-                            (i>0) && !Character.isWhitespace(content.charAt(i-1))) // No whitespace before?
-                        content.insert(i, ' ');
+                    // We have a line break not followed by another line break.
+                    // Interpretation before JabRef 2.10:
+                    //   line break made by whatever other editor, so we will remove the line break.
+                    // Current interpretation:
+                    //   keep line break
+                    i++;
+                }
+                else if ((content.length()>i+1) && (content.charAt(i+1)=='\n')) {
+                    // we have a line break followed by another line break.
+                    // This is a linebreak was manually input by the user
+                    // Handling before JabRef 2.10:
+                    //   just delete the additional linebreak
+                    //   content.deleteCharAt(i+1);
+                    // Current interpretation:
+                    //   keep line break
+                    i++;
+                    // do not handle \n again
+                    i++;
                 }
-
-                //else if ((content.length()>i+1) && (content.charAt(i+1)=='\n'))
                 else
                     i++;
                 //content.deleteCharAt(i);
@@ -143,7 +153,11 @@ public class FieldContentParser {
                 i++;
 
         }
-        
+
+        // normalize to linebreaks of the operating system
+        // not necessary as linebreaks are normalized during writing (at LatexFieldFormatter)
+        //content = new StringBuffer(content.toString().replaceAll("\n", Globals.NEWLINE));
+
         return content;
 	}
 
@@ -176,7 +190,10 @@ public class FieldContentParser {
                 res.append('\t');
                 res.append(Globals.NEWLINE);
                 res.append('\t');
-                addWrappedLine(res, lines[i], wrapAmount);
+                String line = lines[i];
+                // remove all whitespace at the end of the string, this especially includes \r created when the field content has \r\n as line separator
+                line = Util.rtrim(line);
+                addWrappedLine(res, line, wrapAmount);
             } else {
                 res.append(Globals.NEWLINE);
                 res.append('\t');
diff --git a/src/java/net/sf/jabref/imports/GoogleScholarFetcher.java b/src/java/net/sf/jabref/imports/GoogleScholarFetcher.java
index be2491e..ddd0458 100644
--- a/src/java/net/sf/jabref/imports/GoogleScholarFetcher.java
+++ b/src/java/net/sf/jabref/imports/GoogleScholarFetcher.java
@@ -42,7 +42,7 @@ public class GoogleScholarFetcher implements PreviewEntryFetcher {
     final static String SEARCH_URL = URL_START+"/scholar?q="+QUERY_MARKER
             +"&hl=en&btnG=Search";
 
-    final static Pattern BIBTEX_LINK_PATTERN = Pattern.compile("<a href=\"([^\"]*)\">[A-Za-z ]*BibTeX");
+    final static Pattern BIBTEX_LINK_PATTERN = Pattern.compile("<a href=\"([^\"]*)\"[^>]*>[A-Za-z ]*BibTeX");
     final static Pattern TITLE_START_PATTERN = Pattern.compile("<div class=\"gs_ri\">");
     final static Pattern LINK_PATTERN = Pattern.compile("<h3 class=\"gs_rt\"><a href=\"([^\"]*)\">");
     final static Pattern TITLE_END_PATTERN = Pattern.compile("<div class=\"gs_fl\">");
diff --git a/src/java/net/sf/jabref/labelPattern/LabelPatternUtil.java b/src/java/net/sf/jabref/labelPattern/LabelPatternUtil.java
index e02eaca..e048b77 100644
--- a/src/java/net/sf/jabref/labelPattern/LabelPatternUtil.java
+++ b/src/java/net/sf/jabref/labelPattern/LabelPatternUtil.java
@@ -827,7 +827,7 @@ public class LabelPatternUtil {
             words++;
         }
 
-        return _sbvalue.toString();
+        return keepLettersAndDigitsOnly(_sbvalue.toString());
     }
 
     static String keepLettersAndDigitsOnly(String in) {
diff --git a/src/java/net/sf/jabref/sql/SQLUtil.java b/src/java/net/sf/jabref/sql/SQLUtil.java
index 7bb146f..0aaead0 100644
--- a/src/java/net/sf/jabref/sql/SQLUtil.java
+++ b/src/java/net/sf/jabref/sql/SQLUtil.java
@@ -27,7 +27,6 @@ import java.util.List;
 import java.util.ListIterator;
 
 import net.sf.jabref.BibtexFields;
-import net.sf.jabref.Globals;
 
 /**
  * 
@@ -62,6 +61,7 @@ public class SQLUtil {
 			allFields.clear();
 		}
 		uniqueInsert(allFields, BibtexFields.getAllFieldNames());
+		uniqueInsert(allFields, BibtexFields.getAllPrivateFieldNames());
 	}
 
 	/**
@@ -108,12 +108,12 @@ public class SQLUtil {
 		if (array != null) {
 			for (int i = 0; i < array.length; i++) {
 				if (!list.contains(array[i]))
+					if (!array[i].equals("#"))
 					list.add(array[i]);
 			}
 		}
 		return list;
 	}
-
 	/**
 	 * Generates DML specifying table columns and their datatypes. The output of
 	 * this routine should be used within a CREATE TABLE statement.
diff --git a/src/resource/JabRef_ja.properties b/src/resource/JabRef_ja.properties
index 6530768..d2b86fa 100644
--- a/src/resource/JabRef_ja.properties
+++ b/src/resource/JabRef_ja.properties
@@ -1831,6 +1831,8 @@ Legacy_file_fields=\u5ec3\u6b62\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u30d5\
 
 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.=\u3053\u308c\u3092\u6709\u52b9\u306b\u3059\u308b\u3068\u3001JabRef\u306f\u5404%0\u62e1\u5f35\u5b50\u3092\u8abf\u3079\u3001\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u78ba\u8a8d\u3057\u307e\u3059\u3002<BR>\u3082\u3057\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u3001\u554f\u984c\u3092\u89e3\u6c7a\u3059\u308b\u9078\u629e\u8 [...]
 
+Run_Fetcher,_e.g._"--fetch\=Medline\:cancer"=\u53d6\u5f97\u5b50\u3092\u5b9f\u884c\u3059\u308b\u3002\u4f8b\uff1a\u300c--fetch\=Medline\:cancer\u300d
+
 The_ACM_Digital_Library=ACM\u30c7\u30b8\u30bf\u30eb\u30e9\u30a4\u30d6\u30e9\u30ea
 Reset=\u30ea\u30bb\u30c3\u30c8
 
@@ -1953,9 +1955,9 @@ Move_file_to_file_directory.=\u30d5\u30a1\u30a4\u30eb\u3092\u30d5\u30a1\u30a4\u3
 Rename_file_to=\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u4ee5\u4e0b\u306b\u6539\u540d:
 <b>All_Entries</b>_(this_group_cannot_be_edited_or_removed)=<b>\u5168\u9805\u76ee</b>\uff08\u3053\u306e\u30b0\u30eb\u30fc\u30d7\u306f\u7de8\u96c6\u3057\u305f\u308a\u524a\u9664\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\uff09
 static_group=\u9759\u7684\u30b0\u30eb\u30fc\u30d7
-includes_subgroups=\u4e0b\u5c64\u30b0\u30eb\u30fc\u30d7\u3092\u542b\u3080
-refines_supergroup=\u4e0a\u5c64\u30b0\u30eb\u30fc\u30d7\u3092\u7d5e\u308a\u8fbc\u3080
 dynamic_group=\u52d5\u7684\u30b0\u30eb\u30fc\u30d7
+refines_supergroup=\u4e0a\u5c64\u30b0\u30eb\u30fc\u30d7\u3092\u7d5e\u308a\u8fbc\u3080
+includes_subgroups=\u4e0b\u5c64\u30b0\u30eb\u30fc\u30d7\u3092\u542b\u3080
 contains=contains
 search_expression=\u691c\u7d22\u8868\u73fe:
 
@@ -1977,6 +1979,7 @@ Finished_resolving_duplicate_BibTeX_keys._%0_entries_modified.=\u91cd\u8907\u305
 This_database_contains_one_or_more_duplicated_BibTeX_keys.=\u3053\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u30011\u3064\u306a\u3044\u3057\u8907\u6570\u306e\u91cd\u8907\u3057\u305fBibTeX\u9375\u304c\u3042\u308a\u307e\u3059\u3002
 Do_you_want_to_resolve_duplicate_keys_now?=\u91cd\u8907\u3057\u305f\u9375\u3092\u76f4\u3061\u306b\u89e3\u6d88\u3057\u307e\u3059\u304b\uff1f
 Find_and_remove_duplicate_BibTeX_keys=\u91cd\u8907BibTeX\u9375\u3092\u691c\u51fa\u3057\u3066\u524a\u9664
+Expected_syntax_for_--fetch\='<name_of_fetcher>\:<query>'=--fetch='<\u53d6\u5f97\u5b50\u540d>:<\u554f\u3044\u5408\u308f\u305b>'\u306b\u671f\u5f85\u3055\u308c\u308b\u6587\u6cd5
 Duplicate_BibTeX_key=\u91cd\u8907\u3057\u305fBibTeX\u9375
 Duplicate_key=\u91cd\u8907\u9375
 Generate_key=\u9375\u3092\u751f\u6210
@@ -2179,16 +2182,16 @@ No_entry_needed_a_clean_up=\u6d88\u53bb\u306e\u5fc5\u8981\u304c\u3042\u308b\u980
 One_entry_needed_a_clean_up=1\u3064\u306e\u9805\u76ee\u3092\u6d88\u53bb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3057\u305f
 %0_entries_needed_a_clean_up=%0\u500b\u306e\u9805\u76ee\u3092\u6d88\u53bb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3057\u305f
 Error_importing_from_database=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u8aad\u307f\u8fbc\u307f\u6642\u306b\u30a8\u30e9\u30fc\u767a\u751f
-
-%0_databases_will_be_imported=%0\u500b\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u8aad\u307f\u8fbc\u307e\u308c\u307e\u3059
-Imported_%0_databases_successfully=%0\u500b\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u7121\u4e8b\u8aad\u307f\u8fbc\u307e\u308c\u307e\u3057\u305f
 Minimize_to_system_tray=\u30b7\u30b9\u30c6\u30e0\u30c8\u30ec\u30a4\u306b\u6700\u5c0f\u5316
 
 Error_downloading_file_'%0'=\u30d5\u30a1\u30a4\u30eb\u300c%0\u300d\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u969b\u306b\u30a8\u30e9\u30fc\u767a\u751f
 Download_failed=\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u306b\u5931\u6557\u3057\u307e\u3057\u305f
+
+%0_databases_will_be_imported=%0\u500b\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u8aad\u307f\u8fbc\u307e\u308c\u307e\u3059
 Importing_cancelled=\u8aad\u307f\u8fbc\u307f\u3092\u53d6\u308a\u6d88\u3057\u307e\u3057\u305f
 There_are_no_available_databases_to_be_imported=\u8aad\u307f\u8fbc\u3080\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u3042\u308a\u307e\u305b\u3093
 Import_from_SQL_database=SQL\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u3089\u8aad\u307f\u8fbc\u307f
+Imported_%0_databases_successfully=%0\u500b\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u7121\u4e8b\u8aad\u307f\u8fbc\u307e\u308c\u307e\u3057\u305f
 <_CREATE_NEW_DATABASE_>=\uff1c\u65b0\u898f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\uff1e
 Remove_Selected=\u9078\u629e\u5206\u3092\u524a\u9664
 SQL_Database_Exporter=SQL\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u66f8\u304d\u51fa\u3057
@@ -2241,80 +2244,80 @@ The_current_BibTeX_key_will_be_overwritten._Continue?=\u73fe\u5728\u306eBibTeX\u
 Overwrite_key=\u9375\u3092\u4e0a\u66f8\u304d
 Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefererences_->_BibTeX_key_generator=\u65e2\u5b58\u306e\u9375\u3092\u4e0a\u66f8\u304d\u3057\u307e\u305b\u3093\u3002\u3053\u306e\u8a2d\u5b9a\u3092\u5909\u66f4\u3059\u308b\u306b\u306f\u3001\u30aa\u30d7\u30b7\u30e7\u30f3\u2192\u8a2d\u5b9a\u2192BibTeX\u30ad\u30fc\u306e\u751f\u6210\u3092\u958b\u3044\u3066\u304f\u3060\u3055\u3044
 How_would_you_like_to_link_to_'%0'?=\u300c%0\u300d\u3078\u306e\u30ea\u30f3\u30af\u3092\u3069\u3046\u3057\u307e\u3059\u304b\uff1f
-Marked_entries_as_relevant=\u9805\u76ee\u3092\u95a2\u9023\u6027\u304c\u3042\u308b\u3082\u306e\u3068\u3057\u3066\u6a19\u8b58\u4ed8\u3051\u3057\u307e\u3057\u305f
-Marked_entries'_quality_as_good=\u9805\u76ee\u306e\u54c1\u8cea\u3092\u826f\u597d\u3068\u3057\u3066\u6a19\u8b58\u4ed8\u3051\u3057\u307e\u3057\u305f
-no_preview_available=\u30d7\u30ec\u30d3\u30e5\u30fc\u304c\u3042\u308a\u307e\u305b\u3093
-Enable_PDF_preview=PDF\u30d7\u30ec\u30d3\u30e5\u30fc\u3092\u6709\u52b9\u306b\u3059\u308b
-Show_one_letter_heading_for_icon_columns=\u30a2\u30a4\u30b3\u30f3\u5217\u306e\u898b\u51fa\u3057\u306b1\u6587\u5b57\u4ed8\u3051\u52a0\u3048\u308b
-Help_on_special_fields=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u30d8\u30eb\u30d7
-Enable_special_fields=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u4f7f\u7528\u3059\u308b
-Show_rank=\u8a55\u4fa1\u3092\u8868\u793a
-Compact_rank=\u8a55\u4fa1\u3092\u7c21\u7d20\u8868\u793a
-Show_quality=\u54c1\u8cea\u3092\u8868\u793a
-Show_priority=\u512a\u5148\u5ea6\u3092\u8868\u793a
-Show_relevance=\u95a2\u9023\u6027\u3092\u8868\u793a
-Synchronize_with_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u540c\u671f
-Write_values_of_special_fields_as_separate_fields_to_BibTeX=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u5024\u3092\u72ec\u7acb\u3057\u305f\u30d5\u30a3\u30fc\u30eb\u30c9\u3068\u3057\u3066BibTeX\u306b\u66f8\u304d\u8fbc\u3080
-You_have_changed_settings_for_special_fields.=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u8a2d\u5b9a\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002
-Changed_special_field_settings=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u8a2d\u5b9a\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f
 Bibtex_key_patterns=BibTeX\u9375\u30d1\u30bf\u30fc\u30f3
+Changed_special_field_settings=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u8a2d\u5b9a\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f
+Clear_priority=\u512a\u5148\u5ea6\u3092\u6d88\u53bb
+Clear_rank=\u8a55\u4fa1\u3092\u6d88\u53bb
+Compact_rank=\u8a55\u4fa1\u3092\u7c21\u7d20\u8868\u793a
 Convert_1st,_2nd,_..._to_real_superscripts=1st,_2nd,_..._\u7b49\u3092\u4e0b\u4ed8\u304d\u6587\u5b57\u3092\u4f7f\u3046\u3088\u3046\u5909\u63db
-Manage_content_selectors=\u5185\u5bb9\u9078\u629e\u5b50\u3092\u7ba1\u7406
 Dropped_comment_from_database=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u3089\u30b3\u30e1\u30f3\u30c8\u3092\u53d6\u308a\u9664\u304d\u307e\u3057\u305f
-Synchronized_special_fields_based_on_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u57fa\u3065\u3044\u3066\u540c\u671f\u3055\u308c\u308b\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9
-Clear_priority=\u512a\u5148\u5ea6\u3092\u6d88\u53bb
+Enable_PDF_preview=PDF\u30d7\u30ec\u30d3\u30e5\u30fc\u3092\u6709\u52b9\u306b\u3059\u308b
+Enable_special_fields=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u4f7f\u7528\u3059\u308b
+Five_stars=\u4e94\u3064\u661f
+Four_stars=\u56db\u3064\u661f
+Help_on_special_fields=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u30d8\u30eb\u30d7
+Keywords_of_selected_entries=\u9078\u629e\u3057\u305f\u9805\u76ee\u306e\u30ad\u30fc\u30ef\u30fc\u30c9
+Manage_content_selectors=\u5185\u5bb9\u9078\u629e\u5b50\u3092\u7ba1\u7406
+Manage_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u7ba1\u7406
+Marked_entries'_quality_as_good=\u9805\u76ee\u306e\u54c1\u8cea\u3092\u826f\u597d\u3068\u3057\u3066\u6a19\u8b58\u4ed8\u3051\u3057\u307e\u3057\u305f
+Marked_entries_as_relevant=\u9805\u76ee\u3092\u95a2\u9023\u6027\u304c\u3042\u308b\u3082\u306e\u3068\u3057\u3066\u6a19\u8b58\u4ed8\u3051\u3057\u307e\u3057\u305f
 No_priority_information=\u512a\u5148\u5ea6\u306e\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093
-Set_priority_to_high=\u512a\u5148\u5ea6\u3092\u9ad8\u306b\u8a2d\u5b9a
+No_rank_information=\u8a55\u4fa1\u306e\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093
+One_star=\u4e00\u3064\u661f
+Priority=\u512a\u5148\u5ea6
 Priority_high=\u512a\u5148\u5ea6\u9ad8
-Set_priority_to_medium=\u512a\u5148\u5ea6\u3092\u4e2d\u306b\u8a2d\u5b9a
-Priority_medium=\u512a\u5148\u5ea6\u4f4e
-Set_priority_to_low=\u512a\u5148\u5ea6\u3092\u4f4e\u306b\u8a2d\u5b9a
 Priority_low=\u512a\u5148\u5ea6\u4e2d
-Priority=\u512a\u5148\u5ea6
-Toogle_quality_assured=\u54c1\u8cea\u691c\u67fb\u6e08\u307f\u3092\u5165\u5207
+Priority_medium=\u512a\u5148\u5ea6\u4f4e
 Quality=\u54c1\u8cea
 Rank=\u8a55\u4fa1
-Clear_rank=\u8a55\u4fa1\u3092\u6d88\u53bb
-No_rank_information=\u8a55\u4fa1\u306e\u60c5\u5831\u304c\u3042\u308a\u307e\u305b\u3093
+Relevance=\u95a2\u9023\u6027
+Set_priority_to_high=\u512a\u5148\u5ea6\u3092\u9ad8\u306b\u8a2d\u5b9a
+Set_priority_to_low=\u512a\u5148\u5ea6\u3092\u4f4e\u306b\u8a2d\u5b9a
+Set_priority_to_medium=\u512a\u5148\u5ea6\u3092\u4e2d\u306b\u8a2d\u5b9a
+Set_rank_to_five_stars=\u8a55\u4fa1\u3092\u4e94\u3064\u661f\u306b\u8a2d\u5b9a
+Set_rank_to_four_stars=\u8a55\u4fa1\u3092\u56db\u3064\u661f\u306b\u8a2d\u5b9a
 Set_rank_to_one_star=\u8a55\u4fa1\u3092\u4e00\u3064\u661f\u306b\u8a2d\u5b9a
-One_star=\u4e00\u3064\u661f
-Set_rank_to_two_stars=\u8a55\u4fa1\u3092\u4e8c\u3064\u661f\u306b\u8a2d\u5b9a
-Two_stars=\u4e8c\u3064\u661f
 Set_rank_to_three_stars=\u8a55\u4fa1\u3092\u4e09\u3064\u661f\u306b\u8a2d\u5b9a
+Set_rank_to_two_stars=\u8a55\u4fa1\u3092\u4e8c\u3064\u661f\u306b\u8a2d\u5b9a
+Show_one_letter_heading_for_icon_columns=\u30a2\u30a4\u30b3\u30f3\u5217\u306e\u898b\u51fa\u3057\u306b1\u6587\u5b57\u4ed8\u3051\u52a0\u3048\u308b
+Show_priority=\u512a\u5148\u5ea6\u3092\u8868\u793a
+Show_quality=\u54c1\u8cea\u3092\u8868\u793a
+Show_rank=\u8a55\u4fa1\u3092\u8868\u793a
+Show_relevance=\u95a2\u9023\u6027\u3092\u8868\u793a
+Synchronize_with_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u3068\u540c\u671f
+Synchronized_special_fields_based_on_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u57fa\u3065\u3044\u3066\u540c\u671f\u3055\u308c\u308b\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9
 Three_stars=\u4e09\u3064\u661f
-Set_rank_to_four_stars=\u8a55\u4fa1\u3092\u56db\u3064\u661f\u306b\u8a2d\u5b9a
-Four_stars=\u56db\u3064\u661f
-Set_rank_to_five_stars=\u8a55\u4fa1\u3092\u4e94\u3064\u661f\u306b\u8a2d\u5b9a
-Five_stars=\u4e94\u3064\u661f
 Toggle_relevance=\u95a2\u9023\u6027\u3092\u5165\u5207
-Relevance=\u95a2\u9023\u6027
-Manage_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u306e\u7ba1\u7406
-Keywords_of_selected_entries=\u9078\u629e\u3057\u305f\u9805\u76ee\u306e\u30ad\u30fc\u30ef\u30fc\u30c9
+Toogle_quality_assured=\u54c1\u8cea\u691c\u67fb\u6e08\u307f\u3092\u5165\u5207
+Two_stars=\u4e8c\u3064\u661f
 Update_keywords=\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u66f4\u65b0
-Correct_the_entry,_and_reopen_editor_to_display/edit_source.=\u9805\u76ee\u3092\u4fee\u6b63\u3057\u3066\u30a8\u30c7\u30a3\u30bf\u3092\u518d\u5ea6\u958b\u304d\u3001\u30bd\u30fc\u30b9\u3092\u8868\u793a\u3082\u3057\u304f\u306f\u7de8\u96c6\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-When_downloading_files,_or_moving_linked_files_to_the_file_directory,_prefer_the_bib_file_location_rather_than_the_file_directory_set_above=\u30d5\u30a1\u30a4\u30eb\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u6642\u3084\u30ea\u30f3\u30af\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3059\u308b\u969b\u306b\u3001\u4e0a\u8a18\u3067\u8a2d\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30ec\u30af\u30 [...]
-If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.=\u65e2\u306b\u30d5\u30a3\u30fc\u30eb\u30c9\u30bb\u30c3\u30c8\u306e\u3042\u308b\u9805\u76ee\u3092\u8cbc\u308a\u4ed8\u3051\u305f\u308a\u8aad\u307f\u8fbc\u3093\u3060\u308a\u3057\u305f\u5834\u5408\u306b\u306f\u3001\u4e0a\u66f8\u304d\u3059\u308b\u3002
-To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.=\u30e1\u30e2\u30ea\u30fc\u30b9\u30c6\u30a3\u30c3\u30af\u30e2\u30fc\u30c9\u3092\u7121\u52b9\u306b\u3059\u308b\u306b\u306f\u3001JabRef\u3068\u540c\u3058\u30d5\u30a9\u30eb\u30c0\u306b\u3042\u308bjabref.xml\u30d5\u30a1\u30a4\u30eb\u3092\u6539\u540d\u3059\u308b\u304b\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044
-Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!=\u3053\u308c\u306f\u521d\u671f\u30d9\u30fc\u30bf\u7248\u3067\u3042\u308b\u3053\u3068\u306b\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002\u304a\u4f7f\u3044\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3059\u308b\u3053\u3068\u306a\u304f\u4f7f\u7528\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\uff01
+Write_values_of_special_fields_as_separate_fields_to_BibTeX=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u5024\u3092\u72ec\u7acb\u3057\u305f\u30d5\u30a3\u30fc\u30eb\u30c9\u3068\u3057\u3066BibTeX\u306b\u66f8\u304d\u8fbc\u3080
+You_have_changed_settings_for_special_fields.=\u7279\u6b8a\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u8a2d\u5b9a\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002
+no_preview_available=\u30d7\u30ec\u30d3\u30e5\u30fc\u304c\u3042\u308a\u307e\u305b\u3093
+
+%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.=%0\u500b\u306e\u9805\u76ee\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f\u3002\u30b5\u30fc\u30d0\u30fc\u8ca0\u8377\u3092\u8efd\u6e1b\u3059\u308b\u305f\u3081\u3001%1\u500b\u306e\u307f\u304c\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059\u3002
 A_string_with_that_label_already_exists=\u305d\u306e\u30e9\u30d9\u30eb\u3092\u6301\u3064\u6587\u5b57\u5217\u306f\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059
+Connection_to_OpenOffice_has_been_lost._Please_make_sure_OpenOffice_is_running,_and_try_to_reconnect.=OpenOffice\u3078\u306e\u63a5\u7d9a\u304c\u5931\u308f\u308c\u307e\u3057\u305f\u3002OpenOffice\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u518d\u63a5\u7d9a\u3092\u8a66\u307f\u3066\u304f\u3060\u3055\u3044\u3002
+Correct_the_entry,_and_reopen_editor_to_display/edit_source.=\u9805\u76ee\u3092\u4fee\u6b63\u3057\u3066\u30a8\u30c7\u30a3\u30bf\u3092\u518d\u5ea6\u958b\u304d\u3001\u30bd\u30fc\u30b9\u3092\u8868\u793a\u3082\u3057\u304f\u306f\u7de8\u96c6\u3057\u3066\u304f\u3060\u3055\u3044\u3002
 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').=\u5b9f\u884c\u4e2d\u306egnuserv\u30d7\u30ed\u30bb\u30b9\u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002Emacs\u3042\u308b\u3044\u306fXEmacs\u304c\u5b9f\u884c\u4e2d\u3067\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3001<BR>\uff08\u300cserver-start\u300d\u307e\u305f\u306f\u300c [...]
-Use_the_following_delimiter_character(s)\:=\u53f3\u8a18\u306e\u533a\u5207\u308a\u6587\u5b57\u3092\u4f7f\u7528\:
+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\:_=\u5b9f\u884c\u4e2d\u306eOpenOffice\u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\nOpenOffice\u304cJava\u30b5\u30dd\u30fc\u30c8\u3068\u3068\u3082\u306b\u5c0e\u5165\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u624b\u52d5\ [...]
 Created_group_"%0".=\u30b0\u30eb\u30fc\u30d7\u300c%0\u300d\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002
+If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.=\u65e2\u306b\u30d5\u30a3\u30fc\u30eb\u30c9\u30bb\u30c3\u30c8\u306e\u3042\u308b\u9805\u76ee\u3092\u8cbc\u308a\u4ed8\u3051\u305f\u308a\u8aad\u307f\u8fbc\u3093\u3060\u308a\u3057\u305f\u5834\u5408\u306b\u306f\u3001\u4e0a\u66f8\u304d\u3059\u308b\u3002
+Import_Metadata_From_PDF=PDF\u304b\u3089Metadata\u3092\u8aad\u307f\u8fbc\u3080
+Not_connected_to_any_Writer_document._Please_make_sure_a_document_is_open,_and_use_the_'Select_Writer_document'_button_to_connect_to_it.=\u3069\u306eWriter\u6587\u66f8\u306b\u3082\u63a5\u7d9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u6587\u66f8\u304c\u958b\u304b\u308c\u3066\u3044\u308b\u304b\u78ba\u8a8d\u3057\u3066\u3001\u300cWriter\u6587\u66f8\u3092\u9078\u629e\u300d\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u3066\u63a5\u7d9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!=\u3053\u308c\u306f\u521d\u671f\u30d9\u30fc\u30bf\u7248\u3067\u3042\u308b\u3053\u3068\u306b\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002\u304a\u4f7f\u3044\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u3059\u308b\u3053\u3068\u306a\u304f\u4f7f\u7528\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\uff01
 Removed_all_subgroups_of_group_"%0".=\u30b0\u30eb\u30fc\u30d7\u300c%0\u300d\u306e\u5168\u4e0b\u5c64\u30b0\u30eb\u30fc\u30d7\u3092\u524a\u9664\u3057\u307e\u3057\u305f
-
-%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.=%0\u500b\u306e\u9805\u76ee\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f\u3002\u30b5\u30fc\u30d0\u30fc\u8ca0\u8377\u3092\u8efd\u6e1b\u3059\u308b\u305f\u3081\u3001%1\u500b\u306e\u307f\u304c\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059\u3002
+To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.=\u30e1\u30e2\u30ea\u30fc\u30b9\u30c6\u30a3\u30c3\u30af\u30e2\u30fc\u30c9\u3092\u7121\u52b9\u306b\u3059\u308b\u306b\u306f\u3001JabRef\u3068\u540c\u3058\u30d5\u30a9\u30eb\u30c0\u306b\u3042\u308bjabref.xml\u30d5\u30a1\u30a4\u30eb\u3092\u6539\u540d\u3059\u308b\u304b\u524a\u9664\u3057\u3066\u304f\u3060\u3055\u3044
 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.=\u63a5\u7d9a\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u4e00\u3064\u306e\u53ef\u80fd\u6027\u3068\u3057\u3066\u306f\u3001JabRef\u3068OpenOffice/LibreOffice\u304c\u3001\u3068\u3082\u306b32\u30d3\u30c3\u30c8\u30e2\u30fc\u30c9\u304b64\u30d3\u30c3\u30c8\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3055\u308c\u3066\u3044\u306a\u3044\u305b\u3044\u304b\u3082\u3057\u [...]
-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\:_=\u5b9f\u884c\u4e2d\u306eOpenOffice\u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\nOpenOffice\u304cJava\u30b5\u30dd\u30fc\u30c8\u3068\u3068\u3082\u306b\u5c0e\u5165\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u624b\u52d5\ [...]
-Not_connected_to_any_Writer_document._Please_make_sure_a_document_is_open,_and_use_the_'Select_Writer_document'_button_to_connect_to_it.=\u3069\u306eWriter\u6587\u66f8\u306b\u3082\u63a5\u7d9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u6587\u66f8\u304c\u958b\u304b\u308c\u3066\u3044\u308b\u304b\u78ba\u8a8d\u3057\u3066\u3001\u300cWriter\u6587\u66f8\u3092\u9078\u629e\u300d\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u3066\u63a5\u7d9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-Connection_to_OpenOffice_has_been_lost._Please_make_sure_OpenOffice_is_running,_and_try_to_reconnect.=OpenOffice\u3078\u306e\u63a5\u7d9a\u304c\u5931\u308f\u308c\u307e\u3057\u305f\u3002OpenOffice\u304c\u5b9f\u884c\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u518d\u63a5\u7d9a\u3092\u8a66\u307f\u3066\u304f\u3060\u3055\u3044\u3002
-Your_style_file_specifies_the_paragraph_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=\u304a\u4f7f\u3044\u306e\u69d8\u5f0f\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u6bb5\u843d\u69d8\u5f0f\u300c%0\u300d\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u3053\u308c\u306f\u3001\u73fe\u5728\u306eOpenOffice\u6587\u66f8\u306b\u306f\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
-Your_style_file_specifies_the_character_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=\u304a\u4f7f\u3044\u306e\u69d8\u5f0f\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u6587\u5b57\u69d8\u5f0f\u300c%0\u300d\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u3053\u308c\u306f\u3001\u73fe\u5728\u306eOpenOffice\u6587\u66f8\u306b\u306f\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
 Unable_to_determine_plugin_name_and_version._This_may_not_be_a_valid_JabRef_plugin.=\u30d7\u30e9\u30b0\u30a4\u30f3\u540d\u3068\u305d\u306e\u7248\u6570\u3092\u78ba\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002\u6709\u52b9\u306aJabRef\u30d7\u30e9\u30b0\u30a4\u30f3\u3067\u306f\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002
-Import_Metadata_From_PDF=PDF\u304b\u3089Metadata\u3092\u8aad\u307f\u8fbc\u3080
-Run_HTML_converter_on_title=title\u306bHTML\u5909\u63db\u5b50\u3092\u304b\u3051\u308b
-Searching...=\u691c\u7d22\u4e2d...
+Use_the_following_delimiter_character(s)\:=\u53f3\u8a18\u306e\u533a\u5207\u308a\u6587\u5b57\u3092\u4f7f\u7528\:
+When_downloading_files,_or_moving_linked_files_to_the_file_directory,_prefer_the_bib_file_location_rather_than_the_file_directory_set_above=\u30d5\u30a1\u30a4\u30eb\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u6642\u3084\u30ea\u30f3\u30af\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3059\u308b\u969b\u306b\u3001\u4e0a\u8a18\u3067\u8a2d\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30ec\u30af\u30 [...]
+Your_style_file_specifies_the_character_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=\u304a\u4f7f\u3044\u306e\u69d8\u5f0f\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u6587\u5b57\u69d8\u5f0f\u300c%0\u300d\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u3053\u308c\u306f\u3001\u73fe\u5728\u306eOpenOffice\u6587\u66f8\u306b\u306f\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
+Your_style_file_specifies_the_paragraph_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=\u304a\u4f7f\u3044\u306e\u69d8\u5f0f\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u6bb5\u843d\u69d8\u5f0f\u300c%0\u300d\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u3053\u308c\u306f\u3001\u73fe\u5728\u306eOpenOffice\u6587\u66f8\u306b\u306f\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
 
 Error_fetching_from_Google_Scholar=Google_Scholar\u304b\u3089\u53d6\u5f97\u4e2d\u306b\u30a8\u30e9\u30fc\u767a\u751f
+Run_HTML_converter_on_title=title\u306bHTML\u5909\u63db\u5b50\u3092\u304b\u3051\u308b
+Searching...=\u691c\u7d22\u4e2d...
 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?=\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u9805\u76ee\u3092%0\u500b\u4ee5\u4e0a\u9078\u629e\u3057\u307e\u3057\u305f\u3002\u3042\u307e\u308a\u306b\u591a\u304f\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3092\u6025\u306b\u884c\u3046\u3068\u3001\u5176\u308c\u3092\u30d6\u30ed\u30c3\u30af\u3059\u308b\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3082\ [...]
 Confirm_selection=\u9078\u629e\u7bc4\u56f2\u3092\u78ba\u8a8d
 Unknown_DOI\:_'%0'.=\u300c%0\u300d\u306f\u65e2\u77e5\u306eDOI\u3067\u306f\u3042\u308a\u307e\u305b\u3093
@@ -2335,29 +2338,29 @@ Get_BibTeX_entry_from_DiVA=DiVA\u304b\u3089BibTeX\u9805\u76ee\u3092\u53d6\u5f97
 Log=\u30ed\u30b0
 
 ISO_690=ISO_690
-Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=\u975e\u6539\u884c\u533a\u5207\u308a\u3092\u4ed8\u3057\u3066\u691c\u7d22\u3067\u5927\u6587\u5b57\u5c0f\u6587\u5b57\u304c\u6b63\u3057\u304f\u306a\u308b\u3088\u3046\u5358\u4f4d\u3092\u6574\u5f62
-Use_Emacs_key_bindings=Emacs\u30ad\u30fc\u5272\u5f53\u3092\u4f7f\u7528
-Merge_entries=\u9805\u76ee\u3092\u7d71\u5408
-Show_URL_first=URL\u3092\u6700\u521d\u306b\u8868\u793a
-Show_DOI_first=DOI\u3092\u6700\u521d\u306b\u8868\u793a
-Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=\u4e0d\u8981\u306a$\u30fb{\u30fb}\u3092\u524a\u9664\u3057\u3066\u6570\u5f0f\u306b\u96a3\u63a5\u3059\u308b\u756a\u53f7\u3092\u5165\u308c\u308b
 
 Add_brackets_and_replace_separators_with_their_non-breaking_version_for_units=\u6ce2\u62ec\u5f27\u3092\u8ffd\u52a0\u3057\u3001\u533a\u5207\u308a\u6587\u5b57\u3092\u5358\u4f4d\u306e\u975e\u6539\u884c\u7248\u3067\u7f6e\u304d\u63db\u3048\u308b
-First_entry=\u7b2c\u4e00\u9805\u76ee
-Use_1st=1st\u3092\u4f7f\u3046
-None=\u306a\u3057
-Use_2nd=2nd\u3092\u4f7f\u3046
-Second_entry=\u7b2c\u4e8c\u9805\u76ee
-You_have_to_choose_exactly_two_entries_to_merge.=\u7d71\u5408\u3059\u308b\u9805\u76ee\u30922\u3064\u9078\u3070\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002
-Merged_entry=\u9805\u76ee\u3092\u7d71\u5408\u3057\u307e\u3057\u305f
-Error_in_entry=\u9805\u76ee\u306b\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3059
 Add_new_entry_and_keep_both_old_entries=\u53e4\u3044\u9805\u76ee\u3092\u7dad\u6301\u3057\u305f\u307e\u307e\u65b0\u898f\u9805\u76ee\u3092\u8ffd\u52a0
-Replace_old_entries_with_new_entry=\u53e4\u3044\u9805\u76ee\u3092\u65b0\u898f\u9805\u76ee\u3067\u7f6e\u304d\u63db\u3048\u308b
 Cancelled_merging_entries=\u9805\u76ee\u306e\u7d71\u5408\u3092\u53d6\u308a\u6d88\u3057\u307e\u3057\u305f
+Error_in_entry=\u9805\u76ee\u306b\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3059
+First_entry=\u7b2c\u4e00\u9805\u76ee
+Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=\u975e\u6539\u884c\u533a\u5207\u308a\u3092\u4ed8\u3057\u3066\u691c\u7d22\u3067\u5927\u6587\u5b57\u5c0f\u6587\u5b57\u304c\u6b63\u3057\u304f\u306a\u308b\u3088\u3046\u5358\u4f4d\u3092\u6574\u5f62
+Merge_entries=\u9805\u76ee\u3092\u7d71\u5408
 Merged_entries_into_a_new_and_kept_the_old=\u7d71\u5408\u9805\u76ee\u3092\u65b0\u898f\u306b\u8ffd\u52a0\u3057\u65e7\u9805\u76ee\u3092\u6b8b\u3057\u307e\u3057\u305f
 Merged_entries_into_a_new_and_removed_the_old=\u7d71\u5408\u9805\u76ee\u3092\u65b0\u898f\u306b\u8ffd\u52a0\u3057\u3001\u65e7\u9805\u76ee\u3092\u524a\u9664\u3057\u307e\u3057\u305f
+Merged_entry=\u9805\u76ee\u3092\u7d71\u5408\u3057\u307e\u3057\u305f
+None=\u306a\u3057
 Parse=\u89e3\u6790
+Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=\u4e0d\u8981\u306a$\u30fb{\u30fb}\u3092\u524a\u9664\u3057\u3066\u6570\u5f0f\u306b\u96a3\u63a5\u3059\u308b\u756a\u53f7\u3092\u5165\u308c\u308b
+Replace_old_entries_with_new_entry=\u53e4\u3044\u9805\u76ee\u3092\u65b0\u898f\u9805\u76ee\u3067\u7f6e\u304d\u63db\u3048\u308b
 Result=\u7d50\u679c
+Second_entry=\u7b2c\u4e8c\u9805\u76ee
+Show_DOI_first=DOI\u3092\u6700\u521d\u306b\u8868\u793a
+Show_URL_first=URL\u3092\u6700\u521d\u306b\u8868\u793a
+Use_1st=1st\u3092\u4f7f\u3046
+Use_2nd=2nd\u3092\u4f7f\u3046
+Use_Emacs_key_bindings=Emacs\u30ad\u30fc\u5272\u5f53\u3092\u4f7f\u7528
+You_have_to_choose_exactly_two_entries_to_merge.=\u7d71\u5408\u3059\u308b\u9805\u76ee\u30922\u3064\u9078\u3070\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002
 
 Update_timestamp_on_modification=\u4fee\u6b63\u6642\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u3092\u66f4\u65b0
 change_field=\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u5909\u66f4
@@ -2365,34 +2368,31 @@ All_key_bindings_will_be_reset_to_their_defaults.=\u3059\u3079\u3066\u306e\u30ad
 Automatically_set_file_links=\u30d5\u30a1\u30a4\u30eb\u30ea\u30f3\u30af\u3092\u81ea\u52d5\u8a2d\u5b9a
 Continue?=\u7d9a\u3051\u307e\u3059\u304b\uff1f
 Resetting_all_key_bindings=\u30ad\u30fc\u5272\u5f53\u3092\u3059\u3079\u3066\u5fa9\u5e30
-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=
-
-Run_Fetcher,_e.g._"--fetch\=Medline\:cancer"=
-Expected_syntax_for_--fetch\='<name_of_fetcher>\:<query>'=
-
-Database_has_changed._Do_you_want_to_save_before_closing?=
-Host=
-Invalid_setting=
-Network=
-Please_specify_both_hostname_and_port=
-Port=
-Start_field_contents_in_same_column=
-Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=
-Use_custom_proxy_configuration=
-Clear_connection_settings=
-Cleared_connection_settings.=
-Rebind_C-a,_too=
-
-Show_number_of_elements_contained_in_each_group=
-
-Open_folder=
-Opened_%0_folder(s).=
-
-Searches_for_unlinked_PDF_files_on_the_file_system=
+Save_entries_ordered_by_title=\u9805\u76ee\u3092title\u3067\u6574\u5e8f\u3057\u3066\u4fdd\u5b58
+Export_entries_ordered_by_title=\u9805\u76ee\u3092title\u3067\u6574\u5e8f\u3057\u3066\u66f8\u304d\u51fa\u3057
+Quotes=\u5f15\u7528\u7b26
+Curly_Brackets=\u6ce2\u62ec\u5f27
+Include_empty_fields=\u7a7a\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u542b\u3081\u308b
+Field_saving_options=\u30d5\u30a3\u30fc\u30eb\u30c9\u4fdd\u5b58\u30aa\u30d7\u30b7\u30e7\u30f3
+Field_value_delimiter._E.g.,_"author\={x}"_or_"author\='x'"=\u30d5\u30a3\u30fc\u30eb\u30c9\u5024\u533a\u5207\u308a\u3002\u4f8b\uff1a\u300cauthor={x}\u300d\u3084\u300cauthor='x'\u300d
+Run_Unicode_converter_on_title,_author(s),_and_abstract=title\u30fbauthor\u30fbabstract\u306b\u5bfe\u3057\u3066Unicode\u5909\u63db\u5b50\u3092\u5b9f\u884c\u3059\u308b
+
+Database_has_changed._Do_you_want_to_save_before_closing?=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5909\u66f4\u304c\u52a0\u3048\u3089\u308c\u307e\u3057\u305f\u3002\u9589\u3058\u308b\u524d\u306b\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f
+Host=\u30db\u30b9\u30c8
+Invalid_setting=\u7121\u52b9\u306a\u8a2d\u5b9a\u3067\u3059
+Network=\u30cd\u30c3\u30c8\u30ef\u30fc\u30af
+Please_specify_both_hostname_and_port=\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u306e\u4e21\u65b9\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044
+Port=\u30dd\u30fc\u30c8
+Start_field_contents_in_same_column=\u30d5\u30a3\u30fc\u30eb\u30c9\u5185\u5bb9\u3092\u540c\u3058\u30b3\u30e9\u30e0\u5185\u3067\u59cb\u3081\u308b
+Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=\u30d5\u30a3\u30fc\u30eb\u30c9\u540d\u306b\u30ad\u30e3\u30e1\u30eb\u30b1\u30fc\u30b9\u3092\u7528\u3044\u308b\uff08\u4f8b\uff1a\u300chowpublished\u300d\u3092\u300cHowPublished\u300d\u3068\u3059\u308b\uff09
+Use_custom_proxy_configuration=\u81ea\u88fd\u306e\u30d7\u30ed\u30ad\u30b7\u8a2d\u5b9a\u3092\u7528\u3044\u308b
+Clear_connection_settings=\u63a5\u7d9a\u8a2d\u5b9a\u3092\u6d88\u53bb\u3059\u308b
+Cleared_connection_settings.=\u63a5\u7d9a\u8a2d\u5b9a\u3092\u6d88\u53bb\u3057\u307e\u3057\u305f
+Rebind_C-a,_too=C-a\u3082\u5272\u308a\u5f53\u3066\u76f4\u3059
+
+Show_number_of_elements_contained_in_each_group=\u5404\u30b0\u30eb\u30fc\u30d7\u306b\u542b\u307e\u308c\u308b\u9805\u76ee\u306e\u6570\u3092\u8868\u793a\u3059\u308b
+
+Open_folder=\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304f
+Opened_%0_folder(s).=%0\u500b\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304d\u307e\u3057\u305f\u3002
+
+Searches_for_unlinked_PDF_files_on_the_file_system=\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u4e0a\u306b\u3042\u308b\u30ea\u30f3\u30af\u3055\u308c\u3066\u3044\u306a\u3044PDF\u30d5\u30a1\u30a4\u30eb\u3092\u691c\u7d22\u3059\u308b
diff --git a/src/resource/JabRef_pt_BR.properties b/src/resource/JabRef_pt_BR.properties
index 14035c3..a5a996a 100644
--- a/src/resource/JabRef_pt_BR.properties
+++ b/src/resource/JabRef_pt_BR.properties
@@ -1,5 +1,5 @@
 #!
-#! created/edited by Popeye version 0.54 (popeye.sourceforge.net)
+#! created/edited by Popeye version 0.55 (https://github.com/koppor/popeye)
 #! encoding:ISO-8859-1
 %0_contains_the_Regular_Expression_<b>%1</b>=%0_cont\u00e9m_a_Express\u00e3o_Regular_<b>%1</b>
 %0_contains_the_term_<b>%1</b>=%0_cont\u00e9m_o_termo_<b>%1</b>
@@ -16,6 +16,7 @@
 <no_field>=<nenhum_campo>
 <select>=<selecionar>
 <select_word>=<selecionar_palavra>
+A_string_with_this_label_already_exists=Uma_string_com_este_r\u00f3tulo_j\u00e1_existe.
 Abbreviate_journal_names_of_the_selected_entries_(ISO_abbreviation)=Abreviar_nomes_de_peri\u00f3dicos_das_refer\u00eancias_selecionadas_(abrevia\u00e7\u00e3o_ISO)
 Abbreviate_journal_names_of_the_selected_entries_(MEDLINE_abbreviation)=Abreviar_nomes_de_peri\u00f3dicos_das_refer\u00eancias_selecionadas_(abrevia\u00e7\u00e3o_MEDLINE)
 Abbreviate_names=Abreviar_nomes
@@ -601,7 +602,6 @@ Open=Abrir
 Open_BibTeX_database=Abrir_base_de_dados_BibTeX
 Open_database=Abrir_base_de_dados
 Open_editor_when_a_new_entry_is_created=Abrir_o_editor_quando_uma_nova_refer\u00eancia_\u00e9_criada
-Open_folder=Abrir_pasta
 Open_file=Abrir_arquivo
 Open_last_edited_databases_at_startup=Abrir_as_\u00faltimas_base_de_dados_editadas_ao_iniciar
 Open_PDF_or_PS=_Abrir_PDF_ou_PS
@@ -1065,6 +1065,8 @@ Cannot_use_port_%0_for_remote_operation;_another_application_may_be_using_it._Tr
 Plugin_installer=Instalador_do_plugin
 Unable_to_create_plugin_directory=N\u00e3o_foi_poss\u00edvel_criar_o_diret\u00f3rio_de_plugins
 Unable_to_copy_file=N\u00e3o_foi_poss\u00edvel_copiar_os_arquivos
+#Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.=Plugin_instalado_com_sucesso._Voc\u00ea_deve_reiniciar_o_JabRef_para_carregar_o_novo_plugin.
+Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.=Plugin_instalado_com_sucesso._O_Jabref_precisa_ser_reiniciado_para_carregar_o_novo_plugin.
 Unable_to_create_user_plugin_directory=N\u00e3o_foi_poss\u00edvel_criar_diret\u00f3rio_de_plugins_do_usu\u00e1rio
 Plugin_installation_failed.=Falha_na_instala\u00e7\u00e3o_do_plugin.
 The_same_version_of_this_plugin_is_already_installed.=A_mesma_vers\u00e3o_deste_plugin_j\u00e1_est\u00e1_instalada.
@@ -1294,8 +1296,8 @@ Autocomplete_names=Autocompletar_nomes
 Default_style=Estilo_padr\u00e3o
 Choose_style_file_directly=Escolha_o_arquivo_de_estilo_diretamente
 Choose_from_a_directory=Escolha_a_partir_de_um_diret\u00f3rio
-Allow_file_links_relative_to_each_bib_file's_location=Permitir_links_de_arquivos_relativos_ao_local_do_arquivo_.bib
 No_directory_defined_for_%0-files=Nenhum_diret\u00f3rio_definido_para_arquivos_%0
+Allow_file_links_relative_to_each_bib_file's_location=Permitir_links_de_arquivos_relativos_ao_local_do_arquivo_.bib
 Style_selection=Sele\u00e7\u00e3o_de_estilo
 The_panel_below_shows_the_definition_of_the_default_style.=O_painel_abaixo_exibe_a_defini\u00e7\u00e3o_do_estilo_padr\u00e3o.
 If_you_want_to_use_it_as_a_template_for_a_new_style,_you_can_copy_the_contents_into_a_new_.jstyle_file=Se_voc\u00ea_deseja_utilizar_isto_como_template_para_um_novo_estilo,_voc\u00ea_pode_copiar_seu_conte\u00fado_para_um_novo_arquivo_.jstyle
@@ -1314,250 +1316,248 @@ You_must_select_either_a_valid_style_file,_or_use_a_default_style.=Voc\u00ea_dev
 Show=Exibir
 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.=Esta_\u00e9_uma_simples_janela_de_di\u00e1logo_Copiar_e_Colar._Primeiro_carregue_ou_cole_algum_texto_na_\u00e1rea_de_inser\u00e7\u00e3o_de_texto.<br>Em_seguida,_voc\u00ea_pode_marcar_o_texto_e_design\u00e1-lo_a_um_campo_BibTeX.
 Java_Bouncy_Castle_library_not_found._Please_download_and_install_it._For_more_information_see_http\://www.bouncycastle.org/.=A_biblioteca_Java_Bouncy_Castle_n\u00e3o_foi_encontrada._Por_favor,_fa\u00e7a_o_download_e_a_instale._Para_mais_informa\u00e7\u00f5es,_visite_http\://www.bouncycastle.org/.
-A_string_with_this_label_already_exists=Uma_string_com_este_r\u00f3tulo_j\u00e1_existe.
-#Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.=Plugin_instalado_com_sucesso._Voc\u00ea_deve_reiniciar_o_JabRef_para_carregar_o_novo_plugin.
-Plugin_installed_successfully._You_must_restart_JabRef_to_load_the_new_plugin.=Plugin_instalado_com_sucesso._O_Jabref_precisa_ser_reiniciado_para_carregar_o_novo_plugin.
 #This_feature_generates_a_new_database_based_on_which_entries_are_needed_in_an_existing_LaTeX_document.=Esta_funcionalidade_cria_um_novo_banco_de_dados_baseado_em_quais_entradas_s\u00e3o_necess\u00e1rias_em_um_documento_LaTeX.
 This_feature_generates_a_new_database_based_on_which_entries_are_needed_in_an_existing_LaTeX_document.=Esta_funcionalidade_gera_uma_nova_base_de_dados_na_qual_as_refer\u00eancias_s\u00e3o_necess\u00e1rias_em_um_documento_LaTex_existente
 #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.=Voc\u00ea_precisa_selecionar_um_de_seus_bancos_de_dados_abertos_para_que_entradas_sejam_selecionadas,_bem_como_o_arquivo_AUX_produzido_pelo_LaTeX_ao_compilar_seu_documento.
 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.=Voc\u00ea_precisa_selecionar_uma_das_bases_de_dados_abertas_a_partir_da_qual_ser\u00e3o_selecionadas_as_refer\u00eancias,_bem_como_um_arquivo_AUX_produzido_pela_compila\u00e7\u00e3o_do_seu_arquivo_LaTex.
-Minimize_to_system_tray=Minimizar_para_a_bandeja_do_sistema
 
-First_select_entries_to_clean_up.=
-Cleanup_entry=Limpar_entrada
-Autogenerate_PDF_Names=
-Auto-generating_PDF-Names_does_not_support_undo._Continue?=
-File_rename_failed_for=
-You_have_toggled_the_BibLaTeX_mode.=
-Use_full_firstname_whenever_possible=
-Use_abbreviated_firstname_whenever_possible=
-Use_abbreviated_and_full_firstname=
-Autocompletion_options=
-Autocomplete_after_following_number_of_characters=
-Name_format_used_for_autocompletion=
-Treatment_of_first_names=
-Cleanup_entries=
-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=
-Make_paths_of_linked_files_relative_(if_possible)=
-Rename_PDFs_to_given_file_name_format_pattern=
-Rename_only_PDFs_having_a_relative_path=
-What_would_you_like_to_clean_up?=
-Doing_a_cleanup_for_%0_entries...=
-No_entry_needed_a_clean_up=
-One_entry_needed_a_clean_up=
-%0_entries_needed_a_clean_up=
-Automatically_assign_new_entry_to_selected_groups=Designar_automaticamente_novas_entradas_para_os_grupos_selecionados
+First_select_entries_to_clean_up.=Selecione_as_entradas_a_limpar
+Cleanup_entry=Limpar_refer\u00eancia
+Autogenerate_PDF_Names=Gerar_nomes_dos_PDFs_automaticamente
+Auto-generating_PDF-Names_does_not_support_undo._Continue?=N\u00e3o_ser\u00e1_poss\u00edvel_desfazer_a_auto_gera\u00e7\u00e3o_de_nomes_de_PDFs._Continuar_mesmo_assim?
+File_rename_failed_for=Falha_ao_renomear_arquivo_
+You_have_toggled_the_BibLaTeX_mode.=Voc\u00ea_mudou_para_o_modo_BibLaTeX
+Use_full_firstname_whenever_possible=Usar_primeiro_nome_inteiro_sempre_que_poss\u00edvel
+Use_abbreviated_firstname_whenever_possible=Usar_primeiro_nome_abreviado_sempre_que_poss\u00edvel
+Use_abbreviated_and_full_firstname=Usar_primeiro_nome_abreviado_e_inteiro
+Autocompletion_options=Op\u00e7\u00f5es_de_autocompletar
+Autocomplete_after_following_number_of_characters=Autocompletar_ap\u00f3s_um_n\u00famero_de_caracteres
+Name_format_used_for_autocompletion=Formato_de_nome_usado_para_autocompletar
+Treatment_of_first_names=Tratamento_dos_primeiros_nomes
+Cleanup_entries=Limpar_entradas
+Automatically_assign_new_entry_to_selected_groups=Designar_automaticamente_novas_refer\u00eancias_para_os_grupos_selecionados
+Move_DOIs_from_note_and_URL_field_to_DOI_field_and_remove_http_prefix=Mover_DOIs_dos_campos_note_e_URL_para_o_campo_DOI_e_remover_o_prefixo_http
+Format_content_of_month_field_to_#mon#=Formatar_o_conte\u00fado_do_campo_m\u00eas_para_#mon#
+Ensure_that_page_ranges_are_of_the_form_num1--num2=Garantir_que_as_p\u00e1ginas_seguem_o_formato_num1-num2
+Make_paths_of_linked_files_relative_(if_possible)=Tornar_os_caminhos_dos_arquivos_relativos_(se_poss\u00edvel)
+Rename_PDFs_to_given_file_name_format_pattern=Renomear_PDFs_para_o_padr\u00e3o_de_nome_definido
+Rename_only_PDFs_having_a_relative_path=Renomear_apenas_os_PDFs_que_tem_caminho_relativo
+What_would_you_like_to_clean_up?=O_que_voc\u00ea_deseja_limpar?
+Doing_a_cleanup_for_%0_entries...=Limpando_%0_entradas...
+No_entry_needed_a_clean_up=Nenhuma_refer\u00eancia_precisou_de_limpeza
+One_entry_needed_a_clean_up=Uma_refer\u00eancia_necessitou_limpeza
+%0_entries_needed_a_clean_up=%0_entradas_necessitaram_limpeza
 Error_importing_from_database=Erro_ao_importar_do_banco_de_dados
+Minimize_to_system_tray=Minimizar_para_a_bandeja_do_sistema
 Error_downloading_file_'%0'=Erro_ao_baixar_arquivo_'%0'
 Download_failed=O_download_falhou
 
-%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\:=
-Group_tree_could_not_be_parsed._If_you_save_the_BibTeX_database,_all_groups_will_be_lost.=
-Attach_file=
+%0_databases_will_be_imported=%0_bases_de_dados_ser\u00e3o_importados
+Importing_cancelled=Importa\u00e7\u00e3o_cancelada
+There_are_no_available_databases_to_be_imported=N\u00e3o_existem_bases_de_dados_dispon\u00edveis_para_importa\u00e7\u00e3o
+Import_from_SQL_database=Importar_de_um_banco_de_dados_SQL
+Imported_%0_databases_successfully=%0_bases_de_dados_foram_importadas_com_sucesso
+<_CREATE_NEW_DATABASE_>=<_CRIAR_NOVA_BASE_DE_DADOS_>
+Remove_Selected=Remover_Selecionados
+SQL_Database_Exporter=Exportador_de_Bases_de_Dados_SQL
+Select_target_SQL_database\:=Selecione_a_base_de_dados_SQL_de_destino:
+SQL_Database_Importer=Importador_de_Bases_de_Dados_SQL
+Please_select_which_JabRef_databases_do_you_want_to_import\:=Por_favor_selecione_qual_base_de_dados_deseja_importar_ao_JabRef:
+Group_tree_could_not_be_parsed._If_you_save_the_BibTeX_database,_all_groups_will_be_lost.=\u00c1rvore_de_agrupamento_n\u00e3o_pode_ser_interpretada._Se_voc\u00ea_salvar_sua_base_de_dados_BibTeX,_todos_os_grupos_ser\u00e3o_perdidos
+Attach_file=Anexar_arquivo
 
-Setting_all_preferences_to_default_values.=
-Resetting_preference_key_'%0'=
-Unknown_preference_key_'%0'=
-Unable_to_clear_preferences.=
+Setting_all_preferences_to_default_values.=Definindo_todas_as_prefer\u00eancias_para_os_valores_padr\u00e3o
+Resetting_preference_key_'%0'=Redefinindo_prefer\u00eancia_'%0'
+Unknown_preference_key_'%0'=Prefer\u00eancia_desconhecida_'%0"
+Unable_to_clear_preferences.=N\u00e3o_foi_poss\u00edvel_limpar_as_prefer\u00eancias
 
-Reset_preferences_(key1,key2,..._or_'all')=
-Find_unlinked_files=
-Unselect_all=
-Expand_all=
-Collapse_all=
-Select_Directory=
-Choose_Directory=
-Use_the_selected_directory_to_start_with_the_search.=
-Browse...=
-Opens_the_file_browser.=
-Scan_directory=
-Searches_the_selected_directory_for_unlinked_files.=
-Starts_the_import_of_bibtex_entries.=
-Leave_this_dialog.=
-Create_directory_based_keywords=
-Creates_keywords_in_created_entrys_with_directory_pathnames=
-Select_a_directory_where_the_search_shall_start.=
-Select_file_type\:=
-These_files_are_not_linked_in_the_active_database.=
-Entry_type_to_be_created\:=
-Searching_file_system...=
-Importing_into_Database...=
-Select_directory=
-Select_files=
-Bibtex_entry_creation=
-<No_selection>=
-Push_selection_to_TeXstudio=
-Path_to_TeXstudio=
-Program_'%0'_not_found=
-Pushed_citations_to_TeXstudio=
-Unable_to_connect_to_freecite_online_service.=
-Parse_with_FreeCite=
-Insert_selected_citations_into_TeXstudio=
-The_current_BibTeX_key_will_be_overwritten._Continue?=
-Overwrite_key=
-Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefererences_->_BibTeX_key_generator=
-How_would_you_like_to_link_to_'%0'?=
-Bibtex_key_patterns=
-Changed_special_field_settings=
-Clear_priority=
-Clear_rank=
-Compact_rank=
-Convert_1st,_2nd,_..._to_real_superscripts=
-Dropped_comment_from_database=
-Enable_PDF_preview=
-Enable_special_fields=
-Five_stars=
-Four_stars=
-Help_on_special_fields=
-Keywords_of_selected_entries=
-Manage_content_selectors=
-Manage_keywords=
-Marked_entries'_quality_as_good=
-Marked_entries_as_relevant=
-No_priority_information=
-No_rank_information=
-One_star=
-Priority=
-Priority_high=
-Priority_low=
-Priority_medium=
-Quality=
-Rank=
-Relevance=
-Set_priority_to_high=
-Set_priority_to_low=
-Set_priority_to_medium=
-Set_rank_to_five_stars=
-Set_rank_to_four_stars=
-Set_rank_to_one_star=
-Set_rank_to_three_stars=
-Set_rank_to_two_stars=
-Show_one_letter_heading_for_icon_columns=
-Show_priority=
-Show_quality=
-Show_rank=
-Show_relevance=
-Synchronize_with_keywords=
-Synchronized_special_fields_based_on_keywords=
-Three_stars=
-Toggle_relevance=
-Toogle_quality_assured=
-Two_stars=
-Update_keywords=
-Write_values_of_special_fields_as_separate_fields_to_BibTeX=
-You_have_changed_settings_for_special_fields.=
-no_preview_available=
+Reset_preferences_(key1,key2,..._or_'all')=Redefinir_prefer\u00eancias_(key1,key2,..._ou_todas)
+Find_unlinked_files=Encontrar_arquivos_n\u00e3o_referenciados
+Unselect_all=Desmarcar_todas
+Expand_all=Expandir_todos
+Collapse_all=Reduzir_todos
+Select_Directory=Escolha_diret\u00f3rio
+Choose_Directory=Escolha_Diret\u00f3rio
+Use_the_selected_directory_to_start_with_the_search.=Usar_o_diret\u00f3rio_selecionado_para_come\u00e7ar_a_busca
+Browse...=Pesquisar...
+Opens_the_file_browser.=Abrir_o_gerenciador_de_arquivos
+Scan_directory=Varrer_diret\u00f3rio
+Searches_the_selected_directory_for_unlinked_files.=Buscar_arquivos_n\u00e3o_referenciados_no_diret\u00f3rio_selecionado
+Starts_the_import_of_bibtex_entries.=Iniciar_a_importa\u00e7\u00e3o_de_entradas_BibTeX
+Leave_this_dialog.=Deixar_esse_di\u00e1logo.
+Create_directory_based_keywords=Criar_diret\u00f3rios_baseados_em_palavras-chave
+Creates_keywords_in_created_entrys_with_directory_pathnames=Criar_palavras-chave_nas_refer\u00eancias_criadas_com_caminhos_de_diret\u00f3rios
+Select_a_directory_where_the_search_shall_start.=Selecione_um_diret\u00f3rio_em_que_a_busca_deve_come\u00e7ar
+Select_file_type\:=Selecione_o_arquivo
+These_files_are_not_linked_in_the_active_database.=Esses_arquivos_n\u00e3o_s\u00e3o_referenciados_na_base_de_dados_ativa
+Entry_type_to_be_created\:=Tipo_de_refer\u00eancia_a_ser_criada
+Searching_file_system...=Buscando_sistema_de_arquivo...
+Importing_into_Database...=Importando_na_base_de_dados
+Select_directory=Selecionar_diret\u00f3rio
+Select_files=Selecionar_arquivos
+Bibtex_entry_creation=Cria\u00e7\u00e3o_de_refer\u00eancia_BibTeX
+<No_selection>=<Sem_sele\u00e7\u00e3o>
+Push_selection_to_TeXstudio=Enviar_sele\u00e7\u00e3o_ao_TeXstudio
+Path_to_TeXstudio=Caminho_do_TeXstudio
+Program_'%0'_not_found=Programa_%0_n\u00e3o_encontrado
+Pushed_citations_to_TeXstudio=Cita\u00e7\u00f5es_enviadas_ao_TeXstudio
+Unable_to_connect_to_freecite_online_service.=N\u00e3o_foi_poss\u00edvel_conectar_ao_servi\u00e7o_FreeCite
+Parse_with_FreeCite=Interpretar_com_FreeCite
+Insert_selected_citations_into_TeXstudio=Inserir_cita\u00e7\u00f5es_selecionadas_no_TeXstudio
+The_current_BibTeX_key_will_be_overwritten._Continue?=A_chave_BibTeX_atual_ser\u00e1_sobrescrita._Continuar_mesmo_assim?
+Overwrite_key=Sobrescrever_chave
+Not_overwriting_existing_key._To_change_this_setting,_open_Options_->_Prefererences_->_BibTeX_key_generator=Chave_existente_N\u00c3O_foi_sobrescrita._Para_mudar_essa_configura\u00e7\u00e3o_abra_Op\u00e7\u00f5es_->_Prefer\u00eancias_->_Gerador_de_chaves_BibTeX
+How_would_you_like_to_link_to_'%0'?=Como_deseja_ligar_ao_'%0'?
+Bibtex_key_patterns=Padr\u00f5es_de_chaves_BibTeX
+Changed_special_field_settings=Prefer\u00eancias_de_campos_especiais_alteradas
+Clear_priority=Limpar_prioridades
+Clear_rank=Limpar_classifica\u00e7\u00e3o
+Compact_rank=Compactar_classifica\u00e7\u00e3o
+Convert_1st,_2nd,_..._to_real_superscripts=Converter_primeiro_segundo_..._para_sobrescritos
+Dropped_comment_from_database=Coment\u00e1rio_retirado_da_base_de_dados
+Enable_PDF_preview=Habilitar_preview_de_PDF
+Enable_special_fields=Habilitar_campos_especiais
+Five_stars=Cinco_estrelas
+Four_stars=Quatro_estrelas
+Help_on_special_fields=Ajuda_com_campos_especiais
+Keywords_of_selected_entries=Palavras-chave_das_entradas_selecionadas
+Manage_content_selectors=Gerenciar_seletores_de_conte\u00fado
+Manage_keywords=Gerenciar_palavras-chave
+Marked_entries'_quality_as_good=Qualidade_das_entradas_marcada_como_boa
+Marked_entries_as_relevant=Entradas_marcadas_como_relevantes
+No_priority_information=Sem_informa\u00e7\u00f5es_de_prioridade
+No_rank_information=Sem_informa\u00e7\u00f5es_de_classifica\u00e7\u00e3o
+One_star=Uma_estrela
+Priority=Prioridade
+Priority_high=Alta_prioridade
+Priority_low=Baixa_prioridade
+Priority_medium=M\u00e9dia_prioridade
+Quality=Qualidade
+Rank=Classifica\u00e7\u00e3o
+Relevance=Relev\u00e2ncia
+Set_priority_to_high=Definir_prioridade_como_alta
+Set_priority_to_low=Definir_prioridade_como_baixa
+Set_priority_to_medium=Definir_prioridade_como_m\u00e9dia
+Set_rank_to_five_stars=Classificar_como_cinco_estrelas
+Set_rank_to_four_stars=Classificar_como_quatro_estrelas
+Set_rank_to_one_star=Classificar_como_uma_estrela
+Set_rank_to_three_stars=Classificar_como_tr\u00eas_estrelas
+Set_rank_to_two_stars=Classificar_como_duas_estrelas
+Show_one_letter_heading_for_icon_columns=Mostrar_t\u00edtulo_de_uma_letra_para_colunas_de_\u00edcones
+Show_priority=Mostrar_prioridade
+Show_quality=Mostrar_qualidade
+Show_rank=Mostrar_classifica\u00e7\u00e3o(estrelas)
+Show_relevance=Mostrar_relev\u00e2ncia
+Synchronize_with_keywords=Sincronizar_com_palavras-chave
+Synchronized_special_fields_based_on_keywords=Campos_especiais_sincronizados_com_base_nas_palavras-chave
+Three_stars=Tr\u00eas_estrelas
+Toggle_relevance=Alternar_relev\u00e2ncia
+Toogle_quality_assured=Alteranar_qualidade_garantida
+Two_stars=Duas_estrelas
+Update_keywords=Atualizar_palavras-chave
+Write_values_of_special_fields_as_separate_fields_to_BibTeX=Escrever_valores_dos_campos_especiais_como_campos_separados_do_BibTeX
+You_have_changed_settings_for_special_fields.=Voc\u00ea_alterou_as_configura\u00e7\u00f5es_de_campos_especiais
+no_preview_available=Preview_n\u00e3o_dispon\u00edvel
 
-%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.=
-A_string_with_that_label_already_exists=
-Connection_to_OpenOffice_has_been_lost._Please_make_sure_OpenOffice_is_running,_and_try_to_reconnect.=
-Correct_the_entry,_and_reopen_editor_to_display/edit_source.=
-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_running_OpenOffice.\nMake_sure_you_have_installed_OpenOffice_with_Java_support.\nIf_connecting_manually,_please_verify_program_and_library_paths.\n\nError_message\:_=
-Created_group_"%0".=
-If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.=
-Import_Metadata_From_PDF=
-Not_connected_to_any_Writer_document._Please_make_sure_a_document_is_open,_and_use_the_'Select_Writer_document'_button_to_connect_to_it.=
-Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!=
-Removed_all_subgroups_of_group_"%0".=
-To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.=
-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_determine_plugin_name_and_version._This_may_not_be_a_valid_JabRef_plugin.=
-Use_the_following_delimiter_character(s)\:=
-When_downloading_files,_or_moving_linked_files_to_the_file_directory,_prefer_the_bib_file_location_rather_than_the_file_directory_set_above=
-Your_style_file_specifies_the_character_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.=
+%0_entries_found._To_reduce_server_load,_only_%1_will_be_downloaded.=%0_entradas_encontradas._Para_reduzir_a_carga_do_servidor,_apenas_%1_ser\u00e3o_baixados.
+A_string_with_that_label_already_exists=Uma_string_com_esse_label_j\u00e1_existe
+Connection_to_OpenOffice_has_been_lost._Please_make_sure_OpenOffice_is_running,_and_try_to_reconnect.=Conex\u00e3o_com_o_OpenOffice_foi_perdida._Por_favor_certifique-se_de_que_o_OpenOffice_est\u00e1_rodando,_e_tente_reconectar
+Correct_the_entry,_and_reopen_editor_to_display/edit_source.=Corrija_a_refer\u00eancia,_e_abra_o_editor_novamente_para_mostrar/editar_o_fonte
+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').=N\u00e3o_foi_poss\u00edvel_conectar_a_um_processo_gnuserv._Assegure-se_de_que_o_Emacs_ou_XEmacs_est\u00e1_rodando,<BR>e_que_o_servidor_foi_iniciado_(por_meio_do_comando_'server-start1/'gnu-serv-start').
+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\:_=N\u00e3o_foi_poss\u00edvel_conectar_ao_OpenOffice.\nAssegure-se_que_o_OpenOffice_est\u00e1_instalado_com_suporte_Java.\nSe_estiver_conectando_manualmente,_por_favor_verifique_o_caminho_do_programa_e_da_biblioteca.\n\nMensagem_de_erro:_
+Created_group_"%0".=Grupo_criado_"%0".
+If_a_pasted_or_imported_entry_already_has_the_field_set,_overwrite.=Se_a_refer\u00eancia_colada_ou_importada_j\u00e1_possuir_o_campo_definido,_sobrescrever.
+Import_Metadata_From_PDF=Importar_Metadados_do_PDF
+Not_connected_to_any_Writer_document._Please_make_sure_a_document_is_open,_and_use_the_'Select_Writer_document'_button_to_connect_to_it.=N\u00e3o_conectado_a_nenhum_documento_do_Writer._Por_favor_assegure-se_de_que_um_documento_est\u00e1_aberto,_e_use_o_bot\u00e3o_'Selecionar_documento_do_Writer'_para_conectar_a_ele.
+Please_note_that_this_is_an_early_beta_version._Do_not_use_it_without_backing_up_your_files!=Note_que_essa_\u00e9_uma_vers\u00e3o_beta_inst\u00e1vel._N\u00e3o_use_sem_fazer_um_backup_de_seus_arquivos!
+Removed_all_subgroups_of_group_"%0".=Todos_os_subgrupos_do_grupo_"%0"_foram_removidos.
+To_disable_the_memory_stick_mode_rename_or_remove_the_jabref.xml_file_in_the_same_folder_as_JabRef.=Para_desabilitar_o_modo_memory_stick_renomeie_ou_remova_o_arquivo_jabref.xml_no_mesmo_diret\u00f3rio_que_o_JabRef
+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.=N\u00e3o_poss\u00edvel_conectar._Uma_poss\u00edvel_raz\u00e3o_\u00e9_que_o_JabRef_e_o_OpenOffice/LibreOffice_n\u00e3o_est\u00e3o_rodando_no_mesmo_modo:_32_bits_ou_64_bits.
+Unable_to_determine_plugin_name_and_version._This_may_not_be_a_valid_JabRef_plugin.=N\u00e3o_foi_poss\u00edvel_determinar_o_nome_e_vers\u00e3o_plugin._Esse_n\u00e3o_deve_ser_um_plugin_v\u00e1lido_do_JabRef.
+Use_the_following_delimiter_character(s)\:=Use_o(s)_seguinte(s)_caracter(es)_delimitador(es):
+When_downloading_files,_or_moving_linked_files_to_the_file_directory,_prefer_the_bib_file_location_rather_than_the_file_directory_set_above=Quand_estiver_baixando_arquivos,_ou_mesmo_movendo_arquivos_ao_diret\u00f3rio,_d\u00ea_prefer\u00eancia_ao_local_onde_est\u00e1_o_seu_arquivo_bib.
+Your_style_file_specifies_the_character_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=Seu_arquivo_de_estilo_especifica_o_formato_de_caracter_'%0',_que_n\u00e3o_est\u00e1_definido_no_seu_documento_OpenOffice_atual
+Your_style_file_specifies_the_paragraph_format_'%0',_which_is_undefined_in_your_current_OpenOffice_document.=Seu_arquivo_de_estilo_especifica_o_formato_de_par\u00e1grafo_'%0',_que_n\u00e3o_est\u00e1_definido_no_seu_documento_OpenOffice_atual
 
-Error_fetching_from_Google_Scholar=
-Run_HTML_converter_on_title=
-Searching...=
-You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=
-Confirm_selection=
-Unknown_DOI\:_'%0'.=
-Get_BibTeX_entry_from_DOI=
-Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=
-Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=
-Import_conversions=
-Run_filter_on_title_keeping_the_case_of_selected_words=
-Intermittent_errors_on_the_IEEE_Xplore_server._Please_try_again_in_a_while.=
-Please_enter_a_search_string=
-Please_open_or_start_a_new_database_before_searching=
-An_Error_occurred_while_fetching_from_ADS_(%0)\:=
-Error_while_fetching_from_ADS=
-Error_while_fetching_from_OAI2=
-An_Error_occurred_while_parsing_abstract=
-Unknown_DiVA_entry\:_'%0'.=
-Get_BibTeX_entry_from_DiVA=
-Log=
+Error_fetching_from_Google_Scholar=Erro_ao_buscar_no_Google_Scholar
+Run_HTML_converter_on_title=Executar_conversor_HTML_no_t\u00edtulo
+Searching...=Buscando...
+You_have_selected_more_than_%0_entries_for_download._Some_web_sites_might_block_you_if_you_make_too_many_rapid_downloads._Do_you_want_to_continue?=Voc\u00ea_selecionou_mais_de_%0_entradas_para_download._Alguns_sites_podem_bloquear_seu_acesso_se_voc\u00ea_fizer_muitos_downloads_num_per\u00edodo_curto_de_tempo._Deseja_continuar_mesmo_assim?
+Confirm_selection=Confirmar_sele\u00e7\u00e3o
+Unknown_DOI\:_'%0'.=DOI_desconhecido:_'%0'.
+Get_BibTeX_entry_from_DOI=Obter_refer\u00eancia_a_partir_do_DOI.
+Prefer_converting_subscripts_and_superscripts_to_equations_rather_than_text=Dar_prefer\u00eancia_\u00e0_convers\u00e3o_de_subscritos_sobrescritos_para_equa\u00e7\u00f5es_ao_inv\u00e9s_de_textos
+Add_{}_to_specified_title_words_on_search_to_keep_the_correct_case=Adicione_{}_\u00e0s_palavras_do_t\u00edtulo_na_busca_para_manter_mai\u00fasculas_min\u00fasculas
+Import_conversions=Importar_convers\u00f5es
+Run_filter_on_title_keeping_the_case_of_selected_words=Executar_filtro_no_t\u00edtulo_para_manter_as_mai\u00fasculas_e_min\u00fasculas_das_palavras_selecionadas
+Intermittent_errors_on_the_IEEE_Xplore_server._Please_try_again_in_a_while.=Erros_intermitents_no_IEEE_Xplore_server._Por_favor_tente_novamente_em_alguns_instantes.
+Please_enter_a_search_string=Favor_digitar_uma_string_de_busca
+Please_open_or_start_a_new_database_before_searching=Por_favor,_abra_ou_inicie_uma_base_de_dados_antes_de_realizar_a_busca
+An_Error_occurred_while_fetching_from_ADS_(%0)\:=Um_Erro_ocorreu_enquanto_pensquisando_a_partir_do_ADS_(%0)\:
+Error_while_fetching_from_ADS=Erro_enquanto_pesquisando_em_ADS
+Error_while_fetching_from_OAI2=Erro_enquanto_pesquisando_em_OAI2
+An_Error_occurred_while_parsing_abstract=Um_erro_ocorreu_durante_a_interpreta\u00e7\u00e3o_do_abstract_(resumo)
+Unknown_DiVA_entry\:_'%0'.=Refer\u00eancia_DiVA_desconhecida:_'%0'
+Get_BibTeX_entry_from_DiVA=Obter_refer\u00eancia_BibTeX_a_partir_do_DiVA
+Log=Log
 
-ISO_690=
+ISO_690=ISO_690
 
-Add_brackets_and_replace_separators_with_their_non-breaking_version_for_units=
-Add_new_entry_and_keep_both_old_entries=
-Cancelled_merging_entries=
-Error_in_entry=
-First_entry=
-Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=
-Merge_entries=
-Merged_entries_into_a_new_and_kept_the_old=
-Merged_entries_into_a_new_and_removed_the_old=
-Merged_entry=
-None=
-Parse=
-Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=
-Replace_old_entries_with_new_entry=
-Result=
-Second_entry=
-Show_DOI_first=
-Show_URL_first=
-Use_1st=
-Use_2nd=
-Use_Emacs_key_bindings=
-You_have_to_choose_exactly_two_entries_to_merge.=
+Add_brackets_and_replace_separators_with_their_non-breaking_version_for_units=Adicionar_colchetes_e_substituir_separadores_por_suas_vers\u00f5es_sem_quebras_de_unidades
+Add_new_entry_and_keep_both_old_entries=Adicionar_nova_refer\u00eancia_e_manter_ambas_entradas_antigas
+Cancelled_merging_entries=Uni\u00e3o_das_refer\u00eancias_cancelada
+Error_in_entry=Erro_na_refer\u00eancia
+First_entry=Primeira_refer\u00eancia
+Format_units_by_adding_non-breaking_separators_and_keeping_the_correct_case_on_search=Formatar_unidades_adicionando_separadores_sem_quebras_e_manter_mai\u00fasculas_e_min\u00fasculas_na_busca
+Merge_entries=Mesclar_refer\u00eancias
+Merged_entries_into_a_new_and_kept_the_old=Mesclou_refer\u00eancias_em_uma_nova_e_manteve_a_antiga
+Merged_entries_into_a_new_and_removed_the_old=Mesclou_as_refer\u00eancias_em_uma_nova_e_removeu_a_antiga
+Merged_entry=Refer\u00eancia_mesclada
+None=None
+Parse=Interpretar
+Remove_unneccessary_$,_{,_and_}_and_move_adjacent_numbers_into_equations=Remover_$,_{,_e_}_desnecess\u00e1rios_e_mover_os_n\u00fameros_adjacentes_para_equa\u00e7\u00f5es
+Replace_old_entries_with_new_entry=Substituir_refer\u00eancias_antigas_pela_nova_refer\u00eancia
+Result=Resultado
+Second_entry=Segunda_refer\u00eancia
+Show_DOI_first=Mostrar_DOI_antes
+Show_URL_first=Mostrar_URL_antes
+Use_1st=Usar_primeiro
+Use_2nd=Usar_segundo
+Use_Emacs_key_bindings=Usar_combina\u00e7\u00f5es_de_teclas_do_Emacs
+You_have_to_choose_exactly_two_entries_to_merge.=Voc\u00ea_deve_escolher_exatamente_duas_refer\u00eancias_para_mesclar
 
-Update_timestamp_on_modification=
-change_field=
+Update_timestamp_on_modification=Atualizar_timestamp_na_modifica\u00e7\u00e3o
+change_field=alterar_campo
 
-All_key_bindings_will_be_reset_to_their_defaults.=
-Automatically_set_file_links=
-Continue?=
-Resetting_all_key_bindings=
-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=
+All_key_bindings_will_be_reset_to_their_defaults.=Todas_as_teclas_de_atalho_ser\u00e3o_reconfiguradas_para_seus_valores_padr\u00e3o.
+Automatically_set_file_links=Definir_links_para_os_arquivos_automaticamente
+Continue?=Continuar?
+Resetting_all_key_bindings=Redefinindo_todas_as_teclas_de_atalho
+Save_entries_ordered_by_title=Salvar_refer\u00eancias_ordenadas_por_t\u00edtulo
+Export_entries_ordered_by_title=Exportar_refer\u00eancias_ordenadas_por_t\u00edtulo
+Quotes=Cita\u00e7\u00f5es
+Curly_Brackets=Chaves
+Include_empty_fields=Incluir_campos_vazios
+Field_saving_options=Op\u00e7\u00f5es_de_armazenamento_de_campos
+Field_value_delimiter._E.g.,_"author\={x}"_or_"author\='x'"=Delimitador_de_valor_de_campo._Ex.:_"author={x}"_ou_"author='x'"
+Run_Unicode_converter_on_title,_author(s),_and_abstract=Executar_conversor_de_Unicode_no_t\u00edtulo,_autor(es),_e_resumo
 
-Database_has_changed._Do_you_want_to_save_before_closing?=
-Host=
-Invalid_setting=
-Network=
-Please_specify_both_hostname_and_port=
-Port=
-Start_field_contents_in_same_column=
-Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=
-Use_custom_proxy_configuration=
-Clear_connection_settings=
-Cleared_connection_settings.=
+Database_has_changed._Do_you_want_to_save_before_closing?=Base_de_dados_mudou._Deseja_salvar_antes_de_fechar?
+Host=Host
+Invalid_setting=Configura\u00e7\u00e3o_Inv\u00e1lida
+Network=Rede
+Please_specify_both_hostname_and_port=Por_favor,_especifique_o_hostname_e_a_porta
+Port=Porta
+Start_field_contents_in_same_column=Iniciar_conte\u00fados_do_campo_na_mesma_coluna
+Use_camel_case_for_field_names_(e.g.,_"HowPublished"_instead_of_"howpublished")=Usar_camel_case_para_nomes_de_campos_(ex._"HowPublished"_ao_inv\u00e9s_de_"howpublished")
+Use_custom_proxy_configuration=Usar_configura\u00e7\u00f5es_personalizadas_de_proxy
+Clear_connection_settings=Limpar_configura\u00e7\u00f5es_da_conex\u00e3o
+Cleared_connection_settings.=Configura\u00e7\u00f5es_de_conex\u00e3o_foram_limpas.
 Rebind_C-a,_too=
 
-Show_number_of_elements_contained_in_each_group=
+Show_number_of_elements_contained_in_each_group=Mostrar_n\u00famero_de_elementos_em_cada_grupo
+Open_folder=Abrir_pasta
 
-Opened_%0_folder(s).=
+Opened_%0_folder(s).=%0_diret\u00f3rio(s)_foi(ram)_aberto(s).
 
-Searches_for_unlinked_PDF_files_on_the_file_system=
+Searches_for_unlinked_PDF_files_on_the_file_system=Busca_por_arquivos_PDF_n\u00e3o_referenciados_no_sistema_de_arquivos
diff --git a/src/resource/Menu_ja.properties b/src/resource/Menu_ja.properties
index 58fee0b..d7dd1c9 100644
--- a/src/resource/Menu_ja.properties
+++ b/src/resource/Menu_ja.properties
@@ -78,7 +78,6 @@ Save_session=\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u4fdd\u5b58
 # Tools
 Search=\u691c\u7d22(&S)
 Search_IEEEXplore=IEEEXplore\u3092\u691c\u7d22
-Search_ACM_Portal=ACM_Portal\u3092\u691c\u7d22
 Select_all=\u5168\u3066\u9078\u629e(&A)
 Set_up_general_fields=\u6c4e\u7528\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u8a2d\u5b9a(&G)
 Show_error_console=\u30a8\u30e9\u30fc\u30b3\u30f3\u30bd\u30fc\u30eb\u3092\u8868\u793a
@@ -95,8 +94,6 @@ Tools=\u30c4\u30fc\u30eb(&T)
 Unabbreviate_journal_names=\u5b66\u8853\u8a8c\u540d\u3092\u975e\u77ed\u7e2e\u5f62\u306b
 # Edit
 Undo=\u53d6\u308a\u6d88\u3057(&U)
-
-Mark_specific_color=\u7279\u5b9a\u8272\u3067\u6a19\u8b58\u3092\u4ed8\u3051\u308b(&A)
 Unmark_all=\u6a19\u8b58\u3092\u3059\u3079\u3066\u5916\u3059(&L)
 Unmark_entries=\u9805\u76ee\u306e\u6a19\u8b58\u3092\u5916\u3059(&N)
 View=\u8868\u793a(&V)
@@ -130,6 +127,7 @@ Fetch_INSPIRE=INSPIRE\u304b\u3089\u53d6\u5f97
 Search_Medline=Medline\u3092\u691c\u7d22
 Import_from_external_SQL_database=\u5916\u90e8SQL\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u3089\u8aad\u307f\u8fbc\u3080
 Focus_entry_table=\u9805\u76ee\u8868\u306b\u30d5\u30a9\u30fc\u30ab\u30b9
+Search_ACM_Portal=ACM_Portal\u3092\u691c\u7d22
 
 Increase_table_font_size=\u8868\u30d5\u30a9\u30f3\u30c8\u3092\u62e1\u5927(&I)
 Decrease_table_font_size=\u8868\u30d5\u30a9\u30f3\u30c8\u3092\u7e2e\u5c0f(&D)
@@ -142,6 +140,8 @@ Look_up_full_text_document=\u5e73\u6587\u6587\u66f8\u5168\u4f53\u3092\u691c\u7d2
 Set/clear/rename_fields=\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u8a2d\u5b9a/\u30af\u30ea\u30a2/\u540d\u79f0\u5909\u66f4
 
 Search_ScienceDirect=ScienceDirect\u3092\u691c\u7d22
+
+Mark_specific_color=\u7279\u5b9a\u8272\u3067\u6a19\u8b58\u3092\u4ed8\u3051\u308b(&A)
 Resolve_duplicate_BibTeX_keys=\u91cd\u8907\u3057\u305fBibTeX\u9375\u3092\u89e3\u6d88\u3059\u308b
 
 Minimize_to_system_tray=\u30b7\u30b9\u30c6\u30e0\u30c8\u30ec\u30a4\u306b\u6700\u5c0f\u5316
@@ -151,5 +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=
+Open_folder=\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304f
 Find_unlinked_files...=\u30ea\u30f3\u30af\u3057\u3066\u3044\u306a\u3044\u30d5\u30a1\u30a4\u30eb\u3092\u691c\u7d22
diff --git a/src/resource/Menu_pt_BR.properties b/src/resource/Menu_pt_BR.properties
index 9239cdc..b954568 100644
--- a/src/resource/Menu_pt_BR.properties
+++ b/src/resource/Menu_pt_BR.properties
@@ -1,6 +1,6 @@
 #!
-#! created/edited by Popeye version 0.54 (popeye.sourceforge.net)
-#! encoding:Cp1252
+#! created/edited by Popeye version 0.55 (https://github.com/koppor/popeye)
+#! encoding:ISO-8859-1
 Abbreviate_journal_names_(ISO)=Abreviar_nomes_de_peri\u00f3dico(ISO)
 Abbreviate_journal_names_(MEDLINE)=Abreviar_nomes_de_peri\u00f3dico(MEDLINE)
 About_JabRef=Sobre_&JabRef
@@ -122,8 +122,8 @@ Minimize_to_system_tray=Minimizar_para_a_bandeja_do_sistema
 Legacy_tools...=Ferramentas_legadas...
 Copy_BibTeX_key_and_title=Copiar_chave_BibTeX_e_t\u00edtulo
 
-Cleanup_entries=
-Manage_keywords=
-Merge_entries=
-Open_folder=
-Find_unlinked_files...=
+Cleanup_entries=Limpar_entradas
+Manage_keywords=Gerenciar_palavras-chave
+Merge_entries=Unir_entradas
+Open_folder=Abrir_diret\u00f3rio
+Find_unlinked_files...=Encontrar_arquivos_n\u00e3o_referenciados
diff --git a/src/txt/CHANGELOG b/src/txt/CHANGELOG
index 6383d1a..452290b 100644
--- a/src/txt/CHANGELOG
+++ b/src/txt/CHANGELOG
@@ -1,4 +1,10 @@
 [2.10 branch]
+    - Line breaks in BibTeX fields (e.g., abstract and review) are now kept.
+    - Fixed completeness indicator in main table for entries with crossrefs and either/or required fields.
+    - Fixed [shorttitle] and [veryshorttitle] key generator markers, so they remove punctuation as described
+      in the documentation.
+2.10 beta 2
+    - Patched Windows install script to avoid wrong placement of Start menu items.
     - Reintroduced right-click on type label in entry editor to change entry type.
     - Fixed compatibility issue with OpenOffice plugin
     - Added Russian as language
diff --git a/src/windows/nsis/setup.nsi b/src/windows/nsis/setup.nsi
index e012511..e53d4e4 100644
--- a/src/windows/nsis/setup.nsi
+++ b/src/windows/nsis/setup.nsi
@@ -23,10 +23,12 @@ Name "JabRef ${VERSION}"
 !define COMPANY "JabRef Team"
 !define URL "http://jabref.sourceforge.net"
 !define PRODUCT_EXE "JabRef.exe"
+!define PRODUCT_NAME "JabRef"
 !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)"
 !define PRODUCT_LICENSE_FILE "dist\gpl3.txt"
 
 
+
 # Variables
 Var StartmenuFolder
 Var CreateDesktopIcon
@@ -98,7 +100,7 @@ Var InstDestination
 !define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKLM"
 !define MUI_STARTMENUPAGE_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
-!define MUI_STARTMENUPAGE_DEFAULTFOLDER "$(^Name)"
+!define MUI_STARTMENUPAGE_DEFAULTFOLDER "${PRODUCT_NAME}"
 !insertmacro MUI_PAGE_STARTMENU ${PRODUCT_NAME} $StartmenuFolder
 
 ; Watch the components being installed.

-- 
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