diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-08-23 13:51:36 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-08-23 14:02:41 +0300 |
commit | 5941496601600269296dde3e4ff8b615a8bb45ca (patch) | |
tree | c9ee9b8a9f569fe802897096f88f059d88fd34ff /officecfg/registry/schema | |
parent | 98bd24f8b479132ca3f2d884749b738e9e6203e3 (diff) |
Let's say that if "givenname" is empty, "sn" is the full name
Maybe eventually we can get rid of attempts in LibreOffice to
interpret names as consisting of culture-dependent parts like "given
name", "father's name", "last name" etc and just treat names as opaque
strings. Let's start by saying explicitly that if "givenname" is empty
but "sn" is not, then "sn" is the full name.
See https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/
Change-Id: Id2c1df08c8faf65fd25d46a4380f5f53e60d5378
Diffstat (limited to 'officecfg/registry/schema')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/UserProfile.xcs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/officecfg/registry/schema/org/openoffice/UserProfile.xcs b/officecfg/registry/schema/org/openoffice/UserProfile.xcs index 4398968b8774..272123991c0b 100644 --- a/officecfg/registry/schema/org/openoffice/UserProfile.xcs +++ b/officecfg/registry/schema/org/openoffice/UserProfile.xcs @@ -51,7 +51,13 @@ <!-- OldLocation: soffice.ini --> <!-- UIHints: Tools - Options - General - User Data --> <info> - <desc>Specifies the last name of the user.</desc> + <desc>If givenname is empty, specifies the name of the user, + in the preferred form the user wants it to be displayed, + intentionally without any hints how to split it into "given" + name, "family name", "patronym", "middle initial" and other + similar culture-dependent components of a person's name. If + givenname is non-empty, this is supposed to be the "last + name".</desc> </info> <value/> <!-- JB: Empty default inserted into empty property node. Remove if NIL was intended --> |