On pronouns and UIs
Sun 20 May 2012 by mskala Tags used: publishing, software, 日本語Here is an actual quotation that I did not make up, from Microsoft's recommendations on how software should communicate with users:
Use the second person (you, your) to tell users what to do.
Here's one of my own:
Don't tell users what to do.
Qt's recommendation on this subject follows logically:
Avoid addressing the user in the second person.
The Qt guidelines go on to recommend also avoiding "please" unless it's really necessary to avoid sounding abrupt, as in "Please wait" versus "Wait." That may seem surprising (isn't saying "please" always politer than not?) but I think the real point is that "please" is a marker for telling someone what to do (or at least asking), and in keeping with my own guideline, software generally shouldn't request action from the user.
Now, here are three messages I removed from my GIMP fork in this commit. The context is that the user has entered a filename extension that isn't appropriate for the type of file being saved; there are three different messages because this code is re-used in several different dialog boxes that all have the general function of storing information in files.
- "You can use this dialog to export to various file formats. If you want to save the image to the GIMP XCF format, use File→Save instead."
- "You can use this dialog to save to the GIMP XCF format. Use File→Export to export to other file formats."
- "The given filename does not have any known file extension. Please enter a known file extension or select a file format from the file format list."
See what they did there? Every single one of those messages tells the user what to do with the imperative mood - "use File→Save instead," "Use File→Export to export," or "enter a known file extension," all breaking my guideline. Two of the messages also address the user are "You," breaking the Qt guideline and actually breaking the Microsoft guideline as well, because the messages do it gratuitously in non-imperative sentences. "You can use this dialog to export" doesn't tell the user what to do; it is just a statement of fact and could as well be written without the "You." The third message includes a non-Qt "Please."
I replaced all three of these messages with the following:
- "The given filename does not have an appropriate extension for this command."
Since I hope to merge the three contexts where the messages are used into a single save dialog, there's not much point continuing to give the specific information about why this was the wrong dialog for what the user was trying to do, or what would be a better choice. The fact that the given filename's extension was inappropriate is still something we have to point out, but that's all, and we can stick to the fact itself; it's not necessary to drag the user personally into it by saying "you" when we are talking about the filename.
Thinking about this some more, I wondered about the Japanese translation. The fun thing with Japanese is that there isn't just one word for "you" - there are several second-person pronouns and pronoun-like nouns, some of which are gender-specific and all of which have implications for politeness. It's also easier to avoid using a pronoun at all, and it's polite in some contexts to just use the person's name and title where we'd use a pronoun. A lot of the tone issues that these UI guidelines flail around trying to describe in English are much more clearly understood and agreed on in Japanese. So, which form of "you" should an image editor use to address the user in Japanese? The answer to that will say a lot about what the relationship between the software and the user actually is.
I didn't have to think too hard to realize that of course the software should have the personality of an anime little-sister character and call the user oniichan, "elder brother." However, that way lies madness. Next thing I'd have to replace Script-Fu with Kirikiri, add "Put it in" as an option on all the context menus, and port the xscreensaver SkyTentacles code as a rendering filter. Actually, I'm not seeing much downside.
But instead of going there, let's look at what the mainline GIMP's Japanese version currently says. Here are the same three messages with my own translations back to English, in which I'm trying to preserve the tone of the Japanese text as closely as possible:
- 「この保存ダイアログでは xcf 形式で画像を保存できません。xcf 形式で画像を保存したいときは、メニューの [ファイル] → [保存] を実行してください。」 "Saving an image into XCF format is not possible with this Save dialog. When [you] wish to save into XCF format, please perform the File→Save menu operation."
- 「この保存ダイアログでは xcf 形式とそのアーカイブ以外のファイル形式で画像を保存できません。xcf 形式以外の画像ファイル形式で保存したいときは、メニューの [ファイル] → [エクスポート] を実行してください。」 "Saving an image, other than into XCF format or an archive of that, is not possible with this Save dialog. When [you] wish to save into a non-XCF image file format, please perform the File→Export menu operation."
- 「指定されたファイル名には既知のファイル拡張子がありません。既知のファイル拡張子を入力するか、ファイル形式の一覧からファイル形式を選択してください。」 "The filename that was specified does not have a known extension. Please choose a file format from the list of file formats, or enter a known extension."
I wrote "[you]" in a couple of places where I needed it to form a grammatical sentence in English, but in fact this Japanese text doesn't use a pronoun for the user at all. That is probably the right choice; it is a general rule in Japanese that it's politer not to refer to people directly, and a grammatical feature called "pronoun drop" makes it easier to do that without writing incomplete sentences. The informational sentences about what is and isn't possible with this dialog box have been changed to refer only to the facts instead of mentioning the user personally - as required by Japanese politeness standards and, really, as would be a good idea in English too.
However, it still explicitly uses the equivalent of an imperative "please" (「〜でください」) to request that the user do something, in all three messages. It also twice uses 「したい」, "wish to do," to refer to the user's wishes. That's inside a conditional - when you wish to save - and it may be all right there, but I think it's an interesting choice. I've been taught that in a non-conditional sentence, one should only use that word to describe one's own wishes, because otherwise it sounds rudely presumptuous. "Who are you to know what someone else wants?"
Although the command for saving to a non-XCF file format is called 「エクスポート」, which is just the English word "export" transcribed phonetically, nonetheless the first two messages both refer to 「保存ダイアログ」, a "Save dialog," and the action of storing into a file with either dialog is called 「保存する」, "to save." The consistent pattern of the English-language messages that "saving" is a fundamentally different action from "exporting" - which we know is an important point the original authors of the messages wanted to make - has been lost in translation.
I think the bottom line on the translated version is that the translators did a good job of translating the tone of the English version into the Japanese version. They probably felt that was their job, and not their job to rewrite the text. But I don't think the Japanese version sounds the way it would if it were originally written in Japanese, and it has some of the same problems of ordering the user around unnecessarily that the English version had.
ETA: Something I just noticed is that the original English versions say "GIMP XCF format" and the Japanese versions just "XCF format" without mentioning GIMP. I don't know what if anything that signifies, but it's an interesting change.
ETA: Oh! Oh! I've got another one! I read further down in the Microsoft UI document and found this:
Limit please to situations that inconvenience the user in some way[.]
Of course, my suggestion would be:
Limit situations that inconvenience the user in some way.
Such situations are sometimes unavoidable and nobody's fault, and the Microsoft guideline isn't bad advice. But I wanted to share that thought.
6 comments
![[Chessudoku]](/images/chessucvr.png)
![[Manekineko image for social-network shares]](/i/manekineko-clipped.jpg)