How to end linked messages without whitespace #1008
Unanswered
MrTanoshii
asked this question in
Q&A
Replies: 1 comment
-
I ended up using a named interpolation instead of a linked message settings:
save_wipe_confirmation_text: Enable Data Wipe
save_wipe_feedback:
Enter '{confirmation_text}' (case sensitive) to unlock permanent deletion of
ALL data. {{
$t("settings.save_wipe_feedback", {
confirmation_text: $t("settings.save_wipe_confirmation_text"),
})
}} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem
I've tested my code using js object and yaml
My issue is I have code that looks like this:
Expected output:
Enter 'Enable Data Wipe'
Actual output:
Enter
"Solutions"
...'@:settings.save_wipe_confirmation_text '
but of course, then the output isEnter 'Enable Data Wipe '
(note the extra whitespace)Question
Is there a way to end the linked message without adding the whitespace?
Beta Was this translation helpful? Give feedback.
All reactions