File: message.xml

package info (click to toggle)
tryton-server 7.0.43-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,760 kB
  • sloc: python: 53,744; xml: 5,194; sh: 803; sql: 217; makefile: 28
file content (31 lines) | stat: -rw-r--r-- 1,570 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0"?>
<!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
    <data grouped="1">
        <record model="ir.message" id="msg_password_length">
            <field name="text">The password must have at least %(length)i characters.</field>
        </record>
        <record model="ir.message" id="msg_password_forbidden">
            <field name="text">The password is forbidden.</field>
        </record>
        <record model="ir.message" id="msg_password_name">
            <field name="text">The password cannot be the same as user's name.</field>
        </record>
        <record model="ir.message" id="msg_password_login">
            <field name="text">The password cannot be the same as user's login.</field>
        </record>
        <record model="ir.message" id="msg_password_email">
            <field name="text">The password cannot be the same as user's email address.</field>
        </record>
        <record model="ir.message" id="msg_email_invalid">
            <field name="text">The email address "%(email)s" for "%(user)s" is not valid.</field>
        </record>
        <record model="ir.message" id="msg_user_delete_forbidden">
            <field name="text">For logging purposes users cannot be deleted, instead they should be deactivated.</field>
        </record>
        <record model="ir.message" id="msg_user_password">
            <field name="text">Password for %(login)s</field>
        </record>
    </data>
</tryton>