Skip to content

Commit

Permalink
Fix persian name caused by encoding issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonharrer committed Oct 14, 2015
1 parent 9fb9859 commit 6f46818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/sf/jabref/logic/l10n/Languages.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public class Languages {
LANGUAGES.put("Dansk", "da");
LANGUAGES.put("Deutsch", "de");
LANGUAGES.put("English", "en");
LANGUAGES.put("Español", "es");
LANGUAGES.put("Persian (?????)", "fa");
LANGUAGES.put("Español", "es");
LANGUAGES.put("Persian (فارسی)", "fa");
LANGUAGES.put("Fran\u00E7ais", "fr");
LANGUAGES.put("Bahasa Indonesia", "in");
LANGUAGES.put("Italiano", "it");
Expand Down

2 comments on commit 6f46818

@mlep
Copy link
Contributor

@mlep mlep commented on 6f46818 Oct 14, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the meantime, does "Français" should remain coded with an "\u00E7"?
(maybe it should be changed to "ç" just to unify encoding)

@simonharrer
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in most recent commit. You and @stefan-kolb had the same idea at the same time. :)

Please sign in to comment.