mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
Fix invalid translations
'msgid' and 'msgstr' entries do not both end with '\n' which is mandatory according to specification from the 'msgfmt' manual: ``` The msgid and msgstr strings are studied and compared. It is considered abnormal if one string starts or ends with a newline while the other does not. ``` Besides all placeholders from the 'msgid' must be used in the 'mgstr'.
This commit is contained in:
parent
4abf3277a2
commit
dcabd11e43
2 changed files with 6 additions and 4 deletions
|
|
@ -117,8 +117,9 @@ msgid ""
|
|||
"\n"
|
||||
"http://%(current_site)s%(avatar_url)s\n"
|
||||
msgstr ""
|
||||
"<a href=\"%(user_url)s\">%(avatar_creator)s</a> a mis à jour son avatar <a "
|
||||
"href=\"%(avatar_url)s\">%(avatar)s</a>."
|
||||
"%(avatar_creator)s a mis à jour son avatar %(avatar)s\n"
|
||||
"\n"
|
||||
"http://%(current_site)s%(avatar_url)s\n"
|
||||
|
||||
#: templates/notification/avatar_friend_updated/notice.html:2
|
||||
#, python-format
|
||||
|
|
|
|||
|
|
@ -121,8 +121,9 @@ msgid ""
|
|||
"\n"
|
||||
"http://%(current_site)s%(avatar_url)s\n"
|
||||
msgstr ""
|
||||
"<a href=\"%(user_url)s\">%(avatar_creator)s</a> обновил свои аватары <a href="
|
||||
"\"%(avatar_url)s\">%(avatar)s</a>."
|
||||
"%(avatar_creator)s обновил свои аватары %(avatar)s.\n"
|
||||
"\n"
|
||||
"http://%(current_site)s%(avatar_url)s\n"
|
||||
|
||||
#: templates/notification/avatar_friend_updated/notice.html:2
|
||||
#, python-format
|
||||
|
|
|
|||
Loading…
Reference in a new issue