Browse Source
Merge pull request #83 from syleam/9.0-migrate-base_phone
Merge pull request #83 from syleam/9.0-migrate-base_phone
9.0 migrate base phonepull/85/merge
Alexis de Lattre
9 years ago
21 changed files with 1617 additions and 481 deletions
-
2.travis.yml
-
98base_phone/README.rst
-
19base_phone/__init__.py
-
46base_phone/__openerp__.py
-
141base_phone/base_phone.py
-
18base_phone/base_phone_demo.xml
-
2base_phone/controller.py
-
337base_phone/i18n/en.po
-
339base_phone/i18n/es.po
-
190base_phone/i18n/fr.po
-
205base_phone/i18n/sl.po
-
338base_phone/i18n/tr.po
-
6base_phone/report_sxw_format.py
-
26base_phone/res_partner_view.xml
-
4base_phone/res_users_view.xml
-
62base_phone/static/src/js/phone_widget.js
-
4base_phone/static/src/xml/phone.xml
-
5base_phone/test/phonenum.yml
-
110base_phone/wizard/number_not_found.py
-
3base_phone/wizard/number_not_found_view.xml
-
73base_phone/wizard/reformat_all_phonenumbers.py
@ -0,0 +1,98 @@ |
|||||
|
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg |
||||
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
||||
|
:alt: License: AGPL-3 |
||||
|
|
||||
|
========== |
||||
|
Base Phone |
||||
|
========== |
||||
|
|
||||
|
This module validate phone numbers using the *phonenumbers* Python library, |
||||
|
which is a port of the library used in Android smartphones. For example, if |
||||
|
your user is linked to a French company and you update the form view of a |
||||
|
partner with a badly written French phone number such as '01-55-42-12-42', |
||||
|
Odoo will automatically update the phone number to E.164 format '+33155421242' |
||||
|
and display in the form and tree view of the partner the readable equivalent |
||||
|
'+33 1 55 42 12 42'. |
||||
|
|
||||
|
This module also adds *tel:* links on phone numbers and *fax:* links on fax |
||||
|
numbers. If you have a softphone or a client software on your PC that is |
||||
|
associated with *tel:* links, the softphone should propose you to dial the |
||||
|
phone number when you click on such a link. |
||||
|
|
||||
|
This module also updates the format() function for reports and adds 2 |
||||
|
arguments : |
||||
|
|
||||
|
* *phone* : should be True for a phone number, False (default) otherwize. |
||||
|
* *phone_format* : it can have 3 possible values : |
||||
|
* *international* (default) : the report will display '+33 1 55 42 12 42' |
||||
|
* *national* : the report will display '01 55 42 12 42' |
||||
|
* *e164* : the report will display '+33155421242' |
||||
|
|
||||
|
For example, in the Sale Order report, to display the phone number of the |
||||
|
Salesman, you can write : o.user_id and o.user_id.phone and |
||||
|
format(o.user_id.phone, phone=True, phone_format='national') or '' |
||||
|
|
||||
|
This module is independant from the Asterisk connector. |
||||
|
|
||||
|
Please contact Alexis de Lattre from Akretion <alexis.delattre@akretion.com> |
||||
|
for any help or question about this module. |
||||
|
|
||||
|
Installation |
||||
|
============ |
||||
|
|
||||
|
There is no specific installation procedure for this module. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
|
||||
|
There is no specific configuration procedure for this module. |
||||
|
|
||||
|
Usage |
||||
|
===== |
||||
|
|
||||
|
There is no specific usage procedure for this module. |
||||
|
|
||||
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas |
||||
|
:alt: Try me on Runbot |
||||
|
:target: https://runbot.odoo-community.org/runbot/{repo_id}/9.0 |
||||
|
|
||||
|
Known issues / Roadmap |
||||
|
====================== |
||||
|
|
||||
|
|
||||
|
Bug Tracker |
||||
|
=========== |
||||
|
|
||||
|
Bugs are tracked on `GitHub Issues |
||||
|
<https://github.com/OCA/{project_repo}/issues>`_. In case of trouble, please |
||||
|
check there if your issue has already been reported. If you spotted it first, |
||||
|
help us smashing it by providing a detailed and welcomed `feedback |
||||
|
<https://github.com/OCA/connector-telephony/issues/new?body=module:%20base_phone%0Aversion:%209.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. |
||||
|
|
||||
|
Credits |
||||
|
======= |
||||
|
|
||||
|
Images |
||||
|
------ |
||||
|
|
||||
|
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_. |
||||
|
|
||||
|
Contributors |
||||
|
------------ |
||||
|
|
||||
|
* Alexis de Lattre <alexis.delattre@akretion.com> |
||||
|
|
||||
|
Maintainer |
||||
|
---------- |
||||
|
|
||||
|
.. image:: https://odoo-community.org/logo.png |
||||
|
:alt: Odoo Community Association |
||||
|
:target: https://odoo-community.org |
||||
|
|
||||
|
This module is maintained by the OCA. |
||||
|
|
||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose |
||||
|
mission is to support the collaborative development of Odoo features and |
||||
|
promote its widespread use. |
||||
|
|
||||
|
To contribute to this module, please visit https://odoo-community.org. |
@ -1,18 +0,0 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||
|
|
||||
<!-- |
|
||||
Copyright (C) 2014 Alexis de Lattre |
|
||||
@author Alexis de Lattre <alexis@via.ecp.fr> |
|
||||
The licence is in the file __openerp__.py |
|
||||
--> |
|
||||
|
|
||||
<openerp> |
|
||||
<data noupdate="1"> |
|
||||
|
|
||||
<!-- I need a country on the company, because otherwize it raises an error --> |
|
||||
<record id="base.main_company" model="res.company"> |
|
||||
<field name="country_id" ref="base.fr"/> |
|
||||
</record> |
|
||||
|
|
||||
</data> |
|
||||
</openerp> |
|
@ -0,0 +1,337 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_phone |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: connector-telephony (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2015-10-29 13:29+0000\n" |
||||
|
"PO-Revision-Date: 2015-10-29 13:29+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: English (http://www.transifex.com/oca/OCA-connector-telephony-8-0/language/en/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: en\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,calling_number:0 |
||||
|
msgid "Calling Number" |
||||
|
msgstr "Calling Number" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Cancel" |
||||
|
msgstr "Cancel" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/base_phone.py:112 |
||||
|
#, python-format |
||||
|
msgid "" |
||||
|
"Cannot reformat the phone number '%s' to international format. Error " |
||||
|
"message: %s" |
||||
|
msgstr "Cannot reformat the phone number '%s' to international format. Error message: %s" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:46 |
||||
|
#, python-format |
||||
|
msgid "Click2dial started" |
||||
|
msgstr "Click2dial started" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:58 |
||||
|
#, python-format |
||||
|
msgid "Click2dial successfull" |
||||
|
msgstr "Click2dial successfull" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Close" |
||||
|
msgstr "Close" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_res_company |
||||
|
msgid "Companies" |
||||
|
msgstr "Companies" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:87 |
||||
|
#, python-format |
||||
|
msgid "Create New Partner" |
||||
|
msgstr "Create New Partner" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Create Partner with this Number" |
||||
|
msgstr "Create Partner with this Number" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Create or Update a Partner" |
||||
|
msgstr "Create or Update a Partner" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,create_uid:0 |
||||
|
#: field:reformat.all.phonenumbers,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Created by" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,create_date:0 |
||||
|
#: field:reformat.all.phonenumbers,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Created on" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,current_partner_mobile:0 |
||||
|
msgid "Current Mobile" |
||||
|
msgstr "Current Mobile" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,current_partner_phone:0 |
||||
|
msgid "Current Phone" |
||||
|
msgstr "Current Phone" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:39 |
||||
|
#, python-format |
||||
|
msgid "Dial" |
||||
|
msgstr "Dial" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:reformat.all.phonenumbers,state:0 |
||||
|
msgid "Done" |
||||
|
msgstr "Done" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:reformat.all.phonenumbers,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "Draft" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,e164_number:0 |
||||
|
msgid "E.164 Number" |
||||
|
msgstr "E.164 Number" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,e164_number:0 |
||||
|
msgid "E.164 equivalent of the calling number." |
||||
|
msgstr "E.164 equivalent of the calling number." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.users:base_phone.view_users_form_simple_modif |
||||
|
msgid "Email Preferences" |
||||
|
msgstr "Email Preferences" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:101 |
||||
|
#, python-format |
||||
|
msgid "Error:" |
||||
|
msgstr "Error:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:number.not.found,number_type:0 |
||||
|
msgid "Fixed" |
||||
|
msgstr "Fixed" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,number_type:0 |
||||
|
msgid "Fixed/Mobile" |
||||
|
msgstr "Fixed/Mobile" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:base.phone.installed,id:0 field:number.not.found,id:0 |
||||
|
#: field:phone.common,id:0 field:reformat.all.phonenumbers,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:res.company,number_of_digits_to_match_from_end:0 |
||||
|
msgid "" |
||||
|
"In several situations, OpenERP will have to find a Partner/Lead/Employee/..." |
||||
|
" from a phone number presented by the calling party. As the phone numbers " |
||||
|
"presented by your phone operator may not always be displayed in a standard " |
||||
|
"format, the best method to find the related Partner/Lead/Employee/... in " |
||||
|
"OpenERP is to try to match the end of the phone number in OpenERP with the N" |
||||
|
" last digits of the phone number presented by the calling party. N is the " |
||||
|
"value you should enter in this field." |
||||
|
msgstr "In several situations, OpenERP will have to find a Partner/Lead/Employee/... from a phone number presented by the calling party. As the phone numbers presented by your phone operator may not always be displayed in a standard format, the best method to find the related Partner/Lead/Employee/... in OpenERP is to try to match the end of the phone number in OpenERP with the N last digits of the phone number presented by the calling party. N is the value you should enter in this field." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,write_uid:0 |
||||
|
#: field:reformat.all.phonenumbers,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Last Updated by" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,write_date:0 |
||||
|
#: field:reformat.all.phonenumbers,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Last Updated on" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:number.not.found,number_type:0 |
||||
|
msgid "Mobile" |
||||
|
msgstr "Mobile" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number Not Found" |
||||
|
msgstr "Number Not Found" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number converted to international format:" |
||||
|
msgstr "Number converted to international format:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:59 |
||||
|
#, python-format |
||||
|
msgid "Number dialed:" |
||||
|
msgstr "Number dialed:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_number_not_found |
||||
|
msgid "Number not found" |
||||
|
msgstr "Number not found" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number not found:" |
||||
|
msgstr "Number not found:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:res.company,number_of_digits_to_match_from_end:0 |
||||
|
msgid "Number of Digits To Match From End" |
||||
|
msgstr "Number of Digits To Match From End" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_res_partner |
||||
|
msgid "Partner" |
||||
|
msgstr "Partner" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,to_update_partner_id:0 |
||||
|
msgid "Partner on which the phone number will be written" |
||||
|
msgstr "Partner on which the phone number will be written" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,to_update_partner_id:0 |
||||
|
msgid "Partner to Update" |
||||
|
msgstr "Partner to Update" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:107 |
||||
|
#, python-format |
||||
|
msgid "Partner: %s" |
||||
|
msgstr "Partner: %s" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
msgid "Phone" |
||||
|
msgstr "Phone" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:res.groups,name:base_phone.group_callerid |
||||
|
msgid "Phone CallerID" |
||||
|
msgstr "Phone CallerID" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,calling_number:0 |
||||
|
msgid "" |
||||
|
"Phone number of calling party that has been obtained from the telephony " |
||||
|
"server, in the format used by the telephony server (not E.164)." |
||||
|
msgstr "Phone number of calling party that has been obtained from the telephony server, in the format used by the telephony server (not E.164)." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:reformat.all.phonenumbers,phonenumbers_not_reformatted:0 |
||||
|
msgid "Phone numbers that couldn't be reformatted" |
||||
|
msgstr "Phone numbers that couldn't be reformatted" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Phone numbers that couldn't be reformatted:" |
||||
|
msgstr "Phone numbers that couldn't be reformatted:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action |
||||
|
#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu |
||||
|
msgid "Reformat Phone Numbers" |
||||
|
msgstr "Reformat Phone Numbers" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Reformat all phone numbers" |
||||
|
msgstr "Reformat all phone numbers" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:102 |
||||
|
#, python-format |
||||
|
msgid "Select the Partner to Update." |
||||
|
msgstr "Select the Partner to Update." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:reformat.all.phonenumbers,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "State" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.ui.menu,name:base_phone.menu_config_phone |
||||
|
#: view:res.users:base_phone.view_users_form |
||||
|
msgid "Telephony" |
||||
|
msgstr "Telephony" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.users:base_phone.view_users_form |
||||
|
#: view:res.users:base_phone.view_users_form_simple_modif |
||||
|
msgid "Telephony Preferences" |
||||
|
msgstr "Telephony Preferences" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: sql_constraint:res.company:0 |
||||
|
msgid "" |
||||
|
"The value of the field 'Number of Digits To Match From End' must be " |
||||
|
"positive." |
||||
|
msgstr "The value of the field 'Number of Digits To Match From End' must be positive." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "" |
||||
|
"This wizard reformats the phone, mobile and fax numbers of all partners in " |
||||
|
"standard international format e.g. +33141981242" |
||||
|
msgstr "This wizard reformats the phone, mobile and fax numbers of all partners in standard international format e.g. +33141981242" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:47 |
||||
|
#, python-format |
||||
|
msgid "Unhook your ringing phone" |
||||
|
msgstr "Unhook your ringing phone" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Update Partner with this Number" |
||||
|
msgstr "Update Partner with this Number" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
#: view:res.partner:base_phone.view_partner_form |
||||
|
msgid "fax" |
||||
|
msgstr "fax" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
#: view:res.partner:base_phone.view_partner_form |
||||
|
#: view:res.partner:base_phone.view_partner_simple_form |
||||
|
#: view:res.partner:base_phone.view_partner_tree |
||||
|
msgid "phone" |
||||
|
msgstr "phone" |
@ -0,0 +1,339 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_phone |
||||
|
# |
||||
|
# Translators: |
||||
|
# Antonio Trueba, 2016 |
||||
|
# Enrique Zanardi <ezanardi@atlantux.com>, 2015 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: connector-telephony (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2015-11-01 04:07+0000\n" |
||||
|
"PO-Revision-Date: 2016-01-07 14:27+0000\n" |
||||
|
"Last-Translator: Antonio Trueba\n" |
||||
|
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-connector-telephony-8-0/language/es/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,calling_number:0 |
||||
|
msgid "Calling Number" |
||||
|
msgstr "Número llamante" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Cancel" |
||||
|
msgstr "Cancelar" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/base_phone.py:112 |
||||
|
#, python-format |
||||
|
msgid "" |
||||
|
"Cannot reformat the phone number '%s' to international format. Error " |
||||
|
"message: %s" |
||||
|
msgstr "No se puede reformatear el número de teléfono '%s' al formato internacional. Mensaje de error: %s" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:46 |
||||
|
#, python-format |
||||
|
msgid "Click2dial started" |
||||
|
msgstr "Click2dial iniciado" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:58 |
||||
|
#, python-format |
||||
|
msgid "Click2dial successfull" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Close" |
||||
|
msgstr "Cerrar" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_res_company |
||||
|
msgid "Companies" |
||||
|
msgstr "Compañías" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:87 |
||||
|
#, python-format |
||||
|
msgid "Create New Partner" |
||||
|
msgstr "Crear nueva empresa" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Create Partner with this Number" |
||||
|
msgstr "Crear empresa con éste número" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Create or Update a Partner" |
||||
|
msgstr "Crear o actualizar empresa" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,create_uid:0 |
||||
|
#: field:reformat.all.phonenumbers,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,create_date:0 |
||||
|
#: field:reformat.all.phonenumbers,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado el" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,current_partner_mobile:0 |
||||
|
msgid "Current Mobile" |
||||
|
msgstr "Móvil actual" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,current_partner_phone:0 |
||||
|
msgid "Current Phone" |
||||
|
msgstr "Teléfono actual" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:39 |
||||
|
#, python-format |
||||
|
msgid "Dial" |
||||
|
msgstr "Llamar" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:reformat.all.phonenumbers,state:0 |
||||
|
msgid "Done" |
||||
|
msgstr "Hecho" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:reformat.all.phonenumbers,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "Borrador" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,e164_number:0 |
||||
|
msgid "E.164 Number" |
||||
|
msgstr "Número E.164" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,e164_number:0 |
||||
|
msgid "E.164 equivalent of the calling number." |
||||
|
msgstr "Equivalente E.164 del número que llama" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.users:base_phone.view_users_form_simple_modif |
||||
|
msgid "Email Preferences" |
||||
|
msgstr "Preferencias de correo electrónico" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:101 |
||||
|
#, python-format |
||||
|
msgid "Error:" |
||||
|
msgstr "Error:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:number.not.found,number_type:0 |
||||
|
msgid "Fixed" |
||||
|
msgstr "Teléfono fijo" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,number_type:0 |
||||
|
msgid "Fixed/Mobile" |
||||
|
msgstr "Fijo/móvil" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:base.phone.installed,id:0 field:number.not.found,id:0 |
||||
|
#: field:phone.common,id:0 field:reformat.all.phonenumbers,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:res.company,number_of_digits_to_match_from_end:0 |
||||
|
msgid "" |
||||
|
"In several situations, OpenERP will have to find a Partner/Lead/Employee/..." |
||||
|
" from a phone number presented by the calling party. As the phone numbers " |
||||
|
"presented by your phone operator may not always be displayed in a standard " |
||||
|
"format, the best method to find the related Partner/Lead/Employee/... in " |
||||
|
"OpenERP is to try to match the end of the phone number in OpenERP with the N" |
||||
|
" last digits of the phone number presented by the calling party. N is the " |
||||
|
"value you should enter in this field." |
||||
|
msgstr "En varias ocasiones, OpenERP tendrá que encontrar una empresa/oportunidad/empleado/... a partir del número de teléfono enviado por el interlocutor. Como los números de teléfono enviados por su operador de telefonía puede que a veces se muestren en un formato no estándar, el mejor método para encontrar la empresa/oportunidad/empleado/... relacionado en OpenERP es buscar que coincida el final del número de teléfono en OpenERP con los últimos N dígitos del número de teléfono enviado por el interlocutor. N es el número que debe introducir en este campo." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,write_uid:0 |
||||
|
#: field:reformat.all.phonenumbers,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,write_date:0 |
||||
|
#: field:reformat.all.phonenumbers,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización el" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:number.not.found,number_type:0 |
||||
|
msgid "Mobile" |
||||
|
msgstr "Teléfono móvil" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number Not Found" |
||||
|
msgstr "Número no encontrado" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number converted to international format:" |
||||
|
msgstr "Número convertido a formato internacional:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:59 |
||||
|
#, python-format |
||||
|
msgid "Number dialed:" |
||||
|
msgstr "Número marcado:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_number_not_found |
||||
|
msgid "Number not found" |
||||
|
msgstr "Número no encontrado" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number not found:" |
||||
|
msgstr "Número no encontrado:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:res.company,number_of_digits_to_match_from_end:0 |
||||
|
msgid "Number of Digits To Match From End" |
||||
|
msgstr "Número de dígitos que coinciden al final." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_res_partner |
||||
|
msgid "Partner" |
||||
|
msgstr "Empresa" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,to_update_partner_id:0 |
||||
|
msgid "Partner on which the phone number will be written" |
||||
|
msgstr "Empresa en la que se escribirá el número de teléfono" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,to_update_partner_id:0 |
||||
|
msgid "Partner to Update" |
||||
|
msgstr "Empresa a actualizar" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:107 |
||||
|
#, python-format |
||||
|
msgid "Partner: %s" |
||||
|
msgstr "Empresa: %s" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
msgid "Phone" |
||||
|
msgstr "Teléfono" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:res.groups,name:base_phone.group_callerid |
||||
|
msgid "Phone CallerID" |
||||
|
msgstr "Identificación de llamada del teléfono" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,calling_number:0 |
||||
|
msgid "" |
||||
|
"Phone number of calling party that has been obtained from the telephony " |
||||
|
"server, in the format used by the telephony server (not E.164)." |
||||
|
msgstr "Número de teléfono del interlocutor que ha sido obtenido desde el servidor de telefonía, en el formato usado por el servidor de telefonía (no E.164)" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:reformat.all.phonenumbers,phonenumbers_not_reformatted:0 |
||||
|
msgid "Phone numbers that couldn't be reformatted" |
||||
|
msgstr "Números de teléfono que no pudieron reformatearse" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Phone numbers that couldn't be reformatted:" |
||||
|
msgstr "Números de teléfono que no pudieron reformatearse:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action |
||||
|
#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu |
||||
|
msgid "Reformat Phone Numbers" |
||||
|
msgstr "Reformatear números de teléfono" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Reformat all phone numbers" |
||||
|
msgstr "Reformatear todos los números de teléfono" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:102 |
||||
|
#, python-format |
||||
|
msgid "Select the Partner to Update." |
||||
|
msgstr "Escoja la empresa a actualizar" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:reformat.all.phonenumbers,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "Estado" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.ui.menu,name:base_phone.menu_config_phone |
||||
|
#: view:res.users:base_phone.view_users_form |
||||
|
msgid "Telephony" |
||||
|
msgstr "Telefonía" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.users:base_phone.view_users_form |
||||
|
#: view:res.users:base_phone.view_users_form_simple_modif |
||||
|
msgid "Telephony Preferences" |
||||
|
msgstr "Preferencias de telefonía" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: sql_constraint:res.company:0 |
||||
|
msgid "" |
||||
|
"The value of the field 'Number of Digits To Match From End' must be " |
||||
|
"positive." |
||||
|
msgstr "El valor del campo 'Número de dígitos que coinciden al final' debe ser positivo." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "" |
||||
|
"This wizard reformats the phone, mobile and fax numbers of all partners in " |
||||
|
"standard international format e.g. +33141981242" |
||||
|
msgstr "Este asistente reformatea los números de teléfono fijo, móvil y fax de todas las empresas en formato estandar internacional, p.ej. +33141981242" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:47 |
||||
|
#, python-format |
||||
|
msgid "Unhook your ringing phone" |
||||
|
msgstr "Descuelgue su teléfono que está sonando." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Update Partner with this Number" |
||||
|
msgstr "Actualizar empresa con éste número" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
#: view:res.partner:base_phone.view_partner_form |
||||
|
msgid "fax" |
||||
|
msgstr "fax" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
#: view:res.partner:base_phone.view_partner_form |
||||
|
#: view:res.partner:base_phone.view_partner_simple_form |
||||
|
#: view:res.partner:base_phone.view_partner_tree |
||||
|
msgid "phone" |
||||
|
msgstr "teléfono" |
@ -0,0 +1,338 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_phone |
||||
|
# |
||||
|
# Translators: |
||||
|
# Altinisik <aaltinisik@altinkaya.com.tr>, 2015 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: connector-telephony (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2015-11-01 04:07+0000\n" |
||||
|
"PO-Revision-Date: 2015-12-18 20:39+0000\n" |
||||
|
"Last-Translator: Altinisik <aaltinisik@altinkaya.com.tr>\n" |
||||
|
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-connector-telephony-8-0/language/tr/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: tr\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,calling_number:0 |
||||
|
msgid "Calling Number" |
||||
|
msgstr "Arayan No" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Cancel" |
||||
|
msgstr "İptal" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/base_phone.py:112 |
||||
|
#, python-format |
||||
|
msgid "" |
||||
|
"Cannot reformat the phone number '%s' to international format. Error " |
||||
|
"message: %s" |
||||
|
msgstr "Telefon numarası '%s' uluslararası formata çevrilemedi. Hata mesajı: %s" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:46 |
||||
|
#, python-format |
||||
|
msgid "Click2dial started" |
||||
|
msgstr "Tıkla çevir başlatıldı" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:58 |
||||
|
#, python-format |
||||
|
msgid "Click2dial successfull" |
||||
|
msgstr "Tıkla çevir başarılı" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Close" |
||||
|
msgstr "Kapat" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_res_company |
||||
|
msgid "Companies" |
||||
|
msgstr "Şirketler" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:87 |
||||
|
#, python-format |
||||
|
msgid "Create New Partner" |
||||
|
msgstr "Yeni iş ortağı oluştur" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Create Partner with this Number" |
||||
|
msgstr "Bu numara ile yeni iş ortağı oluştur" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Create or Update a Partner" |
||||
|
msgstr "Bir iş ortağı Oluştur ya da Güncelle" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,create_uid:0 |
||||
|
#: field:reformat.all.phonenumbers,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Oluşturan" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,create_date:0 |
||||
|
#: field:reformat.all.phonenumbers,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Oluşturuldu" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,current_partner_mobile:0 |
||||
|
msgid "Current Mobile" |
||||
|
msgstr "Kayıtlı Cep" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,current_partner_phone:0 |
||||
|
msgid "Current Phone" |
||||
|
msgstr "Kayıtlı Telefon" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:39 |
||||
|
#, python-format |
||||
|
msgid "Dial" |
||||
|
msgstr "Çevir" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:reformat.all.phonenumbers,state:0 |
||||
|
msgid "Done" |
||||
|
msgstr "Tamam" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:reformat.all.phonenumbers,state:0 |
||||
|
msgid "Draft" |
||||
|
msgstr "Taslak" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,e164_number:0 |
||||
|
msgid "E.164 Number" |
||||
|
msgstr "E.164 Numara" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,e164_number:0 |
||||
|
msgid "E.164 equivalent of the calling number." |
||||
|
msgstr "arayan numaranın E.164 eşdeğeri" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.users:base_phone.view_users_form_simple_modif |
||||
|
msgid "Email Preferences" |
||||
|
msgstr "E posta Seçenekleri" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:101 |
||||
|
#, python-format |
||||
|
msgid "Error:" |
||||
|
msgstr "Hata:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:number.not.found,number_type:0 |
||||
|
msgid "Fixed" |
||||
|
msgstr "Sabit" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,number_type:0 |
||||
|
msgid "Fixed/Mobile" |
||||
|
msgstr "Sabit/Cep" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:base.phone.installed,id:0 field:number.not.found,id:0 |
||||
|
#: field:phone.common,id:0 field:reformat.all.phonenumbers,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:res.company,number_of_digits_to_match_from_end:0 |
||||
|
msgid "" |
||||
|
"In several situations, OpenERP will have to find a Partner/Lead/Employee/..." |
||||
|
" from a phone number presented by the calling party. As the phone numbers " |
||||
|
"presented by your phone operator may not always be displayed in a standard " |
||||
|
"format, the best method to find the related Partner/Lead/Employee/... in " |
||||
|
"OpenERP is to try to match the end of the phone number in OpenERP with the N" |
||||
|
" last digits of the phone number presented by the calling party. N is the " |
||||
|
"value you should enter in this field." |
||||
|
msgstr "Bir çok farklı durumda Odoo arayan numaradan bir İş ortağı/Çalışan vs bulmalıdır. Telefon numaraları servis sağlayıcılar tarafından farklı biçimlerde gönderilebildiği için en iyi yöntem telefon numarasının son N hanesi ile eşleşen kaydı bulmaktır. N bu alana girmeniz gereken değerdir." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,write_uid:0 |
||||
|
#: field:reformat.all.phonenumbers,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Son güncelleyen" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,write_date:0 |
||||
|
#: field:reformat.all.phonenumbers,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Son güncellendiği" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: selection:number.not.found,number_type:0 |
||||
|
msgid "Mobile" |
||||
|
msgstr "Cep" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number Not Found" |
||||
|
msgstr "Numara bulunamadı" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number converted to international format:" |
||||
|
msgstr "Uluslarası biçime çevrilen numara:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:59 |
||||
|
#, python-format |
||||
|
msgid "Number dialed:" |
||||
|
msgstr "Aranan numara:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_number_not_found |
||||
|
msgid "Number not found" |
||||
|
msgstr "Numara bulunamadı" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Number not found:" |
||||
|
msgstr "Numara bulunamadı:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:res.company,number_of_digits_to_match_from_end:0 |
||||
|
msgid "Number of Digits To Match From End" |
||||
|
msgstr "Sondan eşleştirilecek rakam adedi" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_res_partner |
||||
|
msgid "Partner" |
||||
|
msgstr "İş Ortağı" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,to_update_partner_id:0 |
||||
|
msgid "Partner on which the phone number will be written" |
||||
|
msgstr "Telefon numarasının yazılacağı iş ortağı" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:number.not.found,to_update_partner_id:0 |
||||
|
msgid "Partner to Update" |
||||
|
msgstr "Güncellenecek iş ortağı" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:107 |
||||
|
#, python-format |
||||
|
msgid "Partner: %s" |
||||
|
msgstr "iş ortağı: %s" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
msgid "Phone" |
||||
|
msgstr "Telefon" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:res.groups,name:base_phone.group_callerid |
||||
|
msgid "Phone CallerID" |
||||
|
msgstr "Telefon CallerID" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: help:number.not.found,calling_number:0 |
||||
|
msgid "" |
||||
|
"Phone number of calling party that has been obtained from the telephony " |
||||
|
"server, in the format used by the telephony server (not E.164)." |
||||
|
msgstr "Sizi arayan numaranın telefon sunucusundan alınan telefon numarası (E.164 değil)" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:reformat.all.phonenumbers,phonenumbers_not_reformatted:0 |
||||
|
msgid "Phone numbers that couldn't be reformatted" |
||||
|
msgstr "yeniden biçimlendirilemeyen telefon numaraları " |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Phone numbers that couldn't be reformatted:" |
||||
|
msgstr "Yeniden biçimlendirilemeyen telefon numaraları:" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.actions.act_window,name:base_phone.reformat_all_phonenumbers_action |
||||
|
#: model:ir.ui.menu,name:base_phone.reformat_all_phonenumbers_menu |
||||
|
msgid "Reformat Phone Numbers" |
||||
|
msgstr "Telefon numaralarını yeniden biçimlendir" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.model,name:base_phone.model_reformat_all_phonenumbers |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "Reformat all phone numbers" |
||||
|
msgstr "Bütün telefon numaralarını yeniden biçimlendir" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: code:addons/base_phone/wizard/number_not_found.py:102 |
||||
|
#, python-format |
||||
|
msgid "Select the Partner to Update." |
||||
|
msgstr "Güncellenecek iş ortağını seçin." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: field:reformat.all.phonenumbers,state:0 |
||||
|
msgid "State" |
||||
|
msgstr "Durum" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: model:ir.ui.menu,name:base_phone.menu_config_phone |
||||
|
#: view:res.users:base_phone.view_users_form |
||||
|
msgid "Telephony" |
||||
|
msgstr "Telefon" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.users:base_phone.view_users_form |
||||
|
#: view:res.users:base_phone.view_users_form_simple_modif |
||||
|
msgid "Telephony Preferences" |
||||
|
msgstr "Telefon Ayarları" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: sql_constraint:res.company:0 |
||||
|
msgid "" |
||||
|
"The value of the field 'Number of Digits To Match From End' must be " |
||||
|
"positive." |
||||
|
msgstr "'Sondan eşleştirilecek rakam adedi' alanına sadece pozitif sayılar girilmelidir." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:reformat.all.phonenumbers:base_phone.reformat_all_phonenumbers_form |
||||
|
msgid "" |
||||
|
"This wizard reformats the phone, mobile and fax numbers of all partners in " |
||||
|
"standard international format e.g. +33141981242" |
||||
|
msgstr "Bu sihirbaz Cep, sabit telefon ve faks numaralarını standart E.164 uluslararası biçime sokar." |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#. openerp-web |
||||
|
#: code:addons/base_phone/static/src/js/phone_widget.js:47 |
||||
|
#, python-format |
||||
|
msgid "Unhook your ringing phone" |
||||
|
msgstr "Çalan telefonunuzu açın" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:number.not.found:base_phone.number_not_found_form |
||||
|
msgid "Update Partner with this Number" |
||||
|
msgstr "İş ortağını bu numara ile güncelle" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
#: view:res.partner:base_phone.view_partner_form |
||||
|
msgid "fax" |
||||
|
msgstr "Faks" |
||||
|
|
||||
|
#. module: base_phone |
||||
|
#: view:res.company:base_phone.view_company_form |
||||
|
#: view:res.partner:base_phone.view_partner_form |
||||
|
#: view:res.partner:base_phone.view_partner_simple_form |
||||
|
#: view:res.partner:base_phone.view_partner_tree |
||||
|
msgid "phone" |
||||
|
msgstr "telefon" |
Write
Preview
Loading…
Cancel
Save
Reference in new issue