mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-29 08:27:55 +00:00
14 lines
378 B
Python
14 lines
378 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 others\' changes' : u'合并了其他人的修改',
|
||
|
}
|