Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
darkbarker committed Aug 16, 2013
1 parent e8485f2 commit 6954bc0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
27 changes: 25 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
java i18n
=========

## About

Translation to the missing locales ​​in official translations. Currently translated to:
* ru

Not translate all of the resources, are mainly translated GUI (swing and awt).
Most resources do not consider it necessary to translate, such as launchers, tools, etc.

## Notes

1) from jdk-source all implements ListResourceBundle

Expand All @@ -17,6 +28,7 @@ com.sun.org.apache.xml.internal.utils.res.XResources*
com.sun.org.apache.xpath.internal.res.XPATHErrorResources*

2) *.properties from openjdk7 (openjdk/jdk/src/share/classes)

-all of which are translated into other languages
-except that only translated in some languages ​​(e.g., ja+zh_CN or en+de)

Expand All @@ -43,6 +55,17 @@ sun/rmi/server/resources/rmid.properties
sun/tools/jar/resources/jar.properties
sun/util/logging/resources/logging.properties

3) ...
## Links

* http://openjdk.java.net/groups/i18n/

## Contributions

Support, patches, comments, translations to other locales, suggestions are welcome.
https://github.com/darkbarker/java-i18n

## License

Code released under the Apache License v2.0. For further information visit:

* http://openjdk.java.net/groups/i18n/
* http://www.apache.org/licenses/
4 changes: 2 additions & 2 deletions src/test/Frame.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public void actionPerformed( ActionEvent e )
@Override
public void actionPerformed( ActionEvent e )
{
Frame.this.setLocale( Locale.getDefault() );
viewer.view( Frame.this );
}
});
Expand Down Expand Up @@ -152,7 +151,8 @@ class LookAndFeelInfoRenderer
{
private final ListCellRenderer<? super LookAndFeelInfo> delegate;

public LookAndFeelInfoRenderer(ListCellRenderer<? super LookAndFeelInfo> delegate) {
public LookAndFeelInfoRenderer(ListCellRenderer<? super LookAndFeelInfo> delegate)
{
this.delegate = delegate;
}

Expand Down
1 change: 0 additions & 1 deletion src/test/PrintDialogVeiwer.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public void view( JFrame frame )
{
PrinterJob printerJob = PrinterJob.getPrinterJob();
printerJob.printDialog();

}

@Override
Expand Down

0 comments on commit 6954bc0

Please sign in to comment.