All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softicar.platform.common.core.i18n.ILanguageTranslator Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.core.i18n;

/**
 * Common interface of translation engines.
 *
 * @author Oliver Richers
 */
public interface ILanguageTranslator {

	/**
	 * Translates the specified text.
	 *
	 * @param language
	 *            the destination language
	 * @param text
	 *            the text to translate, never null
	 * @return the text translated into the destination language, never null
	 */
	String translate(LanguageEnum language, String text);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy