Feature #10937
new user format #{lastname}
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 100% | |
Category: | UI | |||
Target version: | 2.2.0 | |||
Resolution: | Fixed |
Description
Please add new user format #{lastname}.
Calling by a last name is more common in a Japanese company than calling by a first name.
Index: app/models/user.rb
===================================================================
--- app/models/user.rb (revision 9651)
+++ app/models/user.rb (working copy)
@@ -32,6 +32,7 @@
:firstname => {:string => '#{firstname}', :order => %w(firstname id)},
:lastname_firstname => {:string => '#{lastname} #{firstname}', :order => %w(lastname firstname id)},
:lastname_coma_firstname => {:string => '#{lastname}, #{firstname}', :order => %w(lastname firstname id)},
+ :lastname => {:string => '#{lastname}', :order => %w(lastname id)},
:username => {:string => '#{login}', :order => %w(login id)},
}
Related issues
Associated revisions
pin user format order at setting panel (#10937)
add new user format "lastname" (#10937)
History
#1
Updated by Etienne Massip over 10 years ago
- Description updated (diff)
#2
Updated by Etienne Massip over 10 years ago
- Target version set to Candidate for next minor release
#3
Updated by Toshi MARUYAMA almost 10 years ago
- Target version changed from Candidate for next minor release to 2.2.0
- % Done changed from 0 to 100
#4
Updated by Jean-Philippe Lang almost 10 years ago
- Status changed from New to Closed
- Resolution set to Fixed