A word or phrase may be ambiguous to a translator who will likely only see the string in the interface of their translation tool and not necessarily on the front-end of your theme. Ambiguity can arise when a term is used in more than one context.
The functions _x()
or _ex()
are used to add the context to a string. They are similar to __()
and _e()
, but have a comment as an additional argument.
The function can be used in differnt ways
- Explain the use for words with double meaings
- Give extra information about the string
This strings is used in the title of the post format metabox. If there was no context given then it would be unclear if it meant for formating a text or as a title to the post format metbox.
In this example the string is the comment coloumn title on the comments page and not the verb to comment to a post.
This string is to mark a site as spam in the multisite interface. The context allows it to differenciate to marking a comment as spam.
In this case a symbol is internationlized. The context here explains that the comma is being used as a seperator between tags.
Languages have differnt date and time formats. So these can be translated too. The context is not only given to help the translator to decifer the letters but to also differentiate between the standard date format and the short date format.
You may wonder if it would not be easier in some cases to make the string clearer by including more information. For exmaple instead of "Format" use "Post Format". In some places of the UI there may be space constraint which does not allow the string to be longer. Other times it may not make sense to repeat the same word multiple time. For example the comment management actions. It would look strange if coment was mentioned in each action e.g. "Approve Comment", "Reply to comment, "Edit Comment"
By defining the context the same word can be translated differently.