mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-26 23:17:58 +00:00
17 lines
471 B
Python
17 lines
471 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
TRANSLATION_MAP = {
|
|
'Added' : u'添加了',
|
|
'Deleted' : u'删除了',
|
|
'Modified' : u'修改了',
|
|
'Renamed' : u'重命名了',
|
|
'and' : u'以及另外',
|
|
'more files' : u'个文件',
|
|
'Reverted repo to status at' : u'同步目录内容还原到',
|
|
'Merged ' : u'合并了',
|
|
'\'s changes' : u' 的修改',
|
|
'other' : u'其他人',
|
|
'Merged others\' changes' : u'合并了其他人的修改',
|
|
}
|