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

com.smartling.maven.plugins.smartlingapi.mojo.NameTransformer Maven / Gradle / Ivy

The newest version!
package com.smartling.maven.plugins.smartlingapi.mojo;

import org.apache.commons.lang3.StringUtils;

public abstract class NameTransformer
{
    public abstract String transform(String name, String locale);

    protected String injectLocale(final String string, final String locale)
    {
        return StringUtils.replace(string, "{{locale}}", locale);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy