Adam Griffiths
Adam Griffiths

Reputation: 782

Multiline strings in Flutter *.arb files

I am internationalizing my flutter app.

I have some long paragraphs that need to be internationalised, and in the .arb file it becomes painful to scroll.

How can I break up the paragraph over multiple lines?

Upvotes: 14

Views: 3042

Answers (2)

Colo Caps
Colo Caps

Reputation: 27

I know i am a litle bit late but,

Yes, this is posible, a manage to do it using an VS Code extension call i18n arb editor

the proyect on github : https://github.com/thibault-vanderseypen/vsce-i18n-json-editor

Upvotes: 0

Timo Bähr
Timo Bähr

Reputation: 2051

I think this is not possible. (Please correct me someone if this is wrong!)

You could add \n to the String resource for line breaks if necessary. And to overcome the "painful scroll" I enabled soft wrap for all *.arb files.

For Android Studio:

  1. Right click on row number inside any file
  2. Configure Soft Wraps
  3. Add ; *.arb to entry "Soft-wrap these files", so my configuration looks like this:
*.md; *.txt; *.rst; *.adoc; *.arb

Compare ApplicationResourceBundleSpecification for more information on ARB specification.

Upvotes: 15

Related Questions