Added blank line at the bottom of board/i18n/fr_FR.po

Set project task type name field as translatable

bzr revid: root@fbs-laptop-20081013143933-gma08s70znxo52aw
This commit is contained in:
root 2008-10-13 16:39:33 +02:00
parent 930d8746b9
commit a9461c34d6
3 changed files with 4 additions and 3 deletions

View File

@ -209,3 +209,4 @@ msgstr "Créer le menu"
#: field:board.note,name:0
msgid "Subject"
msgstr "Sujet"

View File

@ -197,7 +197,7 @@ class project_task_type(osv.osv):
_name = 'project.task.type'
_description = 'Project task type'
_columns = {
'name': fields.char('Type', required=True, size=64),
'name': fields.char('Type', required=True, size=64, translate=True),
'description': fields.text('Description'),
}
project_task_type()