Problem with Custom Inventories and Translatable

I have a problem with the Method name(Translatable name) from the CustomInventoryBuilder.
My Problem is that I have no idea how to get a Translatable.

So could someone please help me?

This needs some cleanup, it should be Text
but you can find all subinterfaces on the Translatable javadoc (html)

Any progress on that? I’m also trying to figure this out.

And… how goes? I need to set the of my inventory too.

It’s now a Translation object
https://github.com/SpongePowered/SpongeAPI/blob/master/src/main/java/org/spongepowered/api/item/inventory/custom/CustomInventory.java#L57
There are multiple ways to get a translation object, e.g

Optional<Translation> optTranslation = Sponge.getRegistry().getTranslationById("tile.stone.stone.name");

or

new FixedTranslation("Some Text");