com.smartling.maven.plugins.smartlingapi.mojo.NameTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartling-api-maven-plugin Show documentation
Show all versions of smartling-api-maven-plugin Show documentation
Maven plugin for accessing Smartling API.
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