← Back to team overview

openerp-dev-web team mailing list archive

[Merge] lp:~openerp-commiter/openobject-addons/trunk-dev-addons3-ara into lp:~openerp-dev/openobject-addons/trunk-dev-addons3

 

Ashvin Rathod (OpenERP) has proposed merging lp:~openerp-commiter/openobject-addons/trunk-dev-addons3-ara into lp:~openerp-dev/openobject-addons/trunk-dev-addons3.

Requested reviews:
  OpenERP R&D Team (openerp-dev)
Related bugs:
  #615522 Report Of Invoice  : Payment Term + Due date not printed
  https://bugs.launchpad.net/bugs/615522
  #649029 [sale] incoterm field poorly implemented [direct sql / not translatable]
  https://bugs.launchpad.net/bugs/649029
  #656378 [trunk] general ledger -
  https://bugs.launchpad.net/bugs/656378
  #672553 opening entries from chart of account doesn't use context
  https://bugs.launchpad.net/bugs/672553
  #674480 [6.0 RC2] incorrect creation of Accounting Journals is some localizations prevents multiple charts from being installed
  https://bugs.launchpad.net/bugs/674480
  #675494 [Trunk] - If you delete an invoice entry, invoice still exists
  https://bugs.launchpad.net/bugs/675494
  #681398 sale access right
  https://bugs.launchpad.net/bugs/681398
  #689536 [6.0] partner layout salesman/salesteam issue
  https://bugs.launchpad.net/bugs/689536
  #690326 [6.0RC1] View mode "tree,form,search" in several window actions
  https://bugs.launchpad.net/bugs/690326
  #690753 [6.0] and [5.x] account_analytic_line must not be deleted if the journal etc is deleted
  https://bugs.launchpad.net/bugs/690753
  #691072 [6.0RC1][TRUNK][account_voucher] Wrong definition of field 'company_id' in 'account_voucher_line' object
  https://bugs.launchpad.net/bugs/691072
  #692986 [6.0] hr_payroll_account hr_payroll_account_view.xml - required fields block opening form
  https://bugs.launchpad.net/bugs/692986
  #694833 Salary Structure deduction percentage limitation
  https://bugs.launchpad.net/bugs/694833
  #695960 [6.0RC1][hr_timesheet]Problems printing timesheet reports
  https://bugs.launchpad.net/bugs/695960
  #696914 [6.0 RC2] account bank statement - usability
  https://bugs.launchpad.net/bugs/696914
  #697673 Wrong column title in timesheet view
  https://bugs.launchpad.net/bugs/697673
  #697989 Failed to install module multi_company
  https://bugs.launchpad.net/bugs/697989
  #701410 shouldn't see employee's categories in simplify view
  https://bugs.launchpad.net/bugs/701410
  #701683 [6.0 rc2] Setup/upgrade/run fails for init:module account_analytic_plans
  https://bugs.launchpad.net/bugs/701683
  #702318 Default period and account in invoices line for multi-company doesn't work
  https://bugs.launchpad.net/bugs/702318
  #705675 Error creating a DTA
  https://bugs.launchpad.net/bugs/705675
  #707398 [6.0] Account_payment: "Select Invoices to Pay" button on payment order not working
  https://bugs.launchpad.net/bugs/707398
  #707404 [trunk][account] useless variable in button_confirm_bank
  https://bugs.launchpad.net/bugs/707404
  #711886 [6.0 trunk] account : period selection not working for BS and PL legal reports 
  https://bugs.launchpad.net/bugs/711886
  #713562 [6.0] account - demo data - all periods have "special = true"
  https://bugs.launchpad.net/bugs/713562
  #713772 Cannot specify RFC in the accounting options
  https://bugs.launchpad.net/bugs/713772
  #714860 analytic account - Wrong demo data and account type must be come in tree view
  https://bugs.launchpad.net/bugs/714860
  #715470 [PS] sale margin module :  wrong computation
  https://bugs.launchpad.net/bugs/715470
  #715695 Multi-Company Environment :Configuration of consolidated type of account is not possible due to the _check_type constraints.
  https://bugs.launchpad.net/bugs/715695
  #717874 [6.0] account id - domain must check for <> view and consolidation and matching company_id
  https://bugs.launchpad.net/bugs/717874
  #719915 [PS] Human Resources : employee form view : Mobile field
  https://bugs.launchpad.net/bugs/719915

For more details, see:
https://code.launchpad.net/~openerp-commiter/openobject-addons/trunk-dev-addons3-ara/+merge/49949

Hello,

[FIX]: [PS] Human Resources : employee form view : Mobile field
       https://bugs.launchpad.net/openobject-addons/+bug/719915

Thanks,
ara   
-- 
https://code.launchpad.net/~openerp-commiter/openobject-addons/trunk-dev-addons3-ara/+merge/49949
Your team OpenERP R&D Team is requested to review the proposed merge of lp:~openerp-commiter/openobject-addons/trunk-dev-addons3-ara into lp:~openerp-dev/openobject-addons/trunk-dev-addons3.
=== modified file 'hr/hr.py'
--- hr/hr.py	2011-02-08 05:19:51 +0000
+++ hr/hr.py	2011-02-16 11:28:49 +0000
@@ -150,7 +150,7 @@
         'partner_id': fields.related('address_home_id', 'partner_id', type='many2one', relation='res.partner', readonly=True, help="Partner that is related to the current employee. Accounting transaction will be written on this partner belongs to employee."),
         'bank_account_id':fields.many2one('res.partner.bank', 'Bank Account', domain="[('partner_id','=',partner_id)]", help="Employee bank salary account"),
         'work_phone': fields.char('Work Phone', size=32, readonly=False),
-        'mobile_phone': fields.char('Mobile', size=32, readonly=False),
+        'mobile_phone': fields.char('Work Mobile', size=32, readonly=False),
         'work_email': fields.char('Work E-mail', size=240),
         'work_location': fields.char('Office Location', size=32),
         'notes': fields.text('Notes'),
@@ -167,7 +167,7 @@
     def onchange_address_id(self, cr, uid, ids, address, context=None):
         if address:
             address = self.pool.get('res.partner.address').browse(cr, uid, address, context=context)
-            return {'value': {'work_email': address.email, 'work_phone': address.phone}}
+            return {'value': {'work_email': address.email, 'work_phone': address.phone, 'mobile_phone': address.mobile}}
         return {'value': {}}
 
     def onchange_company(self, cr, uid, ids, company, context=None):

=== modified file 'hr/i18n/ar.po'
--- hr/i18n/ar.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/ar.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/bg.po'
--- hr/i18n/bg.po	2011-02-14 11:45:07 +0000
+++ hr/i18n/bg.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/bs.po'
--- hr/i18n/bs.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/bs.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/ca.po'
--- hr/i18n/ca.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/ca.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/cs.po'
--- hr/i18n/cs.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/cs.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/de.po'
--- hr/i18n/de.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/de.po	2011-02-16 11:28:49 +0000
@@ -752,7 +752,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Mobiltelefon"
 
 #. module: hr

=== modified file 'hr/i18n/el.po'
--- hr/i18n/el.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/el.po	2011-02-16 11:28:49 +0000
@@ -704,7 +704,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/es.po'
--- hr/i18n/es.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/es.po	2011-02-16 11:28:49 +0000
@@ -752,7 +752,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Móvil"
 
 #. module: hr

=== modified file 'hr/i18n/es_AR.po'
--- hr/i18n/es_AR.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/es_AR.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/es_CL.po'
--- hr/i18n/es_CL.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/es_CL.po	2011-02-16 11:28:49 +0000
@@ -733,7 +733,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Mobitel"
 
 #. module: hr

=== modified file 'hr/i18n/es_EC.po'
--- hr/i18n/es_EC.po	2011-01-15 05:59:03 +0000
+++ hr/i18n/es_EC.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/et.po'
--- hr/i18n/et.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/et.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/fi.po'
--- hr/i18n/fi.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/fi.po	2011-02-16 11:28:49 +0000
@@ -704,7 +704,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Matkapuhelin"
 
 #. module: hr

=== modified file 'hr/i18n/fr.po'
--- hr/i18n/fr.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/fr.po	2011-02-16 11:28:49 +0000
@@ -746,7 +746,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Tél. portable"
 
 #. module: hr

=== modified file 'hr/i18n/fr_BE.po'
--- hr/i18n/fr_BE.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/fr_BE.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/gl.po'
--- hr/i18n/gl.po	2011-01-29 04:56:41 +0000
+++ hr/i18n/gl.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/hi.po'
--- hr/i18n/hi.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/hi.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/hr.po'
--- hr/i18n/hr.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/hr.po	2011-02-16 11:28:49 +0000
@@ -733,7 +733,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Mobitel"
 
 #. module: hr

=== modified file 'hr/i18n/hu.po'
--- hr/i18n/hu.po	2011-02-10 04:36:10 +0000
+++ hr/i18n/hu.po	2011-02-16 11:28:49 +0000
@@ -727,7 +727,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Mobilszám"
 
 #. module: hr

=== modified file 'hr/i18n/id.po'
--- hr/i18n/id.po	2011-02-07 05:20:17 +0000
+++ hr/i18n/id.po	2011-02-16 11:28:49 +0000
@@ -748,7 +748,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Ponsel"
 
 #. module: hr

=== modified file 'hr/i18n/it.po'
--- hr/i18n/it.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/it.po	2011-02-16 11:28:49 +0000
@@ -747,7 +747,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Cellulare"
 
 #. module: hr

=== modified file 'hr/i18n/ko.po'
--- hr/i18n/ko.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/ko.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/lo.po'
--- hr/i18n/lo.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/lo.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/lt.po'
--- hr/i18n/lt.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/lt.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/lv.po'
--- hr/i18n/lv.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/lv.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/mn.po'
--- hr/i18n/mn.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/mn.po	2011-02-16 11:28:49 +0000
@@ -736,7 +736,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/nl.po'
--- hr/i18n/nl.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/nl.po	2011-02-16 11:28:49 +0000
@@ -741,7 +741,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Mobiel"
 
 #. module: hr

=== modified file 'hr/i18n/nl_BE.po'
--- hr/i18n/nl_BE.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/nl_BE.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/pl.po'
--- hr/i18n/pl.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/pl.po	2011-02-16 11:28:49 +0000
@@ -705,7 +705,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/pt.po'
--- hr/i18n/pt.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/pt.po	2011-02-16 11:28:49 +0000
@@ -727,7 +727,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/pt_BR.po'
--- hr/i18n/pt_BR.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/pt_BR.po	2011-02-16 11:28:49 +0000
@@ -715,7 +715,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Celular:"
 
 #. module: hr

=== modified file 'hr/i18n/ro.po'
--- hr/i18n/ro.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/ro.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/ru.po'
--- hr/i18n/ru.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/ru.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Мобильный телефон"
 
 #. module: hr

=== modified file 'hr/i18n/sk.po'
--- hr/i18n/sk.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/sk.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/sl.po'
--- hr/i18n/sl.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/sl.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/sq.po'
--- hr/i18n/sq.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/sq.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/sr.po'
--- hr/i18n/sr.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/sr.po	2011-02-16 11:28:49 +0000
@@ -716,7 +716,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/sr@xxxxxxxx'
--- hr/i18n/sr@xxxxxxxx	2011-02-01 14:25:28 +0000
+++ hr/i18n/sr@xxxxxxxx	2011-02-16 11:28:49 +0000
@@ -735,7 +735,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "Mobilni"
 
 #. module: hr

=== modified file 'hr/i18n/sv.po'
--- hr/i18n/sv.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/sv.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/th.po'
--- hr/i18n/th.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/th.po	2011-02-16 11:28:49 +0000
@@ -702,7 +702,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "โทรศัพท์มือถือ"
 
 #. module: hr

=== modified file 'hr/i18n/th_TH.po'
--- hr/i18n/th_TH.po	2011-01-14 00:11:01 +0000
+++ hr/i18n/th_TH.po	2011-02-16 11:28:49 +0000
@@ -150,6 +150,11 @@
 msgstr ""
 
 #. module: hr
+#: field:hr.employee,mobile_phone:0
+msgid "Work Mobile"
+msgstr ""
+
+#. module: hr
 #: field:hr.employee.category,child_ids:0
 msgid "Child Categories"
 msgstr ""

=== modified file 'hr/i18n/tlh.po'
--- hr/i18n/tlh.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/tlh.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/tr.po'
--- hr/i18n/tr.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/tr.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/uk.po'
--- hr/i18n/uk.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/uk.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/vi.po'
--- hr/i18n/vi.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/vi.po	2011-02-16 11:28:49 +0000
@@ -707,7 +707,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr

=== modified file 'hr/i18n/zh_CN.po'
--- hr/i18n/zh_CN.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/zh_CN.po	2011-02-16 11:28:49 +0000
@@ -707,7 +707,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr "手机"
 
 #. module: hr

=== modified file 'hr/i18n/zh_TW.po'
--- hr/i18n/zh_TW.po	2011-02-01 14:25:28 +0000
+++ hr/i18n/zh_TW.po	2011-02-16 11:28:49 +0000
@@ -701,7 +701,7 @@
 
 #. module: hr
 #: field:hr.employee,mobile_phone:0
-msgid "Mobile"
+msgid "Work Mobile"
 msgstr ""
 
 #. module: hr