Two of the most common operations on Localizables is to join them into a paragraph or multiple paragraphs. Can we implement __mul__() and __add__() to join two localizables as a single paragraph and as multiple paragraphs respectively? * is evaluated before +, which means we can just chain both of these operators linearly to create paragraphs of individual localizables.
Two of the most common operations on
Localizables is to join them into a paragraph or multiple paragraphs. Can we implement__mul__()and__add__()to join two localizables as a single paragraph and as multiple paragraphs respectively?*is evaluated before+, which means we can just chain both of these operators linearly to create paragraphs of individual localizables.