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

fi.evolver.ai.vaadin.translations.GeneralI18nProvider Maven / Gradle / Ivy

The newest version!
package fi.evolver.ai.vaadin.translations;

import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;

@Component
@Order(value=Ordered.LOWEST_PRECEDENCE - 10)
public class GeneralI18nProvider extends ResourceBundleTranslationProvider {
    private static final String BUNDLE_FOLDER = "i18n";
    private static final String BUNDLE_FILENAME = "translations";
    
    public GeneralI18nProvider() {
        super(BUNDLE_FOLDER, BUNDLE_FILENAME);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy