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

ru.pocketbyte.locolaser.gettext.resource.file.provider.GetTextResourceFileProvider.kt Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package ru.pocketbyte.locolaser.gettext.resource.file.provider

import ru.pocketbyte.locolaser.config.resources.ResourceFileProvider
import java.io.File

internal class GetTextResourceFileProvider : ResourceFileProvider {
    override fun get(locale: String, directory: File, name: String, extension: String): File {
        return File(File(directory, "$locale/LC_MESSAGES/"), "$name.$extension")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy