class DefaultI18nSourceSet : I18nSourceSet
Implementation for a combination of one SourceDirectorySets for each of the three supported translation formats.
DefaultI18nSourceSet(sourceSet: SourceSet, objFactory: ObjectFactory)
Implementation for a combination of one SourceDirectorySets for each of the three supported translation formats. |
val lang: SourceDirectorySet
Source set for *.lang files (by default only files ending in |
|
val mo: SourceDirectorySet
Source set for *.mo files (by default only files ending in |
|
val name: String
The name of the SourceSet for which this interface provides SourceDirectorySets for i18n. |
|
val po: SourceDirectorySet
Source set for *.po files (by default only files ending in |
fun lang(configureClosure: Closure<in SourceDirectorySet>): I18nSourceSet
Configure the SourceDirectorySet for *.lang files using a Closure. fun lang(configureAction: Action<in SourceDirectorySet>): I18nSourceSet
Configure the SourceDirectorySet for *.lang files using an Action. |
|
fun mo(configureClosure: Closure<in SourceDirectorySet>): I18nSourceSet
Configure the SourceDirectorySet for *.mo files using a Closure. fun mo(configureAction: Action<in SourceDirectorySet>): I18nSourceSet
Configure the SourceDirectorySet for *.mo files using an Action. |
|
fun po(configureClosure: Closure<in SourceDirectorySet>): I18nSourceSet
Configure the SourceDirectorySet for *.po files using a Closure. fun po(configureAction: Action<in SourceDirectorySet>): I18nSourceSet
Configure the SourceDirectorySet for *.po files using an Action. |