├── README.md ├── auth_sudo ├── static │ └── src │ │ ├── js │ │ └── auth.js │ │ └── xml │ │ └── auth_sudo.xml ├── __init__.py ├── __openerp__.py ├── templates.xml ├── i18n │ ├── cs.po │ ├── ca.po │ ├── gu.po │ ├── ru.po │ ├── ko.po │ ├── vi.po │ ├── mn.po │ ├── bg.po │ ├── sk.po │ ├── ja.po │ ├── zh_CN.po │ ├── it.po │ ├── ar.po │ ├── es.po │ ├── sl.po │ ├── fr.po │ ├── hr.po │ ├── mk.po │ ├── nb.po │ ├── nl.po │ ├── fi.po │ ├── ro.po │ ├── en_GB.po │ ├── es_AR.po │ ├── pt.po │ ├── sr@latin.po │ ├── hu.po │ ├── pl.po │ ├── pt_BR.po │ ├── de.po │ ├── sv.po │ ├── tr.po │ └── es_CR.po └── res_users.py └── smart_auth_sudo ├── templates.xml ├── __init__.py └── __openerp__.py /README.md: -------------------------------------------------------------------------------- 1 | # odoo-auth_sudo 2 | -------------------------------------------------------------------------------- /auth_sudo/static/src/js/auth.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth_sudo/static/src/xml/auth_sudo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sudo 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /smart_auth_sudo/templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Sudo 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /smart_auth_sudo/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | ############################################################################## 3 | # 4 | # OpenERP, Open Source Management Solution, third party addon 5 | # Copyright (C) 2004-2015 Vertel AB (). 6 | # 7 | # This program is free software: you can redistribute it and/or modify 8 | # it under the terms of the GNU Affero General Public License as 9 | # published by the Free Software Foundation, either version 3 of the 10 | # License, or (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU Affero General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU Affero General Public License 18 | # along with this program. If not, see . 19 | # 20 | ############################################################################## 21 | 22 | 23 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 24 | 25 | -------------------------------------------------------------------------------- /auth_sudo/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | ############################################################################## 3 | # 4 | # OpenERP, Open Source Management Solution, third party addon 5 | # Copyright (C) 2004-2015 Vertel AB (). 6 | # 7 | # This program is free software: you can redistribute it and/or modify 8 | # it under the terms of the GNU Affero General Public License as 9 | # published by the Free Software Foundation, either version 3 of the 10 | # License, or (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU Affero General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU Affero General Public License 18 | # along with this program. If not, see . 19 | # 20 | ############################################################################## 21 | 22 | import res_users 23 | 24 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 25 | 26 | -------------------------------------------------------------------------------- /smart_auth_sudo/__openerp__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | ############################################################################## 3 | # 4 | # OpenERP, Open Source Management Solution, third party addon 5 | # Copyright (C) 2004-2015 Vertel AB (). 6 | # 7 | # This program is free software: you can redistribute it and/or modify 8 | # it under the terms of the GNU Affero General Public License as 9 | # published by the Free Software Foundation, either version 3 of the 10 | # License, or (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU Affero General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU Affero General Public License 18 | # along with this program. If not, see . 19 | # 20 | ############################################################################## 21 | 22 | 23 | { 24 | 'name': 'Smart Sudo impersonation', 25 | 'version': '1.0', 26 | 'category': 'Tools', 27 | 'description': """ 28 | Allow users to login as another user. 29 | ==================================== 30 | """, 31 | 'author': 'Vertel AB', 32 | 'website': 'https://vertel.se', 33 | 'depends': ['smart_common',], 34 | 'data': [ 35 | 'templates.xml', 36 | ], 37 | 'installable': True, 38 | 'auto_install': False, 39 | } 40 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 41 | -------------------------------------------------------------------------------- /auth_sudo/__openerp__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | ############################################################################## 3 | # 4 | # Odoo, Open Source Management Solution, third party addon 5 | # Copyright (C) 2004-2015 Vertel AB (). 6 | # 7 | # This program is free software: you can redistribute it and/or modify 8 | # it under the terms of the GNU Affero General Public License as 9 | # published by the Free Software Foundation, either version 3 of the 10 | # License, or (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU Affero General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU Affero General Public License 18 | # along with this program. If not, see . 19 | # 20 | ############################################################################## 21 | 22 | 23 | { 24 | 'name': 'Sudo impersonation', 25 | 'version': '1.0', 26 | 'category': 'Tools', 27 | 'description': """ 28 | Allow users to login as another user. 29 | ==================================== 30 | """, 31 | 'author': 'Vertel AB', 32 | 'website': 'https://vertel.se', 33 | 'depends': ['base', 'web'], 34 | 'data': [ 35 | 'templates.xml', 36 | ], 37 | 'qweb': [ 38 | 'static/src/xml/auth_sudo.xml' 39 | ], 40 | 'installable': True, 41 | 'auto_install': False, 42 | } 43 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 44 | -------------------------------------------------------------------------------- /auth_sudo/templates.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | New User 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | Log in as 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /auth_sudo/i18n/cs.po: -------------------------------------------------------------------------------- 1 | # Czech translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Czech \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/ca.po: -------------------------------------------------------------------------------- 1 | # Catalan translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-11-03 10:25+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Catalan \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/gu.po: -------------------------------------------------------------------------------- 1 | # Gujarati translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Gujarati \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "ગુગલ" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "પાસવર્ડ" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "વપરાશકર્તા નામ" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/ru.po: -------------------------------------------------------------------------------- 1 | # Russian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Russian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Пароль" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Имя пользователя" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Пользователи" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/ko.po: -------------------------------------------------------------------------------- 1 | # Korean translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-09-02 08:57+0000\n" 12 | "Last-Translator: Josh Kim \n" 13 | "Language-Team: Korean \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "구글" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "구글 앱스" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "구글 앱스 도메인" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "런치패드" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "오픈ID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "오픈ID 이메일" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "오픈ID 키" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "오픈ID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "암호" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "공유 오픈ID URL일 경우 모호성 제거에 사용" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "사용자명" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "사용자" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/vi.po: -------------------------------------------------------------------------------- 1 | # Vietnamese translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Vietnamese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "Đường dẫn OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Mật khẩu" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Tên đăng nhập" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Người dùng" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/mn.po: -------------------------------------------------------------------------------- 1 | # Mongolian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Mongolian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Имэйл" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID түлхүүр" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Нууц үг" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Хэрэглэгчийн нэр" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Хэрэглэгчид" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/bg.po: -------------------------------------------------------------------------------- 1 | # Bulgarian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-11-20 10:16+0000\n" 12 | "Last-Translator: Dimitar Dimitrov \n" 13 | "Language-Team: Bulgarian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "Адрес на OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Парола" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Потребителско Име" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Потребители" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/sk.po: -------------------------------------------------------------------------------- 1 | # Slovak translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Slovak \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Doména Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Kľúč" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Heslo" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Užívateľské meno:" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/ja.po: -------------------------------------------------------------------------------- 1 | # Japanese translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Japanese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps ドメイン" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Eメール" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID キー" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "パスワード" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "共有するOpenIDのURLの場合には曖昧さ回避のために使用します。" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "ユーザ名" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/zh_CN.po: -------------------------------------------------------------------------------- 1 | # Chinese (Simplified) translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Chinese (Simplified) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps Domain" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID 邮件地址" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Key" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID地址" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "密码" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "用于在使用共享的OpenID时做区分" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "登陆" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "用户" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/it.po: -------------------------------------------------------------------------------- 1 | # Italian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Italian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Gooble Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Dominio Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Email OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Chiave OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "URL OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Password" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Usato per distinguere nel caso di OpenID URL condivisi" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Nome utente" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Utenti" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/ar.po: -------------------------------------------------------------------------------- 1 | # Arabic translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Arabic \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "جوجل" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "برامج جوجل" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "نطاق برامج جوجل" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "لانشباد (Launchpad)" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "معرف OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "بريد OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "مفتاح OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "رابط OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "كلمة المرور" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "تستخدم للتفرقة في حالة إستخدام معرف OpenID مشترك" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "اسم المستخدم" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "المستخدمون" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Spanish translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Spanish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Dominio Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Email OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Clave OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "URL OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Contraseña" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Utilizado para diferenciar en el caso de URL OpenID compartida" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Usuario" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Usuarios" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/sl.po: -------------------------------------------------------------------------------- 1 | # Slovenian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Slovenian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps Domain" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Key" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Geslo" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Used for disambiguation in case of a shared OpenID URL" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Uporabniško ime" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Uporabniki" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # French translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: French \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Domaine Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Courriel OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Clé OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "URL OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Mot de passe" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Utilisé pour rendre non équivoque une URL OpenID partagée" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Nom d'utilisateur" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Utilisateurs" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/hr.po: -------------------------------------------------------------------------------- 1 | # Croatian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Croatian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google aplikacije" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps Domain" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID ključ" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Lozinka" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Koristi se za razlikovanje u slučaju dijeljenog OpenID URL" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Korisničko ime" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Korisnici" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/mk.po: -------------------------------------------------------------------------------- 1 | # Macedonian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Macedonian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps Domain" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID клуч" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Лозинка" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Се користи за појаснување во случај на заедничка OpenID адреса" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Корисничко име" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Корисници" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/nb.po: -------------------------------------------------------------------------------- 1 | # Norwegian Bokmal translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Norwegian Bokmal \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps domene" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "ÅpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID epost" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "ÅpenID Nøkkel" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "ÅpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Passord" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Brukes for disambiguering i tilfelle av en felles OpenID URL" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Brukernavn" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/nl.po: -------------------------------------------------------------------------------- 1 | # Dutch translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Dutch \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps domein" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID emailadres" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID toegangssleutel" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Wachtwoord" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Gebruikt om een gedeelde OpenID URL te disambiguëren" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Gebruikersnaam" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Gebruikers" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/fi.po: -------------------------------------------------------------------------------- 1 | # Finnish translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-10-19 12:56+0000\n" 12 | "Last-Translator: Mikko Salmela \n" 13 | "Language-Team: Finnish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps toimialue" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID sähköposti" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID avain" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Salasana" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Käytetään täsmennyksenä, jos käytössä jaettu OpenID URL" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Käyttäjänimi" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Käyttäjät" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/ro.po: -------------------------------------------------------------------------------- 1 | # Romanian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Romanian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Domeniu Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "E-mail OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Cheie OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "URL OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Parola" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Folosit pentru evitarea ambiguitatii in cazul unui URL OpenID" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Nume de utilizator" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Utilizatori" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/en_GB.po: -------------------------------------------------------------------------------- 1 | # English (United Kingdom) translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: English (United Kingdom) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps Domain" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Key" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Password" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Used for disambiguation in case of a shared OpenID URL" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Username" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Users" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/es_AR.po: -------------------------------------------------------------------------------- 1 | # Spanish (Argentina) translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Spanish (Argentina) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Dominio Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Email OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Clave OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "URL OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Contraseña" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Utilizado para diferenciar en el caso de URL OpenID compartida" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Usuario" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Usuarios" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/pt.po: -------------------------------------------------------------------------------- 1 | # Portuguese translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Portuguese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Domínio Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Email OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Chave" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Password" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | "Utilizado para desambiguação no caso de um endereço OpenID partilhado" 87 | 88 | #. module: auth_openid 89 | #. openerp-web 90 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 91 | #, python-format 92 | msgid "Username" 93 | msgstr "Nome de utilizador" 94 | 95 | #. module: auth_openid 96 | #: model:ir.model,name:auth_openid.model_res_users 97 | msgid "Users" 98 | msgstr "Utilizadores" 99 | -------------------------------------------------------------------------------- /auth_sudo/i18n/sr@latin.po: -------------------------------------------------------------------------------- 1 | # Serbian Latin translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Serbian Latin \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google-ove aplikacije" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Domen Google-ovih aplikacija" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Ključ" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Lozinka" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Koristi se za razlikovanje u slučaju deljenog OpenID URL-a" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Korisničko ime" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/hu.po: -------------------------------------------------------------------------------- 1 | # Hungarian translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Hungarian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Alk" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Alk Domain" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad/Kiadásiszerk" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID Email" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Kulcs" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL elérési út" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Jelszó" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "Kétértelműség elkerülésére használja a megosztott OpenID URL esetén" 86 | 87 | #. module: auth_openid 88 | #. openerp-web 89 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 90 | #, python-format 91 | msgid "Username" 92 | msgstr "Felhasználónév" 93 | 94 | #. module: auth_openid 95 | #: model:ir.model,name:auth_openid.model_res_users 96 | msgid "Users" 97 | msgstr "Felhasználók" 98 | -------------------------------------------------------------------------------- /auth_sudo/i18n/pl.po: -------------------------------------------------------------------------------- 1 | # Polish translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Polish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Aplikacje Google" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Domena Aplikacji Google" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Email OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Klucz OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "Adres URL OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Hasło" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | "Używane dla ujednoznaczenia w przypadku współdzielonego adresu URL OpenID" 87 | 88 | #. module: auth_openid 89 | #. openerp-web 90 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 91 | #, python-format 92 | msgid "Username" 93 | msgstr "Nazwa użytkownika" 94 | 95 | #. module: auth_openid 96 | #: model:ir.model,name:auth_openid.model_res_users 97 | msgid "Users" 98 | msgstr "Użytkownicy" 99 | -------------------------------------------------------------------------------- /auth_sudo/i18n/pt_BR.po: -------------------------------------------------------------------------------- 1 | # Brazilian Portuguese translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Brazilian Portuguese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Domínio do Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Email do OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Chave do OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Senha" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | "Usado para uma situação ambígua no caso de uma URL OpenID compartilhada" 87 | 88 | #. module: auth_openid 89 | #. openerp-web 90 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 91 | #, python-format 92 | msgid "Username" 93 | msgstr "Nome do usuário" 94 | 95 | #. module: auth_openid 96 | #: model:ir.model,name:auth_openid.model_res_users 97 | msgid "Users" 98 | msgstr "Usuários" 99 | -------------------------------------------------------------------------------- /auth_sudo/i18n/de.po: -------------------------------------------------------------------------------- 1 | # German translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: German \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps Domäne" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID EMail" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Schlüssel" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Kennwort" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | "Wird zur Auflösung von Mehrdeutigkeiten im Falle einer gemeinsamen OpenID-" 87 | "URL verwendet" 88 | 89 | #. module: auth_openid 90 | #. openerp-web 91 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 92 | #, python-format 93 | msgid "Username" 94 | msgstr "Benutzername" 95 | 96 | #. module: auth_openid 97 | #: model:ir.model,name:auth_openid.model_res_users 98 | msgid "Users" 99 | msgstr "Benutzer" 100 | -------------------------------------------------------------------------------- /auth_sudo/i18n/sv.po: -------------------------------------------------------------------------------- 1 | # Swedish translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Swedish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps-domän" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID-e-post" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID-nyckel" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID-adress" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Lösenord" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | "Används för att skilja mellan olika användare i fallet med en delad OpenID-" 87 | "adress" 88 | 89 | #. module: auth_openid 90 | #. openerp-web 91 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 92 | #, python-format 93 | msgid "Username" 94 | msgstr "Användarnamn" 95 | 96 | #. module: auth_openid 97 | #: model:ir.model,name:auth_openid.model_res_users 98 | msgid "Users" 99 | msgstr "Användare" 100 | -------------------------------------------------------------------------------- /auth_sudo/i18n/tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Turkish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Google Apps Alan adı" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "OpenID E-posta" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "OpenID Anahtarı" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "OpenID URL" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Parola" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | "Paylaşılan bir OpenID URL si kullanılması durumunda anlam ayrımı için " 87 | "kullanılır" 88 | 89 | #. module: auth_openid 90 | #. openerp-web 91 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 92 | #, python-format 93 | msgid "Username" 94 | msgstr "Kullanıcı Adı" 95 | 96 | #. module: auth_openid 97 | #: model:ir.model,name:auth_openid.model_res_users 98 | msgid "Users" 99 | msgstr "Kullanıcılar" 100 | -------------------------------------------------------------------------------- /auth_sudo/i18n/es_CR.po: -------------------------------------------------------------------------------- 1 | # Spanish (Costa Rica) translation for openobject-addons 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2015-01-21 14:07+0000\n" 11 | "PO-Revision-Date: 2014-08-14 16:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Spanish (Costa Rica) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2015-01-22 07:29+0000\n" 18 | "X-Generator: Launchpad (build 17306)\n" 19 | 20 | #. module: auth_openid 21 | #. openerp-web 22 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 23 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 24 | #, python-format 25 | msgid "Google" 26 | msgstr "Google" 27 | 28 | #. module: auth_openid 29 | #. openerp-web 30 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 31 | #, python-format 32 | msgid "Google Apps" 33 | msgstr "Google Apps" 34 | 35 | #. module: auth_openid 36 | #. openerp-web 37 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 38 | #, python-format 39 | msgid "Google Apps Domain" 40 | msgstr "Dominio Google Apps" 41 | 42 | #. module: auth_openid 43 | #. openerp-web 44 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 45 | #, python-format 46 | msgid "Launchpad" 47 | msgstr "Launchpad" 48 | 49 | #. module: auth_openid 50 | #. openerp-web 51 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 52 | #: view:res.users:auth_openid.view_users_form 53 | #, python-format 54 | msgid "OpenID" 55 | msgstr "OpenID" 56 | 57 | #. module: auth_openid 58 | #: field:res.users,openid_email:0 59 | msgid "OpenID Email" 60 | msgstr "Email OpenID" 61 | 62 | #. module: auth_openid 63 | #: field:res.users,openid_key:0 64 | msgid "OpenID Key" 65 | msgstr "Clave OpenID" 66 | 67 | #. module: auth_openid 68 | #. openerp-web 69 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 70 | #: field:res.users,openid_url:0 71 | #, python-format 72 | msgid "OpenID URL" 73 | msgstr "Dirección OpenID" 74 | 75 | #. module: auth_openid 76 | #. openerp-web 77 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 78 | #, python-format 79 | msgid "Password" 80 | msgstr "Contraseña" 81 | 82 | #. module: auth_openid 83 | #: help:res.users,openid_email:0 84 | msgid "Used for disambiguation in case of a shared OpenID URL" 85 | msgstr "" 86 | "Utilizado para la desambiguación en el caso de una responsabilidad " 87 | "compartida URL de OpenID" 88 | 89 | #. module: auth_openid 90 | #. openerp-web 91 | #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 92 | #, python-format 93 | msgid "Username" 94 | msgstr "Nombre de usuario" 95 | 96 | #. module: auth_openid 97 | #: model:ir.model,name:auth_openid.model_res_users 98 | msgid "Users" 99 | msgstr "" 100 | -------------------------------------------------------------------------------- /auth_sudo/res_users.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # OpenERP, Open Source Management Solution, third party addon 4 | # Copyright (C) 2004-2015 Vertel AB (). 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU Affero General Public License as 8 | # published by the Free Software Foundation, either version 3 of the 9 | # License, or (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU Affero General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU Affero General Public License 17 | # along with this program. If not, see . 18 | # 19 | ############################################################################## 20 | from openerp.modules.registry import RegistryManager 21 | import openerp.exceptions 22 | from openerp import models, fields, api, _ 23 | from openerp import http 24 | from openerp.http import request 25 | from openerp import tools 26 | import logging 27 | _logger = logging.getLogger(__name__) 28 | 29 | 30 | class res_users(models.Model): 31 | _inherit = 'res.users' 32 | 33 | def _login(self, db, login, password): 34 | result = super(res_users, self)._login(db, login, password) 35 | if result: 36 | return result 37 | else: 38 | with RegistryManager.get(db).cursor() as cr: 39 | cr.execute("""UPDATE res_users 40 | SET login_date=now() AT TIME ZONE 'UTC' 41 | WHERE login=%s AND active=%s RETURNING id""", 42 | (tools.ustr(login), True)) 43 | # beware: record cache may be invalid 44 | res = cr.fetchone() 45 | cr.commit() 46 | return res[0] if res else False 47 | 48 | def check(self, db, uid, passwd): 49 | try: 50 | return super(res_users, self).check(db, uid, passwd) 51 | except openerp.exceptions.AccessDenied: 52 | if not passwd: 53 | raise 54 | with RegistryManager.get(db).cursor() as cr: 55 | cr.execute('''SELECT COUNT(1) 56 | FROM res_users 57 | WHERE id=%s 58 | AND active=%s''', 59 | (int(uid), True)) 60 | if not cr.fetchone()[0]: 61 | raise 62 | self._uid_cache.setdefault(db, {})[uid] = passwd 63 | 64 | class Authentication(http.Controller): 65 | 66 | @http.route('/sudo_login', type='http', auth="none", website=True) 67 | def sudo_login(self, redirect=None, **post): 68 | cr, uid, context, pool = request.cr, request.uid, request.context, request.registry 69 | res_users = pool.get('res.users').browse(cr,uid,uid) 70 | values={} 71 | if request.httprequest.method == 'POST': 72 | # Check if user can do sudo 73 | request.session.sudo_id = request.uid 74 | request.uid = pool.get('res.users').search(cr,uid,[('login','=',request.params['login'])])[0] 75 | request.session.uid = request.uid 76 | 77 | _logger.warning("Sudo: %s (%s)" % (request.uid,request.session.sudo_id)) 78 | #uid = request.session.authenticate(request.session.db, request.params['login'], request.params['password']) 79 | # if uid is not False: 80 | return http.redirect_with_hash(redirect) 81 | # request.uid = old_uid 82 | #values['error'] = "Wrong login/password" 83 | # values['res_users'] = pool.get('res.users').search(cr,uid,['&',('id','<>',uid),('company_id','=',res_users.company_id.id)]) 84 | 85 | 86 | # Check if user can do Sudo 87 | values['res_users'] = pool.get('res.users').browse(cr,uid,pool.get('res.users').search(cr,uid,[])) 88 | return request.render('auth_sudo.login', values) 89 | 90 | 91 | #class OpenERPSession(werkzeug.contrib.sessions.Session): 92 | #def __init__(self, *args, **kwargs): 93 | #self.inited = False 94 | #self.modified = False 95 | #super(OpenERPSession, self).__init__(*args, **kwargs) 96 | #self.inited = True 97 | #self._default_values() 98 | #self.modified = False 99 | 100 | 101 | #def authenticate(self, db, login=None, password=None, uid=None): 102 | #""" 103 | #Authenticate the current user with the given db, login and 104 | #password. If successful, store the authentication parameters in the 105 | #current session and request. 106 | 107 | #:param uid: If not None, that user id will be used instead the login 108 | #to authenticate the user. 109 | #""" 110 | 111 | #if uid is None: 112 | #wsgienv = request.httprequest.environ 113 | #env = dict( 114 | #base_location=request.httprequest.url_root.rstrip('/'), 115 | #HTTP_HOST=wsgienv['HTTP_HOST'], 116 | #REMOTE_ADDR=wsgienv['REMOTE_ADDR'], 117 | #) 118 | #uid = dispatch_rpc('common', 'authenticate', [db, login, password, env]) 119 | #else: 120 | #security.check(db, uid, password) 121 | #self.db = db 122 | #self.uid = uid 123 | #self.login = login 124 | #self.password = password 125 | #request.uid = uid 126 | #request.disable_db = False 127 | 128 | #if uid: self.get_context() 129 | #return uid 130 | 131 | #def check_security(self): 132 | #""" 133 | #Check the current authentication parameters to know if those are still 134 | #valid. This method should be called at each request. If the 135 | #authentication fails, a :exc:`SessionExpiredException` is raised. 136 | #""" 137 | #if not self.db or not self.uid: 138 | #raise SessionExpiredException("Session expired") 139 | #security.check(self.db, self.uid, self.password) 140 | 141 | #def logout(self, keep_db=False): 142 | #for k in self.keys(): 143 | #if not (keep_db and k == 'db'): 144 | #del self[k] 145 | #self._default_values() 146 | 147 | #def _default_values(self): 148 | #self.setdefault("db", None) 149 | #self.setdefault("uid", None) 150 | #self.setdefault("login", None) 151 | #self.setdefault("password", None) 152 | #self.setdefault("context", {}) 153 | 154 | 155 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 156 | --------------------------------------------------------------------------------
28 | 29 |
31 | 32 |