Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Internationalization.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This work involves translating strings into other languages (often called NLS fo
Tools Used
----------

Some Eclipse plug-ins use ICU4J APIs when working with locale-specific content.
Eclipse plug-ins use standard Java APIs (such as `java.text` and `java.util`) when working with locale-specific content.

Most Eclipse plug-ins use a special [Eclipse message bundle](http://www.eclipse.org/eclipse/platform-core/documents/3.1/message_bundles.html) mechanism for working with translated strings. This mechanism uses traditional Java message.properties files, but without using String-based keys. This has much better memory usage characteristics than traditional approaches.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import java.util.*;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.NullProgressMonitor;
// can't use ICU, used by ant

public class Policy {
private static final String bundleName = "org.eclipse.core.resources.ant.messages";//$NON-NLS-1$
Expand Down
1 change: 0 additions & 1 deletion ua/infocenter-web/infocenter-product/infocenter.product
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ org.osgi.framework.bootdelegation=*
</vm>

<plugins>
<plugin id="com.ibm.icu"/>
<plugin id="org.apache.felix.scr"/>
<plugin id="org.apache.lucene.analysis-common"/>
<plugin id="org.apache.lucene.analysis-smartcn"/>
Expand Down
Loading