Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How is ellipsis (...) localized?

I'm making a piece of software that is intended to be localized in the future. I'm wondering how ellipsis (the ... indication an action opens a new window/dialog) are typically localized.

Do all languages use ellipsis this way? Can I safely add the ellipsis in my own code and reuse a string, e.g. Save As, both for the menu entry (Save As...) and the dialog title (Save As) or should the strings with and without ellipsis be specified in the translation table separately?

like image 363
Eneroth3 Avatar asked Feb 10 '18 07:02

Eneroth3


People also ask

Do other languages use ellipses?

A: Thecampaignhasbeensocrazy Due to the personalities. Answer ellipsis occurs in most if not all languages. It is a very frequent type of ellipsis that is omnipresent in everyday communication between speakers.

What does ellipsis mean in text?

Ellipsis points are periods in groups of usually three, or sometimes four. They signal either that something has been omitted from quoted text, or that a speaker or writer has paused or trailed off in speech or thought. That's the basics.


1 Answers

I often find myself asking this too. Should meaningful punctuation be part of the translatable text, or can it be safely suffixed outside?

You've not said what platforms you're developing for, so I can only come at this from my experience (web apps).


A good source of translation examples can be found in the WordPress community. These are used on millions of websites and you will find several cases of an ellipsis used in this context. e.g. the text "Saving..." to indicate progress, or "Read more..." to indicate that something follows on.

In these cases the punctuation is part of the translatable text, so I downloaded a few translations in non-latin scripts to see what they did with it:

Japanese, which uses different full-stops to western languages keeps the style of the source text:

続きを読む...

Arabic and Hebrew (which read right-to-left) both use the same punctuation, but simply render in reverse. Your platform (e.g. browser) should handle the text direction:

‫قراءة المزيد...
‫להמשך קריאה...

Also Thai, Indonesian, Sinhalese ... I could go on:

อ่านเพิ่มเติม...
Baca selanjutnya...
තවදුරටත් කියවන්න...

So it seems it's a common convention, but that doesn't necessarily mean you should hard-code it.

Worth noting that WordPress includes many hard-coded uses of an ellipsis for use when long text is truncated. Not quite the same use case as "Save As...", but interesting that such an international project would confidently use it in this way.

Personally I've often made the decision to suffix the punctuation in case I want to change it later without invalidating translations. I'm yet to find this is a problem, but there's always tomorrow.

Having separate strings in your translation table is obviously the safest thing to do. It also offers translators some discretion over the slightly different contexts (i.e. between button and title).


Side note: The triple dot used above isn't a true ellipsis. That's an academic point here I think.

like image 96
Tim Avatar answered Oct 22 '22 05:10

Tim