jsverse / transloco

🚀 😍 The internationalization (i18n) library for Angular

Home Page:https://jsverse.github.io/transloco/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feature(transloco): Use MessageFormatTranspiler with FunctionalTranspiler

MikeDabrowski opened this issue · comments

Is there an existing issue for this?

  • I have searched the existing issues

Which Transloco package(s) will this feature affect?

MessageFormat

Is your feature request related to a problem? Please describe

Is there a way to combine the MessageFormatTranspiler and FunctionalTranspiler?
Current impl of MessageFormatTranspiler extends DefaultTranspiler. I havent found any hint in the docs apart creating custom one myself.

Describe the solution you'd like

No response

Describe alternatives you've considered

CustomTranspiler extends FunctionalMessageFormatTranspiler extends FunctionalTranspiler.

I just started writing it, not sure if it will work.

Additional context

No response

I would like to make a pull request for this feature

Yes 🚀

@MikeDabrowski I'll have to consider how since it wasn't raised before.
I would love to hear your functional transpiler use case! I don't get much comments about it.

We have an alert type component - just a rectangle with background and text we display to notify user of some important things.

That already has translation that uses markdown. Now UX has the idea that we need to show additionally a list of errors there. If But those errors each has to be translated as well. I thought maybe I could just append the translated errors for markdown to render them. But I thought the logic to do so would be best moved to such function.

I tried to merge Functional and MessageFormat ones but the fn didn't work.

In the end (we need this done by the end of this week) I just created new component and have two regular translations.

We just got another feature where this fn would be useful - need to replace some parts of translations based on dynamic config.