[MERGE]: Merge with lp:openobject-addons

bzr revid: mma@tinyerp.com-20120125121303-1sejm7xflygkwv4e
This commit is contained in:
Mayur Maheshwari (OpenERP) 2012-01-25 17:43:03 +05:30
commit 119ca9c835
112 changed files with 6907 additions and 1465 deletions

View File

@ -2524,7 +2524,10 @@ class account_account_template(osv.osv):
#deactivate the parent_store functionnality on account_account for rapidity purpose
ctx = context.copy()
ctx.update({'defer_parent_store_computation': True})
children_acc_template = self.search(cr, uid, ['|', ('chart_template_id','=', chart_template_id),'&',('parent_id','child_of', [template.account_root_id.id]),('chart_template_id','=', False), ('nocreate','!=',True)], order='id')
children_acc_criteria = [('chart_template_id','=', chart_template_id)]
if template.account_root_id.id:
children_acc_criteria = ['|'] + children_acc_criteria + ['&',('parent_id','child_of', [template.account_root_id.id]),('chart_template_id','=', False)]
children_acc_template = self.search(cr, uid, [('nocreate','!=',True)] + children_acc_criteria, order='id')
for account_template in self.browse(cr, uid, children_acc_template, context=context):
# skip the root of COA if it's not the main one
if (template.account_root_id.id == account_template.id) and template.parent_id:
@ -2982,7 +2985,7 @@ class wizard_multi_charts_accounts(osv.osv_memory):
tax_templ_obj = self.pool.get('account.tax.template')
if 'bank_accounts_id' in fields:
res.update({'bank_accounts_id': [{'acc_name': _('Cash'), 'account_type': 'cash'}]})
res.update({'bank_accounts_id': [{'acc_name': _('Cash'), 'account_type': 'cash'},{'acc_name': _('Bank'), 'account_type': 'bank'}]})
if 'company_id' in fields:
res.update({'company_id': self.pool.get('res.users').browse(cr, uid, [uid], context=context)[0].company_id.id})
if 'seq_journal' in fields:

View File

@ -52,8 +52,9 @@ class account_bank_statement(osv.osv):
journal_pool = self.pool.get('account.journal')
journal_type = context.get('journal_type', False)
journal_id = False
company_id = self.pool.get('res.company')._company_default_get(cr, uid, 'account.bank.statement',context=context)
if journal_type:
ids = journal_pool.search(cr, uid, [('type', '=', journal_type)])
ids = journal_pool.search(cr, uid, [('type', '=', journal_type),('company_id','=',company_id)])
if ids:
journal_id = ids[0]
return journal_id
@ -169,30 +170,31 @@ class account_bank_statement(osv.osv):
'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.bank.statement',context=c),
}
def onchange_date(self, cr, user, ids, date, context=None):
def _check_company_id(self, cr, uid, ids, context=None):
for statement in self.browse(cr, uid, ids, context=context):
if statement.company_id.id != statement.period_id.company_id.id:
return False
return True
_constraints = [
(_check_company_id, 'The journal and period chosen have to belong to the same company.', ['journal_id','period_id']),
]
def onchange_date(self, cr, uid, ids, date, company_id, context=None):
"""
Returns a dict that contains new values and context
@param cr: A database cursor
@param user: ID of the user currently logged in
@param date: latest value from user input for field date
@param args: other arguments
@param context: context arguments, like lang, time zone
@return: Returns a dict which contains new values, and context
Find the correct period to use for the given date and company_id, return it and set it in the context
"""
res = {}
period_pool = self.pool.get('account.period')
if context is None:
context = {}
pids = period_pool.search(cr, user, [('date_start','<=',date), ('date_stop','>=',date)])
ctx = context.copy()
ctx.update({'company_id': company_id})
pids = period_pool.find(cr, uid, dt=date, context=ctx)
if pids:
res.update({
'period_id':pids[0]
})
context.update({
'period_id':pids[0]
})
res.update({'period_id': pids[0]})
context.update({'period_id': pids[0]})
return {
'value':res,
@ -385,8 +387,10 @@ class account_bank_statement(osv.osv):
ORDER BY date DESC,id DESC LIMIT 1', (journal_id, 'draft'))
res = cr.fetchone()
balance_start = res and res[0] or 0.0
account_id = self.pool.get('account.journal').read(cr, uid, journal_id, ['default_debit_account_id'], context=context)['default_debit_account_id']
return {'value': {'balance_start': balance_start, 'account_id': account_id}}
journal_data = self.pool.get('account.journal').read(cr, uid, journal_id, ['default_debit_account_id', 'company_id'], context=context)
account_id = journal_data['default_debit_account_id']
company_id = journal_data['company_id']
return {'value': {'balance_start': balance_start, 'account_id': account_id, 'company_id': company_id}}
def unlink(self, cr, uid, ids, context=None):
stat = self.read(cr, uid, ids, ['state'], context=context)

View File

@ -594,7 +594,7 @@
<form string="Bank Statement">
<group col="7" colspan="4">
<field name="name" select="1"/>
<field name="date" select="1" on_change="onchange_date(date)"/>
<field name="date" select="1" on_change="onchange_date(date, company_id)"/>
<field name="journal_id" domain="[('type', '=', 'bank')]" on_change="onchange_journal_id(journal_id)" select="1" widget="selection"/>
<newline/>
<field name="period_id"/>
@ -655,7 +655,8 @@
<form string="Bank Statement">
<group col="7" colspan="4">
<field name="name" select="1"/>
<field name="date" select="1" on_change="onchange_date(date)"/>
<field name="date" select="1" on_change="onchange_date(date, company_id)"/>
<field name='company_id' widget="selection" groups="base.group_multi_company" />
<field name="journal_id" domain="[('type', '=', 'bank')]" on_change="onchange_journal_id(journal_id)" widget="selection"/>
<newline/>
<field name="period_id"/>
@ -2620,7 +2621,7 @@ action = pool.get('res.config').next(cr, uid, [], context)
<form string="Statement">
<group col="6" colspan="4">
<field name="name" select="1"/>
<field name="company_id" select="1" groups="base.group_multi_company"/>
<field name='company_id' widget="selection" groups="base.group_multi_company" />
<field name="journal_id" on_change="onchange_journal_id(journal_id)" select="1" widget="selection"/>
<field name="user_id" select="1" readonly="1"/>
<field name="period_id" select="1"/>
@ -2693,7 +2694,7 @@ action = pool.get('res.config').next(cr, uid, [], context)
<group col="6" colspan="4">
<group col="2" colspan="2">
<separator string="Dates" colspan="4"/>
<field name="date" select="1" attrs="{'readonly':[('state','!=','draft')]}" on_change="onchange_date(date)"/>
<field name="date" select="1" attrs="{'readonly':[('state','!=','draft')]}" on_change="onchange_date(date, company_id)"/>
<field name="closing_date" select="1" readonly="1"/>
</group>
<group col="2" colspan="2">

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2012-01-09 20:41+0000\n"
"Last-Translator: Erdem U <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:30+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-10 05:21+0000\n"
"X-Generator: Launchpad (build 14640)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account
#: view:account.invoice.report:0
@ -738,7 +738,7 @@ msgstr "Kalemlere göre Analitik Girişler"
#. module: account
#: field:account.invoice.refund,filter_refund:0
msgid "Refund Method"
msgstr ""
msgstr "İade Yöntemi"
#. module: account
#: code:addons/account/wizard/account_change_currency.py:38
@ -779,7 +779,7 @@ msgstr "Bu faturaya ait paydaş kaynağı"
#. module: account
#: view:account.invoice.report:0
msgid "Supplier Invoices And Refunds"
msgstr ""
msgstr "Tedarikçi Faturaları ve İadeler"
#. module: account
#: view:account.move.line.unreconcile.select:0

View File

@ -105,6 +105,7 @@ class account_fiscalyear_close(osv.osv_memory):
'name': '/',
'ref': '',
'period_id': period.id,
'date': period.date_start,
'journal_id': new_journal.id,
}
move_id = obj_acc_move.create(cr, uid, vals, context=context)
@ -118,7 +119,6 @@ class account_fiscalyear_close(osv.osv_memory):
AND a.type != 'view'
AND t.close_method = %s''', ('unreconciled', ))
account_ids = map(lambda x: x[0], cr.fetchall())
if account_ids:
cr.execute('''
INSERT INTO account_move_line (
@ -130,11 +130,11 @@ class account_fiscalyear_close(osv.osv_memory):
(SELECT name, create_uid, create_date, write_uid, write_date,
statement_id, %s,currency_id, date_maturity, partner_id,
blocked, credit, 'draft', debit, ref, account_id,
%s, date, %s, amount_currency, quantity, product_id, company_id
%s, (%s) AS date, %s, amount_currency, quantity, product_id, company_id
FROM account_move_line
WHERE account_id IN %s
AND ''' + query_line + '''
AND reconcile_id IS NULL)''', (new_journal.id, period.id, move_id, tuple(account_ids),))
AND reconcile_id IS NULL)''', (new_journal.id, period.id, period.date_start, move_id, tuple(account_ids),))
#We have also to consider all move_lines that were reconciled
#on another fiscal year, and report them too
@ -149,7 +149,7 @@ class account_fiscalyear_close(osv.osv_memory):
b.name, b.create_uid, b.create_date, b.write_uid, b.write_date,
b.statement_id, %s, b.currency_id, b.date_maturity,
b.partner_id, b.blocked, b.credit, 'draft', b.debit,
b.ref, b.account_id, %s, b.date, %s, b.amount_currency,
b.ref, b.account_id, %s, (%s) AS date, %s, b.amount_currency,
b.quantity, b.product_id, b.company_id
FROM account_move_line b
WHERE b.account_id IN %s
@ -157,7 +157,7 @@ class account_fiscalyear_close(osv.osv_memory):
AND b.period_id IN ('''+fy_period_set+''')
AND b.reconcile_id IN (SELECT DISTINCT(reconcile_id)
FROM account_move_line a
WHERE a.period_id IN ('''+fy2_period_set+''')))''', (new_journal.id, period.id, move_id, tuple(account_ids),))
WHERE a.period_id IN ('''+fy2_period_set+''')))''', (new_journal.id, period.id, period.date_start, move_id, tuple(account_ids),))
#2. report of the accounts with defferal method == 'detail'
cr.execute('''
@ -180,11 +180,11 @@ class account_fiscalyear_close(osv.osv_memory):
(SELECT name, create_uid, create_date, write_uid, write_date,
statement_id, %s,currency_id, date_maturity, partner_id,
blocked, credit, 'draft', debit, ref, account_id,
%s, date, %s, amount_currency, quantity, product_id, company_id
%s, (%s) AS date, %s, amount_currency, quantity, product_id, company_id
FROM account_move_line
WHERE account_id IN %s
AND ''' + query_line + ''')
''', (new_journal.id, period.id, move_id, tuple(account_ids),))
''', (new_journal.id, period.id, period.date_start, move_id, tuple(account_ids),))
#3. report of the accounts with defferal method == 'balance'

View File

@ -29,8 +29,14 @@ class account_common_report(osv.osv_memory):
_name = "account.common.report"
_description = "Account Common Report"
def onchange_chart_id(self, cr, uid, ids, chart_account_id=False, context=None):
if chart_account_id:
company_id = self.pool.get('account.account').browse(cr, uid, chart_account_id, context=context).company_id.id
return {'value': {'company_id': company_id}}
_columns = {
'chart_account_id': fields.many2one('account.account', 'Chart of Account', help='Select Charts of Accounts', required=True, domain = [('parent_id','=',False)]),
'company_id': fields.related('chart_account_id', 'company_id', type='many2one', relation='res.company', string='Company', readonly=True),
'fiscalyear_id': fields.many2one('account.fiscalyear', 'Fiscal Year', help='Keep empty for all open fiscal year'),
'filter': fields.selection([('filter_no', 'No Filters'), ('filter_date', 'Date'), ('filter_period', 'Periods')], "Filter by", required=True),
'period_from': fields.many2one('account.period', 'Start Period'),
@ -44,6 +50,22 @@ class account_common_report(osv.osv_memory):
}
def _check_company_id(self, cr, uid, ids, context=None):
for wiz in self.browse(cr, uid, ids, context=context):
company_id = wiz.company_id.id
if company_id != wiz.fiscalyear_id.company_id.id:
return False
if wiz.period_from and company_id != wiz.period_from.company_id.id:
return False
if wiz.period_to and company_id != wiz.period_to.company_id.id:
return False
return True
_constraints = [
(_check_company_id, 'The fiscalyear, periods or chart of account chosen have to belong to the same company.', ['chart_account_id','fiscalyear_id','period_from','period_to']),
]
def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
res = super(account_common_report, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=False)
if context.get('active_model', False) == 'account.account' and view_id:

View File

@ -10,8 +10,9 @@
<form string="Report Options">
<label nolabel="1" string=""/>
<newline/>
<field name="chart_account_id" widget='selection'/>
<field name="fiscalyear_id"/>
<field name="chart_account_id" widget='selection' on_change="onchange_chart_id(chart_account_id, context)"/>
<field name="company_id" invisible="1"/>
<field name="fiscalyear_id" domain="[('company_id','=',company_id)]"/>
<field name="target_move"/>
<notebook tabpos="up" colspan="4">
<page string="Filters" name="filters">
@ -20,7 +21,7 @@
<field name="date_from" attrs="{'readonly':[('filter', '!=', 'filter_date')], 'required':[('filter', '=', 'filter_date')]}" colspan="4"/>
<field name="date_to" attrs="{'readonly':[('filter', '!=', 'filter_date')], 'required':[('filter', '=', 'filter_date')]}" colspan="4"/>
<separator string="Periods" colspan="4"/>
<field name="period_from" domain="[('fiscalyear_id', '=', fiscalyear_id)]" attrs="{'readonly':[('filter','!=','filter_period')], 'required':[('filter', '=', 'filter_period')]}" colspan="4"/>
<field name="period_from" domain="[('fiscalyear_id', '=', fiscalyear_id)]" attrs="{'readonly':[('filter','!=','filter_period')], 'required':[('filter', '=', 'filter_period')]}" colspan="4"/>
<field name="period_to" domain="[('fiscalyear_id', '=', fiscalyear_id)]" attrs="{'readonly':[('filter','!=','filter_period')], 'required':[('filter', '=', 'filter_period')]}" colspan="4"/>
</page>
<page string="Journals" name="journal_ids">

View File

@ -0,0 +1,473 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-24 09:06+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "No Account Manager"
msgstr "No Account Manager"
#. module: account_analytic_analysis
#: field:account.analytic.account,revenue_per_hour:0
msgid "Revenue per Time (real)"
msgstr "Revenue per Time (real)"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_ca:0
msgid "Computed using the formula: Max Invoice Price - Invoiced Amount."
msgstr "Computed using the formula: Max Invoice Price - Invoiced Amount."
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_date:0
msgid "Date of the latest work done on this account."
msgstr "Date of the latest work done on this account."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid ""
"The contracts to be renewed because the deadline is passed or the working "
"hours are higher than the allocated hours"
msgstr ""
"The contracts to be renewed because the deadline is passed or the working "
"hours are higher than the allocated hours"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Pending contracts to renew with your customer"
msgstr "Pending contracts to renew with your customer"
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:551
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:722
#, python-format
msgid "AccessError"
msgstr "AccessError"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Analytic Accounts with a past deadline in one month."
msgstr "Analytic Accounts with a past deadline in one month."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Group By..."
msgstr "Group By..."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "End Date"
msgstr "End Date"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Create Invoice"
msgstr "Create Invoice"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_invoice_date:0
msgid "Last Invoice Date"
msgstr "Last Invoice Date"
#. module: account_analytic_analysis
#: help:account.analytic.account,theorical_margin:0
msgid "Computed using the formula: Theorial Revenue - Total Costs"
msgstr "Computed using the formula: Theorial Revenue - Total Costs"
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_quantity:0
msgid ""
"Number of time you spent on the analytic account (from timesheet). It "
"computes quantities on all journal of type 'general'."
msgstr ""
"Number of time you spent on the analytic account (from timesheet). It "
"computes quantities on all journal of type 'general'."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Contracts in progress"
msgstr "Contracts in progress"
#. module: account_analytic_analysis
#: field:account.analytic.account,is_overdue_quantity:0
msgid "Overdue Quantity"
msgstr "Overdue Quantity"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue
msgid ""
"You will find here the contracts to be renewed because the deadline is "
"passed or the working hours are higher than the allocated hours. OpenERP "
"automatically sets these analytic accounts to the pending state, in order to "
"raise a warning during the timesheets recording. Salesmen should review all "
"pending accounts and reopen or close the according to the negotiation with "
"the customer."
msgstr ""
"You will find here the contracts to be renewed because the deadline is "
"passed or the working hours are higher than the allocated hours. OpenERP "
"automatically sets these analytic accounts to the pending state, in order to "
"raise a warning during the timesheets recording. Salesmen should review all "
"pending accounts and reopen or close the according to the negotiation with "
"the customer."
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_theorical:0
msgid "Theoretical Revenue"
msgstr "Theoretical Revenue"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_non_invoiced:0
msgid "Uninvoiced Time"
msgstr "Uninvoiced Time"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_invoiced_date:0
msgid ""
"If invoice from the costs, this is the date of the latest work or cost that "
"have been invoiced."
msgstr ""
"If invoice from the costs, this is the date of the latest work or cost that "
"have been invoiced."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "To Renew"
msgstr "To Renew"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_date:0
msgid "Date of Last Cost/Work"
msgstr "Date of Last Cost/Work"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_invoiced:0
msgid "Invoiced Time"
msgstr "Invoiced Time"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid ""
"A contract in OpenERP is an analytic account having a partner set on it."
msgstr ""
"A contract in OpenERP is an analytic account having a partner set on it."
#. module: account_analytic_analysis
#: field:account.analytic.account,remaining_hours:0
msgid "Remaining Time"
msgstr "Remaining Time"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue
msgid "Contracts to Renew"
msgstr "Contracts to Renew"
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_non_invoiced:0
msgid ""
"Number of time (hours/days) (from journal of type 'general') that can be "
"invoiced if you invoice based on analytic account."
msgstr ""
"Number of time (hours/days) (from journal of type 'general') that can be "
"invoiced if you invoice based on analytic account."
#. module: account_analytic_analysis
#: field:account.analytic.account,theorical_margin:0
msgid "Theoretical Margin"
msgstr "Theoretical Margin"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid " +1 Month"
msgstr " +1 Month"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_theorical:0
msgid ""
"Based on the costs you had on the project, what would have been the revenue "
"if all these costs have been invoiced at the normal sale price provided by "
"the pricelist."
msgstr ""
"Based on the costs you had on the project, what would have been the revenue "
"if all these costs have been invoiced at the normal sale price provided by "
"the pricelist."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Pending"
msgstr "Pending"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_to_invoice:0
msgid "Uninvoiced Amount"
msgstr "Uninvoiced Amount"
#. module: account_analytic_analysis
#: help:account.analytic.account,real_margin:0
msgid "Computed using the formula: Invoiced Amount - Total Costs."
msgstr "Computed using the formula: Invoiced Amount - Total Costs."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Parent"
msgstr "Parent"
#. module: account_analytic_analysis
#: field:account.analytic.account,user_ids:0
#: field:account_analytic_analysis.summary.user,user:0
msgid "User"
msgstr "User"
#. module: account_analytic_analysis
#: help:account.analytic.account,real_margin_rate:0
msgid "Computes using the formula: (Real Margin / Total Costs) * 100."
msgstr "Computes using the formula: (Real Margin / Total Costs) * 100."
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user
msgid "Hours Summary by User"
msgstr "Hours Summary by User"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_invoiced:0
msgid "Invoiced Amount"
msgstr "Invoiced Amount"
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:552
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:723
#, python-format
msgid "You try to bypass an access rule (Document type: %s)."
msgstr "You try to bypass an access rule (Document type: %s)."
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_invoiced_date:0
msgid "Date of Last Invoiced Cost"
msgstr "Date of Last Invoiced Cost"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Contract"
msgstr "Contract"
#. module: account_analytic_analysis
#: field:account.analytic.account,real_margin_rate:0
msgid "Real Margin Rate (%)"
msgstr "Real Margin Rate (%)"
#. module: account_analytic_analysis
#: field:account.analytic.account,real_margin:0
msgid "Real Margin"
msgstr "Real Margin"
#. module: account_analytic_analysis
#: constraint:account.analytic.account:0
msgid ""
"Error! The currency has to be the same as the currency of the selected "
"company"
msgstr ""
"Error! The currency has to be the same as the currency of the selected "
"company"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_invoiced:0
msgid "Total customer invoiced amount for this account."
msgstr "Total customer invoiced amount for this account."
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month
msgid "Hours summary by month"
msgstr "Hours summary by month"
#. module: account_analytic_analysis
#: constraint:account.analytic.account:0
msgid "Error! You can not create recursive analytic accounts."
msgstr "Error! You can not create recursive analytic accounts."
#. module: account_analytic_analysis
#: field:account.analytic.account,remaining_ca:0
msgid "Remaining Revenue"
msgstr "Remaining Revenue"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_hours:0
msgid "Computed using the formula: Maximum Time - Total Time"
msgstr "Computed using the formula: Maximum Time - Total Time"
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_invoiced:0
msgid ""
"Number of time (hours/days) that can be invoiced plus those that already "
"have been invoiced."
msgstr ""
"Number of time (hours/days) that can be invoiced plus those that already "
"have been invoiced."
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_to_invoice:0
msgid ""
"If invoice from analytic account, the remaining amount you can invoice to "
"the customer based on the total costs."
msgstr ""
"If invoice from analytic account, the remaining amount you can invoice to "
"the customer based on the total costs."
#. module: account_analytic_analysis
#: help:account.analytic.account,revenue_per_hour:0
msgid "Computed using the formula: Invoiced Amount / Total Time"
msgstr "Computed using the formula: Invoiced Amount / Total Time"
#. module: account_analytic_analysis
#: field:account.analytic.account,total_cost:0
msgid "Total Costs"
msgstr "Total Costs"
#. module: account_analytic_analysis
#: field:account.analytic.account,month_ids:0
#: field:account_analytic_analysis.summary.month,month:0
msgid "Month"
msgstr "Month"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
#: field:account_analytic_analysis.summary.month,account_id:0
#: field:account_analytic_analysis.summary.user,account_id:0
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_account
msgid "Analytic Account"
msgstr "Analytic Account"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all
msgid "Contracts"
msgstr "Contracts"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Manager"
msgstr "Manager"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all
msgid "All Uninvoiced Entries"
msgstr "All Uninvoiced Entries"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
msgid "If invoice from the costs, this is the date of the latest invoiced."
msgstr "If invoice from the costs, this is the date of the latest invoiced."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Associated Partner"
msgstr "Associated Partner"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Open"
msgstr "Open"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_quantity:0
#: field:account_analytic_analysis.summary.month,unit_amount:0
#: field:account_analytic_analysis.summary.user,unit_amount:0
msgid "Total Time"
msgstr "Total Time"
#. module: account_analytic_analysis
#: help:account.analytic.account,total_cost:0
msgid ""
"Total of costs for this account. It includes real costs (from invoices) and "
"indirect costs, like time spent on timesheets."
msgstr ""
"Total of costs for this account. It includes real costs (from invoices) and "
"indirect costs, like time spent on timesheets."
#~ msgid "Billing"
#~ msgstr "Billing"
#~ msgid ""
#~ "Number of hours that can be invoiced plus those that already have been "
#~ "invoiced."
#~ msgstr ""
#~ "Number of hours that can be invoiced plus those that already have been "
#~ "invoiced."
#~ msgid "Uninvoiced Hours"
#~ msgstr "Uninvoiced Hours"
#~ msgid "Date of the last invoice created for this analytic account."
#~ msgstr "Date of the last invoice created for this analytic account."
#~ msgid "Computed using the formula: Maximum Quantity - Hours Tot."
#~ msgstr "Computed using the formula: Maximum Quantity - Hours Tot."
#~ msgid "report_account_analytic"
#~ msgstr "report_account_analytic"
#~ msgid ""
#~ "Number of hours you spent on the analytic account (from timesheet). It "
#~ "computes on all journal of type 'general'."
#~ msgstr ""
#~ "Number of hours you spent on the analytic account (from timesheet). It "
#~ "computes on all journal of type 'general'."
#~ msgid "Remaining Hours"
#~ msgstr "Remaining Hours"
#~ msgid "Invoiced Hours"
#~ msgstr "Invoiced Hours"
#~ msgid ""
#~ "\n"
#~ "This module is for modifying account analytic view to show\n"
#~ "important data to project manager of services companies.\n"
#~ "Adds menu to show relevant information to each manager..\n"
#~ "\n"
#~ "You can also view the report of account analytic summary\n"
#~ "user-wise as well as month wise.\n"
#~ msgstr ""
#~ "\n"
#~ "This module is for modifying account analytic view to show\n"
#~ "important data to project manager of services companies.\n"
#~ "Adds menu to show relevant information to each manager..\n"
#~ "\n"
#~ "You can also view the report of account analytic summary\n"
#~ "user-wise as well as month wise.\n"
#~ msgid "Hours Tot"
#~ msgstr "Hours Tot"
#~ msgid "Revenue per Hours (real)"
#~ msgstr "Revenue per Hours (real)"
#~ msgid "Overpassed Accounts"
#~ msgstr "Overpassed Accounts"
#~ msgid "Analytic accounts"
#~ msgstr "Analytic accounts"
#~ msgid ""
#~ "Number of hours (from journal of type 'general') that can be invoiced if you "
#~ "invoice based on analytic account."
#~ msgstr ""
#~ "Number of hours (from journal of type 'general') that can be invoiced if you "
#~ "invoice based on analytic account."
#~ msgid "Computed using the formula: Invoiced Amount / Hours Tot."
#~ msgstr "Computed using the formula: Invoiced Amount / Hours Tot."

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-22 16:29+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:10+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:51+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_analytic_plans
#: view:analytic.plan.create.model:0
@ -97,7 +97,7 @@ msgstr "Hesap2 No"
#. module: account_analytic_plans
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
@ -134,12 +134,12 @@ msgstr "Banka Ekstresi Kalemi"
#. module: account_analytic_plans
#: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_form_action_installer
msgid "Define your Analytic Plans"
msgstr ""
msgstr "Analitik Planınızı Tanımlayın"
#. module: account_analytic_plans
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_analytic_plans
#: field:account.analytic.plan.instance.line,analytic_account_id:0
@ -302,7 +302,7 @@ msgstr "analiz.plan.oluştur.model.eylem"
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
msgstr "Analiz Satırı"
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
@ -342,7 +342,7 @@ msgstr "Firma bağlı olduğu hesap ve dönemle aynı olmalıdır."
#. module: account_analytic_plans
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_analytic_plans
#: field:account.analytic.plan.line,min_required:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 11:47+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:21+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:15+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_anglo_saxon
#: sql_constraint:purchase.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Order Reference must be unique per Company!"
#. module: account_anglo_saxon
#: view:product.category:0
@ -35,17 +35,17 @@ msgstr "Product Category"
#. module: account_anglo_saxon
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Reference must be unique per Company!"
#. module: account_anglo_saxon
#: constraint:product.category:0
msgid "Error ! You cannot create recursive categories."
msgstr ""
msgstr "Error ! You cannot create recursive categories."
#. module: account_anglo_saxon
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Invalid BBA Structured Communication !"
#. module: account_anglo_saxon
#: constraint:product.template:0
@ -88,7 +88,7 @@ msgstr "Picking List"
#. module: account_anglo_saxon
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Invoice Number must be unique per Company!"
#. module: account_anglo_saxon
#: help:product.category,property_account_creditor_price_difference_categ:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-06-02 17:13+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:15+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:15+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_anglo_saxon
#: sql_constraint:purchase.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: account_anglo_saxon
#: view:product.category:0
@ -35,17 +35,17 @@ msgstr "Ürün Kategorisi"
#. module: account_anglo_saxon
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: account_anglo_saxon
#: constraint:product.category:0
msgid "Error ! You cannot create recursive categories."
msgstr ""
msgstr "Birbirinin alt kategorisi olan kategoriler oluşturamazsınız."
#. module: account_anglo_saxon
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_anglo_saxon
#: constraint:product.template:0
@ -88,7 +88,7 @@ msgstr "Toplama Listesi"
#. module: account_anglo_saxon
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_anglo_saxon
#: help:product.category,property_account_creditor_price_difference_categ:0

View File

@ -47,12 +47,14 @@
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/tree/field[@name='amount']" position="after">
<field name="globalisation_id" string="Glob. Id"/>
<field name="state" invisible="1"/>
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/form/field[@name='date']" position="after">
<field name="val_date"/>
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/form/field[@name='amount']" position="after">
<field name="globalisation_id"/>
<field name="state" invisible="1"/>
</xpath>
</data>
</field>

View File

@ -0,0 +1,488 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:32+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_budget
#: field:crossovered.budget,creating_user_id:0
msgid "Responsible User"
msgstr "Responsible User"
#. module: account_budget
#: selection:crossovered.budget,state:0
msgid "Confirmed"
msgstr "Confirmed"
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.open_budget_post_form
#: model:ir.ui.menu,name:account_budget.menu_budget_post_form
msgid "Budgetary Positions"
msgstr "Budgetary Positions"
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
#, python-format
msgid "The General Budget '%s' has no Accounts!"
msgstr "The General Budget '%s' has no Accounts!"
#. module: account_budget
#: report:account.budget:0
msgid "Printed at:"
msgstr "Printed at:"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Confirm"
msgstr "Confirm"
#. module: account_budget
#: field:crossovered.budget,validating_user_id:0
msgid "Validate User"
msgstr "Validate User"
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report
msgid "Print Summary"
msgstr "Print Summary"
#. module: account_budget
#: field:crossovered.budget.lines,paid_date:0
msgid "Paid Date"
msgstr "Paid Date"
#. module: account_budget
#: field:account.budget.analytic,date_to:0
#: field:account.budget.crossvered.report,date_to:0
#: field:account.budget.crossvered.summary.report,date_to:0
#: field:account.budget.report,date_to:0
msgid "End of period"
msgstr "End of period"
#. module: account_budget
#: view:crossovered.budget:0
#: selection:crossovered.budget,state:0
msgid "Draft"
msgstr "Draft"
#. module: account_budget
#: report:account.budget:0
msgid "at"
msgstr "at"
#. module: account_budget
#: view:account.budget.report:0
#: model:ir.actions.act_window,name:account_budget.action_account_budget_analytic
#: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_report
msgid "Print Budgets"
msgstr "Print Budgets"
#. module: account_budget
#: report:account.budget:0
msgid "Currency:"
msgstr "Currency:"
#. module: account_budget
#: model:ir.model,name:account_budget.model_account_budget_crossvered_report
msgid "Account Budget crossvered report"
msgstr "Account Budget crossvered report"
#. module: account_budget
#: selection:crossovered.budget,state:0
msgid "Validated"
msgstr "Validated"
#. module: account_budget
#: field:crossovered.budget.lines,percentage:0
msgid "Percentage"
msgstr "Percentage"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "to"
msgstr "to"
#. module: account_budget
#: field:crossovered.budget,state:0
msgid "Status"
msgstr "Status"
#. module: account_budget
#: model:ir.actions.act_window,help:account_budget.act_crossovered_budget_view
msgid ""
"A budget is a forecast of your company's income and expenses expected for a "
"period in the future. With a budget, a company is able to carefully look at "
"how much money they are taking in during a given period, and figure out the "
"best way to divide it among various categories. By keeping track of where "
"your money goes, you may be less likely to overspend, and more likely to "
"meet your financial goals. Forecast a budget by detailing the expected "
"revenue per analytic account and monitor its evolution based on the actuals "
"realised during that period."
msgstr ""
"A budget is a forecast of your company's income and expenses expected for a "
"period in the future. With a budget, a company is able to carefully look at "
"how much money they are taking in during a given period, and figure out the "
"best way to divide it among various categories. By keeping track of where "
"your money goes, you may be less likely to overspend, and more likely to "
"meet your financial goals. Forecast a budget by detailing the expected "
"revenue per analytic account and monitor its evolution based on the actuals "
"realised during that period."
#. module: account_budget
#: view:account.budget.crossvered.summary.report:0
msgid "This wizard is used to print summary of budgets"
msgstr "This wizard is used to print summary of budgets"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "%"
msgstr "%"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Description"
msgstr "Description"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Currency"
msgstr "Currency"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Total :"
msgstr "Total :"
#. module: account_budget
#: field:account.budget.post,company_id:0
#: field:crossovered.budget,company_id:0
#: field:crossovered.budget.lines,company_id:0
msgid "Company"
msgstr "Company"
#. module: account_budget
#: view:crossovered.budget:0
msgid "To Approve"
msgstr "To Approve"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Reset to Draft"
msgstr "Reset to Draft"
#. module: account_budget
#: view:account.budget.post:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,planned_amount:0
msgid "Planned Amount"
msgstr "Planned Amount"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Perc(%)"
msgstr "Perc(%)"
#. module: account_budget
#: view:crossovered.budget:0
#: selection:crossovered.budget,state:0
msgid "Done"
msgstr "Done"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Practical Amt"
msgstr "Practical Amt"
#. module: account_budget
#: view:account.analytic.account:0
#: view:account.budget.post:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,practical_amount:0
msgid "Practical Amount"
msgstr "Practical Amount"
#. module: account_budget
#: field:crossovered.budget,date_to:0
#: field:crossovered.budget.lines,date_to:0
msgid "End Date"
msgstr "End Date"
#. module: account_budget
#: model:ir.model,name:account_budget.model_account_budget_analytic
#: model:ir.model,name:account_budget.model_account_budget_report
msgid "Account Budget report for analytic account"
msgstr "Account Budget report for analytic account"
#. module: account_budget
#: view:account.analytic.account:0
msgid "Theoritical Amount"
msgstr "Theoretical Amount"
#. module: account_budget
#: field:account.budget.post,name:0
#: field:crossovered.budget,name:0
msgid "Name"
msgstr "Name"
#. module: account_budget
#: model:ir.model,name:account_budget.model_crossovered_budget_lines
msgid "Budget Line"
msgstr "Budget Line"
#. module: account_budget
#: view:account.analytic.account:0
#: view:account.budget.post:0
msgid "Lines"
msgstr "Lines"
#. module: account_budget
#: report:account.budget:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,crossovered_budget_id:0
#: report:crossovered.budget.report:0
#: model:ir.actions.report.xml,name:account_budget.account_budget
#: model:ir.model,name:account_budget.model_crossovered_budget
msgid "Budget"
msgstr "Budget"
#. module: account_budget
#: view:crossovered.budget:0
msgid "To Approve Budgets"
msgstr "To Approve Budgets"
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
#, python-format
msgid "Error!"
msgstr "Error!"
#. module: account_budget
#: field:account.budget.post,code:0
#: field:crossovered.budget,code:0
msgid "Code"
msgstr "Code"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
msgid "This wizard is used to print budget"
msgstr "This wizard is used to print budget"
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_view
#: model:ir.actions.act_window,name:account_budget.action_account_budget_post_tree
#: model:ir.actions.act_window,name:account_budget.action_account_budget_report
#: model:ir.actions.report.xml,name:account_budget.report_crossovered_budget
#: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_view
#: model:ir.ui.menu,name:account_budget.menu_action_account_budget_post_tree
#: model:ir.ui.menu,name:account_budget.next_id_31
#: model:ir.ui.menu,name:account_budget.next_id_pos
msgid "Budgets"
msgstr "Budgets"
#. module: account_budget
#: constraint:account.analytic.account:0
msgid ""
"Error! The currency has to be the same as the currency of the selected "
"company"
msgstr ""
"Error! The currency has to be the same as the currency of the selected "
"company"
#. module: account_budget
#: selection:crossovered.budget,state:0
msgid "Cancelled"
msgstr "Cancelled"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Approve"
msgstr "Approve"
#. module: account_budget
#: field:crossovered.budget,date_from:0
#: field:crossovered.budget.lines,date_from:0
msgid "Start Date"
msgstr "Start Date"
#. module: account_budget
#: view:account.budget.post:0
#: field:crossovered.budget.lines,general_budget_id:0
#: model:ir.model,name:account_budget.model_account_budget_post
msgid "Budgetary Position"
msgstr "Budgetary Position"
#. module: account_budget
#: field:account.budget.analytic,date_from:0
#: field:account.budget.crossvered.report,date_from:0
#: field:account.budget.crossvered.summary.report,date_from:0
#: field:account.budget.report,date_from:0
msgid "Start of period"
msgstr "Start of period"
#. module: account_budget
#: model:ir.model,name:account_budget.model_account_budget_crossvered_summary_report
msgid "Account Budget crossvered summary report"
msgstr "Account Budget crossvered summary report"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Theoretical Amt"
msgstr "Theoretical Amt"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
#: view:account.budget.crossvered.summary.report:0
#: view:account.budget.report:0
msgid "Select Dates Period"
msgstr "Select Dates Period"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
#: view:account.budget.crossvered.summary.report:0
#: view:account.budget.report:0
msgid "Print"
msgstr "Print"
#. module: account_budget
#: view:account.budget.post:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,theoritical_amount:0
msgid "Theoretical Amount"
msgstr "Theoretical Amount"
#. module: account_budget
#: field:crossovered.budget.lines,analytic_account_id:0
#: model:ir.model,name:account_budget.model_account_analytic_account
msgid "Analytic Account"
msgstr "Analytic Account"
#. module: account_budget
#: report:account.budget:0
msgid "Budget :"
msgstr "Budget :"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Planned Amt"
msgstr "Planned Amt"
#. module: account_budget
#: view:account.budget.post:0
#: field:account.budget.post,account_ids:0
msgid "Accounts"
msgstr "Accounts"
#. module: account_budget
#: view:account.analytic.account:0
#: field:account.analytic.account,crossovered_budget_line:0
#: view:account.budget.post:0
#: field:account.budget.post,crossovered_budget_line:0
#: view:crossovered.budget:0
#: field:crossovered.budget,crossovered_budget_line:0
#: view:crossovered.budget.lines:0
#: model:ir.actions.act_window,name:account_budget.act_account_analytic_account_cb_lines
#: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_lines_view
#: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_lines_view
msgid "Budget Lines"
msgstr "Budget Lines"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
#: view:account.budget.crossvered.summary.report:0
#: view:account.budget.report:0
#: view:crossovered.budget:0
msgid "Cancel"
msgstr "Cancel"
#. module: account_budget
#: constraint:account.analytic.account:0
msgid "Error! You can not create recursive analytic accounts."
msgstr "Error! You can not create recursive analytic accounts."
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Analysis from"
msgstr "Analysis from"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Draft Budgets"
msgstr "Draft Budgets"
#~ msgid ""
#~ "This module allows accountants to manage analytic and crossovered budgets.\n"
#~ "\n"
#~ "Once the Master Budgets and the Budgets are defined (in "
#~ "Accounting/Budgets/),\n"
#~ "the Project Managers can set the planned amount on each Analytic Account.\n"
#~ "\n"
#~ "The accountant has the possibility to see the total of amount planned for "
#~ "each\n"
#~ "Budget and Master Budget in order to ensure the total planned is not\n"
#~ "greater/lower than what he planned for this Budget/Master Budget. Each list "
#~ "of\n"
#~ "record can also be switched to a graphical view of it.\n"
#~ "\n"
#~ "Three reports are available:\n"
#~ " 1. The first is available from a list of Budgets. It gives the "
#~ "spreading, for these Budgets, of the Analytic Accounts per Master Budgets.\n"
#~ "\n"
#~ " 2. The second is a summary of the previous one, it only gives the "
#~ "spreading, for the selected Budgets, of the Analytic Accounts.\n"
#~ "\n"
#~ " 3. The last one is available from the Analytic Chart of Accounts. It "
#~ "gives the spreading, for the selected Analytic Accounts, of the Master "
#~ "Budgets per Budgets.\n"
#~ "\n"
#~ msgstr ""
#~ "This module allows accountants to manage analytic and crossovered budgets.\n"
#~ "\n"
#~ "Once the Master Budgets and the Budgets are defined (in "
#~ "Accounting/Budgets/),\n"
#~ "the Project Managers can set the planned amount on each Analytic Account.\n"
#~ "\n"
#~ "The accountant has the possibility to see the total of amount planned for "
#~ "each\n"
#~ "Budget and Master Budget in order to ensure the total planned is not\n"
#~ "greater/lower than what he planned for this Budget/Master Budget. Each list "
#~ "of\n"
#~ "record can also be switched to a graphical view of it.\n"
#~ "\n"
#~ "Three reports are available:\n"
#~ " 1. The first is available from a list of Budgets. It gives the "
#~ "spreading, for these Budgets, of the Analytic Accounts per Master Budgets.\n"
#~ "\n"
#~ " 2. The second is a summary of the previous one, it only gives the "
#~ "spreading, for the selected Budgets, of the Analytic Accounts.\n"
#~ "\n"
#~ " 3. The last one is available from the Analytic Chart of Accounts. It "
#~ "gives the spreading, for the selected Analytic Accounts, of the Master "
#~ "Budgets per Budgets.\n"
#~ "\n"
#~ msgid "Budget Management"
#~ msgstr "Budget Management"

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 11:46+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:21+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:19+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_cancel
#: view:account.invoice:0
msgid "Cancel"
msgstr ""
msgstr "Cancel"
#~ msgid "Account Cancel"
#~ msgstr "Account Cancel"

View File

@ -0,0 +1,265 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:23+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_coda
#: help:account.coda,journal_id:0
#: field:account.coda.import,journal_id:0
msgid "Bank Journal"
msgstr "Bank Journal"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda.import,note:0
msgid "Log"
msgstr "Log"
#. module: account_coda
#: model:ir.model,name:account_coda.model_account_coda_import
msgid "Account Coda Import"
msgstr "Account Coda Import"
#. module: account_coda
#: field:account.coda,name:0
msgid "Coda file"
msgstr "Coda file"
#. module: account_coda
#: view:account.coda:0
msgid "Group By..."
msgstr "Group By..."
#. module: account_coda
#: field:account.coda.import,awaiting_account:0
msgid "Default Account for Unrecognized Movement"
msgstr "Default Account for Unrecognized Movement"
#. module: account_coda
#: help:account.coda,date:0
msgid "Import Date"
msgstr "Import Date"
#. module: account_coda
#: field:account.coda,note:0
msgid "Import log"
msgstr "Import log"
#. module: account_coda
#: view:account.coda.import:0
msgid "Import"
msgstr "Import"
#. module: account_coda
#: view:account.coda:0
msgid "Coda import"
msgstr "Coda import"
#. module: account_coda
#: code:addons/account_coda/account_coda.py:51
#, python-format
msgid "Coda file not found for bank statement !!"
msgstr "Coda file not found for bank statement !!"
#. module: account_coda
#: help:account.coda.import,awaiting_account:0
msgid ""
"Set here the default account that will be used, if the partner is found but "
"does not have the bank account, or if he is domiciled"
msgstr ""
"Set here the default account that will be used, if the partner is found but "
"does not have the bank account, or if he is domiciled"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,company_id:0
msgid "Company"
msgstr "Company"
#. module: account_coda
#: help:account.coda.import,def_payable:0
msgid ""
"Set here the payable account that will be used, by default, if the partner "
"is not found"
msgstr ""
"Set here the payable account that will be used, by default, if the partner "
"is not found"
#. module: account_coda
#: view:account.coda:0
msgid "Search Coda"
msgstr "Search Coda"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,user_id:0
msgid "User"
msgstr "User"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,date:0
msgid "Date"
msgstr "Date"
#. module: account_coda
#: model:ir.ui.menu,name:account_coda.menu_account_coda_statement
msgid "Coda Import Logs"
msgstr "Coda Import Logs"
#. module: account_coda
#: model:ir.model,name:account_coda.model_account_coda
msgid "coda for an Account"
msgstr "coda for an Account"
#. module: account_coda
#: field:account.coda.import,def_payable:0
msgid "Default Payable Account"
msgstr "Default Payable Account"
#. module: account_coda
#: help:account.coda,name:0
msgid "Store the detail of bank statements"
msgstr "Store the detail of bank statements"
#. module: account_coda
#: view:account.coda.import:0
msgid "Cancel"
msgstr "Cancel"
#. module: account_coda
#: view:account.coda.import:0
msgid "Open Statements"
msgstr "Open Statements"
#. module: account_coda
#: code:addons/account_coda/wizard/account_coda_import.py:167
#, python-format
msgid "The bank account %s is not defined for the partner %s.\n"
msgstr "The bank account %s is not defined for the partner %s.\n"
#. module: account_coda
#: model:ir.ui.menu,name:account_coda.menu_account_coda_import
msgid "Import Coda Statements"
msgstr "Import Coda Statements"
#. module: account_coda
#: view:account.coda.import:0
#: model:ir.actions.act_window,name:account_coda.action_account_coda_import
msgid "Import Coda Statement"
msgstr "Import Coda Statement"
#. module: account_coda
#: view:account.coda:0
msgid "Statements"
msgstr "Statements"
#. module: account_coda
#: field:account.bank.statement,coda_id:0
msgid "Coda"
msgstr "Coda"
#. module: account_coda
#: view:account.coda.import:0
msgid "Results :"
msgstr "Results :"
#. module: account_coda
#: view:account.coda.import:0
msgid "Result of Imported Coda Statements"
msgstr "Result of Imported Coda Statements"
#. module: account_coda
#: help:account.coda.import,def_receivable:0
msgid ""
"Set here the receivable account that will be used, by default, if the "
"partner is not found"
msgstr ""
"Set here the receivable account that will be used, by default, if the "
"partner is not found"
#. module: account_coda
#: field:account.coda.import,coda:0
#: model:ir.actions.act_window,name:account_coda.act_account_payment_account_bank_statement
msgid "Coda File"
msgstr "Coda File"
#. module: account_coda
#: model:ir.model,name:account_coda.model_account_bank_statement
msgid "Bank Statement"
msgstr "Bank Statement"
#. module: account_coda
#: model:ir.actions.act_window,name:account_coda.action_account_coda
msgid "Coda Logs"
msgstr "Coda Logs"
#. module: account_coda
#: code:addons/account_coda/wizard/account_coda_import.py:311
#, python-format
msgid "Result"
msgstr "Result"
#. module: account_coda
#: view:account.coda.import:0
msgid "Click on 'New' to select your file :"
msgstr "Click on 'New' to select your file :"
#. module: account_coda
#: field:account.coda.import,def_receivable:0
msgid "Default Receivable Account"
msgstr "Default Receivable Account"
#. module: account_coda
#: view:account.coda.import:0
msgid "Close"
msgstr "Close"
#. module: account_coda
#: field:account.coda,statement_ids:0
msgid "Generated Bank Statements"
msgstr "Generated Bank Statements"
#. module: account_coda
#: view:account.coda.import:0
msgid "Configure Your Journal and Account :"
msgstr "Configure Your Journal and Account :"
#. module: account_coda
#: view:account.coda:0
msgid "Coda Import"
msgstr "Coda Import"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,journal_id:0
msgid "Journal"
msgstr "Journal"
#~ msgid "Account CODA - import bank statements from coda file"
#~ msgstr "Account CODA - import bank statements from coda file"
#~ msgid ""
#~ "\n"
#~ " Module provides functionality to import\n"
#~ " bank statements from coda files.\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ " Module provides functionality to import\n"
#~ " bank statements from coda files.\n"
#~ " "

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-11-11 15:22+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-24 20:05+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_followup
#: view:account_followup.followup:0
@ -117,7 +117,7 @@ msgstr "Kapanmış bir hesap için hareket yaratamazsınız."
#. module: account_followup
#: report:account_followup.followup.print:0
msgid "Amount"
msgstr ""
msgstr "Tutar"
#. module: account_followup
#: sql_constraint:account.move.line:0
@ -335,7 +335,7 @@ msgstr "Paydaşa göre İzleme İstatistikleri"
#. module: account_followup
#: view:account_followup.followup.line:0
msgid "Message"
msgstr ""
msgstr "Mesaj"
#. module: account_followup
#: constraint:account.move.line:0
@ -425,12 +425,12 @@ msgstr "Email Onayı gönder"
#. module: account_followup
#: report:account_followup.followup.print:0
msgid "Total:"
msgstr ""
msgstr "Toplam:"
#. module: account_followup
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_followup
#: constraint:res.company:0
@ -566,6 +566,9 @@ msgid ""
"\n"
"%s"
msgstr ""
"Aşağıdaki carilere e-posta gönderilmedi, E-posta bulunmuyor!\n"
"\n"
"%s"
#. module: account_followup
#: view:account.followup.print.all:0
@ -633,7 +636,7 @@ msgstr "Gönderilen İzlemeler"
#. module: account_followup
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Şirket adı tekil olmalı !"
#. module: account_followup
#: field:account_followup.followup,name:0
@ -715,7 +718,7 @@ msgstr "Müşteri Ref :"
#. module: account_followup
#: field:account.followup.print.all,test_print:0
msgid "Test Print"
msgstr ""
msgstr "Test Baskısı"
#. module: account_followup
#: view:account.followup.print.all:0

View File

@ -0,0 +1,396 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:53+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Sub Total"
msgstr "Sub Total"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Note:"
msgstr "Note:"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Cancelled Invoice"
msgstr "Cancelled Invoice"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
#: field:notify.message,name:0
msgid "Title"
msgstr "Title"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Disc. (%)"
msgstr "Disc. (%)"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Note"
msgstr "Note"
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Print"
msgstr "Print"
#. module: account_invoice_layout
#: help:notify.message,msg:0
msgid ""
"This notification will appear at the bottom of the Invoices when printed."
msgstr ""
"This notification will appear at the bottom of the Invoices when printed."
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Unit Price"
msgstr "Unit Price"
#. module: account_invoice_layout
#: model:ir.model,name:account_invoice_layout.model_notify_message
msgid "Notify By Messages"
msgstr "Notify By Messages"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "VAT :"
msgstr "VAT :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Tel. :"
msgstr "Tel. :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "PRO-FORMA"
msgstr "PRO-FORMA"
#. module: account_invoice_layout
#: field:account.invoice,abstract_line_ids:0
msgid "Invoice Lines"
msgstr "Invoice Lines"
#. module: account_invoice_layout
#: view:account.invoice.line:0
msgid "Seq."
msgstr "Seq."
#. module: account_invoice_layout
#: model:ir.ui.menu,name:account_invoice_layout.menu_finan_config_notify_message
msgid "Notification Message"
msgstr "Notification Message"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Customer Code"
msgstr "Customer Code"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Description"
msgstr "Description"
#. module: account_invoice_layout
#: help:account.invoice.line,sequence:0
msgid "Gives the sequence order when displaying a list of invoice lines."
msgstr "Gives the sequence order when displaying a list of invoice lines."
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Price"
msgstr "Price"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Invoice Date"
msgstr "Invoice Date"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Taxes:"
msgstr "Taxes:"
#. module: account_invoice_layout
#: field:account.invoice.line,functional_field:0
msgid "Source Account"
msgstr "Source Account"
#. module: account_invoice_layout
#: model:ir.actions.act_window,name:account_invoice_layout.notify_mesage_tree_form
msgid "Write Messages"
msgstr "Write Messages"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Base"
msgstr "Base"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Page Break"
msgstr "Page Break"
#. module: account_invoice_layout
#: view:notify.message:0
#: field:notify.message,msg:0
msgid "Special Message"
msgstr "Special Message"
#. module: account_invoice_layout
#: help:account.invoice.special.msg,message:0
msgid "Message to Print at the bottom of report"
msgstr "Message to Print at the bottom of report"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Quantity"
msgstr "Quantity"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Refund"
msgstr "Refund"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Fax :"
msgstr "Fax :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Total:"
msgstr "Total:"
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Select Message"
msgstr "Select Message"
#. module: account_invoice_layout
#: view:notify.message:0
msgid "Messages"
msgstr "Messages"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Product"
msgstr "Product"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Description / Taxes"
msgstr "Description / Taxes"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Amount"
msgstr "Amount"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Net Total :"
msgstr "Net Total :"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Total :"
msgstr "Total :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Draft Invoice"
msgstr "Draft Invoice"
#. module: account_invoice_layout
#: field:account.invoice.line,sequence:0
msgid "Sequence Number"
msgstr "Sequence Number"
#. module: account_invoice_layout
#: model:ir.model,name:account_invoice_layout.model_account_invoice_special_msg
msgid "Account Invoice Special Message"
msgstr "Account Invoice Special Message"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Origin"
msgstr "Origin"
#. module: account_invoice_layout
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr "Invoice Number must be unique per Company!"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Separator Line"
msgstr "Separator Line"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Your Reference"
msgstr "Your Reference"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Supplier Invoice"
msgstr "Supplier Invoice"
#. module: account_invoice_layout
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1
msgid "Invoices"
msgstr "Invoices"
#. module: account_invoice_layout
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr "Invalid BBA Structured Communication !"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Tax"
msgstr "Tax"
#. module: account_invoice_layout
#: model:ir.model,name:account_invoice_layout.model_account_invoice_line
msgid "Invoice Line"
msgstr "Invoice Line"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Net Total:"
msgstr "Net Total:"
#. module: account_invoice_layout
#: model:ir.actions.act_window,name:account_invoice_layout.action_account_invoice_special_msg
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_layout_message
msgid "Invoices and Message"
msgstr "Invoices and Message"
#. module: account_invoice_layout
#: field:account.invoice.line,state:0
msgid "Type"
msgstr "Type"
#. module: account_invoice_layout
#: view:notify.message:0
msgid "Write a notification or a wishful message."
msgstr "Write a notification or a wishful message."
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: model:ir.model,name:account_invoice_layout.model_account_invoice
#: report:notify_account.invoice:0
msgid "Invoice"
msgstr "Invoice"
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Cancel"
msgstr "Cancel"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Supplier Refund"
msgstr "Supplier Refund"
#. module: account_invoice_layout
#: field:account.invoice.special.msg,message:0
msgid "Message"
msgstr "Message"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Taxes :"
msgstr "Taxes :"
#. module: account_invoice_layout
#: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form
msgid "All Notification Messages"
msgstr "All Notification Messages"
#~ msgid "Invoices Layout Improvement"
#~ msgstr "Invoices Layout Improvement"
#~ msgid "ERP & CRM Solutions..."
#~ msgstr "ERP & CRM Solutions..."
#~ msgid "Invoices with Layout and Message"
#~ msgstr "Invoices with Layout and Message"
#~ msgid "Invoices with Layout"
#~ msgstr "Invoices with Layout"
#~ msgid ""
#~ "\n"
#~ " This module provides some features to improve the layout of the "
#~ "invoices.\n"
#~ "\n"
#~ " It gives you the possibility to\n"
#~ " * order all the lines of an invoice\n"
#~ " * add titles, comment lines, sub total lines\n"
#~ " * draw horizontal lines and put page breaks\n"
#~ "\n"
#~ " Moreover, there is one option which allows you to print all the selected "
#~ "invoices with a given special message at the bottom of it. This feature can "
#~ "be very useful for printing your invoices with end-of-year wishes, special "
#~ "punctual conditions...\n"
#~ "\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ " This module provides some features to improve the layout of the "
#~ "invoices.\n"
#~ "\n"
#~ " It gives you the possibility to\n"
#~ " * order all the lines of an invoice\n"
#~ " * add titles, comment lines, sub total lines\n"
#~ " * draw horizontal lines and put page breaks\n"
#~ "\n"
#~ " Moreover, there is one option which allows you to print all the selected "
#~ "invoices with a given special message at the bottom of it. This feature can "
#~ "be very useful for printing your invoices with end-of-year wishes, special "
#~ "punctual conditions...\n"
#~ "\n"
#~ " "

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-23 19:35+0000\n"
"PO-Revision-Date: 2012-01-23 23:34+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:52+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
@ -108,7 +108,7 @@ msgstr "Bilgilendirme Mesajı"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Customer Code"
msgstr ""
msgstr "Müşteri Kodu"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
@ -255,7 +255,7 @@ msgstr "Menşei"
#. module: account_invoice_layout
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
@ -276,12 +276,12 @@ msgstr "Tedarikçi Faturası"
#. module: account_invoice_layout
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1
msgid "Invoices"
msgstr ""
msgstr "Faturalar"
#. module: account_invoice_layout
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
@ -303,7 +303,7 @@ msgstr "Net Toplam:"
#: model:ir.actions.act_window,name:account_invoice_layout.action_account_invoice_special_msg
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_layout_message
msgid "Invoices and Message"
msgstr ""
msgstr "Faturalar ve Mesajlar"
#. module: account_invoice_layout
#: field:account.invoice.line,state:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-29 17:44+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-24 22:37+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:51+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_payment
#: field:payment.order,date_scheduled:0
@ -87,7 +87,7 @@ msgstr "İstenen Tarih"
#. module: account_payment
#: model:res.groups,name:account_payment.group_account_payment
msgid "Accounting / Payments"
msgstr ""
msgstr "Muhasebe / Ödemeler"
#. module: account_payment
#: selection:payment.line,state:0
@ -171,7 +171,7 @@ msgstr "Ödeme satırı adı eşsiz olmalı!"
#. module: account_payment
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_payment
#: model:ir.actions.act_window,name:account_payment.action_payment_order_tree
@ -527,7 +527,7 @@ msgstr "Fatura Ref."
#. module: account_payment
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_payment
#: field:payment.line,name:0
@ -572,7 +572,7 @@ msgstr "İptal"
#. module: account_payment
#: field:payment.line,bank_id:0
msgid "Destination Bank Account"
msgstr ""
msgstr "Hedef Banka Hesabı"
#. module: account_payment
#: view:payment.line:0
@ -637,7 +637,7 @@ msgstr "Ödemeleri Onayla"
#. module: account_payment
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_payment
#: field:payment.line,company_currency:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-29 17:45+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:14+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:32+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:26+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_sequence
#: view:account.sequence.installer:0
@ -126,7 +126,7 @@ msgstr "Ad"
#. module: account_sequence
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_sequence
#: constraint:account.journal:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-07 22:04+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
"PO-Revision-Date: 2012-01-23 14:39+0000\n"
"Last-Translator: kifcaliph <Unknown>\n"
"Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-08 05:03+0000\n"
"X-Generator: Launchpad (build 14640)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: analytic
#: field:account.analytic.account,child_ids:0
@ -128,7 +128,7 @@ msgstr "مستخدِم"
#. module: analytic
#: field:account.analytic.account,parent_id:0
msgid "Parent Analytic Account"
msgstr "حساب التحليل الأعلى"
msgstr "الحساب التحليلي الرئيسي"
#. module: analytic
#: field:account.analytic.line,date:0
@ -152,6 +152,8 @@ msgid ""
"Calculated by multiplying the quantity and the price given in the Product's "
"cost price. Always expressed in the company main currency."
msgstr ""
"محسوبة بواسطة ضرب الكمية و السعر المعطى في سعر تكلفة المنتج. و يعبر عنه "
"دائما بالعملة الرئيسية للشركة."
#. module: analytic
#: field:account.analytic.account,child_complete_ids:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 11:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:36+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: analytic_journal_billing_rate
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Invoice Number must be unique per Company!"
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,journal_id:0
@ -35,7 +35,7 @@ msgstr "Invoice"
#. module: analytic_journal_billing_rate
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Invalid BBA Structured Communication !"
#. module: analytic_journal_billing_rate
#: view:analytic_journal_rate_grid:0
@ -69,7 +69,7 @@ msgstr ""
#. module: analytic_journal_billing_rate
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
msgstr "You cannot modify an entry in a Confirmed/Done timesheet !."
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,rate_id:0

View File

@ -7,19 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-09-09 07:16+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-25 00:10+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: analytic_journal_billing_rate
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,journal_id:0
@ -34,7 +34,7 @@ msgstr "Fatura"
#. module: analytic_journal_billing_rate
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: analytic_journal_billing_rate
#: view:analytic_journal_rate_grid:0
@ -68,6 +68,7 @@ msgstr "Hata! Para birimi seçilen firmanın para birimiyle aynı olmalı"
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
"Onaylandı/Tamanlandı durumundaki zaman çizelgesini değiştiremezsiniz !."
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,rate_id:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 17:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:22+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:09+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: analytic_user_function
#: field:analytic.user.funct.grid,product_id:0
@ -30,7 +30,7 @@ msgstr "Relation table between users and products on a analytic account"
#. module: analytic_user_function
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
msgstr "You cannot modify an entry in a Confirmed/Done timesheet !."
#. module: analytic_user_function
#: field:analytic.user.funct.grid,account_id:0

View File

@ -560,7 +560,8 @@
<field name="state" readonly="1" colspan="4"/>
</page>
<page string="Photos">
<field name="image" colspan="4" widget="image"/>
<separator string="Image" colspan="4"/>
<field name="image" colspan="4" widget="image" nolabel="1"/>
</page>
</notebook>
</form>

View File

@ -11,7 +11,7 @@
<separator string="SMS - Gateway: clickatell','Bulk SMS send" colspan="4"/>
<field name="app_id" colspan="4"/>
<field name="user"/>
<field name="password"/>
<field name="password" password="True"/>
<separator string="SMS Text" colspan="4" />
<field name="text" colspan="4" nolabel="1"/>
</group>

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-10-30 13:31+0000\n"
"Last-Translator: openerp-china.black-jack <onetimespeed@gmail.com>\n"
"PO-Revision-Date: 2012-01-23 10:09+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:05+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: audittrail
#: code:addons/audittrail/audittrail.py:75
@ -43,7 +43,7 @@ msgstr ""
#. module: audittrail
#: view:audittrail.rule:0
msgid "Subscribed Rule"
msgstr ""
msgstr "订阅规则"
#. module: audittrail
#: model:ir.model,name:audittrail.model_audittrail_rule
@ -317,7 +317,7 @@ msgstr "审计跟踪日志"
#. module: audittrail
#: view:audittrail.rule:0
msgid "Draft Rule"
msgstr ""
msgstr "草稿规则"
#. module: audittrail
#: model:ir.model,name:audittrail.model_audittrail_log

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-06-23 19:26+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 21:54+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:23+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_calendar
#: view:calendar.attendee:0
msgid "Invitation Type"
msgstr ""
msgstr "Davetiye Tipi"
#. module: base_calendar
#: selection:calendar.alarm,trigger_related:0
@ -31,7 +31,7 @@ msgstr "Etkinlik Başlar"
#. module: base_calendar
#: view:calendar.attendee:0
msgid "Declined Invitations"
msgstr ""
msgstr "Reddedilmiş Davetler"
#. module: base_calendar
#: help:calendar.event,exdate:0
@ -63,7 +63,7 @@ msgstr "Aylık"
#. module: base_calendar
#: selection:calendar.attendee,cutype:0
msgid "Unknown"
msgstr ""
msgstr "Bilinmeyen"
#. module: base_calendar
#: view:calendar.attendee:0
@ -115,7 +115,7 @@ msgstr "Dördüncü"
#: code:addons/base_calendar/base_calendar.py:1006
#, python-format
msgid "Count cannot be negative"
msgstr ""
msgstr "Sayı negatif olamaz"
#. module: base_calendar
#: field:calendar.event,day:0
@ -238,7 +238,7 @@ msgstr "Oda"
#. module: base_calendar
#: view:calendar.attendee:0
msgid "Accepted Invitations"
msgstr ""
msgstr "Kabul edilmiş davetler"
#. module: base_calendar
#: selection:calendar.alarm,trigger_interval:0
@ -268,7 +268,7 @@ msgstr "Yöntem"
#: code:addons/base_calendar/base_calendar.py:1004
#, python-format
msgid "Interval cannot be negative"
msgstr ""
msgstr "Aralık negatif olamaz"
#. module: base_calendar
#: selection:calendar.event,state:0
@ -280,7 +280,7 @@ msgstr "Vazgeçildi"
#: code:addons/base_calendar/wizard/base_calendar_invite_attendee.py:143
#, python-format
msgid "%s must have an email address to send mail"
msgstr ""
msgstr "%s nin e-posta gönderebilmesi için e-posta adresi olmalı"
#. module: base_calendar
#: selection:calendar.alarm,trigger_interval:0
@ -419,6 +419,7 @@ msgstr "Katılımcılar"
#, python-format
msgid "Group by date not supported, use the calendar view instead"
msgstr ""
"Tarihe göre gruplama desteklenmiyor, Bunun yerine takvim görünümü kullanın"
#. module: base_calendar
#: view:calendar.event:0
@ -468,7 +469,7 @@ msgstr "Konum"
#: selection:calendar.event,class:0
#: selection:calendar.todo,class:0
msgid "Public for Employees"
msgstr ""
msgstr "Çalışanlara açık"
#. module: base_calendar
#: field:base_calendar.invite.attendee,send_mail:0
@ -567,7 +568,7 @@ msgstr "Şuna Yetkilendirildi"
#. module: base_calendar
#: view:calendar.event:0
msgid "To"
msgstr ""
msgstr "Kime"
#. module: base_calendar
#: view:calendar.attendee:0
@ -588,7 +589,7 @@ msgstr "Oluşturuldu"
#. module: base_calendar
#: sql_constraint:ir.model:0
msgid "Each model must be unique!"
msgstr ""
msgstr "Her model eşşiz olmalı!"
#. module: base_calendar
#: selection:calendar.event,rrule_type:0
@ -775,7 +776,7 @@ msgstr "Üye"
#. module: base_calendar
#: view:calendar.event:0
msgid "From"
msgstr ""
msgstr "Kimden"
#. module: base_calendar
#: field:calendar.event,rrule:0
@ -856,7 +857,7 @@ msgstr "Pazartesi"
#. module: base_calendar
#: model:ir.model,name:base_calendar.model_ir_model
msgid "Models"
msgstr ""
msgstr "Modeller"
#. module: base_calendar
#: selection:calendar.event,month_list:0
@ -875,7 +876,7 @@ msgstr "Etkinlik Tarihi"
#: selection:calendar.event,end_type:0
#: selection:calendar.todo,end_type:0
msgid "Number of repetitions"
msgstr ""
msgstr "Tekrar Sayısı"
#. module: base_calendar
#: view:calendar.event:0
@ -919,7 +920,7 @@ msgstr "Veri"
#: field:calendar.event,end_type:0
#: field:calendar.todo,end_type:0
msgid "Recurrence termination"
msgstr ""
msgstr "Tekrarları sonlandırma"
#. module: base_calendar
#: field:calendar.event,mo:0
@ -930,7 +931,7 @@ msgstr "Pzt"
#. module: base_calendar
#: view:calendar.attendee:0
msgid "Invitations To Review"
msgstr ""
msgstr "İncelenecek Davetler"
#. module: base_calendar
#: selection:calendar.event,month_list:0
@ -964,7 +965,7 @@ msgstr "Ocak"
#. module: base_calendar
#: view:calendar.attendee:0
msgid "Delegated Invitations"
msgstr ""
msgstr "Yetkilendirilmiş Davetiyeler"
#. module: base_calendar
#: field:calendar.alarm,trigger_interval:0
@ -996,7 +997,7 @@ msgstr "Etkin"
#: code:addons/base_calendar/base_calendar.py:389
#, python-format
msgid "You cannot duplicate a calendar attendee."
msgstr ""
msgstr "Takvim katılımcısını çoğaltamazsınız."
#. module: base_calendar
#: view:calendar.event:0
@ -1251,7 +1252,7 @@ msgstr "Kişi Davet Et"
#. module: base_calendar
#: view:calendar.event:0
msgid "Confirmed Events"
msgstr ""
msgstr "Onaylanmış Etkinlikler"
#. module: base_calendar
#: field:calendar.attendee,dir:0

View File

@ -120,7 +120,6 @@ class res_partner_location(osv.osv):
'city': fields.char('City', size=128),
'state_id': fields.many2one("res.country.state", 'Fed. State', domain="[('country_id','=',country_id)]"),
'country_id': fields.many2one('res.country', 'Country'),
'partner_id': fields.many2one('res.partner', 'Partner Name', ondelete='set null', select=True, help="Keep empty for a private address, not related to partner."),
'company_id': fields.many2one('res.company', 'Company',select=1),
'job_ids': fields.one2many('res.partner.address', 'location_id', 'Contacts'),
'partner_id': fields.related('job_ids', 'partner_id', type='many2one',\

View File

@ -50,7 +50,8 @@
</group>
<field name="job_ids" colspan="4" nolabel="1" mode="tree,form">
<form string="Functions and Addresses">
<field name="location_id"/>
<field name="partner_id" />
<field name="location_id" domain="[('partner_id', '=', partner_id)]"/>
<field name="function" />
<separator string="Professional Info" colspan="4"/>
<field name="phone"/>
@ -135,7 +136,7 @@
<field name="type">form</field>
<field name="arch" type="xml">
<separator string="Postal Address" position="after">
<field name="location_id" on_change="onchange_location_id(location_id)"/>
<field name="location_id" on_change="onchange_location_id(location_id)" domain="[('partner_id', '=', parent.id)]"/>
</separator>
<xpath expr="//field[@string='Contact Name']" position="replace">
<field name="contact_id"/>

View File

@ -7,24 +7,24 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-28 13:39+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 21:56+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:02+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_contact
#: field:res.partner.location,city:0
msgid "City"
msgstr ""
msgstr "Şehir"
#. module: base_contact
#: view:res.partner.contact:0
msgid "First/Lastname"
msgstr ""
msgstr "Ad/Soyad"
#. module: base_contact
#: model:ir.actions.act_window,name:base_contact.action_partner_contact_form
@ -38,7 +38,7 @@ msgstr "İlgililer"
#. module: base_contact
#: view:res.partner.contact:0
msgid "Professional Info"
msgstr ""
msgstr "Profesyonel Bilgiler"
#. module: base_contact
#: field:res.partner.contact,first_name:0
@ -48,7 +48,7 @@ msgstr "Ad"
#. module: base_contact
#: field:res.partner.address,location_id:0
msgid "Location"
msgstr ""
msgstr "Yer"
#. module: base_contact
#: model:process.transition,name:base_contact.process_transition_partnertoaddress0
@ -72,17 +72,17 @@ msgstr "Web Sitesi"
#. module: base_contact
#: field:res.partner.location,zip:0
msgid "Zip"
msgstr ""
msgstr "Posta Kodu"
#. module: base_contact
#: field:res.partner.location,state_id:0
msgid "Fed. State"
msgstr ""
msgstr "Fed. Eyalet"
#. module: base_contact
#: field:res.partner.location,company_id:0
msgid "Company"
msgstr ""
msgstr "Şirket"
#. module: base_contact
#: field:res.partner.contact,title:0
@ -92,7 +92,7 @@ msgstr "Unvan"
#. module: base_contact
#: field:res.partner.location,partner_id:0
msgid "Main Partner"
msgstr ""
msgstr "Ana Cari"
#. module: base_contact
#: model:process.process,name:base_contact.process_process_basecontactprocess0
@ -148,7 +148,7 @@ msgstr "Gsm No"
#. module: base_contact
#: field:res.partner.location,country_id:0
msgid "Country"
msgstr ""
msgstr "Ülke"
#. module: base_contact
#: view:res.partner.contact:0
@ -181,7 +181,7 @@ msgstr "İlgili"
#. module: base_contact
#: model:ir.model,name:base_contact.model_res_partner_location
msgid "res.partner.location"
msgstr ""
msgstr "res.partner.location"
#. module: base_contact
#: model:process.node,note:base_contact.process_node_partners0
@ -222,7 +222,7 @@ msgstr "Foto"
#. module: base_contact
#: view:res.partner.location:0
msgid "Locations"
msgstr ""
msgstr "Lokasyonlar"
#. module: base_contact
#: view:res.partner.contact:0
@ -232,7 +232,7 @@ msgstr "Genel"
#. module: base_contact
#: field:res.partner.location,street:0
msgid "Street"
msgstr ""
msgstr "Sokak"
#. module: base_contact
#: view:res.partner.contact:0
@ -252,12 +252,12 @@ msgstr "Paydaş Adresleri"
#. module: base_contact
#: field:res.partner.location,street2:0
msgid "Street2"
msgstr ""
msgstr "Sokak2"
#. module: base_contact
#: view:res.partner.contact:0
msgid "Personal Information"
msgstr ""
msgstr "Kişisel Bilgiler"
#. module: base_contact
#: field:res.partner.contact,birthdate:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 17:41+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 15:23+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 05:50+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_iban
#: constraint:res.partner.bank:0
@ -24,16 +24,19 @@ msgid ""
"Please define BIC/Swift code on bank for bank type IBAN Account to make "
"valid payments"
msgstr ""
"\n"
"Please define BIC/Swift code on bank for bank type IBAN Account to make "
"valid payments"
#. module: base_iban
#: model:res.partner.bank.type,format_layout:base_iban.bank_iban
msgid "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s"
msgstr ""
msgstr "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s"
#. module: base_iban
#: model:res.partner.bank.type.field,name:base_iban.bank_swift_field
msgid "bank_bic"
msgstr ""
msgstr "bank_bic"
#. module: base_iban
#: model:res.partner.bank.type.field,name:base_iban.bank_zip_field
@ -62,6 +65,8 @@ msgid ""
"The IBAN does not seem to be correct. You should have entered something like "
"this %s"
msgstr ""
"The IBAN does not seem to be correct. You should have entered something like "
"this %s"
#. module: base_iban
#: field:res.partner.bank,iban:0
@ -72,7 +77,7 @@ msgstr "IBAN"
#: code:addons/base_iban/base_iban.py:131
#, python-format
msgid "The IBAN is invalid, it should begin with the country code"
msgstr ""
msgstr "The IBAN is invalid, it should begin with the country code"
#. module: base_iban
#: model:res.partner.bank.type,name:base_iban.bank_iban

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev_rc3\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-10 18:32+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 22:06+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:13+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_module_quality
#: code:addons/base_module_quality/object_test/object_test.py:187
@ -28,7 +28,7 @@ msgstr "Öneri"
#: model:ir.actions.act_window,name:base_module_quality.action_view_quality_save_report
#: view:save.report:0
msgid "Standard Entries"
msgstr ""
msgstr "Standart Girdiler"
#. module: base_module_quality
#: code:addons/base_module_quality/base_module_quality.py:100
@ -56,7 +56,7 @@ msgstr ""
#. module: base_module_quality
#: view:save.report:0
msgid " "
msgstr ""
msgstr " "
#. module: base_module_quality
#: selection:module.quality.detail,state:0
@ -78,7 +78,7 @@ msgstr "Hız denemesi"
#. module: base_module_quality
#: model:ir.model,name:base_module_quality.model_quality_check
msgid "Module Quality Check"
msgstr ""
msgstr "Modül Kalite Kontrolü"
#. module: base_module_quality
#: code:addons/base_module_quality/method_test/method_test.py:82
@ -190,7 +190,7 @@ msgstr "Birim Testi"
#. module: base_module_quality
#: view:quality.check:0
msgid "Check"
msgstr ""
msgstr "Denetle"
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:151
@ -294,7 +294,7 @@ msgstr "Sonuç %"
#. module: base_module_quality
#: view:quality.check:0
msgid "This wizard will check module(s) quality"
msgstr ""
msgstr "Bu sihirbaz modüllerin kalitesini denetler"
#. module: base_module_quality
#: code:addons/base_module_quality/pep8_test/pep8_test.py:58
@ -441,7 +441,7 @@ msgstr "Test uygulanmamış"
#. module: base_module_quality
#: model:ir.model,name:base_module_quality.model_save_report
msgid "Save Report of Quality"
msgstr ""
msgstr "Kalite Raporunu Kaydet"
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:151
@ -503,7 +503,7 @@ msgstr "Vazgeç"
#. module: base_module_quality
#: view:save.report:0
msgid "Close"
msgstr ""
msgstr "Kapat"
#. module: base_module_quality
#: code:addons/base_module_quality/pep8_test/pep8_test.py:32

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-09-09 07:16+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-24 19:00+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:03+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: base_module_record
#: wizard_field:base_module_record.module_record_objects,info,category:0
@ -89,6 +89,9 @@ msgid ""
"publish it on http://www.openerp.com, in the 'Modules' section. You can do "
"it through the website or using features of the 'base_module_publish' module."
msgstr ""
"Eğer modülünüzün başka kullanıcıların ilgisini çekeceğini düşünüyorsanız, "
"modülünüzü http://apps.openerp.com sitesinde yayınlamak isteriz. Modül "
"yayını için yine 'base_module_publish' modülünü de kullanabilirsiniz."
#. module: base_module_record
#: wizard_field:base_module_record.module_record_data,init,check_date:0

View File

@ -0,0 +1,299 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:44+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_setup
#: field:user.preferences.config,menu_tips:0
msgid "Display Tips"
msgstr "Display Tips"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Guest"
msgstr "Guest"
#. module: base_setup
#: model:ir.model,name:base_setup.model_product_installer
msgid "product.installer"
msgstr "product.installer"
#. module: base_setup
#: selection:product.installer,customers:0
msgid "Create"
msgstr "Create"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Member"
msgstr "Member"
#. module: base_setup
#: field:migrade.application.installer.modules,sync_google_contact:0
msgid "Sync Google Contact"
msgstr "Sync Google Contact"
#. module: base_setup
#: help:user.preferences.config,context_tz:0
msgid ""
"Set default for new user's timezone, used to perform timezone conversions "
"between the server and the client."
msgstr ""
"Set default for new user's timezone, used to perform timezone conversions "
"between the server and the client."
#. module: base_setup
#: selection:product.installer,customers:0
msgid "Import"
msgstr "Import"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Donor"
msgstr "Donor"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_base_setup_company
msgid "Set Company Header and Footer"
msgstr "Set Company Header and Footer"
#. module: base_setup
#: model:ir.actions.act_window,help:base_setup.action_base_setup_company
msgid ""
"Fill in your company data (address, logo, bank accounts) so that it's "
"printed on your reports. You can click on the button 'Preview Header' in "
"order to check the header/footer of PDF documents."
msgstr ""
"Fill in your company data (address, logo, bank accounts) so that it's "
"printed on your reports. You can click on the button 'Preview Header' in "
"order to check the header/footer of PDF documents."
#. module: base_setup
#: field:product.installer,customers:0
msgid "Customers"
msgstr "Customers"
#. module: base_setup
#: selection:user.preferences.config,view:0
msgid "Extended"
msgstr "Extended"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Patient"
msgstr "Patient"
#. module: base_setup
#: model:ir.actions.act_window,help:base_setup.action_import_create_installer
msgid ""
"Create or Import Customers and their contacts manually from this form or "
"you can import your existing partners by CSV spreadsheet from \"Import "
"Data\" wizard"
msgstr ""
"Create or Import Customers and their contacts manually from this form or "
"you can import your existing partners by CSV spreadsheet from \"Import "
"Data\" wizard"
#. module: base_setup
#: view:user.preferences.config:0
msgid "Define Users's Preferences"
msgstr "Define Users's Preferences"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_user_preferences_config_form
msgid "Define default users preferences"
msgstr "Define default users preferences"
#. module: base_setup
#: help:migrade.application.installer.modules,import_saleforce:0
msgid "For Import Saleforce"
msgstr "For Import Saleforce"
#. module: base_setup
#: help:migrade.application.installer.modules,quickbooks_ippids:0
msgid "For Quickbooks Ippids"
msgstr "For Quickbooks Ippids"
#. module: base_setup
#: help:user.preferences.config,view:0
msgid ""
"If you use OpenERP for the first time we strongly advise you to select the "
"simplified interface, which has less features but is easier. You can always "
"switch later from the user preferences."
msgstr ""
"If you use OpenERP for the first time we strongly advise you to select the "
"simplified interface, which has less features but is easier. You can always "
"switch later from the user preferences."
#. module: base_setup
#: view:base.setup.terminology:0
#: view:user.preferences.config:0
msgid "res_config_contents"
msgstr "res_config_contents"
#. module: base_setup
#: field:user.preferences.config,view:0
msgid "Interface"
msgstr "Interface"
#. module: base_setup
#: model:ir.model,name:base_setup.model_migrade_application_installer_modules
msgid "migrade.application.installer.modules"
msgstr ""
#. module: base_setup
#: view:base.setup.terminology:0
msgid ""
"You can use this wizard to change the terminologies for customers in the "
"whole application."
msgstr ""
"You can use this wizard to change the terminologies for customers in the "
"whole application."
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Tenant"
msgstr ""
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Customer"
msgstr "Customer"
#. module: base_setup
#: field:user.preferences.config,context_lang:0
msgid "Language"
msgstr "Language"
#. module: base_setup
#: help:user.preferences.config,context_lang:0
msgid ""
"Sets default language for the all user interface, when UI translations are "
"available. If you want to Add new Language, you can add it from 'Load an "
"Official Translation' wizard from 'Administration' menu."
msgstr ""
#. module: base_setup
#: view:user.preferences.config:0
msgid ""
"This will set the default preferences for new users and update all existing "
"ones. Afterwards, users are free to change those values on their own user "
"preference form."
msgstr ""
"This will set the default preferences for new users and update all existing "
"ones. Afterwards, users are free to change those values on their own user "
"preference form."
#. module: base_setup
#: field:base.setup.terminology,partner:0
msgid "How do you call a Customer"
msgstr "How do you call a Customer"
#. module: base_setup
#: field:migrade.application.installer.modules,quickbooks_ippids:0
msgid "Quickbooks Ippids"
msgstr ""
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Client"
msgstr "Client"
#. module: base_setup
#: field:migrade.application.installer.modules,import_saleforce:0
msgid "Import Saleforce"
msgstr "Import Saleforce"
#. module: base_setup
#: field:user.preferences.config,context_tz:0
msgid "Timezone"
msgstr "Timezone"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form
msgid "Use another word to say \"Customer\""
msgstr "Use another word to say \"Customer\""
#. module: base_setup
#: model:ir.model,name:base_setup.model_base_setup_terminology
msgid "base.setup.terminology"
msgstr "base.setup.terminology"
#. module: base_setup
#: help:user.preferences.config,menu_tips:0
msgid ""
"Check out this box if you want to always display tips on each menu action"
msgstr ""
"Check out this box if you want to always display tips on each menu action"
#. module: base_setup
#: field:base.setup.terminology,config_logo:0
#: field:migrade.application.installer.modules,config_logo:0
#: field:product.installer,config_logo:0
#: field:user.preferences.config,config_logo:0
msgid "Image"
msgstr "Image"
#. module: base_setup
#: model:ir.model,name:base_setup.model_user_preferences_config
msgid "user.preferences.config"
msgstr "user.preferences.config"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_config_access_other_user
msgid "Create Additional Users"
msgstr "Create Additional Users"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_import_create_installer
msgid "Create or Import Customers"
msgstr "Create or Import Customers"
#. module: base_setup
#: field:migrade.application.installer.modules,import_sugarcrm:0
msgid "Import Sugarcrm"
msgstr "Import Sugarcrm"
#. module: base_setup
#: help:product.installer,customers:0
msgid "Import or create customers"
msgstr "Import or create customers"
#. module: base_setup
#: selection:user.preferences.config,view:0
msgid "Simplified"
msgstr "Simplified"
#. module: base_setup
#: help:migrade.application.installer.modules,import_sugarcrm:0
msgid "For Import Sugarcrm"
msgstr "For Import Sugarcrm"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Partner"
msgstr "Partner"
#. module: base_setup
#: view:base.setup.terminology:0
msgid "Specify Your Terminology"
msgstr "Specify Your Terminology"
#. module: base_setup
#: help:migrade.application.installer.modules,sync_google_contact:0
msgid "For Sync Google Contact"
msgstr "For Sync Google Contact"

View File

@ -7,44 +7,44 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-11-07 12:47+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-23 21:47+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_setup
#: field:user.preferences.config,menu_tips:0
msgid "Display Tips"
msgstr ""
msgstr "İpuçlarını Göster"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Guest"
msgstr ""
msgstr "Misafir"
#. module: base_setup
#: model:ir.model,name:base_setup.model_product_installer
msgid "product.installer"
msgstr ""
msgstr "product.installer"
#. module: base_setup
#: selection:product.installer,customers:0
msgid "Create"
msgstr ""
msgstr "Oluştur"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Member"
msgstr ""
msgstr "Üye"
#. module: base_setup
#: field:migrade.application.installer.modules,sync_google_contact:0
msgid "Sync Google Contact"
msgstr ""
msgstr "Google Kişilerle Senkronize Et"
#. module: base_setup
#: help:user.preferences.config,context_tz:0
@ -52,21 +52,23 @@ msgid ""
"Set default for new user's timezone, used to perform timezone conversions "
"between the server and the client."
msgstr ""
"Yeni kullanıcıların öntanımlı saat dilimini belirleyin. Sunucu ve istemci "
"arasında saat çevirimleri için kullanılır."
#. module: base_setup
#: selection:product.installer,customers:0
msgid "Import"
msgstr ""
msgstr "İçe Aktar"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Donor"
msgstr ""
msgstr "Verici"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_base_setup_company
msgid "Set Company Header and Footer"
msgstr ""
msgstr "Şirket Başlık ve Altbilgilerini Ayarla"
#. module: base_setup
#: model:ir.actions.act_window,help:base_setup.action_base_setup_company
@ -75,21 +77,24 @@ msgid ""
"printed on your reports. You can click on the button 'Preview Header' in "
"order to check the header/footer of PDF documents."
msgstr ""
"Raporlarınızda gösterilmesi için şirket bilgilerinizi doldurun (adres, logo, "
"banka hesapları). 'Anteti Görüntüle' butonuna tıklayarak antet bilgilerinizi "
"PDF olarak görüntüleyebilirsiniz."
#. module: base_setup
#: field:product.installer,customers:0
msgid "Customers"
msgstr ""
msgstr "Müşteriler"
#. module: base_setup
#: selection:user.preferences.config,view:0
msgid "Extended"
msgstr ""
msgstr "Detaylı"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Patient"
msgstr ""
msgstr "Hasta"
#. module: base_setup
#: model:ir.actions.act_window,help:base_setup.action_import_create_installer
@ -98,26 +103,28 @@ msgid ""
"you can import your existing partners by CSV spreadsheet from \"Import "
"Data\" wizard"
msgstr ""
"Bu formu kullanarak müşterileri ve ilgili kişileri oluşturabilir ya da içeri "
"aktarabilirsiniz."
#. module: base_setup
#: view:user.preferences.config:0
msgid "Define Users's Preferences"
msgstr ""
msgstr "Kullanıcı Seçeneklerini Tanımlayın"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_user_preferences_config_form
msgid "Define default users preferences"
msgstr ""
msgstr "Öntanımlı Kullanıcı Seçeneklerini Tanımlayın"
#. module: base_setup
#: help:migrade.application.installer.modules,import_saleforce:0
msgid "For Import Saleforce"
msgstr ""
msgstr "Saleforce'dan aktarım için"
#. module: base_setup
#: help:migrade.application.installer.modules,quickbooks_ippids:0
msgid "For Quickbooks Ippids"
msgstr ""
msgstr "Quickbooks lppidleri için"
#. module: base_setup
#: help:user.preferences.config,view:0
@ -126,6 +133,9 @@ msgid ""
"simplified interface, which has less features but is easier. You can always "
"switch later from the user preferences."
msgstr ""
"OpenERP yi ilk defa kullanıyorsanız basit arayüzü kullanmanızı öneririz. "
"Daha az seçenek sunar ama daha basittir. Dilediğiniz her zaman kullanıcı "
"seçeneklerinden detaylı arayüze geçebilirsiniz."
#. module: base_setup
#: view:base.setup.terminology:0
@ -136,12 +146,12 @@ msgstr "res_config_contents"
#. module: base_setup
#: field:user.preferences.config,view:0
msgid "Interface"
msgstr ""
msgstr "Arayüz"
#. module: base_setup
#: model:ir.model,name:base_setup.model_migrade_application_installer_modules
msgid "migrade.application.installer.modules"
msgstr ""
msgstr "migrade.application.installer.modules"
#. module: base_setup
#: view:base.setup.terminology:0
@ -149,21 +159,23 @@ msgid ""
"You can use this wizard to change the terminologies for customers in the "
"whole application."
msgstr ""
"Bu sihirbazı kullanarak uygulamanın içinde müşterileriniz için farklı "
"terimler atayabilirsiniz. (Hasta, cari, müşteri,iş ortağı gibi)"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Tenant"
msgstr ""
msgstr "Kiracı"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Customer"
msgstr ""
msgstr "Müşteri"
#. module: base_setup
#: field:user.preferences.config,context_lang:0
msgid "Language"
msgstr ""
msgstr "Dil"
#. module: base_setup
#: help:user.preferences.config,context_lang:0
@ -172,6 +184,8 @@ msgid ""
"available. If you want to Add new Language, you can add it from 'Load an "
"Official Translation' wizard from 'Administration' menu."
msgstr ""
"Tüm kullanıcı arayüzü için öntanımlı dil seçilir. Eğer yeni bir dil eklemek "
"isterseniz 'Ayarlar' menüsünden ekleyebilirsiniz."
#. module: base_setup
#: view:user.preferences.config:0
@ -180,47 +194,52 @@ msgid ""
"ones. Afterwards, users are free to change those values on their own user "
"preference form."
msgstr ""
"Bu form kayıtlı ve yeni kullanıcılar için öntanımlı seçenekleri "
"belirlemenizi sağlar. Kullanıcılar daha sonra bu değerleri kendi istekleri "
"doğrultusunda değiştirebilirler."
#. module: base_setup
#: field:base.setup.terminology,partner:0
msgid "How do you call a Customer"
msgstr ""
msgstr "Müşterilerinize ne isim veriyorsunuz ?"
#. module: base_setup
#: field:migrade.application.installer.modules,quickbooks_ippids:0
msgid "Quickbooks Ippids"
msgstr ""
msgstr "Quickbooks Ippidleri"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Client"
msgstr ""
msgstr "Müşteri"
#. module: base_setup
#: field:migrade.application.installer.modules,import_saleforce:0
msgid "Import Saleforce"
msgstr ""
msgstr "Saleforce'dan Aktar"
#. module: base_setup
#: field:user.preferences.config,context_tz:0
msgid "Timezone"
msgstr ""
msgstr "Saat Dilimi"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form
msgid "Use another word to say \"Customer\""
msgstr ""
msgstr "\"Müşteri\" yerine başka bir söz seçin"
#. module: base_setup
#: model:ir.model,name:base_setup.model_base_setup_terminology
msgid "base.setup.terminology"
msgstr ""
msgstr "base.setup.terminology"
#. module: base_setup
#: help:user.preferences.config,menu_tips:0
msgid ""
"Check out this box if you want to always display tips on each menu action"
msgstr ""
"Eğer her menü eyleminde ipuçlarını göstermek istiyorsanız bu kutucuğu "
"işaretleyin."
#. module: base_setup
#: field:base.setup.terminology,config_logo:0
@ -233,52 +252,52 @@ msgstr "Resim"
#. module: base_setup
#: model:ir.model,name:base_setup.model_user_preferences_config
msgid "user.preferences.config"
msgstr ""
msgstr "user.preferences.config"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_config_access_other_user
msgid "Create Additional Users"
msgstr ""
msgstr "Ek kullanıcılar Oluştur"
#. module: base_setup
#: model:ir.actions.act_window,name:base_setup.action_import_create_installer
msgid "Create or Import Customers"
msgstr ""
msgstr "Müşterileri Oluştur ya da İçeri Aktar"
#. module: base_setup
#: field:migrade.application.installer.modules,import_sugarcrm:0
msgid "Import Sugarcrm"
msgstr ""
msgstr "SugarCRM'den Aktar"
#. module: base_setup
#: help:product.installer,customers:0
msgid "Import or create customers"
msgstr ""
msgstr "Müşterileri oluştur ya da içeri aktar"
#. module: base_setup
#: selection:user.preferences.config,view:0
msgid "Simplified"
msgstr ""
msgstr "Sadeleşmiş"
#. module: base_setup
#: help:migrade.application.installer.modules,import_sugarcrm:0
msgid "For Import Sugarcrm"
msgstr ""
msgstr "SugarCRM'den almak için"
#. module: base_setup
#: selection:base.setup.terminology,partner:0
msgid "Partner"
msgstr ""
msgstr "Cari"
#. module: base_setup
#: view:base.setup.terminology:0
msgid "Specify Your Terminology"
msgstr ""
msgstr "Terminolojinizi Belirleyin"
#. module: base_setup
#: help:migrade.application.installer.modules,sync_google_contact:0
msgid "For Sync Google Contact"
msgstr ""
msgstr "Google Kişilerden Senkronize et"
#~ msgid "State"
#~ msgstr "Eyalet"

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 17:34+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:23+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:03+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_vat
#: code:addons/base_vat/base_vat.py:125
@ -24,31 +24,33 @@ msgid ""
"This VAT number does not seem to be valid.\n"
"Note: the expected format is %s"
msgstr ""
"This VAT number does not seem to be valid.\n"
"Note: the expected format is %s"
#. module: base_vat
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "The company name must be unique !"
#. module: base_vat
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Error ! You cannot create recursive associated members."
#. module: base_vat
#: field:res.company,vat_check_vies:0
msgid "VIES VAT Check"
msgstr ""
msgstr "VIES VAT Check"
#. module: base_vat
#: model:ir.model,name:base_vat.model_res_company
msgid "Companies"
msgstr ""
msgstr "Companies"
#. module: base_vat
#: constraint:res.company:0
msgid "Error! You can not create recursive companies."
msgstr ""
msgstr "Error! You can not create recursive companies."
#. module: base_vat
#: help:res.partner,vat_subjected:0
@ -70,6 +72,8 @@ msgid ""
"If checked, Partners VAT numbers will be fully validated against EU's VIES "
"service rather than via a simple format validation (checksum)."
msgstr ""
"If checked, Partners VAT numbers will be fully validated against EU's VIES "
"service rather than via a simple format validation (checksum)."
#. module: base_vat
#: field:res.partner,vat_subjected:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-12 11:09+0000\n"
"Last-Translator: Arif Aydogmus <arifaydogmus@gmail.com>\n"
"PO-Revision-Date: 2012-01-23 22:01+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:03+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: base_vat
#: code:addons/base_vat/base_vat.py:125
@ -23,31 +23,33 @@ msgid ""
"This VAT number does not seem to be valid.\n"
"Note: the expected format is %s"
msgstr ""
"Bu VAT numarası geçerli değil gibi gözüküyor.\n"
"Not: Beklenen biçim %s"
#. module: base_vat
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Şirket adı tekil olmalı !"
#. module: base_vat
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Hata ! kendini çağıran ilişkili üyeler oluşturamazsınız."
#. module: base_vat
#: field:res.company,vat_check_vies:0
msgid "VIES VAT Check"
msgstr ""
msgstr "VIES VAT Kontrolü"
#. module: base_vat
#: model:ir.model,name:base_vat.model_res_company
msgid "Companies"
msgstr ""
msgstr "Şirketler"
#. module: base_vat
#: constraint:res.company:0
msgid "Error! You can not create recursive companies."
msgstr ""
msgstr "Hata! özyinelemeli şirketler oluşturamazsınız."
#. module: base_vat
#: help:res.partner,vat_subjected:0
@ -68,6 +70,8 @@ msgid ""
"If checked, Partners VAT numbers will be fully validated against EU's VIES "
"service rather than via a simple format validation (checksum)."
msgstr ""
"Eğer seçilirse, Carinin VAT numarası basit biçim onayı yerine Avrupa Birliği "
"VIES servisinden kontrol edilecek."
#. module: base_vat
#: field:res.partner,vat_subjected:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-15 10:13+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:39+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:01+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: board
#: view:res.log.report:0
@ -39,7 +39,7 @@ msgstr "Son Bağlantılar"
#. module: board
#: view:res.log.report:0
msgid "Log created in last month"
msgstr ""
msgstr "Geçen Ay oluşturulan günlükler"
#. module: board
#: view:board.board:0
@ -55,7 +55,7 @@ msgstr "Grupla..."
#. module: board
#: view:res.log.report:0
msgid "Log created in current year"
msgstr ""
msgstr "Bu yıl oluşturulan günlükler"
#. module: board
#: model:ir.model,name:board.model_board_board
@ -92,7 +92,7 @@ msgstr "Ay"
#. module: board
#: view:res.log.report:0
msgid "Log created in current month"
msgstr ""
msgstr "Bu ay oluşturulan günlükler"
#. module: board
#: model:ir.actions.act_window,name:board.board_monthly_res_log_report_action
@ -103,7 +103,7 @@ msgstr "Belge Başına aylık faaliyet"
#. module: board
#: view:board.board:0
msgid "Configuration Overview"
msgstr ""
msgstr "Yapılandırma Genel Bakışı"
#. module: board
#: model:ir.actions.act_window,name:board.action_view_board_list_form
@ -211,7 +211,7 @@ msgstr "Ocak"
#. module: board
#: view:board.board:0
msgid "Users"
msgstr ""
msgstr "Kullanıcılar"
#. module: board
#: selection:res.log.report,month:0
@ -262,7 +262,7 @@ msgstr "Model"
#. module: board
#: model:ir.actions.act_window,name:board.board_homepage_action
msgid "Home Page"
msgstr ""
msgstr "Ana Sayfa"
#. module: board
#: model:ir.actions.act_window,name:board.action_latest_activities_tree

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-04-11 14:24+0000\n"
"Last-Translator: openerp-china.black-jack <onetimespeed@gmail.com>\n"
"PO-Revision-Date: 2012-01-23 10:14+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:01+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: board
#: view:res.log.report:0
@ -39,7 +39,7 @@ msgstr "最后一次连接"
#. module: board
#: view:res.log.report:0
msgid "Log created in last month"
msgstr ""
msgstr "上月创建的日志"
#. module: board
#: view:board.board:0
@ -55,7 +55,7 @@ msgstr "分组..."
#. module: board
#: view:res.log.report:0
msgid "Log created in current year"
msgstr ""
msgstr "本年创建的日志"
#. module: board
#: model:ir.model,name:board.model_board_board
@ -92,7 +92,7 @@ msgstr "月"
#. module: board
#: view:res.log.report:0
msgid "Log created in current month"
msgstr ""
msgstr "本月创建的日志"
#. module: board
#: model:ir.actions.act_window,name:board.board_monthly_res_log_report_action
@ -103,7 +103,7 @@ msgstr "每种单据的月活动次数"
#. module: board
#: view:board.board:0
msgid "Configuration Overview"
msgstr ""
msgstr "配置总揽"
#. module: board
#: model:ir.actions.act_window,name:board.action_view_board_list_form
@ -211,7 +211,7 @@ msgstr "1月"
#. module: board
#: view:board.board:0
msgid "Users"
msgstr ""
msgstr "用户"
#. module: board
#: selection:res.log.report,month:0
@ -262,7 +262,7 @@ msgstr "模型"
#. module: board
#: model:ir.actions.act_window,name:board.board_homepage_action
msgid "Home Page"
msgstr ""
msgstr "首页"
#. module: board
#: model:ir.actions.act_window,name:board.action_latest_activities_tree

View File

@ -251,6 +251,7 @@ class crm_phonecall(crm_base, osv.osv):
'priority': call.priority,
'type': 'opportunity',
'phone': call.partner_phone or False,
'email_from': default_contact and default_contact.email,
})
vals = {
'partner_id': partner_id,

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2011-06-20 20:31+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-24 22:23+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:01+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: crm
#: view:crm.lead.report:0
@ -109,7 +109,7 @@ msgstr "Aşama Adı"
#. module: crm
#: model:ir.model,name:crm.model_crm_lead_report
msgid "CRM Lead Analysis"
msgstr ""
msgstr "CRM Fırsat Analizleri"
#. module: crm
#: view:crm.lead.report:0
@ -138,7 +138,7 @@ msgstr "Aday '%s' kapatılmıştır."
#. module: crm
#: view:crm.lead.report:0
msgid "Exp. Closing"
msgstr ""
msgstr "Bekl. Kapanış"
#. module: crm
#: selection:crm.meeting,rrule_type:0
@ -148,7 +148,7 @@ msgstr "Yıllık"
#. module: crm
#: help:crm.lead.report,creation_day:0
msgid "Creation day"
msgstr ""
msgstr "Oluşturulma Tarihi"
#. module: crm
#: field:crm.segmentation.line,name:0
@ -178,7 +178,7 @@ msgstr "Fırsatları Ara"
#. module: crm
#: help:crm.lead.report,deadline_month:0
msgid "Expected closing month"
msgstr ""
msgstr "Tahmini Kapatma Ayı"
#. module: crm
#: view:crm.lead2opportunity.partner.mass:0
@ -238,7 +238,7 @@ msgstr "Çekildi"
#. module: crm
#: field:crm.meeting,end_type:0
msgid "Recurrence termination"
msgstr ""
msgstr "Tekrarları sonlandırma"
#. module: crm
#: code:addons/crm/crm_lead.py:323
@ -345,7 +345,7 @@ msgstr "Olası Paydaş"
#: code:addons/crm/crm_lead.py:733
#, python-format
msgid "No Subject"
msgstr ""
msgstr "Konu Yok"
#. module: crm
#: model:crm.case.resource.type,name:crm.type_lead6
@ -431,7 +431,7 @@ msgstr "Güncelleme Tarihi"
#. module: crm
#: field:crm.case.section,user_id:0
msgid "Team Leader"
msgstr ""
msgstr "Takım Lideri"
#. module: crm
#: field:crm.lead2opportunity.partner,name:0
@ -465,7 +465,7 @@ msgstr "Kategori"
#. module: crm
#: view:crm.lead:0
msgid "Opportunity / Customer"
msgstr ""
msgstr "Fırsat / Müşteri"
#. module: crm
#: view:crm.lead.report:0
@ -511,7 +511,7 @@ msgstr "Fırsat için normal ya da telefonla toplantı"
#. module: crm
#: view:crm.case.section:0
msgid "Mail Gateway"
msgstr ""
msgstr "Eposta Geçidi"
#. module: crm
#: model:process.node,note:crm.process_node_leads0
@ -550,7 +550,7 @@ msgstr "Postalama"
#. module: crm
#: view:crm.phonecall:0
msgid "To Do"
msgstr ""
msgstr "Yapılacaklar"
#. module: crm
#: selection:crm.lead.report,creation_month:0
@ -573,7 +573,7 @@ msgstr "E-Posta"
#. module: crm
#: view:crm.phonecall:0
msgid "Phonecalls during last 7 days"
msgstr ""
msgstr "Son 7 günlük telefon kayıtları"
#. module: crm
#: selection:crm.lead.report,creation_month:0
@ -622,7 +622,7 @@ msgstr ""
#. module: crm
#: field:crm.lead,partner_address_name:0
msgid "Partner Contact Name"
msgstr ""
msgstr "Cari İlgili Kişisi"
#. module: crm
#: selection:crm.meeting,end_type:0
@ -633,7 +633,7 @@ msgstr "Bitiş Tarihi"
#: view:crm.opportunity2phonecall:0
#: view:crm.phonecall2phonecall:0
msgid "Schedule/Log a call"
msgstr ""
msgstr "Telefon görüşmesi programla/kaydet"
#. module: crm
#: constraint:base.action.rule:0
@ -669,7 +669,7 @@ msgstr "'%s' görüşmesi onaylandı."
#: selection:crm.add.note,state:0
#: selection:crm.lead,state:0
msgid "In Progress"
msgstr ""
msgstr "Sürüyor"
#. module: crm
#: help:crm.case.section,reply_to:0
@ -683,7 +683,7 @@ msgstr ""
#. module: crm
#: field:crm.lead.report,creation_month:0
msgid "Creation Month"
msgstr ""
msgstr "Oluşturma Ayı"
#. module: crm
#: field:crm.case.section,resource_calendar_id:0
@ -739,7 +739,7 @@ msgstr ""
#. module: crm
#: field:crm.lead2opportunity.partner.mass,user_ids:0
msgid "Salesmans"
msgstr ""
msgstr "Satış Temsilcisi"
#. module: crm
#: field:crm.lead.report,probable_revenue:0
@ -749,7 +749,7 @@ msgstr "Olası Gelir"
#. module: crm
#: help:crm.lead.report,creation_month:0
msgid "Creation month"
msgstr ""
msgstr "Oluşturma Ayı"
#. module: crm
#: help:crm.segmentation,name:0
@ -765,7 +765,7 @@ msgstr "Olasılık (%)"
#. module: crm
#: field:crm.lead,company_currency:0
msgid "Company Currency"
msgstr ""
msgstr "Şirket Dövizi"
#. module: crm
#: view:crm.lead:0
@ -812,7 +812,7 @@ msgstr "Süreci durdur"
#: view:crm.lead.report:0
#: view:crm.phonecall.report:0
msgid "Month-1"
msgstr ""
msgstr "Ay-1"
#. module: crm
#: view:crm.phonecall:0
@ -855,12 +855,12 @@ msgstr "Ayrıcalıklı"
#: code:addons/crm/crm_lead.py:451
#, python-format
msgid "From %s : %s"
msgstr ""
msgstr "%s den: %s"
#. module: crm
#: field:crm.lead.report,creation_year:0
msgid "Creation Year"
msgstr ""
msgstr "Oluşturulma Yılı"
#. module: crm
#: field:crm.lead.report,create_date:0
@ -881,7 +881,7 @@ msgstr "Satış Alımları"
#. module: crm
#: help:crm.case.section,resource_calendar_id:0
msgid "Used to compute open days"
msgstr ""
msgstr "ık günleri hesaplamak için kullanılır"
#. module: crm
#: view:crm.lead:0
@ -916,7 +916,7 @@ msgstr "Yinelenen Toplantı"
#. module: crm
#: view:crm.phonecall:0
msgid "Unassigned Phonecalls"
msgstr ""
msgstr "Atanmamış Telefon Görüşmeleri"
#. module: crm
#: view:crm.lead:0
@ -980,7 +980,7 @@ msgstr "Uyarı !"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Phone calls made in current year"
msgstr ""
msgstr "Bu yıl yapılan telefon görüşmeleri"
#. module: crm
#: field:crm.lead,day_open:0
@ -1021,7 +1021,7 @@ msgstr "Toplantılarım"
#. module: crm
#: view:crm.phonecall:0
msgid "Todays's Phonecalls"
msgstr ""
msgstr "Bugün yapılan telefon görüşmeleri"
#. module: crm
#: view:board.board:0
@ -1083,7 +1083,7 @@ msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Change Color"
msgstr ""
msgstr "Renk Değiştir"
#. module: crm
#: view:crm.segmentation:0
@ -1101,7 +1101,7 @@ msgstr "Sorumlu"
#. module: crm
#: view:crm.lead.report:0
msgid "Show only opportunity"
msgstr ""
msgstr "Sadece fırsatı göster"
#. module: crm
#: view:res.partner:0
@ -1126,12 +1126,12 @@ msgstr "Gönderen"
#. module: crm
#: view:crm.lead2opportunity.partner.mass:0
msgid "Convert into Opportunities"
msgstr ""
msgstr "Fırsata Dönüştür"
#. module: crm
#: view:crm.lead:0
msgid "Show Sales Team"
msgstr ""
msgstr "Satış Ekibini Göster"
#. module: crm
#: view:res.partner:0
@ -1194,7 +1194,7 @@ msgstr "Oluşturma Tarihi"
#. module: crm
#: view:board.board:0
msgid "My Opportunities"
msgstr ""
msgstr "Fırsatlarım"
#. module: crm
#: model:crm.case.categ,name:crm.categ_oppor5
@ -1204,7 +1204,7 @@ msgstr "Websitesi Tasarımına ihtiyaç var"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Year of call"
msgstr ""
msgstr "Arama Yılı"
#. module: crm
#: field:crm.meeting,recurrent_uid:0
@ -1246,7 +1246,7 @@ msgstr "İş Ortağına e-posta"
#: view:crm.opportunity2phonecall:0
#: view:crm.phonecall2phonecall:0
msgid "Call Details"
msgstr ""
msgstr "Arama detayları"
#. module: crm
#: field:crm.meeting,class:0
@ -1257,7 +1257,7 @@ msgstr "İşaretle"
#: view:crm.opportunity2phonecall:0
#: view:crm.phonecall2phonecall:0
msgid "Log call"
msgstr ""
msgstr "Arama Kaydet"
#. module: crm
#: help:crm.meeting,rrule_type:0
@ -1272,7 +1272,7 @@ msgstr "Durum Alanları Koşulları"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Phone calls which are in pending state"
msgstr ""
msgstr "Bekleme durumundaki Telefon Aramaları"
#. module: crm
#: view:crm.case.section:0
@ -1340,7 +1340,7 @@ msgstr "Dakika olarak Süre"
#. module: crm
#: field:crm.case.channel,name:0
msgid "Channel Name"
msgstr ""
msgstr "Kanal Adı"
#. module: crm
#: field:crm.partner2opportunity,name:0
@ -1351,7 +1351,7 @@ msgstr "Fırsat Adı"
#. module: crm
#: help:crm.lead.report,deadline_day:0
msgid "Expected closing day"
msgstr ""
msgstr "Beklenen Bitiş Günü"
#. module: crm
#: help:crm.case.section,active:0
@ -1416,7 +1416,7 @@ msgstr "Bu sefer etkinlikten önce alarm ayarla"
#. module: crm
#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_create_partner
msgid "Schedule a Call"
msgstr ""
msgstr "Arama Programla"
#. module: crm
#: view:crm.lead2partner:0
@ -1490,7 +1490,7 @@ msgstr "Genişletilmiş Filtreler..."
#. module: crm
#: view:crm.phonecall.report:0
msgid "Phone calls which are in closed state"
msgstr ""
msgstr "Kapalı durumdaki Telefon Görüşmeleri"
#. module: crm
#: view:crm.phonecall.report:0
@ -1505,13 +1505,14 @@ msgstr "Kategorilere göre fırsatlar"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Date of call"
msgstr ""
msgstr "Arama Tarihi"
#. module: crm
#: help:crm.lead,section_id:0
msgid ""
"When sending mails, the default email address is taken from the sales team."
msgstr ""
"E-posta gönderilirken, Öntanımlı e-posta adresi satış ekibinden alınır."
#. module: crm
#: view:crm.meeting:0
@ -1533,12 +1534,12 @@ msgstr "Toplantı Planla"
#: code:addons/crm/crm_lead.py:431
#, python-format
msgid "Merged opportunities"
msgstr ""
msgstr "Birleştirilmiş Fırsatlar"
#. module: crm
#: model:ir.actions.act_window,name:crm.crm_case_section_view_form_installer
msgid "Define Sales Team"
msgstr ""
msgstr "Satış Ekiplerini Tanımla"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act
@ -1564,7 +1565,7 @@ msgstr "Çocuk Takımları"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Phone calls which are in draft and open state"
msgstr ""
msgstr "Taslak veya açık durumdaki telefon görüşmeleri"
#. module: crm
#: model:crm.case.resource.type,name:crm.type_lead1
@ -1623,7 +1624,7 @@ msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Mail"
msgstr ""
msgstr "E-Posta"
#. module: crm
#: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action
@ -1638,7 +1639,7 @@ msgstr ""
#. module: crm
#: model:ir.actions.act_window,name:crm.act_oppor_categ
msgid "Opportunities By Categories"
msgstr ""
msgstr "KAtegorilerine Göre Fırsatlar"
#. module: crm
#: help:crm.lead,partner_name:0
@ -1656,13 +1657,13 @@ msgstr "Hata ! Yinelenen Satış takımı oluşturamazsınız."
#: selection:crm.opportunity2phonecall,action:0
#: selection:crm.phonecall2phonecall,action:0
msgid "Log a call"
msgstr ""
msgstr "Görüşme kaydet"
#. module: crm
#: selection:crm.lead2opportunity.partner,action:0
#: selection:crm.lead2opportunity.partner.mass,action:0
msgid "Do not link to a partner"
msgstr ""
msgstr "Bir cariye bağlama"
#. module: crm
#: view:crm.meeting:0
@ -1726,7 +1727,7 @@ msgstr ""
#. module: crm
#: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert
msgid "Convert opportunities"
msgstr ""
msgstr "Fırsatları Dönüştür"
#. module: crm
#: view:crm.lead.report:0
@ -1766,7 +1767,7 @@ msgstr "Olasıyı iş ortağına dönüştür"
#. module: crm
#: view:crm.meeting:0
msgid "Meeting / Partner"
msgstr ""
msgstr "Toplantı / Cari"
#. module: crm
#: view:crm.phonecall2opportunity:0
@ -1878,7 +1879,7 @@ msgstr "Gelen"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Month of call"
msgstr ""
msgstr "Arama Ayı"
#. module: crm
#: view:crm.phonecall.report:0
@ -1912,7 +1913,7 @@ msgstr "En yüksek"
#. module: crm
#: help:crm.lead.report,creation_year:0
msgid "Creation year"
msgstr ""
msgstr "Oluşturma Yılı"
#. module: crm
#: view:crm.case.section:0
@ -1991,7 +1992,7 @@ msgstr "Fırsata Dönüştür"
#: model:ir.model,name:crm.model_crm_case_channel
#: model:ir.ui.menu,name:crm.menu_crm_case_channel
msgid "Channels"
msgstr ""
msgstr "Kanallar"
#. module: crm
#: view:crm.phonecall:0
@ -2219,7 +2220,7 @@ msgstr "Elde Değil"
#: code:addons/crm/crm_lead.py:491
#, python-format
msgid "Please select more than one opportunities."
msgstr ""
msgstr "Lütfen birden fazla fırsat seçin."
#. module: crm
#: field:crm.lead.report,probability:0
@ -2229,7 +2230,7 @@ msgstr "Olasılık"
#. module: crm
#: view:crm.lead:0
msgid "Pending Opportunities"
msgstr ""
msgstr "Bekleyen Fırsatlar"
#. module: crm
#: view:crm.lead.report:0
@ -2282,7 +2283,7 @@ msgstr "Yeni iş ortağı oluştur"
#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0
#: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound
msgid "Scheduled Calls"
msgstr ""
msgstr "Planlanmış Görüşmeler"
#. module: crm
#: view:crm.meeting:0
@ -2293,7 +2294,7 @@ msgstr "Başlangıç Tarihi"
#. module: crm
#: view:crm.phonecall:0
msgid "Scheduled Phonecalls"
msgstr ""
msgstr "Planlanmış Telefon Görüşmeleri"
#. module: crm
#: view:crm.meeting:0
@ -2303,7 +2304,7 @@ msgstr "Reddet"
#. module: crm
#: field:crm.lead,user_email:0
msgid "User Email"
msgstr ""
msgstr "Kullanıcı E-posta"
#. module: crm
#: help:crm.lead,optin:0
@ -2354,7 +2355,7 @@ msgstr "Toplam Planlanan Gelir"
#. module: crm
#: view:crm.lead:0
msgid "Open Opportunities"
msgstr ""
msgstr "ık Fırsatlar"
#. module: crm
#: model:crm.case.categ,name:crm.categ_meet2
@ -2394,7 +2395,7 @@ msgstr "Telefon Görüşmeleri"
#. module: crm
#: view:crm.case.stage:0
msgid "Stage Search"
msgstr ""
msgstr "Sahne Arama"
#. module: crm
#: help:crm.lead.report,delay_open:0
@ -2405,7 +2406,7 @@ msgstr "Durumun açılması için gün sayısı"
#. module: crm
#: selection:crm.meeting,end_type:0
msgid "Number of repetitions"
msgstr ""
msgstr "Tekrar Sayısı"
#. module: crm
#: field:crm.lead,phone:0
@ -2444,7 +2445,7 @@ msgstr ">"
#: view:crm.opportunity2phonecall:0
#: view:crm.phonecall2phonecall:0
msgid "Schedule call"
msgstr ""
msgstr "Görüşme Programla"
#. module: crm
#: view:crm.meeting:0
@ -2480,7 +2481,7 @@ msgstr "Azalt (0>1)"
#. module: crm
#: field:crm.lead.report,deadline_day:0
msgid "Exp. Closing Day"
msgstr ""
msgstr "Bekl. Kapanış Günü"
#. module: crm
#: field:crm.case.section,change_responsible:0
@ -2507,7 +2508,7 @@ msgstr "Muhtelif"
#. module: crm
#: model:ir.actions.act_window,name:crm.open_board_crm
msgid "Sales"
msgstr ""
msgstr "Satış"
#. module: crm
#: model:crm.case.categ,name:crm.categ_oppor8
@ -2560,7 +2561,7 @@ msgstr "Meşgul"
#. module: crm
#: field:crm.lead.report,creation_day:0
msgid "Creation Day"
msgstr ""
msgstr "Oluşturulma Günü"
#. module: crm
#: field:crm.meeting,interval:0
@ -2575,7 +2576,7 @@ msgstr "Yinelenen"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Phone calls made in last month"
msgstr ""
msgstr "Geçen Ay yapılan Telefon görüşmeleri"
#. module: crm
#: model:ir.actions.act_window,name:crm.act_my_oppor
@ -2707,7 +2708,7 @@ msgstr "Bölümleme Testi"
#. module: crm
#: field:crm.lead,user_login:0
msgid "User Login"
msgstr ""
msgstr "Kullanıcı Adı"
#. module: crm
#: view:crm.segmentation:0
@ -2752,12 +2753,12 @@ msgstr "Süre"
#. module: crm
#: view:crm.lead:0
msgid "Show countries"
msgstr ""
msgstr "Ülkeleri Göster"
#. module: crm
#: view:crm.lead2opportunity.partner.mass:0
msgid "Select Salesman"
msgstr ""
msgstr "Satış Temsilcisi Seç"
#. module: crm
#: view:board.board:0
@ -2845,7 +2846,7 @@ msgstr ""
#. module: crm
#: field:crm.lead,subjects:0
msgid "Subject of Email"
msgstr ""
msgstr "E-posta Konusu"
#. module: crm
#: model:ir.actions.act_window,name:crm.action_view_attendee_form
@ -2904,7 +2905,7 @@ msgstr "Mesajlar"
#. module: crm
#: help:crm.lead,channel_id:0
msgid "Communication channel (mail, direct, phone, ...)"
msgstr ""
msgstr "İletişim Kanalı (eposta, doğrudan, telefon, ...)"
#. module: crm
#: code:addons/crm/crm_action_rule.py:61
@ -2969,7 +2970,7 @@ msgstr ""
#. module: crm
#: field:crm.lead,color:0
msgid "Color Index"
msgstr ""
msgstr "Renk İndeksi"
#. module: crm
#: view:crm.lead:0
@ -3135,7 +3136,7 @@ msgstr "Kanal"
#: view:crm.phonecall:0
#: view:crm.phonecall.report:0
msgid "My Sales Team(s)"
msgstr ""
msgstr "Satış Ekiplerim"
#. module: crm
#: help:crm.segmentation,exclusif:0
@ -3176,7 +3177,7 @@ msgstr "Adaylardan iş fırsatları oluşturma"
#: model:ir.actions.act_window,name:crm.open_board_statistical_dash
#: model:ir.ui.menu,name:crm.menu_board_statistics_dash
msgid "CRM Dashboard"
msgstr ""
msgstr "CRM Kontrol Paneli"
#. module: crm
#: model:crm.case.categ,name:crm.categ_oppor4
@ -3196,7 +3197,7 @@ msgstr "Kategoriyi şuna Ayarla"
#. module: crm
#: view:crm.meeting:0
msgid "Mail To"
msgstr ""
msgstr "Kime"
#. module: crm
#: field:crm.meeting,th:0
@ -3230,13 +3231,13 @@ msgstr "Yeterlik"
#. module: crm
#: field:crm.lead,partner_address_email:0
msgid "Partner Contact Email"
msgstr ""
msgstr "Cari İletişim E-postası"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_partner.py:48
#, python-format
msgid "A partner is already defined."
msgstr ""
msgstr "Bir Cari zaten Tanımlanmış"
#. module: crm
#: selection:crm.meeting,byday:0
@ -3246,7 +3247,7 @@ msgstr "İlk"
#. module: crm
#: field:crm.lead.report,deadline_month:0
msgid "Exp. Closing Month"
msgstr ""
msgstr "Bekl. Kapanış Ayı"
#. module: crm
#: selection:crm.lead.report,creation_month:0
@ -3264,7 +3265,7 @@ msgstr "İletişim Geçmişi Koşulları"
#. module: crm
#: view:crm.phonecall:0
msgid "Date of Call"
msgstr ""
msgstr "Arama Tarihi"
#. module: crm
#: help:crm.segmentation,som_interval:0
@ -3327,7 +3328,7 @@ msgstr "Tekrarla"
#. module: crm
#: field:crm.lead.report,deadline_year:0
msgid "Ex. Closing Year"
msgstr ""
msgstr "Belk. Kapanış Yılı"
#. module: crm
#: view:crm.lead:0
@ -3387,7 +3388,7 @@ msgstr ""
#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_incoming0
#: model:ir.ui.menu,name:crm.menu_crm_case_phone_inbound
msgid "Logged Calls"
msgstr ""
msgstr "Kayıtlı Aramalar"
#. module: crm
#: field:crm.partner2opportunity,probability:0
@ -3522,12 +3523,12 @@ msgstr "Twitter Reklamları"
#: code:addons/crm/crm_lead.py:336
#, python-format
msgid "The opportunity '%s' has been been won."
msgstr ""
msgstr "'%s' Fırsatı kazanıldı."
#. module: crm
#: field:crm.case.stage,case_default:0
msgid "Common to All Teams"
msgstr ""
msgstr "Bütün Ekiplerde Ortak"
#. module: crm
#: code:addons/crm/wizard/crm_add_note.py:28
@ -3553,7 +3554,7 @@ msgstr "Hata ! Yinelen profiller oluşturamazsınız."
#. module: crm
#: help:crm.lead.report,deadline_year:0
msgid "Expected closing year"
msgstr ""
msgstr "Beklenen Kapanış Yılı"
#. module: crm
#: field:crm.lead,partner_address_id:0
@ -3584,7 +3585,7 @@ msgstr "Kapat"
#: selection:crm.opportunity2phonecall,action:0
#: selection:crm.phonecall2phonecall,action:0
msgid "Schedule a call"
msgstr ""
msgstr "Görüşme Programla"
#. module: crm
#: view:crm.lead:0
@ -3620,7 +3621,7 @@ msgstr "Kime"
#. module: crm
#: view:crm.lead:0
msgid "Create date"
msgstr ""
msgstr "Oluşturulma Tarihi"
#. module: crm
#: selection:crm.meeting,class:0
@ -3630,7 +3631,7 @@ msgstr "Özel"
#. module: crm
#: selection:crm.meeting,class:0
msgid "Public for Employees"
msgstr ""
msgstr "Çalışanlara açık"
#. module: crm
#: field:crm.lead,function:0
@ -3655,7 +3656,7 @@ msgstr "Açıklama"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Phone calls made in current month"
msgstr ""
msgstr "Bu ay yapılan telefon görüşmeleri"
#. module: crm
#: selection:crm.lead.report,creation_month:0
@ -3673,13 +3674,13 @@ msgstr "Aksesuarlara ilgi duyuyor"
#. module: crm
#: view:crm.lead:0
msgid "New Opportunities"
msgstr ""
msgstr "Yeni Fırsatlar"
#. module: crm
#: code:addons/crm/crm_action_rule.py:61
#, python-format
msgid "No E-Mail Found for your Company address!"
msgstr ""
msgstr "Şirket adresinizde E-posta bulunamadı"
#. module: crm
#: field:crm.lead.report,email:0
@ -3764,7 +3765,7 @@ msgstr "Kayıp"
#. module: crm
#: view:crm.lead:0
msgid "Edit"
msgstr ""
msgstr "Düzenle"
#. module: crm
#: field:crm.lead,country_id:0
@ -3859,7 +3860,7 @@ msgstr "Sıra No"
#. module: crm
#: model:ir.model,name:crm.model_mail_compose_message
msgid "E-mail composition wizard"
msgstr ""
msgstr "E-posta oluşturma sihirbazı"
#. module: crm
#: view:crm.meeting:0
@ -3897,7 +3898,7 @@ msgstr "Yıl"
#. module: crm
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Hata ! kendini çağıran ilişkili üyeler oluşturamazsınız."
#. module: crm
#: model:crm.case.resource.type,name:crm.type_lead8

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-04-02 15:52+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 15:24+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:25+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: crm_caldav
#: model:ir.actions.act_window,name:crm_caldav.action_caldav_browse
@ -25,7 +25,7 @@ msgstr "Caldav Browse"
#. module: crm_caldav
#: model:ir.ui.menu,name:crm_caldav.menu_caldav_browse
msgid "Synchronize This Calendar"
msgstr ""
msgstr "Synchronize This Calendar"
#. module: crm_caldav
#: model:ir.model,name:crm_caldav.model_crm_meeting

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-10 17:51+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:20+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:25+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: crm_caldav
#: model:ir.actions.act_window,name:crm_caldav.action_caldav_browse
@ -25,7 +25,7 @@ msgstr "Caldav Tarama"
#. module: crm_caldav
#: model:ir.ui.menu,name:crm_caldav.menu_caldav_browse
msgid "Synchronize This Calendar"
msgstr ""
msgstr "Bu Takvimi Senkronize Et"
#. module: crm_caldav
#: model:ir.model,name:crm_caldav.model_crm_meeting

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-02-05 10:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-24 22:26+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:21+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:26+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: crm_claim
#: field:crm.claim.report,nbr:0
@ -90,7 +90,7 @@ msgstr ""
#. module: crm_claim
#: view:crm.claim:0
msgid "Date Closed"
msgstr ""
msgstr "Kapatılma Tarihi"
#. module: crm_claim
#: view:crm.claim.report:0
@ -227,7 +227,7 @@ msgstr "Yeni e-posta gönder"
#: selection:crm.claim,state:0
#: view:crm.claim.report:0
msgid "New"
msgstr ""
msgstr "Yeni"
#. module: crm_claim
#: view:crm.claim:0
@ -254,7 +254,7 @@ msgstr "Sonraki İşlem"
#. module: crm_claim
#: view:crm.claim.report:0
msgid "My Sales Team(s)"
msgstr ""
msgstr "Satış Ekiplerim"
#. module: crm_claim
#: model:crm.case.stage,name:crm_claim.stage_claim3
@ -321,7 +321,7 @@ msgstr "İletişim"
#. module: crm_claim
#: view:crm.claim.report:0
msgid "Month-1"
msgstr ""
msgstr "Ay-1"
#. module: crm_claim
#: model:ir.actions.act_window,name:crm_claim.action_report_crm_claim
@ -402,7 +402,7 @@ msgstr "Fiyat Şikayetleri"
#. module: crm_claim
#: view:crm.claim:0
msgid "Responsible User"
msgstr ""
msgstr "Sorumlu Kullanıcı"
#. module: crm_claim
#: help:crm.claim,email_cc:0
@ -489,7 +489,7 @@ msgstr "Kullanıcı"
#. module: crm_claim
#: field:crm.claim,active:0
msgid "Active"
msgstr ""
msgstr "Etkin"
#. module: crm_claim
#: selection:crm.claim.report,month:0
@ -763,7 +763,7 @@ msgstr "Yıl"
#. module: crm_claim
#: view:crm.claim.report:0
msgid "My company"
msgstr ""
msgstr "Şirketim"
#. module: crm_claim
#: selection:crm.claim.report,month:0
@ -783,7 +783,7 @@ msgstr "Kimlik"
#. module: crm_claim
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Hata ! kendini çağıran ilişkili üyeler oluşturamazsınız."
#. module: crm_claim
#: view:crm.claim:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-02-21 15:10+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-24 22:32+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:23+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:26+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: crm_helpdesk
#: field:crm.helpdesk.report,delay_close:0
@ -46,7 +46,7 @@ msgstr "Mart"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "Helpdesk requests occurred in current year"
msgstr ""
msgstr "Bu yıl oluşturulan Destek talepleri"
#. module: crm_helpdesk
#: field:crm.helpdesk,company_id:0
@ -80,7 +80,7 @@ msgstr "Şirket dahili not ekle"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "Date of helpdesk requests"
msgstr ""
msgstr "Destek talebi tarihi"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
@ -95,7 +95,7 @@ msgstr "Mesajlar"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "My company"
msgstr ""
msgstr "Şirketim"
#. module: crm_helpdesk
#: selection:crm.helpdesk,state:0
@ -156,7 +156,7 @@ msgstr "Bölüm"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "Helpdesk requests occurred in last month"
msgstr ""
msgstr "geçen ay yapılan destek talepleri"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
@ -166,14 +166,14 @@ msgstr "Yeni e-posta gönder"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
msgid "Helpdesk requests during last 7 days"
msgstr ""
msgstr "son 7 günde yapılan destek talepleri"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
#: selection:crm.helpdesk,state:0
#: view:crm.helpdesk.report:0
msgid "New"
msgstr ""
msgstr "Yeni"
#. module: crm_helpdesk
#: model:ir.model,name:crm_helpdesk.model_crm_helpdesk_report
@ -207,7 +207,7 @@ msgstr "Posta sayısı"
#: view:crm.helpdesk:0
#: view:crm.helpdesk.report:0
msgid "My Sales Team(s)"
msgstr ""
msgstr "Satış Ekiplerim"
#. module: crm_helpdesk
#: field:crm.helpdesk,create_date:0
@ -252,7 +252,7 @@ msgstr "Kategoriler"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
msgid "New Helpdesk Request"
msgstr ""
msgstr "Yeni Destek Talebi"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
@ -267,13 +267,13 @@ msgstr "Tarihler"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "Month of helpdesk requests"
msgstr ""
msgstr "Destek taleplerinin ayı"
#. module: crm_helpdesk
#: code:addons/crm_helpdesk/crm_helpdesk.py:101
#, python-format
msgid "No Subject"
msgstr ""
msgstr "Konu Yok"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
@ -283,12 +283,12 @@ msgstr "# Danışma Masası"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
msgid "All pending Helpdesk Request"
msgstr ""
msgstr "Bekleyen bütün destek talepleri"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "Year of helpdesk requests"
msgstr ""
msgstr "Destek Talebinin Yılı"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
@ -324,7 +324,7 @@ msgstr "Güncelleme Tarihi"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "Helpdesk requests occurred in current month"
msgstr ""
msgstr "Bu ay oluşan destek talepleri"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
@ -345,7 +345,7 @@ msgstr "Kategori"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
msgid "Responsible User"
msgstr ""
msgstr "Sorumlu Kullanıcı"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
@ -361,7 +361,7 @@ msgstr "Planlanan Maliyet"
#. module: crm_helpdesk
#: help:crm.helpdesk,channel_id:0
msgid "Communication channel."
msgstr ""
msgstr "İletişim Kanalı"
#. module: crm_helpdesk
#: help:crm.helpdesk,email_cc:0
@ -574,7 +574,7 @@ msgstr "Danışma Masası Destek Ağacı"
#. module: crm_helpdesk
#: selection:crm.helpdesk,state:0
msgid "In Progress"
msgstr ""
msgstr "Sürüyor"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
@ -662,7 +662,7 @@ msgstr "Ad"
#. module: crm_helpdesk
#: view:crm.helpdesk.report:0
msgid "Month-1"
msgstr ""
msgstr "Ay-1"
#. module: crm_helpdesk
#: model:ir.ui.menu,name:crm_helpdesk.menu_help_support_main
@ -701,17 +701,17 @@ msgstr ""
#. module: crm_helpdesk
#: view:crm.helpdesk:0
msgid "Todays's Helpdesk Requests"
msgstr ""
msgstr "Bugünün destek talepleri"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
msgid "Request Date"
msgstr ""
msgstr "Talep Tarihi"
#. module: crm_helpdesk
#: view:crm.helpdesk:0
msgid "Open Helpdesk Request"
msgstr ""
msgstr "Destek Talebi Aç"
#. module: crm_helpdesk
#: selection:crm.helpdesk,priority:0

View File

@ -61,7 +61,7 @@
<filter string="Referred Partner" icon="terp-personal" domain="[]" context="{'group_by':'partner_assigned_id'}"/>
</filter>
<field name="partner_id" position="after">
<field name="user_id" position="after">
<separator orientation="vertical"/>
<field name="partner_assigned_id"/>
</field>

View File

@ -0,0 +1,252 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:48+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: crm_profiling
#: view:crm_profiling.questionnaire:0
msgid "Questions List"
msgstr "Questions List"
#. module: crm_profiling
#: model:ir.actions.act_window,help:crm_profiling.open_questionnaires
msgid ""
"You can create specific topic-related questionnaires to guide your team(s) "
"in the sales cycle by helping them to ask the right questions. The "
"segmentation tool allows you to automatically assign a partner to a category "
"according to his answers to the different questionnaires."
msgstr ""
"You can create specific topic-related questionnaires to guide your team(s) "
"in the sales cycle by helping them to ask the right questions. The "
"segmentation tool allows you to automatically assign a partner to a category "
"according to his answers to the different questionnaires."
#. module: crm_profiling
#: field:crm_profiling.answer,question_id:0
#: field:crm_profiling.question,name:0
#: model:ir.model,name:crm_profiling.model_crm_profiling_question
#: field:open.questionnaire.line,question_id:0
msgid "Question"
msgstr "Question"
#. module: crm_profiling
#: model:ir.actions.act_window,name:crm_profiling.action_open_questionnaire
#: view:open.questionnaire:0
msgid "Open Questionnaire"
msgstr "Open Questionnaire"
#. module: crm_profiling
#: field:crm.segmentation,child_ids:0
msgid "Child Profiles"
msgstr "Child Profiles"
#. module: crm_profiling
#: view:crm.segmentation:0
msgid "Partner Segmentations"
msgstr "Partner Segmentations"
#. module: crm_profiling
#: field:crm_profiling.answer,name:0
#: model:ir.model,name:crm_profiling.model_crm_profiling_answer
#: field:open.questionnaire.line,answer_id:0
msgid "Answer"
msgstr "Answer"
#. module: crm_profiling
#: model:ir.model,name:crm_profiling.model_open_questionnaire_line
msgid "open.questionnaire.line"
msgstr "open.questionnaire.line"
#. module: crm_profiling
#: model:ir.model,name:crm_profiling.model_crm_segmentation
msgid "Partner Segmentation"
msgstr "Partner Segmentation"
#. module: crm_profiling
#: view:res.partner:0
msgid "Profiling"
msgstr "Profiling"
#. module: crm_profiling
#: view:crm_profiling.questionnaire:0
#: field:crm_profiling.questionnaire,description:0
msgid "Description"
msgstr "Description"
#. module: crm_profiling
#: field:crm.segmentation,answer_no:0
msgid "Excluded Answers"
msgstr "Excluded Answers"
#. module: crm_profiling
#: view:crm_profiling.answer:0
#: view:crm_profiling.question:0
#: field:res.partner,answers_ids:0
msgid "Answers"
msgstr "Answers"
#. module: crm_profiling
#: model:ir.model,name:crm_profiling.model_open_questionnaire
msgid "open.questionnaire"
msgstr "open.questionnaire"
#. module: crm_profiling
#: field:open.questionnaire,questionnaire_id:0
msgid "Questionnaire name"
msgstr "Questionnaire name"
#. module: crm_profiling
#: view:res.partner:0
msgid "Use a questionnaire"
msgstr "Use a questionnaire"
#. module: crm_profiling
#: view:open.questionnaire:0
msgid "_Cancel"
msgstr "_Cancel"
#. module: crm_profiling
#: field:open.questionnaire,question_ans_ids:0
msgid "Question / Answers"
msgstr "Question / Answers"
#. module: crm_profiling
#: view:crm_profiling.questionnaire:0
#: model:ir.actions.act_window,name:crm_profiling.open_questionnaires
#: model:ir.ui.menu,name:crm_profiling.menu_segm_questionnaire
#: view:open.questionnaire:0
msgid "Questionnaires"
msgstr "Questionnaires"
#. module: crm_profiling
#: help:crm.segmentation,profiling_active:0
msgid ""
"Check this box if you want to use this tab as "
"part of the segmentation rule. If not checked, "
"the criteria beneath will be ignored"
msgstr ""
"Check this box if you want to use this tab as part of the segmentation rule. "
"If not checked, the criteria beneath will be ignored"
#. module: crm_profiling
#: constraint:crm.segmentation:0
msgid "Error ! You can not create recursive profiles."
msgstr "Error ! You can not create recursive profiles."
#. module: crm_profiling
#: field:crm.segmentation,profiling_active:0
msgid "Use The Profiling Rules"
msgstr "Use The Profiling Rules"
#. module: crm_profiling
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr "Error ! You cannot create recursive associated members."
#. module: crm_profiling
#: view:crm_profiling.question:0
#: field:crm_profiling.question,answers_ids:0
msgid "Avalaible answers"
msgstr "Avalaible answers"
#. module: crm_profiling
#: field:crm.segmentation,answer_yes:0
msgid "Included Answers"
msgstr "Included Answers"
#. module: crm_profiling
#: view:crm_profiling.question:0
#: field:crm_profiling.questionnaire,questions_ids:0
#: model:ir.actions.act_window,name:crm_profiling.open_questions
#: model:ir.ui.menu,name:crm_profiling.menu_segm_answer
msgid "Questions"
msgstr "Questions"
#. module: crm_profiling
#: field:crm.segmentation,parent_id:0
msgid "Parent Profile"
msgstr "Parent Profile"
#. module: crm_profiling
#: view:open.questionnaire:0
msgid "Cancel"
msgstr "Cancel"
#. module: crm_profiling
#: model:ir.model,name:crm_profiling.model_res_partner
msgid "Partner"
msgstr "Partner"
#. module: crm_profiling
#: code:addons/crm_profiling/wizard/open_questionnaire.py:77
#: field:crm_profiling.questionnaire,name:0
#: model:ir.model,name:crm_profiling.model_crm_profiling_questionnaire
#: view:open.questionnaire:0
#: view:open.questionnaire.line:0
#: field:open.questionnaire.line,wizard_id:0
#, python-format
msgid "Questionnaire"
msgstr "Questionnaire"
#. module: crm_profiling
#: view:open.questionnaire:0
msgid "Save Data"
msgstr "Save Data"
#~ msgid "Using a questionnaire"
#~ msgstr "Using a questionnaire"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "Error ! You can not create recursive associated members."
#~ msgid "Crm Profiling management - To Perform Segmentation within Partners"
#~ msgstr "Crm Profiling management - To Perform Segmentation within Partners"
#~ msgid ""
#~ "\n"
#~ " This module allows users to perform segmentation within partners.\n"
#~ " It uses the profiles criteria from the earlier segmentation module and "
#~ "improve it. Thanks to the new concept of questionnaire. You can now regroup "
#~ "questions into a questionnaire and directly use it on a partner.\n"
#~ "\n"
#~ " It also has been merged with the earlier CRM & SRM segmentation tool "
#~ "because they were overlapping.\n"
#~ "\n"
#~ " The menu items related are in \"CRM & SRM\\Configuration\\"
#~ "Segmentations\"\n"
#~ "\n"
#~ "\n"
#~ " * Note: this module is not compatible with the module segmentation, "
#~ "since it's the same which has been renamed.\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ " This module allows users to perform segmentation within partners.\n"
#~ " It uses the profiles criteria from the earlier segmentation module and "
#~ "improve it. Thanks to the new concept of questionnaire. You can now regroup "
#~ "questions into a questionnaire and directly use it on a partner.\n"
#~ "\n"
#~ " It also has been merged with the earlier CRM & SRM segmentation tool "
#~ "because they were overlapping.\n"
#~ "\n"
#~ " The menu items related are in \"CRM & SRM\\Configuration\\"
#~ "Segmentations\"\n"
#~ "\n"
#~ "\n"
#~ " * Note: this module is not compatible with the module segmentation, "
#~ "since it's the same which has been renamed.\n"
#~ " "

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-16 20:15+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:16+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:04+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: crm_profiling
#: view:crm_profiling.questionnaire:0
@ -68,7 +68,7 @@ msgstr "Yanıt"
#. module: crm_profiling
#: model:ir.model,name:crm_profiling.model_open_questionnaire_line
msgid "open.questionnaire.line"
msgstr ""
msgstr "open.questionnaire.line"
#. module: crm_profiling
#: model:ir.model,name:crm_profiling.model_crm_segmentation
@ -101,7 +101,7 @@ msgstr "Yanıtlar"
#. module: crm_profiling
#: model:ir.model,name:crm_profiling.model_open_questionnaire
msgid "open.questionnaire"
msgstr ""
msgstr "open.questionnaire"
#. module: crm_profiling
#: field:open.questionnaire,questionnaire_id:0
@ -116,12 +116,12 @@ msgstr "Bir Anket Kullan"
#. module: crm_profiling
#: view:open.questionnaire:0
msgid "_Cancel"
msgstr ""
msgstr "_İptal"
#. module: crm_profiling
#: field:open.questionnaire,question_ans_ids:0
msgid "Question / Answers"
msgstr ""
msgstr "Soru /Cevap"
#. module: crm_profiling
#: view:crm_profiling.questionnaire:0
@ -154,7 +154,7 @@ msgstr "Profil Kurallarını Kullan"
#. module: crm_profiling
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Hata ! kendini çağıran ilişkili üyeler oluşturamazsınız."
#. module: crm_profiling
#: view:crm_profiling.question:0

View File

@ -222,7 +222,7 @@ class delivery_grid_line(osv.osv):
_name = "delivery.grid.line"
_description = "Delivery Grid Line"
_columns = {
'name': fields.char('Name', size=32, required=True),
'name': fields.char('Name', size=64, required=True),
'grid_id': fields.many2one('delivery.grid', 'Grid',required=True, ondelete='cascade'),
'type': fields.selection([('weight','Weight'),('volume','Volume'),\
('wv','Weight * Volume'), ('price','Price')],\

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-09-09 07:15+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-24 20:57+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 05:53+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: delivery
#: report:sale.shipping:0
@ -69,7 +69,7 @@ msgstr "Grid Satırı"
#. module: delivery
#: help:delivery.carrier,partner_id:0
msgid "The partner that is doing the delivery service."
msgstr ""
msgstr "Teslimat Servisini veren Cari"
#. module: delivery
#: model:ir.actions.report.xml,name:delivery.report_shipping
@ -89,7 +89,7 @@ msgstr "Faturalanmak üzere seçilen"
#. module: delivery
#: field:delivery.carrier,pricelist_ids:0
msgid "Advanced Pricing"
msgstr ""
msgstr "Gelişmiş Fiyatlama"
#. module: delivery
#: help:delivery.grid,sequence:0
@ -129,7 +129,7 @@ msgstr ""
#. module: delivery
#: field:delivery.carrier,amount:0
msgid "Amount"
msgstr ""
msgstr "Tutar"
#. module: delivery
#: selection:delivery.grid.line,price_type:0
@ -214,7 +214,7 @@ msgstr "Lot"
#. module: delivery
#: field:delivery.carrier,partner_id:0
msgid "Transport Company"
msgstr ""
msgstr "Taşıma Şirketi"
#. module: delivery
#: model:ir.model,name:delivery.model_delivery_grid
@ -287,17 +287,17 @@ msgstr "Bitiş P. Kodu"
#: code:addons/delivery/delivery.py:143
#, python-format
msgid "Default price"
msgstr ""
msgstr "Öntanımlı Fiyat"
#. module: delivery
#: model:ir.model,name:delivery.model_delivery_define_delivery_steps_wizard
msgid "delivery.define.delivery.steps.wizard"
msgstr ""
msgstr "delivery.define.delivery.steps.wizard"
#. module: delivery
#: field:delivery.carrier,normal_price:0
msgid "Normal Price"
msgstr ""
msgstr "Normal Fiyat"
#. module: delivery
#: report:sale.shipping:0
@ -344,7 +344,7 @@ msgstr ""
#. module: delivery
#: constraint:stock.move:0
msgid "You can not move products from or to a location of the type view."
msgstr ""
msgstr "view tipinde bir lokasyona ürün giriş çıkışı yapamazsınız."
#. module: delivery
#: code:addons/delivery/wizard/delivery_sale_order.py:94
@ -420,7 +420,7 @@ msgstr ""
#. module: delivery
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: delivery
#: field:delivery.grid.line,max_value:0
@ -441,7 +441,7 @@ msgstr ""
#. module: delivery
#: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form1
msgid "Define Delivery Methods"
msgstr ""
msgstr "Teslimat Yöntemini Tanımla"
#. module: delivery
#: help:delivery.carrier,free_if_more_than:0
@ -471,7 +471,7 @@ msgstr ""
#. module: delivery
#: sql_constraint:sale.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: delivery
#: model:ir.actions.act_window,help:delivery.action_delivery_carrier_form
@ -499,7 +499,7 @@ msgstr "Bu ürün için bir üretim lotu oluşturmanız gerekir"
#. module: delivery
#: field:delivery.carrier,free_if_more_than:0
msgid "Free If More Than"
msgstr ""
msgstr "Ücretsiz Eğer fazlaysa"
#. module: delivery
#: view:delivery.sale.order:0
@ -571,17 +571,17 @@ msgstr "Nakliyeci %s (id: %d) teslimat gridine sahip değil!"
#. module: delivery
#: view:delivery.carrier:0
msgid "Pricing Information"
msgstr ""
msgstr "Fiyat Bilgisi"
#. module: delivery
#: selection:delivery.define.delivery.steps.wizard,picking_policy:0
msgid "Deliver all products at once"
msgstr ""
msgstr "Tüm ürünleri tek seferde teslim et"
#. module: delivery
#: field:delivery.carrier,use_detailed_pricelist:0
msgid "Advanced Pricing per Destination"
msgstr ""
msgstr "Adrese göre Gelişmiş Fiyatlama"
#. module: delivery
#: view:delivery.carrier:0
@ -613,7 +613,7 @@ msgstr ""
#. module: delivery
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Hata ! kendini çağıran ilişkili üyeler oluşturamazsınız."
#. module: delivery
#: field:delivery.grid,sequence:0
@ -634,12 +634,12 @@ msgstr "Teslimat Maliyeti"
#. module: delivery
#: selection:delivery.define.delivery.steps.wizard,picking_policy:0
msgid "Deliver each product when available"
msgstr ""
msgstr "Her ürün hazır olduğunda teslim et"
#. module: delivery
#: view:delivery.define.delivery.steps.wizard:0
msgid "Apply"
msgstr ""
msgstr "Uygula"
#. module: delivery
#: field:delivery.grid.line,price_type:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-06-10 19:43+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-24 20:09+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:11+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: document
#: field:document.directory,parent_id:0
@ -150,7 +150,7 @@ msgstr "Klasör adı eşsiz olmalı !"
#. module: document
#: view:ir.attachment:0
msgid "Filter on my documents"
msgstr ""
msgstr "Dökümanlarımdaki filtreler"
#. module: document
#: field:ir.attachment,index_content:0
@ -169,7 +169,7 @@ msgstr ""
#. module: document
#: model:ir.actions.todo.category,name:document.category_knowledge_mgmt_config
msgid "Knowledge Management"
msgstr ""
msgstr "Bilgi Yönetimi"
#. module: document
#: view:document.directory:0
@ -203,7 +203,7 @@ msgstr "Her kaynağın klasörü"
#. module: document
#: view:ir.attachment:0
msgid "Indexed Content - experimental"
msgstr ""
msgstr "İndekslenmiş İçerik - Deneysel"
#. module: document
#: field:document.directory.content,suffix:0
@ -522,7 +522,7 @@ msgstr ""
#. module: document
#: model:ir.actions.act_window,name:document.action_config_auto_directory
msgid "Configure Directories"
msgstr ""
msgstr "Klasörleri Ayarla"
#. module: document
#: field:document.directory.content,include_name:0
@ -675,7 +675,7 @@ msgstr "Salt Okunur"
#. module: document
#: model:ir.actions.act_window,name:document.action_document_directory_form
msgid "Document Directory"
msgstr ""
msgstr "Dökümanlar Klasörü"
#. module: document
#: sql_constraint:document.directory:0
@ -794,7 +794,7 @@ msgstr "Ay"
#. module: document
#: view:report.document.user:0
msgid "This Months Files"
msgstr ""
msgstr "Bu ayın Dosyaları"
#. module: document
#: model:ir.ui.menu,name:document.menu_reporting
@ -859,7 +859,7 @@ msgstr "Paydaşa göre Dosyalar"
#. module: document
#: view:document.configuration:0
msgid "Configure Direcories"
msgstr ""
msgstr "Klasörleri Ayarla"
#. module: document
#: view:report.document.user:0
@ -874,7 +874,7 @@ msgstr "Notlar"
#. module: document
#: model:ir.model,name:document.model_document_configuration
msgid "Directory Configuration"
msgstr ""
msgstr "Klasör Ayarları"
#. module: document
#: help:document.directory,type:0
@ -969,7 +969,7 @@ msgstr "Mime Türü"
#. module: document
#: view:report.document.user:0
msgid "All Months Files"
msgstr ""
msgstr "Bütün Ayların Dosyaları"
#. module: document
#: field:document.directory.content,name:0

View File

@ -11,10 +11,6 @@
<!-- <field name="name">Document / Manager</field>-->
<!-- </record>-->
<record id="knowledge.menu_document_configuration" model="ir.ui.menu">
<field name="groups_id" eval="[(6,0,[ref('base.group_no_one')])]"/>
</record>
<record id="ir_rule_readpublicdirectories0" model="ir.rule">
<field name="model_id" ref="document.model_document_directory"/>
<field name="domain_force">['|','|',('group_ids','in',[g.id for g in user.groups_id]), ('user_id', '=', user.id), '&amp;', ('user_id', '=', False), ('group_ids','=',False), '|','|', ('company_id','=',False), ('company_id','child_of',[user.company_id.id]),('company_id.child_ids','child_of',[user.company_id.id])]</field>

View File

@ -0,0 +1,378 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:59+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: document_ics
#: help:document.ics.crm.wizard,claims:0
msgid ""
"Manages the supplier and customers claims,including your corrective or "
"preventive actions."
msgstr ""
"Manages the supplier and customers claims,including your corrective or "
"preventive actions."
#. module: document_ics
#: field:document.directory.content,object_id:0
msgid "Object"
msgstr "Object"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "uid"
msgstr "uid"
#. module: document_ics
#: help:document.ics.crm.wizard,fund:0
msgid ""
"This may help associations in their fund raising process and tracking."
msgstr ""
"This may help associations in their fund raising process and tracking."
#. module: document_ics
#: field:document.ics.crm.wizard,jobs:0
msgid "Jobs Hiring Process"
msgstr "Jobs Hiring Process"
#. module: document_ics
#: view:document.ics.crm.wizard:0
msgid "Configure Calendars for CRM Sections"
msgstr "Configure Calendars for CRM Sections"
#. module: document_ics
#: field:document.ics.crm.wizard,helpdesk:0
msgid "Helpdesk"
msgstr "Helpdesk"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "dtstamp"
msgstr "dtstamp"
#. module: document_ics
#: help:document.directory.content,fname_field:0
msgid ""
"The field of the object used in the filename. Has to "
"be a unique identifier."
msgstr ""
"The field of the object used in the filename. Has to be a unique identifier."
#. module: document_ics
#: field:document.directory.ics.fields,content_id:0
msgid "Content"
msgstr "Content"
#. module: document_ics
#: field:document.ics.crm.wizard,meeting:0
msgid "Calendar of Meetings"
msgstr "Calendar of Meetings"
#. module: document_ics
#: view:document.ics.crm.wizard:0
msgid ""
"OpenERP can create and pre-configure a series of integrated calendar for you."
msgstr ""
"OpenERP can create and pre-configure a series of integrated calendar for you."
#. module: document_ics
#: help:document.ics.crm.wizard,helpdesk:0
msgid "Manages an Helpdesk service."
msgstr "Manages an Helpdesk service."
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "dtend"
msgstr "dtend"
#. module: document_ics
#: model:ir.model,name:document_ics.model_crm_meeting
msgid "Meeting"
msgstr "Meeting"
#. module: document_ics
#: help:document.ics.crm.wizard,lead:0
msgid ""
"Allows you to track and manage leads which are pre-sales requests or "
"contacts, the very first contact with a customer request."
msgstr ""
"Allows you to track and manage leads which are pre-sales requests or "
"contacts, the very first contact with a customer request."
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "description"
msgstr "description"
#. module: document_ics
#: field:document.directory.ics.fields,fn:0
msgid "Function"
msgstr "Function"
#. module: document_ics
#: model:ir.actions.act_window,name:document_ics.action_view_document_ics_config_directories
msgid "Configure Calendars for Sections "
msgstr "Configure Calendars for Sections "
#. module: document_ics
#: help:document.ics.crm.wizard,opportunity:0
msgid "Tracks identified business opportunities for your sales pipeline."
msgstr "Tracks identified business opportunities for your sales pipeline."
#. module: document_ics
#: help:document.ics.crm.wizard,jobs:0
msgid ""
"Helps you to organise the jobs hiring process: evaluation, meetings, email "
"integration..."
msgstr ""
"Helps you to organise the jobs hiring process: evaluation, meetings, email "
"integration..."
#. module: document_ics
#: view:document.ics.crm.wizard:0
msgid "title"
msgstr "title"
#. module: document_ics
#: field:document.ics.crm.wizard,fund:0
msgid "Fund Raising Operations"
msgstr "Fund Raising Operations"
#. module: document_ics
#: model:ir.model,name:document_ics.model_document_directory_content
msgid "Directory Content"
msgstr "Directory Content"
#. module: document_ics
#: model:ir.model,name:document_ics.model_document_directory_ics_fields
msgid "Document Directory ICS Fields"
msgstr "Document Directory ICS Fields"
#. module: document_ics
#: help:document.ics.crm.wizard,phonecall:0
msgid ""
"Helps you to encode the result of a phone call or to plan a list of phone "
"calls to process."
msgstr ""
"Helps you to encode the result of a phone call or to plan a list of phone "
"calls to process."
#. module: document_ics
#: help:document.ics.crm.wizard,document_ics:0
msgid ""
" Will allow you to synchronise your Open ERP calendars with your phone, "
"outlook, Sunbird, ical, ..."
msgstr ""
" Will allow you to synchronise your Open ERP calendars with your phone, "
"outlook, Sunbird, ical, ..."
#. module: document_ics
#: field:document.directory.ics.fields,field_id:0
msgid "OpenERP Field"
msgstr "OpenERP Field"
#. module: document_ics
#: view:document.directory:0
msgid "ICS Calendar"
msgstr "ICS Calendar"
#. module: document_ics
#: field:document.directory.ics.fields,name:0
msgid "ICS Value"
msgstr "ICS Value"
#. module: document_ics
#: selection:document.directory.ics.fields,fn:0
msgid "Expression as constant"
msgstr "Expression as constant"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "location"
msgstr "location"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "attendee"
msgstr "attendee"
#. module: document_ics
#: field:document.ics.crm.wizard,name:0
msgid "Name"
msgstr "Name"
#. module: document_ics
#: help:document.directory.ics.fields,fn:0
msgid "Alternate method of calculating the value"
msgstr "Alternate method of calculating the value"
#. module: document_ics
#: help:document.ics.crm.wizard,meeting:0
msgid "Manages the calendar of meetings of the users."
msgstr "Manages the calendar of meetings of the users."
#. module: document_ics
#: field:document.directory.content,ics_domain:0
msgid "Domain"
msgstr "Domain"
#. module: document_ics
#: help:document.ics.crm.wizard,bugs:0
msgid "Used by companies to track bugs and support requests on software"
msgstr "Used by companies to track bugs and support requests on software"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "last-modified"
msgstr "last-modified"
#. module: document_ics
#: view:document.directory:0
msgid "ICS Mapping"
msgstr "ICS Mapping"
#. module: document_ics
#: field:document.ics.crm.wizard,document_ics:0
msgid "Shared Calendar"
msgstr "Shared Calendar"
#. module: document_ics
#: field:document.ics.crm.wizard,claims:0
msgid "Claims"
msgstr "Claims"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "dtstart"
msgstr "dtstart"
#. module: document_ics
#: field:document.directory.ics.fields,expr:0
msgid "Expression"
msgstr "Expression"
#. module: document_ics
#: field:document.ics.crm.wizard,bugs:0
msgid "Bug Tracking"
msgstr "Bug Tracking"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "categories"
msgstr "categories"
#. module: document_ics
#: selection:document.directory.ics.fields,fn:0
msgid "Use the field"
msgstr "Use the field"
#. module: document_ics
#: view:document.ics.crm.wizard:0
msgid "Create Pre-Configured Calendars"
msgstr "Create Pre-Configured Calendars"
#. module: document_ics
#: field:document.directory.content,fname_field:0
msgid "Filename field"
msgstr "Filename field"
#. module: document_ics
#: field:document.directory.content,obj_iterate:0
msgid "Iterate object"
msgstr "Iterate object"
#. module: document_ics
#: field:crm.meeting,code:0
msgid "Calendar Code"
msgstr "Calendar Code"
#. module: document_ics
#: selection:document.directory.ics.fields,fn:0
msgid "Interval in hours"
msgstr "Interval in hours"
#. module: document_ics
#: field:document.ics.crm.wizard,config_logo:0
msgid "Image"
msgstr "Image"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "created"
msgstr "created"
#. module: document_ics
#: help:document.directory.content,obj_iterate:0
msgid ""
"If set, a separate instance will be created for each "
"record of Object"
msgstr ""
"If set, a separate instance will be created for each record of Object"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "summary"
msgstr "summary"
#. module: document_ics
#: field:document.ics.crm.wizard,lead:0
msgid "Leads"
msgstr "Leads"
#. module: document_ics
#: model:ir.model,name:document_ics.model_document_ics_crm_wizard
msgid "document.ics.crm.wizard"
msgstr "document.ics.crm.wizard"
#. module: document_ics
#: view:document.ics.crm.wizard:0
msgid "res_config_contents"
msgstr "res_config_contents"
#. module: document_ics
#: field:document.ics.crm.wizard,phonecall:0
msgid "Phone Calls"
msgstr "Phone Calls"
#. module: document_ics
#: field:document.directory.content,ics_field_ids:0
msgid "Fields Mapping"
msgstr "Fields Mapping"
#. module: document_ics
#: selection:document.directory.ics.fields,name:0
msgid "url"
msgstr "url"
#. module: document_ics
#: field:document.ics.crm.wizard,opportunity:0
msgid "Business Opportunities"
msgstr "Business Opportunities"
#~ msgid "Allows to synchronise calendars with others applications."
#~ msgstr "Allows to synchronise calendars with others applications."
#~ msgid "Shared Calendar Meetings"
#~ msgstr "Shared Calendar Meetings"
#~ msgid "Support for iCal based on Document Management System"
#~ msgstr "Support for iCal based on Document Management System"
#~ msgid "Configure"
#~ msgstr "Configure"
#~ msgid "Configuration Progress"
#~ msgstr "Configuration Progress"

View File

@ -0,0 +1,206 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:26+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: document_webdav
#: field:document.webdav.dir.property,create_date:0
#: field:document.webdav.file.property,create_date:0
msgid "Date Created"
msgstr "Date Created"
#. module: document_webdav
#: model:ir.ui.menu,name:document_webdav.menu_document_props
msgid "Documents"
msgstr "Documents"
#. module: document_webdav
#: constraint:document.directory:0
msgid "Error! You can not create recursive Directories."
msgstr "Error! You can not create recursive Directories."
#. module: document_webdav
#: view:document.webdav.dir.property:0
#: view:document.webdav.file.property:0
msgid "Search Document properties"
msgstr "Search Document properties"
#. module: document_webdav
#: view:document.webdav.dir.property:0
#: field:document.webdav.dir.property,namespace:0
#: view:document.webdav.file.property:0
#: field:document.webdav.file.property,namespace:0
msgid "Namespace"
msgstr "Namespace"
#. module: document_webdav
#: field:document.directory,dav_prop_ids:0
msgid "DAV properties"
msgstr "DAV properties"
#. module: document_webdav
#: model:ir.model,name:document_webdav.model_document_webdav_file_property
msgid "document.webdav.file.property"
msgstr "document.webdav.file.property"
#. module: document_webdav
#: view:document.webdav.dir.property:0
#: view:document.webdav.file.property:0
msgid "Group By..."
msgstr "Group By..."
#. module: document_webdav
#: view:document.directory:0
msgid "These properties will be added to WebDAV requests"
msgstr "These properties will be added to WebDAV requests"
#. module: document_webdav
#: model:ir.actions.act_window,name:document_webdav.action_file_props_form
msgid "DAV Properties for Documents"
msgstr "DAV Properties for Documents"
#. module: document_webdav
#: code:addons/document_webdav/webdav.py:37
#, python-format
msgid "PyWebDAV Import Error!"
msgstr "PyWebDAV Import Error!"
#. module: document_webdav
#: view:document.webdav.file.property:0
#: field:document.webdav.file.property,file_id:0
msgid "Document"
msgstr "Document"
#. module: document_webdav
#: model:ir.ui.menu,name:document_webdav.menu_folder_props
msgid "Folders"
msgstr "Folders"
#. module: document_webdav
#: sql_constraint:document.directory:0
msgid "Directory cannot be parent of itself!"
msgstr "Directory cannot be parent of itself!"
#. module: document_webdav
#: view:document.directory:0
msgid "Dynamic context"
msgstr "Dynamic context"
#. module: document_webdav
#: view:document.directory:0
msgid "WebDAV properties"
msgstr "WebDAV properties"
#. module: document_webdav
#: sql_constraint:document.directory:0
msgid "The directory name must be unique !"
msgstr "The directory name must be unique !"
#. module: document_webdav
#: code:addons/document_webdav/webdav.py:37
#, python-format
msgid ""
"Please install PyWebDAV from "
"http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-"
"0.9.4.tar.gz&can=2&q=/"
msgstr ""
"Please install PyWebDAV from "
"http://code.google.com/p/pywebdav/downloads/detail?name=PyWebDAV-"
"0.9.4.tar.gz&can=2&q=/"
#. module: document_webdav
#: model:ir.actions.act_window,name:document_webdav.action_dir_props_form
msgid "DAV Properties for Folders"
msgstr "DAV Properties for Folders"
#. module: document_webdav
#: view:document.directory:0
#: view:document.webdav.dir.property:0
#: view:document.webdav.file.property:0
msgid "Properties"
msgstr "Properties"
#. module: document_webdav
#: field:document.webdav.dir.property,name:0
#: field:document.webdav.file.property,name:0
msgid "Name"
msgstr "Name"
#. module: document_webdav
#: model:ir.model,name:document_webdav.model_document_webdav_dir_property
msgid "document.webdav.dir.property"
msgstr "document.webdav.dir.property"
#. module: document_webdav
#: field:document.webdav.dir.property,value:0
#: field:document.webdav.file.property,value:0
msgid "Value"
msgstr "Value"
#. module: document_webdav
#: field:document.webdav.dir.property,dir_id:0
#: model:ir.model,name:document_webdav.model_document_directory
msgid "Directory"
msgstr "Directory"
#. module: document_webdav
#: field:document.webdav.dir.property,write_uid:0
#: field:document.webdav.file.property,write_uid:0
msgid "Last Modification User"
msgstr "Last Modification User"
#. module: document_webdav
#: view:document.webdav.dir.property:0
msgid "Dir"
msgstr "Dir"
#. module: document_webdav
#: field:document.webdav.dir.property,write_date:0
#: field:document.webdav.file.property,write_date:0
msgid "Date Modified"
msgstr "Date Modified"
#. module: document_webdav
#: field:document.webdav.dir.property,create_uid:0
#: field:document.webdav.file.property,create_uid:0
msgid "Creator"
msgstr "Creator"
#. module: document_webdav
#: model:ir.ui.menu,name:document_webdav.menu_properties
msgid "DAV Properties"
msgstr "DAV Properties"
#. module: document_webdav
#: sql_constraint:document.directory:0
msgid "Directory must have a parent or a storage"
msgstr "Directory must have a parent or a storage"
#. module: document_webdav
#: field:document.webdav.dir.property,do_subst:0
#: field:document.webdav.file.property,do_subst:0
msgid "Substitute"
msgstr "Substitute"
#~ msgid "WebDAV server for Document Management"
#~ msgstr "WebDAV server for Document Management"
#~ msgid "DAV properties for folders"
#~ msgstr "DAV properties for folders"
#~ msgid "DAV properties for documents"
#~ msgstr "DAV properties for documents"

View File

@ -1,7 +1,7 @@
openerp.edi = function(openerp) {
openerp.edi = {}
openerp.edi.EdiView = openerp.web.Widget.extend({
openerp.edi.EdiView = openerp.web.OldWidget.extend({
init: function(parent, db, token) {
this._super();
this.db = db;
@ -113,7 +113,7 @@ openerp.edi.edi_view = function (db, token) {
});
}
openerp.edi.EdiImport = openerp.web.Widget.extend({
openerp.edi.EdiImport = openerp.web.OldWidget.extend({
init: function(parent,url) {
this._super();
this.url = url;

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:54+0000\n"
"PO-Revision-Date: 2012-01-17 09:55+0000\n"
"Last-Translator: Milan Tribuson <Unknown>\n"
"PO-Revision-Date: 2012-01-23 10:38+0000\n"
"Last-Translator: Marko Carevic <Unknown>\n"
"Language-Team: <>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-18 04:44+0000\n"
"X-Generator: Launchpad (build 14681)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
"Language: hr\n"
#. module: hr
@ -59,7 +59,7 @@ msgstr "Grupiraj po..."
#. module: hr
#: model:ir.actions.act_window,name:hr.view_department_form_installer
msgid "Create Your Departments"
msgstr ""
msgstr "Kreirajte vaše odjele"
#. module: hr
#: model:ir.actions.act_window,help:hr.action_hr_job
@ -70,6 +70,11 @@ msgid ""
"will be used in the recruitment process to evaluate the applicants for this "
"job position."
msgstr ""
"Radna mjesta koriste se za definiranje poslova i preduvjeta za nj. "
"obavljanje. Možete pratiti broj zaposlenih po radnom mjestu i koliko možete "
"očekivati u budućnosti. Također, radnom mjestu možete priložiti anketu "
"koje će se koristiti u procesu zapošljavanja za procjenu kompetencije "
"kandidata za to radno mjesto."
#. module: hr
#: view:hr.employee:0
@ -111,7 +116,7 @@ msgstr "Očekivano u regrutiranju"
#. module: hr
#: model:ir.actions.todo.category,name:hr.category_hr_management_config
msgid "HR Management"
msgstr ""
msgstr "Upravljanje ljudskim resursima"
#. module: hr
#: help:hr.employee,partner_id:0
@ -151,6 +156,10 @@ msgid ""
"operations on all the employees of the same category, i.e. allocating "
"holidays."
msgstr ""
"Kreiraj obrazac djelatnika i povežite ih na OpenERP korisnika ako želite da "
"imaju pristup ovoj instanci . Kategorije se mogu postaviti na zaposlenika za "
"obavljanje velikih operacija nad svim zaposlenicima iste kategorije, npr. "
"alokacije godišnjih odmora."
#. module: hr
#: model:ir.actions.act_window,help:hr.open_module_tree_department
@ -159,11 +168,14 @@ msgid ""
"to employees by departments: expenses and timesheet validation, leaves "
"management, recruitments, etc."
msgstr ""
"Struktura odjela vaše tvrtke se koristi za upravljanje svim dokumentima u "
"vezi s zaposlenicim po odjelima: troškovi, evidencija o radnom vremenu, "
"upravljanje dopustima, upravljanje zapošljavanjem itd."
#. module: hr
#: field:hr.employee,color:0
msgid "Color Index"
msgstr ""
msgstr "Indeks boja"
#. module: hr
#: model:process.transition,note:hr.process_transition_employeeuser0
@ -193,12 +205,12 @@ msgstr "Žensko"
#. module: hr
#: help:hr.job,expected_employees:0
msgid "Required number of employees in total for that job."
msgstr ""
msgstr "Ukupan broj potrebnih zaposlenika za taj posao"
#. module: hr
#: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_new_config
msgid "Attendance"
msgstr ""
msgstr "Prisutnost"
#. module: hr
#: view:hr.employee:0
@ -296,7 +308,7 @@ msgstr "Očekivano djelatnika"
#. module: hr
#: selection:hr.employee,marital:0
msgid "Divorced"
msgstr "Razveden-a"
msgstr "Razveden(a)"
#. module: hr
#: field:hr.employee.category,parent_id:0
@ -356,7 +368,7 @@ msgstr "hr.department"
#. module: hr
#: model:ir.actions.act_window,name:hr.action_create_hr_employee_installer
msgid "Create your Employees"
msgstr ""
msgstr "Kreiraj zaposlenike"
#. module: hr
#: field:hr.employee.category,name:0
@ -391,7 +403,7 @@ msgstr ""
#. module: hr
#: help:hr.employee,bank_account_id:0
msgid "Employee bank salary account"
msgstr "Konto za plaću djelatnika"
msgstr "Broj tekućeg računa za isplatu plaće"
#. module: hr
#: field:hr.department,note:0
@ -443,7 +455,7 @@ msgstr "nepoznato"
#. module: hr
#: help:hr.job,no_of_employee:0
msgid "Number of employees with that job."
msgstr ""
msgstr "Broj djelatnika sa tim poslom"
#. module: hr
#: field:hr.employee,ssnid:0
@ -463,7 +475,7 @@ msgstr "Pogreška ! Ne možete kreirati rekurzivnu hijerarhiju djelatnika."
#. module: hr
#: model:ir.actions.act_window,name:hr.action2
msgid "Subordonate Hierarchy"
msgstr ""
msgstr "Podređena hijerarhija"
#. module: hr
#: model:ir.actions.act_window,help:hr.view_department_form_installer
@ -472,11 +484,14 @@ msgid ""
"employees by departments: expenses and timesheet validation, leaves "
"management, recruitments, etc."
msgstr ""
"Struktura vaših odjela se koristi za upravljanje svim dokumentima u vezi s "
"zaposlenicim po odjelima: troškovi, evidencija o radnom vremenu, upravljanje "
"dopustima, upravljanje zapošljavanjem itd."
#. module: hr
#: field:hr.employee,bank_account_id:0
msgid "Bank Account Number"
msgstr ""
msgstr "Broj bankovnog računa"
#. module: hr
#: view:hr.department:0
@ -495,7 +510,7 @@ msgstr ""
#. module: hr
#: model:ir.ui.menu,name:hr.menu_hr_dashboard
msgid "Dashboard"
msgstr ""
msgstr "Nadzorna ploča"
#. module: hr
#: selection:hr.job,state:0
@ -511,7 +526,7 @@ msgstr "Ne možete imati dva korisnika sa istim korisničkim imenom !"
#: view:hr.job:0
#: field:hr.job,state:0
msgid "State"
msgstr "Stanje"
msgstr "Status"
#. module: hr
#: field:hr.employee,marital:0
@ -546,7 +561,7 @@ msgstr "Osobni podaci"
#. module: hr
#: field:hr.employee,city:0
msgid "City"
msgstr ""
msgstr "Mjesto"
#. module: hr
#: field:hr.employee,passport_id:0
@ -597,12 +612,12 @@ msgstr "Odjel"
#. module: hr
#: field:hr.employee,country_id:0
msgid "Nationality"
msgstr "Narodnost"
msgstr "Nacionalnost"
#. module: hr
#: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config
msgid "Leaves"
msgstr ""
msgstr "Dopusti"
#. module: hr
#: view:board.board:0
@ -612,7 +627,7 @@ msgstr "Ploča upravitelja HR"
#. module: hr
#: field:hr.employee,resource_id:0
msgid "Resource"
msgstr "Sredstva"
msgstr "Resurs"
#. module: hr
#: field:hr.department,complete_name:0
@ -678,7 +693,7 @@ msgstr "Poslovne pozicije"
#. module: hr
#: field:hr.employee,otherid:0
msgid "Other Id"
msgstr ""
msgstr "Drugi id"
#. module: hr
#: view:hr.employee:0
@ -689,12 +704,12 @@ msgstr "Trener"
#. module: hr
#: sql_constraint:hr.job:0
msgid "The name of the job position must be unique per company!"
msgstr ""
msgstr "Naziv radnog mjesta mora biti jedinstven po tvrtki"
#. module: hr
#: view:hr.job:0
msgid "My Departments Jobs"
msgstr ""
msgstr "Poslovi u mom odjelu"
#. module: hr
#: field:hr.department,manager_id:0
@ -706,7 +721,7 @@ msgstr "Voditelj"
#. module: hr
#: selection:hr.employee,marital:0
msgid "Widower"
msgstr "Udovac-ica"
msgstr "Udovac(ica)"
#. module: hr
#: field:hr.employee,child_ids:0
@ -716,7 +731,7 @@ msgstr "Podređeni djelatnici"
#. module: hr
#: field:hr.job,no_of_employee:0
msgid "Number of Employees"
msgstr ""
msgstr "Broj djelatnika"
#~ msgid ""
#~ "The Object name must start with x_ and not contain any special character !"

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:54+0000\n"
"PO-Revision-Date: 2011-01-13 13:22+0000\n"
"PO-Revision-Date: 2012-01-23 10:08+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-24 05:54+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: hr
#: model:process.node,name:hr.process_node_openerpuser0
@ -58,7 +58,7 @@ msgstr "分组..."
#. module: hr
#: model:ir.actions.act_window,name:hr.view_department_form_installer
msgid "Create Your Departments"
msgstr ""
msgstr "创建您的部门"
#. module: hr
#: model:ir.actions.act_window,help:hr.action_hr_job
@ -110,7 +110,7 @@ msgstr "招聘人数"
#. module: hr
#: model:ir.actions.todo.category,name:hr.category_hr_management_config
msgid "HR Management"
msgstr ""
msgstr "人力资源管理"
#. module: hr
#: help:hr.employee,partner_id:0
@ -160,7 +160,7 @@ msgstr "您公司的部门结构用于管理所有需要按部门分类的员工
#. module: hr
#: field:hr.employee,color:0
msgid "Color Index"
msgstr ""
msgstr "颜色索引"
#. module: hr
#: model:process.transition,note:hr.process_transition_employeeuser0
@ -188,12 +188,12 @@ msgstr "女性"
#. module: hr
#: help:hr.job,expected_employees:0
msgid "Required number of employees in total for that job."
msgstr ""
msgstr "该职位所需的总员工数"
#. module: hr
#: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_new_config
msgid "Attendance"
msgstr ""
msgstr "考勤"
#. module: hr
#: view:hr.employee:0
@ -351,7 +351,7 @@ msgstr "hr.department"
#. module: hr
#: model:ir.actions.act_window,name:hr.action_create_hr_employee_installer
msgid "Create your Employees"
msgstr ""
msgstr "创建您的员工信息"
#. module: hr
#: field:hr.employee.category,name:0
@ -433,7 +433,7 @@ msgstr "未知的"
#. module: hr
#: help:hr.job,no_of_employee:0
msgid "Number of employees with that job."
msgstr ""
msgstr "该职位员工数"
#. module: hr
#: field:hr.employee,ssnid:0
@ -483,7 +483,7 @@ msgstr "员工信息表单里有多种不同的信息如联系信息。"
#. module: hr
#: model:ir.ui.menu,name:hr.menu_hr_dashboard
msgid "Dashboard"
msgstr ""
msgstr "仪表盘"
#. module: hr
#: selection:hr.job,state:0
@ -534,7 +534,7 @@ msgstr "个人信息"
#. module: hr
#: field:hr.employee,city:0
msgid "City"
msgstr ""
msgstr "城市"
#. module: hr
#: field:hr.employee,passport_id:0
@ -544,7 +544,7 @@ msgstr "护照号"
#. module: hr
#: field:hr.employee,mobile_phone:0
msgid "Work Mobile"
msgstr ""
msgstr "办公手机"
#. module: hr
#: view:hr.employee.category:0
@ -666,7 +666,7 @@ msgstr "职位"
#. module: hr
#: field:hr.employee,otherid:0
msgid "Other Id"
msgstr ""
msgstr "其它证件号"
#. module: hr
#: view:hr.employee:0
@ -677,12 +677,12 @@ msgstr "师傅"
#. module: hr
#: sql_constraint:hr.job:0
msgid "The name of the job position must be unique per company!"
msgstr ""
msgstr "每个公司里的任一职位名称都必须唯一"
#. module: hr
#: view:hr.job:0
msgid "My Departments Jobs"
msgstr ""
msgstr "我的部门职位"
#. module: hr
#: field:hr.department,manager_id:0
@ -704,7 +704,7 @@ msgstr "下属"
#. module: hr
#: field:hr.job,no_of_employee:0
msgid "Number of Employees"
msgstr ""
msgstr "员工数"
#~ msgid "Group name"
#~ msgstr "组名"

View File

@ -64,18 +64,22 @@ class hr_attendance(osv.osv):
}
def _altern_si_so(self, cr, uid, ids, context=None):
for id in ids:
sql = '''
SELECT action, name
FROM hr_attendance AS att
WHERE employee_id = (SELECT employee_id FROM hr_attendance WHERE id=%s)
AND action IN ('sign_in','sign_out')
AND name <= (SELECT name FROM hr_attendance WHERE id=%s)
ORDER BY name DESC
LIMIT 2 '''
cr.execute(sql,(id,id))
atts = cr.fetchall()
if not ((len(atts)==1 and atts[0][0] == 'sign_in') or (len(atts)==2 and atts[0][0] != atts[1][0] and atts[0][1] != atts[1][1])):
""" Alternance sign_in/sign_out check.
Previous (if exists) must be of opposite action.
Next (if exists) must be of opposite action.
"""
for att in self.browse(cr, uid, ids, context=context):
# search and browse for first previous and first next records
prev_att_ids = self.search(cr, uid, [('employee_id', '=', att.employee_id.id), ('name', '<', att.name), ('action', 'in', ('sign_in', 'sign_out'))], limit=1, order='name DESC')
next_add_ids = self.search(cr, uid, [('employee_id', '=', att.employee_id.id), ('name', '>', att.name), ('action', 'in', ('sign_in', 'sign_out'))], limit=1, order='name ASC')
prev_atts = self.browse(cr, uid, prev_att_ids, context=context)
next_atts = self.browse(cr, uid, next_add_ids, context=context)
# check for alternance, return False if at least one condition is not satisfied
if prev_atts and prev_atts[0].action == att.action: # previous exists and is same action
return False
if next_atts and next_atts[0].action == att.action: # next exists and is same action
return False
if (not prev_atts) and (not next_atts) and att.action != 'sign_in': # first attendance must be sign_in
return False
return True

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-09-09 07:20+0000\n"
"Last-Translator: Angel Spy <melissadilara@yahoo.com>\n"
"PO-Revision-Date: 2012-01-25 00:14+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:08+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: hr_attendance
#: model:ir.ui.menu,name:hr_attendance.menu_hr_time_tracking
@ -266,7 +266,7 @@ msgstr "Ay"
#. module: hr_attendance
#: field:hr.action.reason,action_type:0
msgid "Action Type"
msgstr ""
msgstr "Eylem Türü"
#. module: hr_attendance
#: report:report.hr.timesheet.attendance.error:0

View File

@ -28,4 +28,62 @@
-
!assert {model: hr.employee, id: hr.employee_al, severity: error, string: Employee should be in absent state}:
- state == 'absent'
-
In order to check that first attendance must be Sign In.
-
!python {model: hr.attendance}: |
import time
try:
self.create(cr, uid, {'employee_id': ref('hr.employee_niv'), 'name': time.strftime('%Y-%m-%d 09:59:25'), 'action': 'sign_out'}, None)
except Exception, e:
assert e[0]=='ValidateError', e
-
First of all, Employee Sign's In.
-
!record {model: hr.attendance, id: hr_attendance_0}:
employee_id: hr.employee_niv
name: !eval time.strftime('%Y-%m-%d 09:59:25')
action: 'sign_in'
-
Now Employee is going to Sign In prior to First Sign In.
-
!python {model: hr.attendance}: |
import time
try:
self.create(cr, uid, {'employee_id': ref('hr.employee_niv'), 'name': time.strftime('%Y-%m-%d 08:59:25'), 'action': 'sign_in'}, None)
except Exception, e:
assert e[0]=='ValidateError', e
-
After that Employee is going to Sign In after First Sign In.
-
!python {model: hr.attendance}: |
import time
try:
self.create(cr, uid, {'employee_id': ref('hr.employee_niv'), 'name': time.strftime('%Y-%m-%d 10:59:25'), 'action': 'sign_in'}, None)
except Exception, e:
assert e[0]=='ValidateError', e
-
After two hours, Employee Sign's Out.
-
!record {model: hr.attendance, id: hr_attendance_1}:
employee_id: hr.employee_niv
name: !eval time.strftime('%Y-%m-%d 11:59:25')
action: 'sign_out'
-
Now Employee is going to Sign Out prior to First Sign Out.
-
!python {model: hr.attendance}: |
import time
try:
self.create(cr, uid, {'employee_id': ref('hr.employee_niv'), 'name': time.strftime('%Y-%m-%d 10:59:25'), 'action': 'sign_out'}, None)
except Exception, e:
assert e[0]=='ValidateError', e
-
After that Employee is going to Sign Out After First Sign Out.
-
!python {model: hr.attendance}: |
import time
try:
self.create(cr, uid, {'employee_id': ref('hr.employee_niv'), 'name': time.strftime('%Y-%m-%d 12:59:25'), 'action': 'sign_out'}, None)
except Exception, e:
assert e[0]=='ValidateError', e

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 07:07+0000\n"
"Last-Translator: ryanlin <Unknown>\n"
"PO-Revision-Date: 2012-01-23 10:05+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:59+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: hr_contract
#: field:hr.contract,wage:0
@ -24,7 +24,7 @@ msgstr "工资"
#. module: hr_contract
#: view:hr.contract:0
msgid "Information"
msgstr ""
msgstr "信息"
#. module: hr_contract
#: view:hr.contract:0
@ -86,7 +86,7 @@ msgstr "搜索合同"
#. module: hr_contract
#: view:hr.contract:0
msgid "Contracts in progress"
msgstr ""
msgstr "合同执行情况"
#. module: hr_contract
#: field:hr.employee,vehicle_distance:0
@ -110,7 +110,7 @@ msgstr "个人信息"
#. module: hr_contract
#: view:hr.contract:0
msgid "Contracts whose end date already passed"
msgstr ""
msgstr "已过期合同"
#. module: hr_contract
#: help:hr.employee,contract_id:0
@ -162,7 +162,7 @@ msgstr "结束日期"
#. module: hr_contract
#: help:hr.contract,wage:0
msgid "Basic Salary of the employee"
msgstr ""
msgstr "该员工基本工资"
#. module: hr_contract
#: field:hr.contract,name:0
@ -183,7 +183,7 @@ msgstr "备注"
#. module: hr_contract
#: field:hr.contract,permit_no:0
msgid "Work Permit No"
msgstr ""
msgstr "工作证编号"
#. module: hr_contract
#: view:hr.contract:0
@ -216,7 +216,7 @@ msgstr "职务信息"
#. module: hr_contract
#: field:hr.contract,visa_expire:0
msgid "Visa Expire Date"
msgstr ""
msgstr "签证到期日期"
#. module: hr_contract
#: field:hr.contract,job_id:0
@ -241,7 +241,7 @@ msgstr "错误!合同开始日期必须小于结束日期。"
#. module: hr_contract
#: field:hr.contract,visa_no:0
msgid "Visa No"
msgstr ""
msgstr "签证号"
#. module: hr_contract
#: field:hr.employee,place_of_birth:0

View File

@ -0,0 +1,296 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 13:36+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: hr_payroll_account
#: field:hr.payslip,move_id:0
msgid "Accounting Entry"
msgstr "Accounting Entry"
#. module: hr_payroll_account
#: field:hr.salary.rule,account_tax_id:0
msgid "Tax Code"
msgstr "Tax Code"
#. module: hr_payroll_account
#: field:hr.payslip,journal_id:0
#: field:hr.payslip.run,journal_id:0
msgid "Expense Journal"
msgstr "Expense Journal"
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:157
#: code:addons/hr_payroll_account/hr_payroll_account.py:173
#, python-format
msgid "Adjustment Entry"
msgstr "Adjustment Entry"
#. module: hr_payroll_account
#: field:hr.contract,analytic_account_id:0
#: field:hr.salary.rule,analytic_account_id:0
msgid "Analytic Account"
msgstr "Analytic Account"
#. module: hr_payroll_account
#: model:ir.model,name:hr_payroll_account.model_hr_salary_rule
msgid "hr.salary.rule"
msgstr "hr.salary.rule"
#. module: hr_payroll_account
#: model:ir.model,name:hr_payroll_account.model_hr_payslip_run
msgid "Payslip Batches"
msgstr "Payslip Batches"
#. module: hr_payroll_account
#: field:hr.contract,journal_id:0
msgid "Salary Journal"
msgstr "Salary Journal"
#. module: hr_payroll_account
#: model:ir.model,name:hr_payroll_account.model_hr_payslip
msgid "Pay Slip"
msgstr "Pay Slip"
#. module: hr_payroll_account
#: constraint:hr.payslip:0
msgid "Payslip 'Date From' must be before 'Date To'."
msgstr "Payslip 'Date From' must be before 'Date To'."
#. module: hr_payroll_account
#: help:hr.payslip,period_id:0
msgid "Keep empty to use the period of the validation(Payslip) date."
msgstr "Keep empty to use the period of the validation(Payslip) date."
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:171
#, python-format
msgid ""
"The Expense Journal \"%s\" has not properly configured the Debit Account!"
msgstr ""
"The Expense Journal \"%s\" has not properly configured the Debit Account!"
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:155
#, python-format
msgid ""
"The Expense Journal \"%s\" has not properly configured the Credit Account!"
msgstr ""
"The Expense Journal \"%s\" has not properly configured the Credit Account!"
#. module: hr_payroll_account
#: field:hr.salary.rule,account_debit:0
msgid "Debit Account"
msgstr "Debit Account"
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:102
#, python-format
msgid "Payslip of %s"
msgstr "Payslip of %s"
#. module: hr_payroll_account
#: model:ir.model,name:hr_payroll_account.model_hr_contract
msgid "Contract"
msgstr "Contract"
#. module: hr_payroll_account
#: constraint:hr.contract:0
msgid "Error! contract start-date must be lower then contract end-date."
msgstr "Error! contract start-date must be lower then contract end-date."
#. module: hr_payroll_account
#: field:hr.payslip,period_id:0
msgid "Force Period"
msgstr "Force Period"
#. module: hr_payroll_account
#: field:hr.salary.rule,account_credit:0
msgid "Credit Account"
msgstr "Credit Account"
#. module: hr_payroll_account
#: model:ir.model,name:hr_payroll_account.model_hr_payslip_employees
msgid "Generate payslips for all selected employees"
msgstr "Generate payslips for all selected employees"
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:155
#: code:addons/hr_payroll_account/hr_payroll_account.py:171
#, python-format
msgid "Configuration Error!"
msgstr "Configuration Error!"
#. module: hr_payroll_account
#: view:hr.contract:0
#: view:hr.salary.rule:0
msgid "Accounting"
msgstr "Accounting"
#~ msgid "Other Informations"
#~ msgstr "Other Informations"
#~ msgid "Analytic Account for Salary Analysis"
#~ msgstr "Analytic Account for Salary Analysis"
#~ msgid "Period"
#~ msgstr "Period"
#~ msgid "Employee"
#~ msgstr "Employee"
#~ msgid "Bank Journal"
#~ msgstr "Bank Journal"
#~ msgid "Contribution Register Line"
#~ msgstr "Contribution Register Line"
#~ msgid "Contribution Register"
#~ msgstr "Contribution Register"
#~ msgid "Accounting Lines"
#~ msgstr "Accounting Lines"
#~ msgid "Expense account when Salary Expense will be recorded"
#~ msgstr "Expense account when Salary Expense will be recorded"
#~ msgid "Accounting Informations"
#~ msgstr "Accounting Informations"
#~ msgid "Description"
#~ msgstr "Description"
#~ msgid "Account Move Link to Pay Slip"
#~ msgstr "Account Move Link to Pay Slip"
#~ msgid "Salary Account"
#~ msgstr "Salary Account"
#~ msgid "Payroll Register"
#~ msgstr "Payroll Register"
#~ msgid "Human Resource Payroll Accounting"
#~ msgstr "Human Resource Payroll Accounting"
#, python-format
#~ msgid "Please Confirm all Expense Invoice appear for Reimbursement"
#~ msgstr "Please Confirm all Expense Invoice appear for Reimbursement"
#~ msgid "Bank Account"
#~ msgstr "Bank Account"
#~ msgid "Payment Lines"
#~ msgstr "Payment Lines"
#, python-format
#~ msgid "Please define fiscal year for perticular contract"
#~ msgstr "Please define fiscal year for perticular contract"
#~ msgid "Account Lines"
#~ msgstr "Account Lines"
#~ msgid "Name"
#~ msgstr "Name"
#~ msgid "Payslip Line"
#~ msgstr "Payslip Line"
#~ msgid "Error ! You cannot create recursive Hierarchy of Employees."
#~ msgstr "Error ! You cannot create recursive Hierarchy of Employees."
#~ msgid ""
#~ "Generic Payroll system Integrated with Accountings\n"
#~ " * Expense Encoding\n"
#~ " * Payment Encoding\n"
#~ " * Company Contribution Management\n"
#~ " "
#~ msgstr ""
#~ "Generic Payroll system Integrated with Accountings\n"
#~ " * Expense Encoding\n"
#~ " * Payment Encoding\n"
#~ " * Company Contribution Management\n"
#~ " "
#~ msgid "Account"
#~ msgstr "Account"
#, python-format
#~ msgid "Warning !"
#~ msgstr "Warning !"
#~ msgid "Accounting vouchers"
#~ msgstr "Accounting vouchers"
#~ msgid "Accounting Vouchers"
#~ msgstr "Accounting Vouchers"
#~ msgid "General Account"
#~ msgstr "General Account"
#~ msgid "Expense Entries"
#~ msgstr "Expense Entries"
#~ msgid "Employee Account"
#~ msgstr "Employee Account"
#~ msgid "Total By Employee"
#~ msgstr "Total By Employee"
#~ msgid "Bank Advice Note"
#~ msgstr "Bank Advice Note"
#~ msgid ""
#~ "Error ! You cannot select a department for which the employee is the manager."
#~ msgstr ""
#~ "Error ! You cannot select a department for which the employee is the manager."
#, python-format
#~ msgid "Please Configure Partners Receivable Account!!"
#~ msgstr "Please Configure Partners Receivable Account!!"
#~ msgid "Employee Payable Account"
#~ msgstr "Employee Payable Account"
#~ msgid "Sequence"
#~ msgstr "Sequence"
#~ msgid "Leave Type"
#~ msgstr "Leave Type"
#~ msgid "Total By Company"
#~ msgstr "Total By Company"
#~ msgid "Salary Structure"
#~ msgstr "Salary Structure"
#~ msgid "Year"
#~ msgstr "Year"
#, python-format
#~ msgid "Period is not defined for slip date %s"
#~ msgstr "Period is not defined for slip date %s"
#, python-format
#~ msgid "Fiscal Year is not defined for slip date %s"
#~ msgstr "Fiscal Year is not defined for slip date %s"
#~ msgid "Accounting Details"
#~ msgstr "Accounting Details"
#, python-format
#~ msgid "Please Configure Partners Payable Account!!"
#~ msgstr "Please Configure Partners Payable Account!!"

File diff suppressed because it is too large Load Diff

755
addons/idea/i18n/en_GB.po Normal file
View File

@ -0,0 +1,755 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:27+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: idea
#: help:idea.category,visibility:0
msgid "If True creator of the idea will be visible to others"
msgstr "If True creator of the idea will be visible to others"
#. module: idea
#: view:idea.idea:0
msgid "By States"
msgstr "By States"
#. module: idea
#: model:ir.actions.act_window,name:idea.action_idea_select
msgid "Idea select"
msgstr "Idea select"
#. module: idea
#: view:idea.idea:0
#: view:idea.vote:0
#: model:ir.ui.menu,name:idea.menu_idea_vote
msgid "Votes"
msgstr "Votes"
#. module: idea
#: view:idea.idea:0
#: field:idea.idea,comment_ids:0
msgid "Comments"
msgstr "Comments"
#. module: idea
#: view:idea.idea:0
msgid "Submit Vote"
msgstr "Submit Vote"
#. module: idea
#: model:ir.actions.act_window,name:idea.action_report_vote_all
#: model:ir.ui.menu,name:idea.menu_report_vote_all
msgid "Ideas Analysis"
msgstr "Ideas Analysis"
#. module: idea
#: view:idea.category:0
#: view:idea.idea:0
#: view:idea.vote:0
#: view:report.vote:0
msgid "Group By..."
msgstr "Group By..."
#. module: idea
#: selection:report.vote,month:0
msgid "March"
msgstr "March"
#. module: idea
#: view:idea.idea:0
msgid "Accepted Ideas"
msgstr "Accepted Ideas"
#. module: idea
#: code:addons/idea/wizard/idea_post_vote.py:94
#, python-format
msgid "Idea must be in 'Open' state before vote for that idea."
msgstr "Idea must be in 'Open' state before vote for that idea."
#. module: idea
#: view:report.vote:0
msgid "Open Date"
msgstr "Open Date"
#. module: idea
#: view:report.vote:0
msgid "Idea Vote created in curren year"
msgstr "Idea Vote created in current year"
#. module: idea
#: view:report.vote:0
#: field:report.vote,day:0
msgid "Day"
msgstr "Day"
#. module: idea
#: view:idea.idea:0
msgid "Refuse"
msgstr "Refuse"
#. module: idea
#: field:idea.idea,count_votes:0
msgid "Count of votes"
msgstr "Count of votes"
#. module: idea
#: model:ir.model,name:idea.model_report_vote
msgid "Idea Vote Statistics"
msgstr "Idea Vote Statistics"
#. module: idea
#: selection:idea.idea,my_vote:0
#: selection:idea.post.vote,vote:0
#: selection:idea.vote,score:0
#: selection:idea.vote.stat,score:0
msgid "Bad"
msgstr "Bad"
#. module: idea
#: selection:report.vote,idea_state:0
msgid "Cancelled"
msgstr "Cancelled"
#. module: idea
#: view:idea.category:0
msgid "Category of ideas"
msgstr "Category of ideas"
#. module: idea
#: code:addons/idea/idea.py:274
#: code:addons/idea/wizard/idea_post_vote.py:91
#: code:addons/idea/wizard/idea_post_vote.py:94
#, python-format
msgid "Warning !"
msgstr "Warning !"
#. module: idea
#: view:idea.idea:0
msgid "Your comment"
msgstr "Your comment"
#. module: idea
#: model:ir.model,name:idea.model_idea_vote
msgid "Idea Vote"
msgstr "Idea Vote"
#. module: idea
#: field:idea.category,parent_id:0
msgid "Parent Categories"
msgstr "Parent Categories"
#. module: idea
#: selection:idea.idea,my_vote:0
#: selection:idea.post.vote,vote:0
#: selection:idea.vote,score:0
#: selection:idea.vote.stat,score:0
msgid "Very Bad"
msgstr "Very Bad"
#. module: idea
#: view:idea.vote:0
msgid "Ideas vote"
msgstr "Ideas vote"
#. module: idea
#: view:report.vote:0
#: field:report.vote,nbr:0
msgid "# of Lines"
msgstr "# of Lines"
#. module: idea
#: code:addons/idea/wizard/idea_post_vote.py:91
#, python-format
msgid "You can not give Vote for this idea more than %s times"
msgstr "You can not give Vote for this idea more than %s times"
#. module: idea
#: view:idea.category:0
msgid "Ideas Categories"
msgstr "Ideas Categories"
#. module: idea
#: help:idea.idea,description:0
msgid "Content of the idea"
msgstr "Content of the idea"
#. module: idea
#: model:ir.model,name:idea.model_idea_category
msgid "Idea Category"
msgstr "Idea Category"
#. module: idea
#: view:idea.idea:0
#: field:idea.idea,stat_vote_ids:0
msgid "Statistics"
msgstr "Statistics"
#. module: idea
#: selection:idea.idea,my_vote:0
#: selection:idea.post.vote,vote:0
#: selection:idea.vote,score:0
#: selection:idea.vote.stat,score:0
msgid "Not Voted"
msgstr "Not Voted"
#. module: idea
#: sql_constraint:idea.category:0
msgid "The name of the category must be unique"
msgstr "The name of the category must be unique"
#. module: idea
#: model:ir.model,name:idea.model_idea_select
msgid "select idea"
msgstr "select idea"
#. module: idea
#: view:idea.stat:0
msgid "stat"
msgstr "stat"
#. module: idea
#: field:idea.category,child_ids:0
msgid "Child Categories"
msgstr "Child Categories"
#. module: idea
#: view:idea.select:0
msgid "Next"
msgstr "Next"
#. module: idea
#: view:idea.idea:0
#: field:idea.idea,state:0
#: view:report.vote:0
#: field:report.vote,idea_state:0
msgid "State"
msgstr "State"
#. module: idea
#: view:idea.idea:0
#: selection:idea.idea,state:0
msgid "New"
msgstr "New"
#. module: idea
#: selection:idea.idea,my_vote:0
#: selection:idea.post.vote,vote:0
#: selection:idea.vote,score:0
#: selection:idea.vote.stat,score:0
msgid "Good"
msgstr "Good"
#. module: idea
#: help:idea.idea,open_date:0
msgid "Date when an idea opened"
msgstr "Date when an idea opened"
#. module: idea
#: view:idea.idea:0
msgid "Idea Detail"
msgstr "Idea Detail"
#. module: idea
#: help:idea.idea,state:0
msgid ""
"When the Idea is created the state is 'Draft'.\n"
" It is opened by the user, the state is 'Opened'. \n"
"If the idea is accepted, the state is 'Accepted'."
msgstr ""
"When the Idea is created the state is 'Draft'.\n"
" It is opened by the user, the state is 'Opened'. \n"
"If the idea is accepted, the state is 'Accepted'."
#. module: idea
#: view:idea.idea:0
msgid "New Ideas"
msgstr "New Ideas"
#. module: idea
#: view:report.vote:0
msgid "Idea Vote created last month"
msgstr "Idea Vote created last month"
#. module: idea
#: field:idea.category,visibility:0
#: field:idea.idea,visibility:0
msgid "Open Idea?"
msgstr "Open Idea?"
#. module: idea
#: view:report.vote:0
msgid "Idea Vote created in current month"
msgstr "Idea Vote created in current month"
#. module: idea
#: selection:report.vote,month:0
msgid "July"
msgstr "July"
#. module: idea
#: view:idea.idea:0
#: selection:idea.idea,state:0
#: view:report.vote:0
#: selection:report.vote,idea_state:0
msgid "Accepted"
msgstr "Accepted"
#. module: idea
#: model:ir.actions.act_window,name:idea.action_idea_category
#: model:ir.ui.menu,name:idea.menu_idea_category
msgid "Categories"
msgstr "Categories"
#. module: idea
#: view:idea.category:0
msgid "Parent Category"
msgstr "Parent Category"
#. module: idea
#: field:idea.idea,open_date:0
msgid "Open date"
msgstr "Open date"
#. module: idea
#: field:idea.idea,vote_ids:0
#: model:ir.actions.act_window,name:idea.action_idea_post_vote
msgid "Vote"
msgstr "Vote"
#. module: idea
#: model:ir.actions.act_window,name:idea.action_idea_vote_stat
#: model:ir.ui.menu,name:idea.menu_idea_vote_stat
msgid "Vote Statistics"
msgstr "Vote Statistics"
#. module: idea
#: field:idea.idea,vote_limit:0
msgid "Maximum Vote per User"
msgstr "Maximum Vote per User"
#. module: idea
#: view:idea.vote.stat:0
msgid "vote_stat of ideas"
msgstr "vote_stat of ideas"
#. module: idea
#: field:idea.comment,content:0
#: view:idea.idea:0
#: view:idea.post.vote:0
#: field:idea.vote,comment:0
#: model:ir.model,name:idea.model_idea_comment
msgid "Comment"
msgstr "Comment"
#. module: idea
#: selection:report.vote,month:0
msgid "September"
msgstr "September"
#. module: idea
#: selection:report.vote,month:0
msgid "December"
msgstr "December"
#. module: idea
#: view:report.vote:0
#: field:report.vote,month:0
msgid "Month"
msgstr "Month"
#. module: idea
#: view:idea.idea:0
#: model:ir.actions.act_window,name:idea.action_idea_idea_categ_open
#: model:ir.actions.act_window,name:idea.action_idea_idea_open
msgid "Open Ideas"
msgstr "Open Ideas"
#. module: idea
#: view:idea.category:0
#: field:idea.category,name:0
#: view:idea.idea:0
#: field:idea.idea,category_id:0
#: view:report.vote:0
#: field:report.vote,category_id:0
msgid "Category"
msgstr "Category"
#. module: idea
#: selection:idea.idea,my_vote:0
#: selection:idea.post.vote,vote:0
#: selection:idea.vote,score:0
#: selection:idea.vote.stat,score:0
msgid "Very Good"
msgstr "Very Good"
#. module: idea
#: selection:idea.idea,state:0
#: selection:report.vote,idea_state:0
msgid "Opened"
msgstr "Opened"
#. module: idea
#: model:ir.actions.act_window,name:idea.action_idea_vote
msgid "Idea's Votes"
msgstr "Idea's Votes"
#. module: idea
#: view:idea.idea:0
msgid "By Idea Category"
msgstr "By Idea Category"
#. module: idea
#: view:idea.idea:0
msgid "New Idea"
msgstr "New Idea"
#. module: idea
#: model:ir.actions.act_window,name:idea.action_idea_category_tree
#: model:ir.ui.menu,name:idea.menu_idea_category_tree
msgid "Ideas by Categories"
msgstr "Ideas by Categories"
#. module: idea
#: selection:report.vote,idea_state:0
msgid "Draft"
msgstr "Draft"
#. module: idea
#: selection:report.vote,month:0
msgid "August"
msgstr "August"
#. module: idea
#: selection:idea.idea,my_vote:0
#: selection:idea.post.vote,vote:0
#: selection:idea.vote,score:0
#: selection:idea.vote.stat,score:0
msgid "Normal"
msgstr "Normal"
#. module: idea
#: selection:report.vote,month:0
msgid "June"
msgstr "June"
#. module: idea
#: field:report.vote,creater_id:0
#: field:report.vote,user_id:0
msgid "User Name"
msgstr "User Name"
#. module: idea
#: model:ir.model,name:idea.model_idea_vote_stat
msgid "Idea Votes Statistics"
msgstr "Idea Votes Statistics"
#. module: idea
#: field:idea.comment,user_id:0
#: view:idea.vote:0
#: field:idea.vote,user_id:0
#: view:report.vote:0
msgid "User"
msgstr "User"
#. module: idea
#: field:idea.vote,date:0
msgid "Date"
msgstr "Date"
#. module: idea
#: selection:report.vote,month:0
msgid "November"
msgstr "November"
#. module: idea
#: field:idea.idea,my_vote:0
msgid "My Vote"
msgstr "My Vote"
#. module: idea
#: selection:report.vote,month:0
msgid "October"
msgstr "October"
#. module: idea
#: field:idea.comment,create_date:0
#: field:idea.idea,created_date:0
msgid "Creation date"
msgstr "Creation date"
#. module: idea
#: selection:report.vote,month:0
msgid "January"
msgstr "January"
#. module: idea
#: model:ir.model,name:idea.model_idea_idea
msgid "idea.idea"
msgstr "idea.idea"
#. module: idea
#: field:idea.category,summary:0
msgid "Summary"
msgstr "Summary"
#. module: idea
#: field:idea.idea,name:0
msgid "Idea Summary"
msgstr "Idea Summary"
#. module: idea
#: view:idea.post.vote:0
msgid "Post"
msgstr "Post"
#. module: idea
#: view:idea.idea:0
msgid "History"
msgstr "History"
#. module: idea
#: field:report.vote,date:0
msgid "Date Order"
msgstr "Date Order"
#. module: idea
#: view:idea.idea:0
#: field:idea.idea,user_id:0
#: view:report.vote:0
msgid "Creator"
msgstr "Creator"
#. module: idea
#: view:idea.post.vote:0
#: model:ir.ui.menu,name:idea.menu_give_vote
msgid "Give Vote"
msgstr "Give Vote"
#. module: idea
#: help:idea.idea,vote_limit:0
msgid "Set to one if you require only one Vote per user"
msgstr "Set to one if you require only one Vote per user"
#. module: idea
#: view:idea.idea:0
msgid "By Creators"
msgstr "By Creators"
#. module: idea
#: view:idea.post.vote:0
msgid "Cancel"
msgstr "Cancel"
#. module: idea
#: view:idea.select:0
msgid "Close"
msgstr "Close"
#. module: idea
#: view:idea.idea:0
msgid "Open"
msgstr "Open"
#. module: idea
#: view:idea.idea:0
#: view:report.vote:0
msgid "In Progress"
msgstr "In Progress"
#. module: idea
#: view:report.vote:0
msgid "Idea Vote Analysis"
msgstr "Idea Vote Analysis"
#. module: idea
#: view:idea.idea:0
#: model:ir.actions.act_window,name:idea.action_idea_idea
#: model:ir.ui.menu,name:idea.menu_idea_idea
#: model:ir.ui.menu,name:idea.menu_ideas
#: model:ir.ui.menu,name:idea.menu_ideas1
msgid "Ideas"
msgstr "Ideas"
#. module: idea
#: model:ir.model,name:idea.model_idea_post_vote
msgid "Post vote"
msgstr "Post vote"
#. module: idea
#: field:idea.vote.stat,score:0
#: field:report.vote,score:0
msgid "Score"
msgstr "Score"
#. module: idea
#: view:idea.idea:0
msgid "Votes Statistics"
msgstr "Votes Statistics"
#. module: idea
#: view:idea.vote:0
msgid "Comments:"
msgstr "Comments:"
#. module: idea
#: view:idea.category:0
#: field:idea.idea,description:0
#: field:idea.post.vote,note:0
msgid "Description"
msgstr "Description"
#. module: idea
#: selection:report.vote,month:0
msgid "May"
msgstr "May"
#. module: idea
#: selection:idea.idea,state:0
#: view:report.vote:0
msgid "Refused"
msgstr "Refused"
#. module: idea
#: code:addons/idea/idea.py:274
#, python-format
msgid "Draft/Accepted/Cancelled ideas Could not be voted"
msgstr "Draft/Accepted/Cancelled ideas Could not be voted"
#. module: idea
#: view:idea.vote:0
msgid "Vote date"
msgstr "Vote date"
#. module: idea
#: selection:report.vote,month:0
msgid "February"
msgstr "February"
#. module: idea
#: field:idea.category,complete_name:0
msgid "Name"
msgstr "Name"
#. module: idea
#: field:idea.vote.stat,nbr:0
msgid "Number of Votes"
msgstr "Number of Votes"
#. module: idea
#: view:report.vote:0
msgid "Month-1"
msgstr "Month-1"
#. module: idea
#: selection:report.vote,month:0
msgid "April"
msgstr "April"
#. module: idea
#: field:idea.idea,count_comments:0
msgid "Count of comments"
msgstr "Count of comments"
#. module: idea
#: field:idea.vote,score:0
msgid "Vote Status"
msgstr "Vote Status"
#. module: idea
#: field:idea.idea,vote_avg:0
msgid "Average Score"
msgstr "Average Score"
#. module: idea
#: constraint:idea.category:0
msgid "Error ! You cannot create recursive categories."
msgstr "Error ! You cannot create recursive categories."
#. module: idea
#: field:idea.comment,idea_id:0
#: field:idea.select,idea_id:0
#: view:idea.vote:0
#: field:idea.vote,idea_id:0
#: field:idea.vote.stat,idea_id:0
#: model:ir.ui.menu,name:idea.menu_idea_reporting
#: view:report.vote:0
#: field:report.vote,idea_id:0
msgid "Idea"
msgstr "Idea"
#. module: idea
#: view:idea.idea:0
msgid "Accept"
msgstr "Accept"
#. module: idea
#: field:idea.post.vote,vote:0
msgid "Post Vote"
msgstr "Post Vote"
#. module: idea
#: view:report.vote:0
#: field:report.vote,year:0
msgid "Year"
msgstr "Year"
#. module: idea
#: view:idea.select:0
msgid "Select Idea for Vote"
msgstr "Select Idea for Vote"
#~ msgid " Month-1 "
#~ msgstr " Month-1 "
#~ msgid "Current"
#~ msgstr "Current"
#~ msgid "Idea Manager"
#~ msgstr "Idea Manager"
#~ msgid " Today "
#~ msgstr " Today "
#~ msgid " Year "
#~ msgstr " Year "
#~ msgid ""
#~ "\n"
#~ " This module allows your user to easily and efficiently participate in "
#~ "the innovation of the enterprise.\n"
#~ " It allows everybody to express ideas about different subjects.\n"
#~ " Then, other users can comment on these ideas and vote for particular "
#~ "ideas.\n"
#~ " Each idea has a score based on the different votes.\n"
#~ " The managers can obtain an easy view on best ideas from all the users.\n"
#~ " Once installed, check the menu 'Ideas' in the 'Tools' main menu."
#~ msgstr ""
#~ "\n"
#~ " This module allows your user to easily and efficiently participate in "
#~ "the innovation of the enterprise.\n"
#~ " It allows everybody to express ideas about different subjects.\n"
#~ " Then, other users can comment on these ideas and vote for particular "
#~ "ideas.\n"
#~ " Each idea has a score based on the different votes.\n"
#~ " The managers can obtain an easy view on best ideas from all the users.\n"
#~ " Once installed, check the menu 'Ideas' in the 'Tools' main menu."
#~ msgid "Vots Statistics"
#~ msgstr "Vots Statistics"
#~ msgid " Month "
#~ msgstr " Month "

View File

@ -51,7 +51,6 @@ class google_import(import_framework):
def initialize(self):
google = self.obj.pool.get('google.login')
self.external_id_field = 'Id'
self.gd_client = google.google_login(self.context.get('user'),
self.context.get('password'),
self.context.get('instance'))

View File

@ -0,0 +1,639 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-23 09:56+0000\n"
"PO-Revision-Date: 2012-01-23 17:51+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: l10n_be
#: field:partner.vat.intra,test_xml:0
msgid "Test XML file"
msgstr "Test XML file"
#. module: l10n_be
#: view:partner.vat.list_13:0
msgid "You can remove customers which you do not want in exported xml file"
msgstr ""
#. module: l10n_be
#: view:partner.vat_13:0
msgid ""
"This wizard will create an XML file for VAT details and total invoiced "
"amounts per partner."
msgstr ""
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_tiers_receiv
msgid "Tiers - Recevable"
msgstr ""
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:102
#, python-format
msgid "Wrong Period Code"
msgstr "Wrong Period Code"
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_partner_vat_listing.py:52
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:109
#, python-format
msgid "No partner has a VAT Number asociated with him."
msgstr "No partner has a VAT Number asociated with him."
#. module: l10n_be
#: constraint:res.company:0
msgid "Error! You can not create recursive companies."
msgstr "Error! You can not create recursive companies."
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_tiers
msgid "Tiers"
msgstr ""
#. module: l10n_be
#: field:l1on_be.vat.declaration,period_id:0
msgid "Period"
msgstr "Period"
#. module: l10n_be
#: field:partner.vat.intra,period_ids:0
msgid "Period (s)"
msgstr "Period (s)"
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
#: view:partner.vat.intra:0
msgid "Save the File with '.xml' extension."
msgstr "Save the File with '.xml' extension."
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_charge
msgid "Charge"
msgstr ""
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_partner_vat_listing.py:47
#: code:addons/l10n_be/wizard/l10n_be_partner_vat_listing.py:52
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:105
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:109
#, python-format
msgid "Data Insufficient!"
msgstr "Data Insufficient!"
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
#: view:partner.vat.list_13:0
msgid "Create XML"
msgstr "Create XML"
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_capitaux
msgid "Capital"
msgstr ""
#. module: l10n_be
#: view:partner.vat.list_13:0
msgid "Print"
msgstr ""
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "Save XML"
msgstr "Save XML"
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:219
#, python-format
msgid "Save"
msgstr "Save"
#. module: l10n_be
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
#. module: l10n_be
#: field:l1on_be.vat.declaration,msg:0
#: field:partner.vat.intra,msg:0
#: field:partner.vat.list_13,msg:0
msgid "File created"
msgstr "File created"
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "_Close"
msgstr ""
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_account_vat_declaration.py:131
#, python-format
msgid "Save XML For Vat declaration"
msgstr "Save XML For Vat declaration"
#. module: l10n_be
#: view:partner.vat.list_13:0
msgid "Customers"
msgstr ""
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_tax_in
msgid "Taxes à l'entrée"
msgstr ""
#. module: l10n_be
#: help:l1on_be.vat.declaration,ask_restitution:0
msgid "It indicates whether a resitution is to made or not?"
msgstr "It indicates whether a resitution is to made or not?"
#. module: l10n_be
#: model:ir.actions.act_window,name:l10n_be.action_vat_declaration
msgid "Vat Declaraion"
msgstr "Vat Declaration"
#. module: l10n_be
#: view:partner.vat.intra:0
#: field:partner.vat.intra,no_vat:0
msgid "Partner With No VAT"
msgstr "Partner With No VAT"
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_immo
msgid "Immobilisation"
msgstr ""
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
#: view:partner.vat.intra:0
msgid "Company"
msgstr "Company"
#. module: l10n_be
#: model:ir.model,name:l10n_be.model_partner_vat_13
msgid "partner.vat_13"
msgstr ""
#. module: l10n_be
#: model:ir.ui.menu,name:l10n_be.partner_vat_listing
msgid "Annual Listing Of VAT-Subjected Customers"
msgstr "Annual Listing Of VAT-Subjected Customers"
#. module: l10n_be
#: view:partner.vat.list_13:0
msgid "XML File has been Created."
msgstr "XML File has been Created."
#. module: l10n_be
#: help:l1on_be.vat.declaration,client_nihil:0
msgid ""
"Tick this case only if it concerns only the last statement on the civil or "
"cessation of activity"
msgstr ""
"Tick this case only if it concerns only the last statement on the civil or "
"cessation of activity"
#. module: l10n_be
#: view:partner.vat.list_13:0
msgid "Select Fiscal Year"
msgstr "Select Fiscal Year"
#. module: l10n_be
#: field:l1on_be.vat.declaration,ask_restitution:0
msgid "Ask Restitution"
msgstr "Ask Restitution"
#. module: l10n_be
#: model:ir.model,name:l10n_be.model_partner_vat_intra
#: model:ir.ui.menu,name:l10n_be.l10_be_vat_intra
msgid "Partner VAT Intra"
msgstr "Partner VAT Intra"
#. module: l10n_be
#: model:ir.ui.menu,name:l10n_be.l10_be_vat_declaration
#: view:l1on_be.vat.declaration:0
msgid "Periodical VAT Declaration"
msgstr "Periodical VAT Declaration"
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "Note: "
msgstr "Note: "
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "_Preview"
msgstr ""
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_tiers_payable
msgid "Tiers - Payable"
msgstr ""
#. module: l10n_be
#: field:l1on_be.vat.declaration,tax_code_id:0
#: field:partner.vat.intra,tax_code_id:0
msgid "Tax Code"
msgstr "Tax Code"
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "Periods"
msgstr "Periods"
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_produit
msgid "Produit"
msgstr ""
#. module: l10n_be
#: help:partner.vat.intra,test_xml:0
msgid "Sets the XML output as test file"
msgstr "Sets the XML output as test file"
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_view
msgid "Vue"
msgstr ""
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
msgid "Ok"
msgstr "Ok"
#. module: l10n_be
#: field:l1on_be.vat.declaration,ask_payment:0
msgid "Ask Payment"
msgstr "Ask Payment"
#. module: l10n_be
#: help:partner.vat.intra,no_vat:0
msgid ""
"The Partner whose VAT number is not defined they doesn't include in XML File."
msgstr ""
"The Partner whose VAT number is not defined they doesn't include in XML File."
#. module: l10n_be
#: field:partner.vat_13,limit_amount:0
msgid "Limit Amount"
msgstr "Limit Amount"
#. module: l10n_be
#: model:ir.model,name:l10n_be.model_res_company
msgid "Companies"
msgstr "Companies"
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "Create _XML"
msgstr ""
#. module: l10n_be
#: help:partner.vat.intra,period_ids:0
msgid ""
"Select here the period(s) you want to include in your intracom declaration"
msgstr ""
"Select here the period(s) you want to include in your intracom declaration"
#. module: l10n_be
#: view:partner.vat_13:0
msgid "View Customers"
msgstr ""
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:102
#, python-format
msgid "The period code you entered is not valid."
msgstr "The period code you entered is not valid."
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
msgid "Is Last Declaration"
msgstr "Is Last Declaration"
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_stock
msgid "Stock et Encours"
msgstr ""
#. module: l10n_be
#: field:l1on_be.vat.declaration,client_nihil:0
msgid "Last Declaration of Enterprise"
msgstr "Last Declaration of Enterprise"
#. module: l10n_be
#: help:partner.vat.intra,mand_id:0
msgid ""
"This identifies the representative of the sending company. This is a string "
"of 14 characters"
msgstr ""
"This identifies the representative of the sending company. This is a string "
"of 14 characters"
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_account_vat_declaration.py:75
#: code:addons/l10n_be/wizard/l10n_be_partner_vat_listing.py:150
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:98
#, python-format
msgid "Data Insufficient"
msgstr "Data Insufficient"
#. module: l10n_be
#: model:ir.ui.menu,name:l10n_be.menu_finance_belgian_statement
msgid "Belgium Statements"
msgstr "Belgium Statements"
#. module: l10n_be
#: model:ir.actions.act_window,name:l10n_be.action_vat_intra
msgid "Partner Vat Intra"
msgstr "Partner Vat Intra"
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
msgid "Declare Periodical VAT"
msgstr "Declare Periodical VAT"
#. module: l10n_be
#: model:ir.model,name:l10n_be.model_partner_vat_list_13
msgid "partner.vat.list_13"
msgstr ""
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
msgid "Save xml"
msgstr "Save xml"
#. module: l10n_be
#: field:partner.vat.intra,mand_id:0
msgid "MandataireId"
msgstr "MandataireId"
#. module: l10n_be
#: field:l1on_be.vat.declaration,file_save:0
#: field:partner.vat.intra,file_save:0
#: field:partner.vat.list_13,file_save:0
msgid "Save File"
msgstr "Save File"
#. module: l10n_be
#: help:partner.vat.intra,period_code:0
msgid ""
"This is where you have to set the period code for the intracom declaration "
"using the format: ppyyyy\n"
" PP can stand for a month: from '01' to '12'.\n"
" PP can stand for a trimester: '31','32','33','34'\n"
" The first figure means that it is a trimester,\n"
" The second figure identify the trimester.\n"
" PP can stand for a complete fiscal year: '00'.\n"
" YYYY stands for the year (4 positions).\n"
" "
msgstr ""
"This is where you have to set the period code for the intracom declaration "
"using the format: ppyyyy\n"
" PP can stand for a month: from '01' to '12'.\n"
" PP can stand for a trimester: '31','32','33','34'\n"
" The first figure means that it is a trimester,\n"
" The second figure identify the trimester.\n"
" PP can stand for a complete fiscal year: '00'.\n"
" YYYY stands for the year (4 positions).\n"
" "
#. module: l10n_be
#: field:l1on_be.vat.declaration,name:0
#: field:partner.vat.intra,name:0
#: field:partner.vat.list_13,name:0
msgid "File Name"
msgstr "File Name"
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_tax_out
msgid "Taxes à la sortie"
msgstr ""
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_tax
msgid "Tax"
msgstr ""
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_account_vat_declaration.py:75
#: code:addons/l10n_be/wizard/l10n_be_partner_vat_listing.py:150
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:98
#, python-format
msgid "No VAT Number Associated with Main Company!"
msgstr "No VAT Number Associated with Main Company!"
#. module: l10n_be
#: model:ir.model,name:l10n_be.model_l1on_be_vat_declaration
msgid "Vat Declaration"
msgstr "Vat Declaration"
#. module: l10n_be
#: view:partner.vat.intra:0
#: field:partner.vat.intra,country_ids:0
msgid "European Countries"
msgstr "European Countries"
#. module: l10n_be
#: model:ir.actions.act_window,name:l10n_be.action_partner_vat_listing_13
#: view:partner.vat_13:0
msgid "Partner VAT Listing"
msgstr "Partner VAT Listing"
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "General Information"
msgstr "General Information"
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "Create an XML file for Vat Intra"
msgstr "Create an XML file for Vat Intra"
#. module: l10n_be
#: field:partner.vat.intra,period_code:0
msgid "Period Code"
msgstr "Period Code"
#. module: l10n_be
#: model:account.account.type,name:l10n_be.user_type_financiers
msgid "Financier"
msgstr ""
#. module: l10n_be
#: field:partner.vat_13,year:0
msgid "Year"
msgstr ""
#. module: l10n_be
#: view:partner.vat_13:0
msgid "Cancel"
msgstr "Cancel"
#. module: l10n_be
#: view:l1on_be.vat.declaration:0
#: view:partner.vat.intra:0
#: view:partner.vat.list_13:0
msgid "Close"
msgstr "Close"
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_vat_intra.py:105
#, python-format
msgid "Please select at least one Period."
msgstr "Please select at least one Period."
#. module: l10n_be
#: help:l1on_be.vat.declaration,ask_payment:0
msgid "It indicates whether a payment is to made or not?"
msgstr "It indicates whether a payment is to made or not?"
#. module: l10n_be
#: view:partner.vat.intra:0
msgid "Partner VAT intra"
msgstr "Partner VAT intra"
#. module: l10n_be
#: code:addons/l10n_be/wizard/l10n_be_partner_vat_listing.py:47
#, python-format
msgid "No data for the selected Year."
msgstr ""
#~ msgid "Client Name"
#~ msgstr "Client Name"
#~ msgid "vat.listing.clients"
#~ msgstr "vat.listing.clients"
#~ msgid "partner.vat.list"
#~ msgstr "partner.vat.list"
#~ msgid "VAT listing"
#~ msgstr "VAT listing"
#~ msgid ""
#~ "This wizard will create an XML file for Vat details and total invoiced "
#~ "amounts per partner."
#~ msgstr ""
#~ "This wizard will create an XML file for Vat details and total invoiced "
#~ "amounts per partner."
#~ msgid "Clients"
#~ msgstr "Clients"
#~ msgid "Country"
#~ msgstr "Country"
#~ msgid "VAT"
#~ msgstr "VAT"
#~ msgid "partner.vat"
#~ msgstr "partner.vat"
#~ msgid "Amount"
#~ msgstr "Amount"
#~ msgid "Fiscal Year"
#~ msgstr "Fiscal Year"
#~ msgid "Turnover"
#~ msgstr "Turnover"
#~ msgid ""
#~ "You can remove clients/partners which you do not want in exported xml file"
#~ msgstr ""
#~ "You can remove clients/partners which you do not want in exported xml file"
#~ msgid ""
#~ "You can remove clients/partners which you do not want to show in xml file"
#~ msgstr ""
#~ "You can remove clients/partners which you do not want to show in xml file"
#~ msgid "View Client"
#~ msgstr "View Client"
#~ msgid "Belgium - Plan Comptable Minimum Normalise"
#~ msgstr "Belgium - Plan Comptable Minimum Normalise"
#~ msgid ""
#~ "\n"
#~ " This is the base module to manage the accounting chart for Belgium in "
#~ "OpenERP.\n"
#~ "\n"
#~ " After Installing this module,The Configuration wizard for accounting is "
#~ "launched.\n"
#~ " * We have the account templates which can be helpful to generate Charts "
#~ "of Accounts.\n"
#~ " * On that particular wizard,You will be asked to pass the name of the "
#~ "company,the chart template to follow,the no. of digits to generate the code "
#~ "for your account and Bank account,currency to create Journals.\n"
#~ " Thus,the pure copy of Chart Template is generated.\n"
#~ " * This is the same wizard that runs from Financial "
#~ "Management/Configuration/Financial Accounting/Financial Accounts/Generate "
#~ "Chart of Accounts from a Chart Template.\n"
#~ "\n"
#~ " Wizards provided by this module:\n"
#~ " * Partner VAT Intra: Enlist the partners with their related VAT and "
#~ "invoiced amounts.Prepares an XML file format.\n"
#~ " Path to access : Financial "
#~ "Management/Reporting//Legal Statements/Belgium Statements/Partner VAT "
#~ "Listing\n"
#~ " * Periodical VAT Declaration: Prepares an XML file for Vat Declaration "
#~ "of the Main company of the User currently Logged in.\n"
#~ " Path to access : Financial "
#~ "Management/Reporting/Legal Statements/Belgium Statements/Periodical VAT "
#~ "Declaration\n"
#~ " * Annual Listing Of VAT-Subjected Customers: Prepares an XML file for "
#~ "Vat Declaration of the Main company of the User currently Logged in.Based on "
#~ "Fiscal year\n"
#~ " Path to access : Financial "
#~ "Management/Reporting/Legal Statements/Belgium Statements/Annual Listing Of "
#~ "VAT-Subjected Customers\n"
#~ "\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ " This is the base module to manage the accounting chart for Belgium in "
#~ "OpenERP.\n"
#~ "\n"
#~ " After Installing this module,The Configuration wizard for accounting is "
#~ "launched.\n"
#~ " * We have the account templates which can be helpful to generate Charts "
#~ "of Accounts.\n"
#~ " * On that particular wizard,You will be asked to pass the name of the "
#~ "company,the chart template to follow,the no. of digits to generate the code "
#~ "for your account and Bank account,currency to create Journals.\n"
#~ " Thus,the pure copy of Chart Template is generated.\n"
#~ " * This is the same wizard that runs from Financial "
#~ "Management/Configuration/Financial Accounting/Financial Accounts/Generate "
#~ "Chart of Accounts from a Chart Template.\n"
#~ "\n"
#~ " Wizards provided by this module:\n"
#~ " * Partner VAT Intra: Enlist the partners with their related VAT and "
#~ "invoiced amounts.Prepares an XML file format.\n"
#~ " Path to access : Financial "
#~ "Management/Reporting//Legal Statements/Belgium Statements/Partner VAT "
#~ "Listing\n"
#~ " * Periodical VAT Declaration: Prepares an XML file for Vat Declaration "
#~ "of the Main company of the User currently Logged in.\n"
#~ " Path to access : Financial "
#~ "Management/Reporting/Legal Statements/Belgium Statements/Periodical VAT "
#~ "Declaration\n"
#~ " * Annual Listing Of VAT-Subjected Customers: Prepares an XML file for "
#~ "Vat Declaration of the Main company of the User currently Logged in.Based on "
#~ "Fiscal year\n"
#~ " Path to access : Financial "
#~ "Management/Reporting/Legal Statements/Belgium Statements/Annual Listing Of "
#~ "VAT-Subjected Customers\n"
#~ "\n"
#~ " "

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-23 09:56+0000\n"
"PO-Revision-Date: 2011-08-25 11:59+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:43+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-24 05:55+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: l10n_br
#: field:account.tax,tax_discount:0
@ -23,7 +23,7 @@ msgstr ""
#: field:account.tax.code.template,tax_discount:0
#: field:account.tax.template,tax_discount:0
msgid "Discount this Tax in Prince"
msgstr ""
msgstr "Discount this Tax in Prince"
#. module: l10n_br
#: model:ir.actions.act_window,name:l10n_br.action_l10n_br_cst_form
@ -31,13 +31,13 @@ msgstr ""
#: model:ir.ui.menu,name:l10n_br.menu_action_l10n_br_cst
#: view:l10n_br_account.cst:0
msgid "Tax Situation Code"
msgstr ""
msgstr "Tax Situation Code"
#. module: l10n_br
#: model:ir.model,name:l10n_br.model_account_tax_code
#: field:l10n_br_account.cst,tax_code_id:0
msgid "Tax Code"
msgstr ""
msgstr "Tax Code"
#. module: l10n_br
#: help:account.tax.code,domain:0
@ -46,27 +46,29 @@ msgid ""
"This field is only used if you develop your own module allowing developers "
"to create specific taxes in a custom domain."
msgstr ""
"This field is only used if you develop your own module allowing developers "
"to create specific taxes in a custom domain."
#. module: l10n_br
#: model:account.account.type,name:l10n_br.resultado
msgid "Resultado"
msgstr ""
msgstr "Result"
#. module: l10n_br
#: model:ir.model,name:l10n_br.model_account_tax_template
msgid "account.tax.template"
msgstr ""
msgstr "account.tax.template"
#. module: l10n_br
#: model:account.account.type,name:l10n_br.passivo
msgid "Passivo"
msgstr ""
msgstr "Passive"
#. module: l10n_br
#: field:l10n_br_account.cst,name:0
#: field:l10n_br_account.cst.template,name:0
msgid "Description"
msgstr ""
msgstr "Description"
#. module: l10n_br
#: model:account.account.type,name:l10n_br.despesa
@ -77,13 +79,13 @@ msgstr ""
#: field:account.tax,amount_mva:0
#: field:account.tax.template,amount_mva:0
msgid "MVA Percent"
msgstr ""
msgstr "MVA Percent"
#. module: l10n_br
#: help:account.tax.template,amount_mva:0
#: help:account.tax.template,base_reduction:0
msgid "For taxes of type percentage, enter % ratio between 0-1."
msgstr ""
msgstr "For taxes of type percentage, enter % ratio between 0-1."
#. module: l10n_br
#: field:account.tax,base_reduction:0
@ -94,17 +96,17 @@ msgstr ""
#. module: l10n_br
#: constraint:account.tax.code.template:0
msgid "Error ! You can not create recursive Tax Codes."
msgstr ""
msgstr "Error ! You can not create recursive Tax Codes."
#. module: l10n_br
#: sql_constraint:account.tax:0
msgid "Tax Name must be unique per company!"
msgstr ""
msgstr "Tax Name must be unique per company!"
#. module: l10n_br
#: model:ir.model,name:l10n_br.model_account_tax
msgid "account.tax"
msgstr ""
msgstr "account.tax"
#. module: l10n_br
#: model:account.account.type,name:l10n_br.receita
@ -117,12 +119,12 @@ msgstr ""
#: model:ir.ui.menu,name:l10n_br.menu_action_l10n_br_cst_template
#: view:l10n_br_account.cst.template:0
msgid "Tax Situation Code Template"
msgstr ""
msgstr "Tax Situation Code Template"
#. module: l10n_br
#: model:ir.model,name:l10n_br.model_wizard_multi_charts_accounts
msgid "wizard.multi.charts.accounts"
msgstr ""
msgstr "wizard.multi.charts.accounts"
#. module: l10n_br
#: model:ir.actions.todo,note:l10n_br.config_call_account_template_brazilian_localization
@ -149,29 +151,29 @@ msgstr ""
#: help:account.tax.code.template,tax_discount:0
#: help:account.tax.template,tax_discount:0
msgid "Mark it for (ICMS, PIS e etc.)."
msgstr ""
msgstr "Mark it for (ICMS, PIS e etc.)."
#. module: l10n_br
#: model:account.account.type,name:l10n_br.ativo
msgid "Ativo"
msgstr ""
msgstr "Active"
#. module: l10n_br
#: field:account.tax.code,domain:0
#: field:account.tax.code.template,domain:0
msgid "Domain"
msgstr ""
msgstr "Domain"
#. module: l10n_br
#: field:l10n_br_account.cst,code:0
#: field:l10n_br_account.cst.template,code:0
msgid "Code"
msgstr ""
msgstr "Code"
#. module: l10n_br
#: constraint:account.tax.code:0
msgid "Error ! You can not create recursive accounts."
msgstr ""
msgstr "Error ! You can not create recursive accounts."
#. module: l10n_br
#: help:account.tax,amount_mva:0
@ -183,7 +185,7 @@ msgstr ""
#: model:ir.model,name:l10n_br.model_account_tax_code_template
#: field:l10n_br_account.cst.template,tax_code_template_id:0
msgid "Tax Code Template"
msgstr ""
msgstr "Tax Code Template"
#~ msgid "Brazilian Localization"
#~ msgstr "Brazilian Localisation"

View File

@ -0,0 +1,129 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-08-02 21:08+0000\n"
"PO-Revision-Date: 2012-01-23 13:38+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_receivable
msgid "Receivable"
msgstr "Receivable"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.acct_type_asset_view
msgid "Asset View"
msgstr "Asset View"
#. module: l10n_ca
#: model:ir.module.module,description:l10n_ca.module_meta_information
msgid ""
"This is the module to manage the canadian accounting chart in OpenERP."
msgstr ""
"This is the module to manage the canadian accounting chart in OpenERP."
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.acct_type_expense_view
msgid "Expense View"
msgstr "Expense View"
#. module: l10n_ca
#: constraint:account.account.template:0
msgid "Error ! You can not create recursive account templates."
msgstr "Error ! You can not create recursive account templates."
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.acct_type_income_view
msgid "Income View"
msgstr "Income View"
#. module: l10n_ca
#: model:ir.module.module,shortdesc:l10n_ca.module_meta_information
msgid "Canada - Chart of Accounts"
msgstr "Canada - Chart of Accounts"
#. module: l10n_ca
#: constraint:account.account.type:0
msgid "Error ! You can not create recursive types."
msgstr "Error ! You can not create recursive types."
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_tax
msgid "Tax"
msgstr "Tax"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_cash
msgid "Cash"
msgstr "Cash"
#. module: l10n_ca
#: model:ir.actions.todo,note:l10n_ca.config_call_account_template_ca
msgid ""
"Generate Chart of Accounts from a Chart Template. You will be asked to pass "
"the name of the company, the chart template to follow, the no. of digits to "
"generate the code for your accounts and Bank account, currency to create "
"Journals. Thus,the pure copy of chart Template is generated.\n"
"\tThis is the same wizard that runs from Financial "
"Management/Configuration/Financial Accounting/Financial Accounts/Generate "
"Chart of Accounts from a Chart Template."
msgstr ""
"Generate Chart of Accounts from a Chart Template. You will be asked to pass "
"the name of the company, the chart template to follow, the no. of digits to "
"generate the code for your accounts and Bank account, currency to create "
"Journals. Thus,the pure copy of chart Template is generated.\n"
"\tThis is the same wizard that runs from Financial "
"Management/Configuration/Financial Accounting/Financial Accounts/Generate "
"Chart of Accounts from a Chart Template."
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_payable
msgid "Payable"
msgstr "Payable"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_asset
msgid "Asset"
msgstr "Asset"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_equity
msgid "Equity"
msgstr "Equity"
#. module: l10n_ca
#: constraint:account.tax.code.template:0
msgid "Error ! You can not create recursive Tax Codes."
msgstr "Error ! You can not create recursive Tax Codes."
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.acct_type_liability_view
msgid "Liability View"
msgstr "Liability View"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_expense
msgid "Expense"
msgstr "Expense"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_income
msgid "Income"
msgstr "Income"
#. module: l10n_ca
#: model:account.account.type,name:l10n_ca.account_type_view
msgid "View"
msgstr "View"

View File

@ -358,7 +358,7 @@
<!-- Chart template -->
<record id="l10n_fr_pcg_chart_template" model="account.chart.template">
<field name="name">France PCMN</field>
<field name="name">Plan Comptable Général (France)</field>
<field name="account_root_id" ref="pcg_0"/>
<field name="tax_code_root_id" ref="vat_code_chart_root"/>
<field name="bank_account_view_id" ref="pcg_5121"/>

View File

@ -1385,7 +1385,7 @@
<field name="name">Debiteuren</field>
<field name="code">1300</field>
<field name="type">receivable</field>
<field name="user_type" ref="user_type_asset"/>
<field name="user_type" ref="user_type_receivable"/>
<field name="reconcile" eval="True"/>
<field ref="a_13" name="parent_id"/>
</record>
@ -1458,7 +1458,7 @@
<field name="name">Crediteuren</field>
<field name="code">1500</field>
<field name="type">payable</field>
<field name="user_type" ref="user_type_liability"/>
<field name="user_type" ref="user_type_payable"/>
<field name="reconcile" eval="True"/>
<field ref="a_15" name="parent_id"/>
</record>
@ -4352,7 +4352,7 @@ TODO rubriek 1c en 1d moeten nog, zijn variabel, dus BTW percentage moet door ge
<record id="btw_I_6" model="account.tax.template">
<field name="chart_template_id" ref="l10nnl_chart_template"/>
<field name="name">Inkopen import binnen EU laag</field>
<field name="description">BTW import binnen EU</field>
<field name="description">6% BTW import binnen EU</field>
<field eval="0.06" name="amount"/>
<field name="type">percent</field>
<field eval="True" name="child_depend"/>
@ -4387,7 +4387,7 @@ TODO rubriek 1c en 1d moeten nog, zijn variabel, dus BTW percentage moet door ge
<record id="btw_I_19" model="account.tax.template">
<field name="chart_template_id" ref="l10nnl_chart_template"/>
<field name="name">Inkopen import binnen EU hoog</field>
<field name="description">0% BTW import binnen EU</field>
<field name="description">19% BTW import binnen EU</field>
<field eval="0.19" name="amount"/>
<field name="type">percent</field>
<field eval="True" name="child_depend"/>
@ -4421,9 +4421,9 @@ TODO rubriek 1c en 1d moeten nog, zijn variabel, dus BTW percentage moet door ge
</record>
<record id="btw_I_overig" model="account.tax.template">
<field name="chart_template_id" ref="l10nnl_chart_template"/>
<field name="name">Inkopen import binnen EU hoog</field>
<field name="name">Inkopen import binnen EU overig</field>
<field name="description">0% BTW import binnen EU</field>
<field eval="0.19" name="amount"/>
<field eval="0.00" name="amount"/>
<field name="type">percent</field>
<field eval="True" name="child_depend"/>
<field eval="omz_code_4b" name="base_code_id"/>
@ -4432,7 +4432,7 @@ TODO rubriek 1c en 1d moeten nog, zijn variabel, dus BTW percentage moet door ge
</record>
<record id="btw_I_overig_1" model="account.tax.template">
<field name="chart_template_id" ref="l10nnl_chart_template"/>
<field name="name">Inkopen import binnen EU hoog(1)</field>
<field name="name">Inkopen import binnen EU overig(1)</field>
<field eval="1.00" name="amount"/>
<field name="type">percent</field>
<field name="parent_id" ref="btw_I_overig"/>
@ -4444,7 +4444,7 @@ TODO rubriek 1c en 1d moeten nog, zijn variabel, dus BTW percentage moet door ge
</record>
<record id="btw_I_overig_2" model="account.tax.template">
<field name="chart_template_id" ref="l10nnl_chart_template"/>
<field name="name">Inkopen import binnen EU hoog(2)</field>
<field name="name">Inkopen import binnen EU overig(2)</field>
<field eval="-1.00" name="amount"/>
<field name="type">percent</field>
<field name="parent_id" ref="btw_I_overig"/>

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-23 09:56+0000\n"
"PO-Revision-Date: 2011-06-08 10:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 23:26+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-24 05:55+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: l10n_th
#: model:ir.actions.todo,note:l10n_th.config_call_account_template_th
@ -39,17 +39,17 @@ msgstr ""
#. module: l10n_th
#: model:account.account.type,name:l10n_th.acc_type_other
msgid "Other"
msgstr ""
msgstr "Diğer"
#. module: l10n_th
#: model:account.account.type,name:l10n_th.acc_type_reconciled
msgid "Reconciled"
msgstr ""
msgstr "Uzlaşılmış"
#. module: l10n_th
#: model:account.account.type,name:l10n_th.acc_type_view
msgid "View"
msgstr ""
msgstr "Görünüm"
#~ msgid ""
#~ "\n"

View File

@ -0,0 +1,359 @@
# Turkish translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-01-11 11:15+0000\n"
"PO-Revision-Date: 2012-01-23 23:14+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: mail_gateway
#: field:mailgate.message,res_id:0
msgid "Resource ID"
msgstr "Kaynak ID"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:68
#: code:addons/mail_gateway/mail_gateway.py:71
#: code:addons/mail_gateway/mail_gateway.py:89
#, python-format
msgid "Method is not implemented"
msgstr "Method uygulanmamış"
#. module: mail_gateway
#: view:mailgate.message:0
#: field:mailgate.message,email_from:0
msgid "From"
msgstr "Kimden"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Open Attachments"
msgstr "Ekleri Aç"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Message Details"
msgstr "Mesaj Detayları"
#. module: mail_gateway
#: field:mailgate.message,message_id:0
msgid "Message Id"
msgstr "Mesaj Id"
#. module: mail_gateway
#: field:mailgate.message,ref_id:0
msgid "Reference Id"
msgstr "Referans Id"
#. module: mail_gateway
#: view:mailgate.thread:0
msgid "Mailgateway History"
msgstr "Epostageçidi Geçmişi"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:249
#, python-format
msgid "Note"
msgstr "Not"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Group By..."
msgstr "Grupla..."
#. module: mail_gateway
#: constraint:res.partner:0
msgid "Error ! You can not create recursive associated members."
msgstr "Hata! Kendini Çağıran üyeler oluşturamazsınız."
#. module: mail_gateway
#: help:mailgate.message,message_id:0
msgid "Message Id on Email."
msgstr "Epostadaki Mesaj Idsi"
#. module: mail_gateway
#: help:mailgate.message,email_to:0
msgid "Email Recipients"
msgstr "Eposta Alıcıları"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Details"
msgstr "Detaylar"
#. module: mail_gateway
#: view:mailgate.thread:0
msgid "Mailgate History"
msgstr "Postageçidi Geçmişi"
#. module: mail_gateway
#: model:ir.model,name:mail_gateway.model_email_server_tools
msgid "Email Server Tools"
msgstr "Eposta Sunucusu Araçları"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Email Followers"
msgstr "Eposta Takipçileri"
#. module: mail_gateway
#: model:ir.model,name:mail_gateway.model_res_partner
#: view:mailgate.message:0
#: field:mailgate.message,partner_id:0
msgid "Partner"
msgstr "Cari"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:250
#, python-format
msgid " wrote on %s:\n"
msgstr " Demiş ki %s:\n"
#. module: mail_gateway
#: view:mailgate.message:0
#: field:mailgate.message,description:0
#: field:mailgate.message,message:0
msgid "Description"
msgstr "Açıklama"
#. module: mail_gateway
#: field:mailgate.message,email_to:0
msgid "To"
msgstr "Kime"
#. module: mail_gateway
#: help:mailgate.message,references:0
msgid "References emails."
msgstr "Referans e-postalar."
#. module: mail_gateway
#: help:mailgate.message,email_cc:0
msgid "Carbon Copy Email Recipients"
msgstr "CC Karbon Kopya E-posta Alıcıları"
#. module: mail_gateway
#: model:ir.module.module,shortdesc:mail_gateway.module_meta_information
msgid "Email Gateway System"
msgstr "E-posta Geçidi Sistemi"
#. module: mail_gateway
#: field:mailgate.message,date:0
msgid "Date"
msgstr "Tarih"
#. module: mail_gateway
#: field:mailgate.message,model:0
msgid "Object Name"
msgstr "Nesne Adı"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Partner Name"
msgstr "Cari Adı"
#. module: mail_gateway
#: model:ir.actions.act_window,name:mail_gateway.action_view_mailgate_thread
msgid "Mailgateway Threads"
msgstr "Postageçidi Konuları"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:247
#, python-format
msgid "Opportunity"
msgstr "Fırsat"
#. module: mail_gateway
#: model:ir.actions.act_window,name:mail_gateway.act_res_partner_emails
#: model:ir.actions.act_window,name:mail_gateway.action_view_mailgate_message
#: view:mailgate.message:0
#: field:res.partner,emails:0
msgid "Emails"
msgstr "E-postalar"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:252
#, python-format
msgid "Stage"
msgstr "Aşama"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:250
#, python-format
msgid " added note on "
msgstr " not eklemiş "
#. module: mail_gateway
#: help:mailgate.message,email_from:0
msgid "Email From"
msgstr "E-posta Gönderen"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Thread"
msgstr "Konu"
#. module: mail_gateway
#: model:ir.model,name:mail_gateway.model_mailgate_message
msgid "Mailgateway Message"
msgstr "Mailgeçidi Mesajı"
#. module: mail_gateway
#: model:ir.actions.act_window,name:mail_gateway.action_view_mail_message
#: field:mailgate.thread,message_ids:0
msgid "Messages"
msgstr "Mesajlar"
#. module: mail_gateway
#: field:mailgate.message,user_id:0
msgid "User Responsible"
msgstr "Sorumlu Kullanıcı"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:248
#, python-format
msgid "Converted to Opportunity"
msgstr "Fırsata Dönüştürülmüş"
#. module: mail_gateway
#: field:mailgate.message,email_bcc:0
msgid "Bcc"
msgstr "Gizli Kopya"
#. module: mail_gateway
#: field:mailgate.message,history:0
msgid "Is History?"
msgstr "Geçmiş mi?"
#. module: mail_gateway
#: help:mailgate.message,email_bcc:0
msgid "Blind Carbon Copy Email Recipients"
msgstr "Gizli Eposta Alıcıları (BCC)"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "mailgate message"
msgstr "postageçidi mesajı"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:148
#: view:mailgate.thread:0
#: view:res.partner:0
#, python-format
msgid "History"
msgstr "Geçmiş"
#. module: mail_gateway
#: field:mailgate.message,references:0
msgid "References"
msgstr "Referanslar"
#. module: mail_gateway
#: model:ir.model,name:mail_gateway.model_mailgate_thread
#: view:mailgate.thread:0
msgid "Mailgateway Thread"
msgstr "Postageçidi Konusu"
#. module: mail_gateway
#: model:ir.actions.act_window,name:mail_gateway.act_res_partner_open_email
#: view:mailgate.message:0
#: field:mailgate.message,attachment_ids:0
#: view:mailgate.thread:0
msgid "Attachments"
msgstr "Ekler"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Open Document"
msgstr "Belge Aç"
#. module: mail_gateway
#: view:mailgate.thread:0
msgid "Email Details"
msgstr "Eposta Detayları"
#. module: mail_gateway
#: field:mailgate.message,email_cc:0
msgid "Cc"
msgstr "İlgili Kopyası (CC)"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:254
#, python-format
msgid " on %s:\n"
msgstr " on %s:\n"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Month"
msgstr "Ay"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Email Search"
msgstr "E-posta Ara"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:561
#, python-format
msgid "receive"
msgstr "Al"
#. module: mail_gateway
#: model:ir.module.module,description:mail_gateway.module_meta_information
msgid ""
"The generic email gateway system allows to send and receive emails\n"
" * History for Emails\n"
" * Easy Integration with any Module"
msgstr ""
"Genel e-posta geçidi sistemi, OpenERP nin e-posta gönderip almasını sağlar\n"
" * E-posta tarihçesi\n"
" * Diğer Modüllerle kolay entegrasyon"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:255
#, python-format
msgid "Changed Status to: "
msgstr "Durumu değiştirildi: "
#. module: mail_gateway
#: field:mailgate.message,display_text:0
msgid "Display Text"
msgstr "Metin Göster"
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Owner"
msgstr "Sahibi"
#. module: mail_gateway
#: code:addons/mail_gateway/mail_gateway.py:253
#, python-format
msgid "Changed Stage to: "
msgstr ""
#. module: mail_gateway
#: view:mailgate.message:0
msgid "Message"
msgstr "Mesaj"
#. module: mail_gateway
#: view:mailgate.message:0
#: field:mailgate.message,name:0
msgid "Subject"
msgstr "Konu"
#. module: mail_gateway
#: help:mailgate.message,ref_id:0
msgid "Message Id in Email Server."
msgstr "E-posta sunucusundaki mesaj IDsi"

View File

@ -8,24 +8,24 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:45+0000\n"
"PO-Revision-Date: 2011-06-09 18:18+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:19+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:20+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: marketing
#: model:res.groups,name:marketing.group_marketing_manager
msgid "Manager"
msgstr ""
msgstr "Yönetici"
#. module: marketing
#: model:res.groups,name:marketing.group_marketing_user
msgid "User"
msgstr ""
msgstr "Kullanıcı"
#~ msgid "Configure Your Marketing Application"
#~ msgstr "Pazarlama Uygulamalarınızı Yapılandırın"

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2011-12-06 10:17+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-24 22:15+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 05:52+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: mrp
#: view:mrp.routing.workcenter:0
@ -138,7 +138,7 @@ msgstr "Bitmiş Ürünler"
#. module: mrp
#: view:mrp.production:0
msgid "Manufacturing Orders which are currently in production."
msgstr ""
msgstr "Şu an Üretilen Üretim Emirleri"
#. module: mrp
#: model:process.transition,name:mrp.process_transition_servicerfq0
@ -220,6 +220,8 @@ msgid ""
"Create a product form for everything you buy or sell. Specify a supplier if "
"the product can be purchased."
msgstr ""
"Satın aldığınız ve sattığınız her ürün için bir ürün formu oluştur. Eğer "
"ürün satınalınıyorsa bir tedarikçi belirleyin."
#. module: mrp
#: model:ir.ui.menu,name:mrp.next_id_77
@ -255,7 +257,7 @@ msgstr "Kapasite Bilgisi"
#. module: mrp
#: field:mrp.production,move_created_ids2:0
msgid "Produced Products"
msgstr ""
msgstr "Üretilmiş Ürünler"
#. module: mrp
#: report:mrp.production.order:0
@ -314,7 +316,7 @@ msgstr "Ürün Üretimi"
#. module: mrp
#: constraint:mrp.bom:0
msgid "Error ! You cannot create recursive BoM."
msgstr ""
msgstr "Hata ! Kendini İçeren BoM oluşturamazsınız."
#. module: mrp
#: model:ir.model,name:mrp.model_mrp_routing_workcenter
@ -335,7 +337,7 @@ msgstr "Varsayılan Birim"
#: sql_constraint:mrp.production:0
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: mrp
#: code:addons/mrp/report/price.py:139
@ -447,7 +449,7 @@ msgstr "Ürün tipi hizmettir"
#. module: mrp
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Şirket adı tekil olmalı !"
#. module: mrp
#: model:ir.actions.act_window,help:mrp.mrp_property_group_action
@ -514,7 +516,7 @@ msgstr "Hata: Geçersiz ean kodu"
#. module: mrp
#: field:mrp.production,move_created_ids:0
msgid "Products to Produce"
msgstr ""
msgstr "Üretilecek Ürünler"
#. module: mrp
#: view:mrp.routing:0
@ -530,7 +532,7 @@ msgstr "Miktarı Değiştir"
#. module: mrp
#: model:ir.actions.act_window,name:mrp.action_configure_workcenter
msgid "Configure your work centers"
msgstr ""
msgstr "İş merkezlerinizi ayarlayın"
#. module: mrp
#: view:mrp.production:0
@ -567,12 +569,12 @@ msgstr "Birim Başına Tedarikçi Fiyatı"
#: help:mrp.routing.workcenter,sequence:0
msgid ""
"Gives the sequence order when displaying a list of routing Work Centers."
msgstr ""
msgstr "Rota iş merkezlerinin listesini gösterirken sıra numarası verir"
#. module: mrp
#: constraint:stock.move:0
msgid "You can not move products from or to a location of the type view."
msgstr ""
msgstr "view tipinde bir lokasyona ürün giriş çıkışı yapamazsınız."
#. module: mrp
#: field:mrp.bom,child_complete_ids:0
@ -677,7 +679,7 @@ msgstr "Bir çevrimin tamamlanması için saat olarak süre."
#. module: mrp
#: constraint:mrp.bom:0
msgid "BoM line product should not be same as BoM product."
msgstr ""
msgstr "BoM satırındaki ürün BoM ürünü ile aynı olamaz."
#. module: mrp
#: view:mrp.production:0
@ -749,7 +751,7 @@ msgstr ""
#: code:addons/mrp/mrp.py:734
#, python-format
msgid "Warning!"
msgstr ""
msgstr "Uyarı!"
#. module: mrp
#: report:mrp.production.order:0
@ -796,7 +798,7 @@ msgstr "Acil"
#. module: mrp
#: view:mrp.production:0
msgid "Manufacturing Orders which are waiting for raw materials."
msgstr ""
msgstr "Hammadde bekleyen Üretim Emirleri"
#. module: mrp
#: model:ir.actions.act_window,help:mrp.mrp_workcenter_action
@ -807,6 +809,10 @@ msgid ""
"resource leave are not taken into account in the time computation of the "
"work center."
msgstr ""
"İş merkezleri üretim birimlerini oluşturup yönetmenizi sağlar. İş merkezleri "
"kapasite planlamasında kullanılan işçiler ve veya makielerden oluşur. Lütfen "
"çalışma saatlerinin ve çalışan izinlerinin bu hesaplarda dikkate "
"alınmadığını unutmayın."
#. module: mrp
#: model:ir.model,name:mrp.model_mrp_production
@ -892,7 +898,7 @@ msgstr "Minimum Stok"
#: code:addons/mrp/mrp.py:503
#, python-format
msgid "Cannot delete a manufacturing order in state '%s'"
msgstr ""
msgstr "'%s' durumundaki üretim emirini silinemez."
#. module: mrp
#: model:ir.ui.menu,name:mrp.menus_dash_mrp
@ -904,7 +910,7 @@ msgstr "Kontrol paneli"
#: code:addons/mrp/report/price.py:211
#, python-format
msgid "Total Cost of %s %s"
msgstr ""
msgstr "Toplam maliyet %s %s"
#. module: mrp
#: model:process.node,name:mrp.process_node_stockproduct0
@ -1045,7 +1051,7 @@ msgstr "Üretim Paneli"
#. module: mrp
#: model:res.groups,name:mrp.group_mrp_manager
msgid "Manager"
msgstr ""
msgstr "Yönetici"
#. module: mrp
#: view:mrp.production:0
@ -1106,12 +1112,12 @@ msgstr ""
#. module: mrp
#: model:ir.actions.todo.category,name:mrp.category_mrp_config
msgid "MRP Management"
msgstr ""
msgstr "MRP Yönetimi"
#. module: mrp
#: help:mrp.workcenter,costs_hour:0
msgid "Specify Cost of Work Center per hour."
msgstr ""
msgstr "İş Merkezinin saatlik maliyetini belirleyin"
#. module: mrp
#: help:mrp.workcenter,capacity_per_cycle:0
@ -1168,6 +1174,7 @@ msgid ""
"Time in hours for this Work Center to achieve the operation of the specified "
"routing."
msgstr ""
"Bu iş merkezinin belirlenen rotadaki operasyonu yapması için gereken saat"
#. module: mrp
#: field:mrp.workcenter,costs_journal_id:0
@ -1201,7 +1208,7 @@ msgstr ""
#. module: mrp
#: model:ir.actions.act_window,name:mrp.product_form_config_action
msgid "Create or Import Products"
msgstr ""
msgstr "Ürünleri Oluştur ya da İçeri Aktar"
#. module: mrp
#: field:report.workcenter.load,hour:0
@ -1221,7 +1228,7 @@ msgstr "Notlar"
#. module: mrp
#: view:mrp.production:0
msgid "Manufacturing Orders which are ready to start production."
msgstr ""
msgstr "Üretime başlamaya hazır Üretim Emirleri"
#. module: mrp
#: model:ir.model,name:mrp.model_mrp_bom
@ -1253,6 +1260,9 @@ msgid ""
"Routing is indicated then,the third tab of a production order (Work Centers) "
"will be automatically pre-completed."
msgstr ""
"Rotalar kullanılan bütün iş merkezlerini ne kadar süre/kaç döngü "
"kullanıldığını gösterir. Eğer rotalar işaretlenirse üretim emrinin (iş "
"merkezleri) üçüncü sekmesi otomatik olarak doldurulacaktır"
#. module: mrp
#: model:process.transition,note:mrp.process_transition_producttostockrules0
@ -1268,7 +1278,7 @@ msgstr ""
#: code:addons/mrp/report/price.py:187
#, python-format
msgid "Components Cost of %s %s"
msgstr ""
msgstr "%s %s Bileşen Maliyeti"
#. module: mrp
#: selection:mrp.workcenter.load,time_unit:0
@ -1316,7 +1326,7 @@ msgstr "Planlı Ürün Üretimi"
#: code:addons/mrp/report/price.py:204
#, python-format
msgid "Work Cost of %s %s"
msgstr ""
msgstr "İşçilik Maliyeti %s %s"
#. module: mrp
#: help:res.company,manufacturing_lead:0
@ -1338,7 +1348,7 @@ msgstr "Stoğa Üretim"
#. module: mrp
#: constraint:mrp.production:0
msgid "Order quantity cannot be negative or zero!"
msgstr ""
msgstr "Sipariş adedi negatif ya da sıfır olamaz!"
#. module: mrp
#: model:ir.actions.act_window,help:mrp.mrp_bom_form_action
@ -1507,7 +1517,7 @@ msgstr "Acil Değil"
#. module: mrp
#: field:mrp.production,user_id:0
msgid "Responsible"
msgstr ""
msgstr "Sorumlu"
#. module: mrp
#: model:ir.actions.act_window,name:mrp.mrp_production_action2
@ -1592,6 +1602,8 @@ msgid ""
"Description of the Work Center. Explain here what's a cycle according to "
"this Work Center."
msgstr ""
"İş Merkezinin Açıklaması. Bu alanda her döngünün bu iş merkezine göre ne "
"olduğunu açıklayın."
#. module: mrp
#: view:mrp.production.lot.line:0
@ -1849,7 +1861,7 @@ msgstr "Ürün Yuvarlama"
#. module: mrp
#: selection:mrp.production,state:0
msgid "New"
msgstr ""
msgstr "Yeni"
#. module: mrp
#: selection:mrp.product.produce,mode:0
@ -1908,7 +1920,7 @@ msgstr "Ayarlar"
#. module: mrp
#: view:mrp.bom:0
msgid "Starting Date"
msgstr ""
msgstr "Başlangıç Tarihi"
#. module: mrp
#: code:addons/mrp/mrp.py:734
@ -2053,7 +2065,7 @@ msgstr "Normal"
#. module: mrp
#: view:mrp.production:0
msgid "Production started late"
msgstr ""
msgstr "Üretim Geç Başladı"
#. module: mrp
#: model:process.node,note:mrp.process_node_routing0
@ -2070,7 +2082,7 @@ msgstr "Maliyet Yapısı"
#. module: mrp
#: model:res.groups,name:mrp.group_mrp_user
msgid "User"
msgstr ""
msgstr "Kullanıcı"
#. module: mrp
#: selection:mrp.product.produce,mode:0
@ -2114,7 +2126,7 @@ msgstr "Hata"
#. module: mrp
#: selection:mrp.production,state:0
msgid "Production Started"
msgstr ""
msgstr "Üretim Başladı"
#. module: mrp
#: field:mrp.product.produce,product_qty:0
@ -2273,7 +2285,7 @@ msgstr ""
#: code:addons/mrp/mrp.py:954
#, python-format
msgid "PROD: %s"
msgstr ""
msgstr "ÜRET: %s"
#. module: mrp
#: help:mrp.workcenter,time_stop:0

View File

@ -97,7 +97,7 @@ class mrp_production_workcenter_line(osv.osv):
'date_planned_end': fields.function(_get_date_end, string='End Date', type='datetime'),
'date_start': fields.datetime('Start Date'),
'date_finished': fields.datetime('End Date'),
'delay': fields.float('Working Hours',help="This is lead time between operation start and stop in this Work Center",readonly=True),
'delay': fields.float('Working Hours',help="The elapsed time between operation start and stop in this Work Center",readonly=True),
'production_state':fields.related('production_id','state',
type='selection',
selection=[('draft','Draft'),('picking_except', 'Picking Exception'),('confirmed','Waiting Goods'),('ready','Ready to Produce'),('in_production','In Production'),('cancel','Canceled'),('done','Done')],

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:45+0000\n"
"PO-Revision-Date: 2011-06-23 20:16+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:23+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:12+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: mrp_repair
#: view:mrp.repair:0
@ -121,7 +121,7 @@ msgstr "Ücretlerde tanımlanmış ürün yok!"
#: view:mrp.repair:0
#: field:mrp.repair,company_id:0
msgid "Company"
msgstr ""
msgstr "Şirket"
#. module: mrp_repair
#: view:mrp.repair:0

View File

@ -46,6 +46,13 @@ class make_invoice(osv.osv_memory):
newinv = order_obj.action_invoice_create(cr, uid, context['active_ids'],
group=inv.group,context=context)
# We have to trigger the workflow of the given repairs, otherwise they remain 'to be invoiced'.
# Note that the signal 'action_invoice_create' will trigger another call to the method 'action_invoice_create',
# but that second call will not do anything, since the repairs are already invoiced.
wf_service = netsvc.LocalService("workflow")
for repair_id in context['active_ids']:
wf_service.trg_validate(uid, 'mrp.repair', repair_id, 'action_invoice_create', cr)
return {
'domain': [('id','in', newinv.values())],
'name': 'Invoices',

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:45+0000\n"
"PO-Revision-Date: 2010-09-09 07:20+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-23 22:32+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:12+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: mrp_subproduct
#: field:mrp.subproduct,product_id:0
@ -50,7 +50,7 @@ msgstr "Üretim Emri"
#. module: mrp_subproduct
#: constraint:mrp.bom:0
msgid "BoM line product should not be same as BoM product."
msgstr ""
msgstr "BoM satırındaki ürün BoM ürünü ile aynı olamaz."
#. module: mrp_subproduct
#: view:mrp.bom:0
@ -85,7 +85,7 @@ msgstr "BoM (Malzeme Faturası)"
#. module: mrp_subproduct
#: sql_constraint:mrp.production:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: mrp_subproduct
#: field:mrp.bom,sub_products:0
@ -105,7 +105,7 @@ msgstr "Alt Ürün"
#. module: mrp_subproduct
#: constraint:mrp.production:0
msgid "Order quantity cannot be negative or zero!"
msgstr ""
msgstr "Sipariş adedi negatif ya da sıfır olamaz!"
#. module: mrp_subproduct
#: help:mrp.subproduct,subproduct_type:0
@ -122,7 +122,7 @@ msgstr ""
#. module: mrp_subproduct
#: constraint:mrp.bom:0
msgid "Error ! You cannot create recursive BoM."
msgstr ""
msgstr "Hata ! Kendini İçeren BoM oluşturamazsınız."
#~ msgid "Invalid XML for View Architecture!"
#~ msgstr "Görüntüleme mimarisi için Geçersiz XML"

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2010-01-26 11:01+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 23:25+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:13+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: multi_company
#: model:ir.ui.menu,name:multi_company.menu_custom_multicompany
@ -36,12 +36,12 @@ msgstr "Çoklu Firma"
#: model:ir.actions.act_window,name:multi_company.action_inventory_form
#: model:ir.ui.menu,name:multi_company.menu_action_inventory_form
msgid "Default Company per Object"
msgstr ""
msgstr "Nesne başına Öntanımlı Şirket"
#. module: multi_company
#: view:multi_company.default:0
msgid "Matching"
msgstr ""
msgstr "Eşleme"
#. module: multi_company
#: view:multi_company.default:0

156
addons/outlook/i18n/tr.po Normal file
View File

@ -0,0 +1,156 @@
# Turkish translation for openobject-addons
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2012-01-23 23:25+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: outlook
#: field:outlook.installer,doc_file:0
msgid "Installation Manual"
msgstr "Kurulum Kılavuzu"
#. module: outlook
#: field:outlook.installer,description:0
msgid "Description"
msgstr "Açıklama"
#. module: outlook
#: field:outlook.installer,plugin_file:0
msgid "Outlook Plug-in"
msgstr "Outlook Eklentisi"
#. module: outlook
#: model:ir.actions.act_window,name:outlook.action_outlook_installer
#: model:ir.actions.act_window,name:outlook.action_outlook_wizard
#: model:ir.ui.menu,name:outlook.menu_base_config_plugins_outlook
#: view:outlook.installer:0
msgid "Install Outlook Plug-In"
msgstr "Outlook Eklentisini Kur"
#. module: outlook
#: view:outlook.installer:0
msgid ""
"This plug-in allows you to create new contact or link contact to an existing "
"partner. \n"
"Also allows to link your e-mail to OpenERP's documents. \n"
"You can attach it to any existing one in OpenERP or create a new one."
msgstr ""
#. module: outlook
#: field:outlook.installer,config_logo:0
msgid "Image"
msgstr "Resim"
#. module: outlook
#: field:outlook.installer,outlook:0
msgid "Outlook Plug-in "
msgstr "Outlook Eklentisi "
#. module: outlook
#: model:ir.model,name:outlook.model_outlook_installer
msgid "outlook.installer"
msgstr "outlook.yükleyicisi"
#. module: outlook
#: help:outlook.installer,doc_file:0
msgid "The documentation file :- how to install Outlook Plug-in."
msgstr "Belgeleme dosyası :- how to install Outlook Plug-in."
#. module: outlook
#: help:outlook.installer,outlook:0
msgid ""
"Allows you to select an object that you would like to add to your email and "
"its attachments."
msgstr "İstediğiniz bir nesneyi e-postanıza ve ekine eklemenizi sağlar."
#. module: outlook
#: view:outlook.installer:0
msgid "title"
msgstr "başlık"
#. module: outlook
#: view:outlook.installer:0
msgid "Installation and Configuration Steps"
msgstr "Yükleme ve Yapılandırma Adımları"
#. module: outlook
#: field:outlook.installer,doc_name:0
#: field:outlook.installer,name:0
msgid "File name"
msgstr "Dosya ismi"
#. module: outlook
#: help:outlook.installer,plugin_file:0
msgid ""
"outlook plug-in file. Save as this file and install this plug-in in outlook."
msgstr ""
"Outlook eklenti-içe dosyası. Bu dosyayı kayıt edin ve bu eklenti-içe'yi "
"outlook'a yükleyin"
#. module: outlook
#: view:outlook.installer:0
msgid "_Close"
msgstr "_Kapat"
#~ msgid "Skip"
#~ msgstr "Atla"
#~ msgid ""
#~ "\n"
#~ " This module provide the Outlook plug-in. \n"
#~ "\n"
#~ " Outlook plug-in allows you to select an object that youd like to add\n"
#~ " to your email and its attachments from MS Outlook. You can select a "
#~ "partner, a task,\n"
#~ " a project, an analytical account, or any other object and Archived "
#~ "selected\n"
#~ " mail in mailgate.messages with attachments.\n"
#~ "\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ " Bu modül Outlook eklentisini kullanıma sunar. \n"
#~ "\n"
#~ " Outlook eklentisi istediğiniz bir nesneyi MS Outllok'ta e-posta eki "
#~ "olarak kullanmanızı sağlar. Bir cari kartı, bir görev kaydını,\n"
#~ " bir projeyi, bir analiz hesabını, ileti arşivinde saklanmış bir e-"
#~ "posta ve ekini ya da herhangi bir nesneyi bu işlem için\n"
#~ " kullanabilirsiniz.\n"
#~ "\n"
#~ " "
#~ msgid "Outlook Interface"
#~ msgstr "Outlook Arayüzü"
#~ msgid "Outlook Plug-In"
#~ msgstr "Outlook Eklentisi"
#~ msgid ""
#~ "This plug-in allows you to link your e-mail to OpenERP's documents. You can "
#~ "attach it to any existing one in OpenERP or create a new one."
#~ msgstr ""
#~ "Bu eklenti e-posta adresinizi OpenERP dökümanlarına eklemenizi sağlar. "
#~ "Varolan bir belgeye iliştirebileceğiniz gibi yaratacağınız yeni bir belgede "
#~ "de kullanabilirsiniz."
#~ msgid "Configure"
#~ msgstr "Yapılandır"
#~ msgid "Outlook Plug-In Configuration"
#~ msgstr "Outlook Eklenti Ayarları"
#~ msgid "Configuration Progress"
#~ msgstr "Yapılandırma gidişatı"

View File

@ -623,7 +623,7 @@ openerp.point_of_sale = function(db) {
Views
---
*/
var NumpadWidget = db.web.Widget.extend({
var NumpadWidget = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.state = new NumpadState();
@ -660,7 +660,7 @@ openerp.point_of_sale = function(db) {
/*
Gives access to the payment methods (aka. 'cash registers')
*/
var PaypadWidget = db.web.Widget.extend({
var PaypadWidget = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.shop = options.shop;
@ -691,7 +691,7 @@ openerp.point_of_sale = function(db) {
}, this));
}
});
var PaymentButtonWidget = db.web.Widget.extend({
var PaymentButtonWidget = db.web.OldWidget.extend({
template_fct: qweb_template('pos-payment-button-template'),
render_element: function() {
this.$element.html(this.template_fct({
@ -709,7 +709,7 @@ openerp.point_of_sale = function(db) {
It should be possible to go back to any step as long as step 3 hasn't been completed.
Modifying an order after validation shouldn't be allowed.
*/
var StepSwitcher = db.web.Widget.extend({
var StepSwitcher = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.shop = options.shop;
@ -735,7 +735,7 @@ openerp.point_of_sale = function(db) {
/*
Shopping carts.
*/
var OrderlineWidget = db.web.Widget.extend({
var OrderlineWidget = db.web.OldWidget.extend({
tag_name: 'tr',
template_fct: qweb_template('pos-orderline-template'),
init: function(parent, options) {
@ -775,7 +775,7 @@ openerp.point_of_sale = function(db) {
},
on_selected: function() {},
});
var OrderWidget = db.web.Widget.extend({
var OrderWidget = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.shop = options.shop;
@ -858,7 +858,7 @@ openerp.point_of_sale = function(db) {
/*
"Products" step.
*/
var CategoryWidget = db.web.Widget.extend({
var CategoryWidget = db.web.OldWidget.extend({
start: function() {
this.$element.find(".oe-pos-categories-list a").click(_.bind(this.changeCategory, this));
},
@ -893,7 +893,7 @@ openerp.point_of_sale = function(db) {
},
on_change_category: function(id) {},
});
var ProductWidget = db.web.Widget.extend({
var ProductWidget = db.web.OldWidget.extend({
tag_name:'li',
template_fct: qweb_template('pos-product-template'),
init: function(parent, options) {
@ -915,7 +915,7 @@ openerp.point_of_sale = function(db) {
return this;
},
});
var ProductListWidget = db.web.Widget.extend({
var ProductListWidget = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.model = options.model;
@ -937,7 +937,7 @@ openerp.point_of_sale = function(db) {
/*
"Payment" step.
*/
var PaymentlineWidget = db.web.Widget.extend({
var PaymentlineWidget = db.web.OldWidget.extend({
tag_name: 'tr',
template_fct: qweb_template('pos-paymentline-template'),
init: function(parent, options) {
@ -971,7 +971,7 @@ openerp.point_of_sale = function(db) {
$('.delete-payment-line', this.$element).click(this.on_delete);
},
});
var PaymentWidget = db.web.Widget.extend({
var PaymentWidget = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.model = options.model;
@ -1066,7 +1066,7 @@ openerp.point_of_sale = function(db) {
this.currentPaymentLines.last().set({amount: val});
},
});
var ReceiptWidget = db.web.Widget.extend({
var ReceiptWidget = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.model = options.model;
@ -1109,7 +1109,7 @@ openerp.point_of_sale = function(db) {
$('.pos-receipt-container', this.$element).html(qweb_template('pos-ticket')({widget:this}));
},
});
var OrderButtonWidget = db.web.Widget.extend({
var OrderButtonWidget = db.web.OldWidget.extend({
tag_name: 'li',
template_fct: qweb_template('pos-order-selector-button-template'),
init: function(parent, options) {
@ -1148,7 +1148,7 @@ openerp.point_of_sale = function(db) {
this.$element.addClass('order-selector-button');
}
});
var ShopWidget = db.web.Widget.extend({
var ShopWidget = db.web.OldWidget.extend({
init: function(parent, options) {
this._super(parent);
this.shop = options.shop;
@ -1283,7 +1283,7 @@ openerp.point_of_sale = function(db) {
return App;
})();
db.point_of_sale.SynchNotification = db.web.Widget.extend({
db.point_of_sale.SynchNotification = db.web.OldWidget.extend({
template: "pos-synch-notification",
init: function() {
this._super.apply(this, arguments);
@ -1301,7 +1301,7 @@ openerp.point_of_sale = function(db) {
});
db.web.client_actions.add('pos.ui', 'db.point_of_sale.PointOfSale');
db.point_of_sale.PointOfSale = db.web.Widget.extend({
db.point_of_sale.PointOfSale = db.web.OldWidget.extend({
init: function() {
this._super.apply(this, arguments);

View File

@ -8,47 +8,47 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-07-11 09:51+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-25 00:09+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:35+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:26+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: portal
#: code:addons/portal/wizard/share_wizard.py:51
#, python-format
msgid "Please select at least one user to share with"
msgstr ""
msgstr "Lütfen paylaşılacak en az bir kullanıcı seçin"
#. module: portal
#: code:addons/portal/wizard/share_wizard.py:55
#, python-format
msgid "Please select at least one group to share with"
msgstr ""
msgstr "Lütfen paylaşılacak en az bir grup seçin"
#. module: portal
#: field:res.portal,group_id:0
msgid "Group"
msgstr ""
msgstr "Grup"
#. module: portal
#: view:share.wizard:0
#: field:share.wizard,group_ids:0
msgid "Existing groups"
msgstr ""
msgstr "Varolan gruplar"
#. module: portal
#: model:ir.model,name:portal.model_res_portal_wizard_user
msgid "Portal User Config"
msgstr ""
msgstr "Portal Kullanıcı Ayarları"
#. module: portal
#: view:res.portal.wizard.user:0
msgid "Portal User"
msgstr ""
msgstr "Portal Kullanıcısı"
#. module: portal
#: model:res.groups,comment:portal.group_portal_manager
@ -56,92 +56,99 @@ msgid ""
"Portal managers have access to the portal definitions, and can easily "
"configure the users, access rights and menus of portal users."
msgstr ""
"Portal yöneticileri portal tanımlarına erişebilir, kullanıcılar, erişim "
"hakları ve menüleri kolayca yapılandırabilirler."
#. module: portal
#: help:res.portal,override_menu:0
msgid "Enable this option to override the Menu Action of portal users"
msgstr ""
"Bu opsiyonu portal kullanıcılarının menü eylemlerini değiştirmek için "
"kullanın"
#. module: portal
#: field:res.portal.wizard.user,user_email:0
msgid "E-mail"
msgstr ""
msgstr "E-posta"
#. module: portal
#: constraint:res.users:0
msgid "The chosen company is not in the allowed companies for this user"
msgstr ""
msgstr "Bu kullanıcının seçilen şirkete erişim hakkı yok"
#. module: portal
#: view:res.portal:0
#: field:res.portal,widget_ids:0
msgid "Widgets"
msgstr ""
msgstr "Parçalar"
#. module: portal
#: view:res.portal.wizard:0
msgid "Send Invitations"
msgstr ""
msgstr "Davetleri Gönder"
#. module: portal
#: view:res.portal:0
msgid "Widgets assigned to Users"
msgstr ""
msgstr "Kullanıcıya atanmış parçalar"
#. module: portal
#: help:res.portal,url:0
msgid "The url where portal users can connect to the server"
msgstr ""
msgstr "Portal kullanıcılarının sunucuya bağlanacağı adres"
#. module: portal
#: model:res.groups,comment:portal.group_portal_officer
msgid "Portal officers can create new portal users with the portal wizard."
msgstr ""
"Portal yetkilileri portal sihirbazını kullanarak yeni portal kullanıcıları "
"oluşturabilirler."
#. module: portal
#: help:res.portal.wizard,message:0
msgid "This text is included in the welcome email sent to the users"
msgstr ""
msgstr "Bu yazı kullanıcıya gönderilen hoşgeldin e-posta mesajına eklenecek"
#. module: portal
#: help:res.portal,menu_action_id:0
msgid "If set, replaces the standard menu for the portal's users"
msgstr ""
"Eğer seçilirse portal kullanıcıları için olan standart menüyü değiştirir"
#. module: portal
#: field:res.portal.wizard.user,lang:0
msgid "Language"
msgstr ""
msgstr "Dil"
#. module: portal
#: view:res.portal:0
msgid "Portal Name"
msgstr ""
msgstr "Portal Adı"
#. module: portal
#: view:res.portal.wizard.user:0
msgid "Portal Users"
msgstr ""
msgstr "Portal Kullanıcıları"
#. module: portal
#: field:res.portal,override_menu:0
msgid "Override Menu Action of Users"
msgstr ""
msgstr "Kullanıcıların menü eylemlerini değiştir"
#. module: portal
#: field:res.portal,menu_action_id:0
msgid "Menu Action"
msgstr ""
msgstr "Menü Eylemi"
#. module: portal
#: field:res.portal.wizard.user,name:0
msgid "User Name"
msgstr ""
msgstr "Kullanıcı Adı"
#. module: portal
#: model:ir.model,name:portal.model_res_portal_widget
msgid "Portal Widgets"
msgstr ""
msgstr "Portal Parçaları"
#. module: portal
#: model:ir.model,name:portal.model_res_portal
@ -150,52 +157,52 @@ msgstr ""
#: field:res.portal.widget,portal_id:0
#: field:res.portal.wizard,portal_id:0
msgid "Portal"
msgstr ""
msgstr "Portal"
#. module: portal
#: code:addons/portal/wizard/portal_wizard.py:35
#, python-format
msgid "Your OpenERP account at %(company)s"
msgstr ""
msgstr "%(company)s şirketindeki OpenERP hesabınız"
#. module: portal
#: code:addons/portal/portal.py:106
#: code:addons/portal/portal.py:177
#, python-format
msgid "%s Menu"
msgstr ""
msgstr "%s Menü"
#. module: portal
#: help:res.portal.wizard,portal_id:0
msgid "The portal in which new users must be added"
msgstr ""
msgstr "Yeni kullanıcıların eklenmesi gereken portal"
#. module: portal
#: model:ir.model,name:portal.model_res_portal_wizard
msgid "Portal Wizard"
msgstr ""
msgstr "Portal Sihirbazı"
#. module: portal
#: help:res.portal,widget_ids:0
msgid "Widgets assigned to portal users"
msgstr ""
msgstr "Portal kullanıcılarına atanmış parçacıklar"
#. module: portal
#: code:addons/portal/wizard/portal_wizard.py:163
#, python-format
msgid "(missing url)"
msgstr ""
msgstr "(kayıp url)"
#. module: portal
#: view:share.wizard:0
#: field:share.wizard,user_ids:0
msgid "Existing users"
msgstr ""
msgstr "Varolan kullanıcılar"
#. module: portal
#: field:res.portal.wizard.user,wizard_id:0
msgid "Wizard"
msgstr ""
msgstr "Sihirbaz"
#. module: portal
#: help:res.portal.wizard.user,user_email:0
@ -203,63 +210,65 @@ msgid ""
"Will be used as user login. Also necessary to send the account information "
"to new users"
msgstr ""
"Kullanıcı adı olarak kullanılacak. Ayrıca yeni hesap bilgileri yeni "
"kullanıcıya gönderilmeli"
#. module: portal
#: field:res.portal,parent_menu_id:0
msgid "Parent Menu"
msgstr ""
msgstr "Üst Menü"
#. module: portal
#: field:res.portal,url:0
msgid "URL"
msgstr ""
msgstr "URL"
#. module: portal
#: field:res.portal.widget,widget_id:0
msgid "Widget"
msgstr ""
msgstr "Parçacık"
#. module: portal
#: help:res.portal.wizard.user,lang:0
msgid "The language for the user's user interface"
msgstr ""
msgstr "Kullanıcının kullanıcı arayüzü dili"
#. module: portal
#: view:res.portal.wizard:0
msgid "Cancel"
msgstr ""
msgstr "İptal Et"
#. module: portal
#: view:res.portal:0
msgid "Website"
msgstr ""
msgstr "Web sitesi"
#. module: portal
#: view:res.portal:0
msgid "Create Parent Menu"
msgstr ""
msgstr "Üst Menü Oluştur"
#. module: portal
#: view:res.portal.wizard:0
msgid ""
"The following text will be included in the welcome email sent to users."
msgstr ""
msgstr "Aşağıdaki yazı kullanıcıya gönderilen hoşgeldin mesajına eklenecek"
#. module: portal
#: code:addons/portal/wizard/portal_wizard.py:135
#, python-format
msgid "Email required"
msgstr ""
msgstr "E-posta Gerekli"
#. module: portal
#: model:ir.model,name:portal.model_res_users
msgid "res.users"
msgstr ""
msgstr "res.users"
#. module: portal
#: constraint:res.portal.wizard.user:0
msgid "Invalid email address"
msgstr ""
msgstr "Geçersiz e-posta adresi"
#. module: portal
#: code:addons/portal/wizard/portal_wizard.py:136
@ -267,23 +276,25 @@ msgstr ""
msgid ""
"You must have an email address in your User Preferences to send emails."
msgstr ""
"E-posta gönderebilmek için kullanıcı seçeneklerinde e-posta adresiniz "
"tanımlı olmalı."
#. module: portal
#: model:ir.model,name:portal.model_ir_ui_menu
msgid "ir.ui.menu"
msgstr ""
msgstr "ir.ui.menu"
#. module: portal
#: help:res.portal,group_id:0
msgid "The group extended by this portal"
msgstr ""
msgstr "Bu portal ile grup genişletilmiş"
#. module: portal
#: view:res.portal:0
#: view:res.portal.wizard:0
#: field:res.portal.wizard,user_ids:0
msgid "Users"
msgstr ""
msgstr "Kullanıcılar"
#. module: portal
#: model:ir.actions.act_window,name:portal.portal_list_action
@ -291,38 +302,38 @@ msgstr ""
#: model:ir.ui.menu,name:portal.portal_menu
#: view:res.portal:0
msgid "Portals"
msgstr ""
msgstr "Portallar"
#. module: portal
#: help:res.portal,parent_menu_id:0
msgid "The menu action opens the submenus of this menu item"
msgstr ""
msgstr "Menü eylemi bu menü kaleminde alt menüler açar"
#. module: portal
#: field:res.portal.widget,sequence:0
msgid "Sequence"
msgstr ""
msgstr "Sıra"
#. module: portal
#: field:res.users,partner_id:0
msgid "Related Partner"
msgstr ""
msgstr "İlgili Cari"
#. module: portal
#: view:res.portal:0
msgid "Portal Menu"
msgstr ""
msgstr "Portal Menüsü"
#. module: portal
#: sql_constraint:res.users:0
msgid "You can not have two users with the same login !"
msgstr ""
msgstr "Aynı kullanıcı adı ile iki kullanıcı oluşturamazsınız !"
#. module: portal
#: view:res.portal.wizard:0
#: field:res.portal.wizard,message:0
msgid "Invitation message"
msgstr ""
msgstr "Davet mesajı"
#. module: portal
#: code:addons/portal/wizard/portal_wizard.py:36
@ -343,28 +354,42 @@ msgid ""
"OpenERP - Open Source Business Applications\n"
"http://www.openerp.com\n"
msgstr ""
"Sayın %(name)s,\n"
"\n"
"Size %(url)s adresinde bir OpenERP hesabııldı.\n"
"\n"
"Giriş bilgileriniz:\n"
"Veritabanı: %(db)s\n"
"Kullanıcı adı: %(login)s\n"
"Şifre: %(password)s\n"
"\n"
"%(message)s\n"
"\n"
"--\n"
"OpenERP - Open Source Business Applications\n"
"http://www.openerp.com\n"
#. module: portal
#: model:res.groups,name:portal.group_portal_manager
msgid "Manager"
msgstr ""
msgstr "Yönetici"
#. module: portal
#: help:res.portal.wizard.user,name:0
msgid "The user's real name"
msgstr ""
msgstr "Kullanıcının Gerçek Adı"
#. module: portal
#: model:ir.actions.act_window,name:portal.address_wizard_action
#: model:ir.actions.act_window,name:portal.partner_wizard_action
#: view:res.portal.wizard:0
msgid "Add Portal Access"
msgstr ""
msgstr "Portal erişimi ekle"
#. module: portal
#: field:res.portal.wizard.user,partner_id:0
msgid "Partner"
msgstr ""
msgstr "Cari"
#. module: portal
#: model:ir.actions.act_window,help:portal.portal_list_action
@ -376,13 +401,19 @@ msgid ""
"the portal's users.\n"
" "
msgstr ""
"\n"
"Portal bir kullanıcı grubuna belirli ekranlar ve kurallar tanımlanmasına "
"olanak verir.\n"
" Portal kullanıcılarına bir portal menüsü, parçacıklar, ve özel gruplar "
"atanabilir.\n"
" "
#. module: portal
#: model:ir.model,name:portal.model_share_wizard
msgid "Share Wizard"
msgstr ""
msgstr "Paylaşım Sihirbazı"
#. module: portal
#: model:res.groups,name:portal.group_portal_officer
msgid "Officer"
msgstr ""
msgstr "Yetkili"

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-01-28 09:25+0000\n"
"PO-Revision-Date: 2012-01-23 10:12+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:20+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: procurement
#: view:make.procurement:0
@ -80,7 +80,7 @@ msgstr "仅计算最少库存规则"
#. module: procurement
#: constraint:stock.move:0
msgid "You can not move products from or to a location of the type view."
msgstr ""
msgstr "您不能将产品移动到该类型的视图中。"
#. module: procurement
#: field:procurement.order,company_id:0
@ -150,7 +150,7 @@ msgstr "新建的需求单状态是草稿"
#. module: procurement
#: view:procurement.order:0
msgid "Permanent Procurement Exceptions"
msgstr ""
msgstr "永久性生产需求异常"
#. module: procurement
#: view:stock.warehouse.orderpoint:0
@ -861,12 +861,12 @@ msgstr "MRP和物流计划"
#. module: procurement
#: view:procurement.order:0
msgid "Temporary Procurement Exceptions"
msgstr ""
msgstr "临时产品需求异常"
#. module: procurement
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "公司名称必须唯一!"
#. module: procurement
#: field:mrp.property,name:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2012-01-13 09:38+0000\n"
"PO-Revision-Date: 2012-01-23 10:14+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: product
#: view:product.pricelist.item:0
@ -141,7 +141,7 @@ msgstr "供应商"
#. module: product
#: model:product.template,name:product.product_consultant_product_template
msgid "Service on Timesheet"
msgstr ""
msgstr "计工单服务"
#. module: product
#: help:product.price.type,field:0
@ -1054,7 +1054,7 @@ msgstr "采购单默认使用的计量单位。必须与默认计量单位位于
#. module: product
#: help:product.supplierinfo,product_uom:0
msgid "This comes from the product form."
msgstr ""
msgstr "此处源自该产品表单。"
#. module: product
#: model:ir.actions.act_window,help:product.product_normal_action
@ -1643,7 +1643,7 @@ msgstr "此处是从确认客户订单到完整产品送货的平均延迟时间
#: code:addons/product/product.py:175
#, python-format
msgid "Cannot change the category of existing UoM '%s'."
msgstr ""
msgstr "不能修改已存在计量单位的分类“%s”"
#. module: product
#: field:product.packaging,ean:0
@ -1905,7 +1905,7 @@ msgstr "需求与货位"
#. module: product
#: constraint:product.category:0
msgid "Error ! You cannot create recursive categories."
msgstr ""
msgstr "错误!您不能创建循环分类。"
#. module: product
#: field:product.category,type:0

View File

@ -7,19 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:54+0000\n"
"PO-Revision-Date: 2011-01-13 13:36+0000\n"
"PO-Revision-Date: 2012-01-23 14:40+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-24 05:39+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: project
#: view:report.project.task.user:0
msgid "New tasks"
msgstr ""
msgstr "新任务"
#. module: project
#: help:project.task.delegate,new_task_description:0
@ -50,12 +50,12 @@ msgstr "用户无权操作所选择公司数据"
#. module: project
#: view:report.project.task.user:0
msgid "Previous Month"
msgstr ""
msgstr "上月"
#. module: project
#: view:report.project.task.user:0
msgid "My tasks"
msgstr ""
msgstr "我的任务"
#. module: project
#: field:project.project,warn_customer:0
@ -91,7 +91,7 @@ msgstr "CHECK: "
#: code:addons/project/project.py:315
#, python-format
msgid "You must assign members on the project '%s' !"
msgstr ""
msgstr "您必须为项目“%s”指定成员"
#. module: project
#: field:project.task,work_ids:0
@ -104,7 +104,7 @@ msgstr "工作完成"
#: code:addons/project/project.py:1113
#, python-format
msgid "Warning !"
msgstr ""
msgstr "警告!"
#. module: project
#: model:ir.model,name:project.model_project_task_delegate
@ -119,7 +119,7 @@ msgstr "确认小时数"
#. module: project
#: view:project.project:0
msgid "Pending Projects"
msgstr ""
msgstr "未决项目"
#. module: project
#: help:project.task,remaining_hours:0
@ -197,7 +197,7 @@ msgstr "公司"
#. module: project
#: view:report.project.task.user:0
msgid "Pending tasks"
msgstr ""
msgstr "未决任务"
#. module: project
#: field:project.task.delegate,prefix:0
@ -217,7 +217,7 @@ msgstr "设为未决"
#. module: project
#: selection:project.task,priority:0
msgid "Important"
msgstr ""
msgstr "重要"
#. module: project
#: model:process.node,note:project.process_node_drafttask0
@ -265,7 +265,7 @@ msgstr "天数"
#. module: project
#: model:ir.ui.menu,name:project.menu_project_config_project
msgid "Projects and Stages"
msgstr ""
msgstr "项目与阶段"
#. module: project
#: view:project.project:0
@ -302,7 +302,7 @@ msgstr "我的未结任务"
#, python-format
msgid ""
"Please specify the Project Manager or email address of Project Manager."
msgstr ""
msgstr "请指定项目经理或项目经理的电子邮件地址。"
#. module: project
#: view:project.task:0
@ -371,7 +371,7 @@ msgstr "用于页眉和和页脚的内置变量。请注意使用正确的符号
#. module: project
#: view:project.task:0
msgid "Show only tasks having a deadline"
msgstr ""
msgstr "只显示有截止日期的项目"
#. module: project
#: selection:project.task,state:0
@ -398,7 +398,7 @@ msgstr "邮件头"
#. module: project
#: view:project.task:0
msgid "Change to Next Stage"
msgstr ""
msgstr "更改为下一个阶段"
#. module: project
#: model:process.node,name:project.process_node_donetask0
@ -408,7 +408,7 @@ msgstr "完成任务"
#. module: project
#: field:project.task,color:0
msgid "Color Index"
msgstr ""
msgstr "颜色索引"
#. module: project
#: model:ir.ui.menu,name:project.menu_definitions
@ -419,7 +419,7 @@ msgstr "设置"
#. module: project
#: view:report.project.task.user:0
msgid "Current Month"
msgstr ""
msgstr "本月"
#. module: project
#: model:process.transition,note:project.process_transition_delegate0
@ -488,12 +488,12 @@ msgstr "取消"
#. module: project
#: view:project.task.history.cumulative:0
msgid "Ready"
msgstr ""
msgstr "就绪"
#. module: project
#: view:project.task:0
msgid "Change Color"
msgstr ""
msgstr "更改颜色"
#. module: project
#: constraint:account.analytic.account:0
@ -510,7 +510,7 @@ msgstr " (copy)"
#. module: project
#: view:project.task:0
msgid "New Tasks"
msgstr ""
msgstr "新任务"
#. module: project
#: view:report.project.task.user:0
@ -579,12 +579,12 @@ msgstr "天数"
#. module: project
#: view:project.project:0
msgid "Open Projects"
msgstr ""
msgstr "打开的项目"
#. module: project
#: view:report.project.task.user:0
msgid "In progress tasks"
msgstr ""
msgstr "进行中任务"
#. module: project
#: help:project.project,progress_rate:0
@ -608,7 +608,7 @@ msgstr "项目任务"
#: selection:project.task.history.cumulative,state:0
#: view:report.project.task.user:0
msgid "New"
msgstr ""
msgstr "新建"
#. module: project
#: help:project.task,total_hours:0
@ -658,7 +658,7 @@ msgstr "普通"
#: view:project.task:0
#: view:project.task.history.cumulative:0
msgid "Pending Tasks"
msgstr ""
msgstr "未决任务"
#. module: project
#: view:project.task:0
@ -673,19 +673,19 @@ msgstr "剩余的小时数"
#. module: project
#: model:ir.model,name:project.model_mail_compose_message
msgid "E-mail composition wizard"
msgstr ""
msgstr "邮件合并向导"
#. module: project
#: view:report.project.task.user:0
msgid "Creation Date"
msgstr ""
msgstr "创建日期"
#. module: project
#: view:project.task:0
#: field:project.task.history,remaining_hours:0
#: field:project.task.history.cumulative,remaining_hours:0
msgid "Remaining Time"
msgstr ""
msgstr "剩余时间"
#. module: project
#: field:project.project,planned_hours:0
@ -757,7 +757,7 @@ msgstr "七月"
#. module: project
#: view:project.task.history.burndown:0
msgid "Burndown Chart of Tasks"
msgstr ""
msgstr "任务燃尽图"
#. module: project
#: field:project.task,date_start:0
@ -815,7 +815,7 @@ msgstr "分派给这个用户的任务标题"
msgid ""
"You cannot delete a project containing tasks. I suggest you to desactivate "
"it."
msgstr ""
msgstr "您不能删除包含任务的项目。建议您将其禁用。"
#. module: project
#: view:project.vs.hours:0
@ -840,7 +840,7 @@ msgstr "延迟的小时数"
#. module: project
#: selection:project.task,priority:0
msgid "Very important"
msgstr ""
msgstr "非常重要"
#. module: project
#: model:ir.actions.act_window,name:project.action_project_task_user_tree
@ -900,7 +900,7 @@ msgstr "阶段"
#. module: project
#: view:project.task:0
msgid "Change to Previous Stage"
msgstr ""
msgstr "更改为上一阶段"
#. module: project
#: model:ir.actions.todo.category,name:project.category_project_config
@ -916,7 +916,7 @@ msgstr "项目时间单位"
#. module: project
#: view:report.project.task.user:0
msgid "In progress"
msgstr ""
msgstr "进行中"
#. module: project
#: model:ir.actions.act_window,name:project.action_project_task_delegate
@ -945,7 +945,7 @@ msgstr "上一级"
#. module: project
#: view:project.task:0
msgid "Mark as Blocked"
msgstr ""
msgstr "标记为受阻"
#. module: project
#: model:ir.actions.act_window,help:project.action_view_task
@ -1018,7 +1018,7 @@ msgstr "任务阶段"
#. module: project
#: model:project.task.type,name:project.project_tt_specification
msgid "Design"
msgstr ""
msgstr "设计"
#. module: project
#: field:project.task,planned_hours:0
@ -1042,7 +1042,7 @@ msgstr "状态: %(state)s"
#. module: project
#: help:project.task,sequence:0
msgid "Gives the sequence order when displaying a list of tasks."
msgstr ""
msgstr "指定显示任务列表的顺序号"
#. module: project
#: view:project.project:0
@ -1074,19 +1074,19 @@ msgstr "上级任务"
#: view:project.task.history.cumulative:0
#: selection:project.task.history.cumulative,kanban_state:0
msgid "Blocked"
msgstr ""
msgstr "受阻"
#. module: project
#: help:project.task,progress:0
msgid ""
"If the task has a progress of 99.99% you should close the task if it's "
"finished or reevaluate the time"
msgstr ""
msgstr "如果该任务的进度为 99.99%且该任务已经完成,那么您可以关闭该任务或重新评估时间。"
#. module: project
#: field:project.task,user_email:0
msgid "User Email"
msgstr ""
msgstr "用户电子邮件"
#. module: project
#: help:project.task,kanban_state:0
@ -1175,7 +1175,7 @@ msgstr "发票地址"
#: field:project.task.history,kanban_state:0
#: field:project.task.history.cumulative,kanban_state:0
msgid "Kanban State"
msgstr ""
msgstr "看板状态"
#. module: project
#: view:project.project:0
@ -1193,7 +1193,7 @@ msgstr "这个报表用于分析你项目和成员的效率。可以分析任务
#. module: project
#: view:project.task:0
msgid "Change Type"
msgstr ""
msgstr "更改类型"
#. module: project
#: help:project.project,members:0
@ -1230,7 +1230,7 @@ msgstr "八月"
#: selection:project.task.history,kanban_state:0
#: selection:project.task.history.cumulative,kanban_state:0
msgid "Normal"
msgstr ""
msgstr "正常"
#. module: project
#: view:project.project:0
@ -1242,7 +1242,7 @@ msgstr "项目名称"
#: model:ir.model,name:project.model_project_task_history
#: model:ir.model,name:project.model_project_task_history_cumulative
msgid "History of Tasks"
msgstr ""
msgstr "任务历史"
#. module: project
#: help:project.task.delegate,state:0
@ -1255,7 +1255,7 @@ msgstr "你的任务进入了新的阶段。等待状态将在分派的任务结
#: code:addons/project/wizard/mail_compose_message.py:45
#, python-format
msgid "Please specify the Customer or email address of Customer."
msgstr ""
msgstr "请指定客户或客户的电子邮件。"
#. module: project
#: selection:report.project.task.user,month:0
@ -1287,7 +1287,7 @@ msgstr "恢复"
#. module: project
#: model:res.groups,name:project.group_project_user
msgid "User"
msgstr ""
msgstr "用户"
#. module: project
#: field:project.project,active:0
@ -1308,7 +1308,7 @@ msgstr "十一月"
#. module: project
#: model:ir.actions.act_window,name:project.action_create_initial_projects_installer
msgid "Create your Firsts Projects"
msgstr ""
msgstr "创建您的第一个项目"
#. module: project
#: code:addons/project/project.py:186
@ -1334,7 +1334,7 @@ msgstr "十月"
#. module: project
#: view:project.task:0
msgid "Validate planned time and open task"
msgstr ""
msgstr "验证计划时间并打开任务"
#. module: project
#: model:process.node,name:project.process_node_opentask0
@ -1344,7 +1344,7 @@ msgstr "待处理任务"
#. module: project
#: view:project.task:0
msgid "Delegations History"
msgstr ""
msgstr "委派历史"
#. module: project
#: model:ir.model,name:project.model_res_users
@ -1371,7 +1371,7 @@ msgstr "公司"
#. module: project
#: view:project.project:0
msgid "Projects in which I am a member."
msgstr ""
msgstr "我是成员的项目"
#. module: project
#: view:project.project:0
@ -1493,7 +1493,7 @@ msgstr "状态"
#: code:addons/project/project.py:890
#, python-format
msgid "Delegated User should be specified"
msgstr ""
msgstr "应该制定委派用户"
#. module: project
#: code:addons/project/project.py:827
@ -1568,12 +1568,12 @@ msgstr "标识符:%(task_id)s"
#: selection:report.project.task.user,state:0
#: selection:task.by.days,state:0
msgid "In Progress"
msgstr "进"
msgstr "进行中"
#. module: project
#: view:project.task.history.cumulative:0
msgid "Task's Analysis"
msgstr ""
msgstr "任务分析"
#. module: project
#: code:addons/project/project.py:754
@ -1582,11 +1582,13 @@ msgid ""
"Child task still open.\n"
"Please cancel or complete child task first."
msgstr ""
"子任务仍然开启。\n"
"请先取消或完成子任务。"
#. module: project
#: view:project.task.type:0
msgid "Stages common to all projects"
msgstr ""
msgstr "适用于所有项目的公共阶段"
#. module: project
#: constraint:project.task:0
@ -1607,7 +1609,7 @@ msgstr "工作时间"
#. module: project
#: view:project.project:0
msgid "Projects in which I am a manager"
msgstr ""
msgstr "我是项目经理的项目"
#. module: project
#: code:addons/project/project.py:924
@ -1752,7 +1754,7 @@ msgstr "我的发票科目"
#. module: project
#: model:project.task.type,name:project.project_tt_merge
msgid "Deployment"
msgstr ""
msgstr "部署"
#. module: project
#: field:project.project,tasks:0
@ -1811,7 +1813,7 @@ msgstr "任务日程"
#. module: project
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "公司名称必须唯一!"
#. module: project
#: view:project.task:0
@ -1832,7 +1834,7 @@ msgstr "年"
#. module: project
#: view:project.task.history.cumulative:0
msgid "Month-2"
msgstr ""
msgstr "前月"
#. module: project
#: help:report.project.task.user,closing_days:0
@ -1843,7 +1845,7 @@ msgstr "距结束日期"
#: view:project.task.history.cumulative:0
#: view:report.project.task.user:0
msgid "Month-1"
msgstr ""
msgstr "上月"
#. module: project
#: selection:report.project.task.user,month:0
@ -1869,7 +1871,7 @@ msgstr "打开完成任务"
#. module: project
#: view:project.task.type:0
msgid "Common"
msgstr ""
msgstr "公共"
#. module: project
#: view:project.task:0
@ -1903,7 +1905,7 @@ msgstr "ID"
#: model:ir.actions.act_window,name:project.action_view_task_history_burndown
#: model:ir.ui.menu,name:project.menu_action_view_task_history_burndown
msgid "Burndown Chart"
msgstr ""
msgstr "燃尽图"
#. module: project
#: model:ir.actions.act_window,name:project.act_res_users_2_project_task_opened

View File

@ -7,26 +7,26 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2010-09-09 07:19+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:12+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:13+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: project_retro_planning
#: model:ir.model,name:project_retro_planning.model_project_project
msgid "Project"
msgstr ""
msgstr "Proje"
#. module: project_retro_planning
#: constraint:project.project:0
msgid "Error! project start-date must be lower then project end-date."
msgstr ""
msgstr "Hata! Proje başlangıç tarihi bitiş tarihinden sonra olamaz."
#. module: project_retro_planning
#: constraint:project.project:0
msgid "Error! You cannot assign escalation to the same project!"
msgstr ""
msgstr "Hata! Aynı projeye yükselme atayamazsınız!"

File diff suppressed because it is too large Load Diff

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2011-11-07 12:44+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-24 23:32+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 05:54+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: purchase
#: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder0
@ -46,7 +46,7 @@ msgstr "Hedef"
#: code:addons/purchase/purchase.py:235
#, python-format
msgid "In order to delete a purchase order, it must be cancelled first!"
msgstr ""
msgstr "Bir satınalma emrini silmeden önce iptal etmelisiniz."
#. module: purchase
#: code:addons/purchase/purchase.py:772
@ -102,7 +102,7 @@ msgstr ""
#. module: purchase
#: view:purchase.order:0
msgid "Approved purchase order"
msgstr ""
msgstr "Onaylanmış Satınalma emri"
#. module: purchase
#: view:purchase.order:0
@ -122,7 +122,7 @@ msgstr "Fiyat listeleri"
#. module: purchase
#: view:stock.picking:0
msgid "To Invoice"
msgstr ""
msgstr "Faturalandırılacak"
#. module: purchase
#: view:purchase.order.line_invoice:0
@ -166,7 +166,7 @@ msgstr "Fiyat listesi yok!"
#. module: purchase
#: model:ir.model,name:purchase.model_purchase_config_wizard
msgid "purchase.config.wizard"
msgstr ""
msgstr "purchase.config.wizard"
#. module: purchase
#: view:board.board:0
@ -252,7 +252,7 @@ msgstr "Satınalma Özellikleri"
#. module: purchase
#: model:ir.model,name:purchase.model_stock_partial_picking
msgid "Partial Picking Processing Wizard"
msgstr ""
msgstr "Kısmi Teslimat İşlem Sihirbazı"
#. module: purchase
#: view:purchase.order.line:0
@ -273,17 +273,17 @@ msgstr "Gün"
#. module: purchase
#: selection:purchase.order,invoice_method:0
msgid "Based on generated draft invoice"
msgstr ""
msgstr "Oluşturulmuş taslak fatura temelinde"
#. module: purchase
#: view:purchase.report:0
msgid "Order of Day"
msgstr ""
msgstr "Günün Siparişi"
#. module: purchase
#: view:board.board:0
msgid "Monthly Purchases by Category"
msgstr ""
msgstr "Kategorilere Göre Aylık Satınalmalar"
#. module: purchase
#: model:ir.actions.act_window,name:purchase.action_purchase_line_product_tree
@ -293,7 +293,7 @@ msgstr "Satınalmalar"
#. module: purchase
#: view:purchase.order:0
msgid "Purchase order which are in draft state"
msgstr ""
msgstr "Taslak durumundaki Satınalma emirleri"
#. module: purchase
#: view:purchase.order:0
@ -425,6 +425,7 @@ msgstr "Stok Hareketi"
#, python-format
msgid "You must first cancel all invoices related to this purchase order."
msgstr ""
"Önce bu satınalma emriyle ilişkili bütün faturaları iptal etmelisiniz."
#. module: purchase
#: field:purchase.report,dest_address_id:0
@ -470,13 +471,13 @@ msgstr "Onaylayan"
#. module: purchase
#: view:purchase.report:0
msgid "Order in last month"
msgstr ""
msgstr "Geçen Aydaki Emirler"
#. module: purchase
#: code:addons/purchase/purchase.py:411
#, python-format
msgid "You must first cancel all receptions related to this purchase order."
msgstr ""
msgstr "Önce bu satınalma emriyle ilişkili bütün alımları iptal etmelisiniz."
#. module: purchase
#: selection:purchase.order.line,state:0
@ -501,7 +502,7 @@ msgstr "Bir alım gerçekleştirildiğini gösterir"
#. module: purchase
#: view:purchase.order:0
msgid "Purchase orders which are in exception state"
msgstr ""
msgstr "İstisna durumundaki satınalma emirleri"
#. module: purchase
#: report:purchase.order:0
@ -530,7 +531,7 @@ msgstr "Ortalama Fiyat"
#. module: purchase
#: view:stock.picking:0
msgid "Incoming Shipments already processed"
msgstr ""
msgstr "Gelen sevkiyatlar halihazırda işlenmiş"
#. module: purchase
#: report:purchase.order:0
@ -548,7 +549,7 @@ msgstr "Onayla"
#: model:ir.ui.menu,name:purchase.menu_action_picking_tree4_picking_to_invoice
#: selection:purchase.order,invoice_method:0
msgid "Based on receptions"
msgstr ""
msgstr "sevkiyatlar Temelinde"
#. module: purchase
#: constraint:res.company:0
@ -584,7 +585,7 @@ msgstr ""
#. module: purchase
#: view:purchase.order:0
msgid "Purchase order which are in the exception state"
msgstr ""
msgstr "İstisna durumundaki Satınalma Emirleri"
#. module: purchase
#: model:ir.actions.act_window,help:purchase.action_stock_move_report_po
@ -642,12 +643,12 @@ msgstr "Toplam Fiyat"
#. module: purchase
#: model:ir.actions.act_window,name:purchase.action_import_create_supplier_installer
msgid "Create or Import Suppliers"
msgstr ""
msgstr "Tedarikçileri Oluştur ya da Aktar"
#. module: purchase
#: view:stock.picking:0
msgid "Available"
msgstr ""
msgstr "Müsait"
#. module: purchase
#: field:purchase.report,partner_address_id:0
@ -676,7 +677,7 @@ msgstr "Hata!"
#. module: purchase
#: constraint:stock.move:0
msgid "You can not move products from or to a location of the type view."
msgstr ""
msgstr "view tipinde bir lokasyona ürün giriş çıkışı yapamazsınız."
#. module: purchase
#: code:addons/purchase/purchase.py:710
@ -725,7 +726,7 @@ msgstr ""
#. module: purchase
#: model:ir.ui.menu,name:purchase.menu_configuration_misc
msgid "Miscellaneous"
msgstr ""
msgstr "Çeşitli"
#. module: purchase
#: code:addons/purchase/purchase.py:788
@ -797,7 +798,7 @@ msgstr "Resepsiyonlar"
#: code:addons/purchase/purchase.py:284
#, python-format
msgid "You cannot confirm a purchase order without any lines."
msgstr ""
msgstr "Hiçbir kalemi olmayan satınalma emirlerini onaylayamazsınız"
#. module: purchase
#: model:ir.actions.act_window,help:purchase.action_invoice_pending
@ -822,12 +823,12 @@ msgstr "Teklif İsteği"
#: code:addons/purchase/edi/purchase_order.py:139
#, python-format
msgid "EDI Pricelist (%s)"
msgstr ""
msgstr "EDI Fiyat Listesi (%s)"
#. module: purchase
#: selection:purchase.order,state:0
msgid "Waiting Approval"
msgstr ""
msgstr "Onay Bekliyor"
#. module: purchase
#: selection:purchase.report,month:0
@ -837,7 +838,7 @@ msgstr "Ocak"
#. module: purchase
#: model:ir.actions.server,name:purchase.ir_actions_server_edi_purchase
msgid "Auto-email confirmed purchase orders"
msgstr ""
msgstr "Otomatik-eposta onaylı satınalma emirleri"
#. module: purchase
#: model:process.transition,name:purchase.process_transition_approvingpurchaseorder0
@ -881,7 +882,7 @@ msgstr "Mik."
#. module: purchase
#: view:purchase.report:0
msgid "Month-1"
msgstr ""
msgstr "Ay-1"
#. module: purchase
#: help:purchase.order,minimum_planned_date:0
@ -900,7 +901,7 @@ msgstr "Satınalma Siparişi Birleştirme"
#. module: purchase
#: view:purchase.report:0
msgid "Order in current month"
msgstr ""
msgstr "Bu ayki Emirler"
#. module: purchase
#: view:purchase.report:0
@ -943,7 +944,7 @@ msgstr "Aylık Toplam Kullanıcı Sipariş Kalemleri"
#. module: purchase
#: view:purchase.order:0
msgid "Approved purchase orders"
msgstr ""
msgstr "Onaylı Satınalma Emirleri"
#. module: purchase
#: view:purchase.report:0
@ -954,7 +955,7 @@ msgstr "Ay"
#. module: purchase
#: model:email.template,subject:purchase.email_template_edi_purchase
msgid "${object.company_id.name} Order (Ref ${object.name or 'n/a' })"
msgstr ""
msgstr "${object.company_id.name} Satınalma (Ref ${object.name or 'n/a' })"
#. module: purchase
#: report:purchase.quotation:0
@ -974,7 +975,7 @@ msgstr "Vergilendirilmemiş toplam tutar"
#. module: purchase
#: model:res.groups,name:purchase.group_purchase_user
msgid "User"
msgstr ""
msgstr "Kullanıcı"
#. module: purchase
#: field:purchase.order,shipped:0
@ -996,7 +997,7 @@ msgstr "Bu satınalma için oluşturulmuş satınalma listesidir"
#. module: purchase
#: view:stock.picking:0
msgid "Is a Back Order"
msgstr ""
msgstr "Birikmiş Sipariş mi (backorder)"
#. module: purchase
#: model:process.node,note:purchase.process_node_invoiceafterpacking0
@ -1045,7 +1046,7 @@ msgstr "Sipariş Durumu"
#. module: purchase
#: model:ir.ui.menu,name:purchase.menu_product_category_config_purchase
msgid "Product Categories"
msgstr ""
msgstr "Ürün Kategorileri"
#. module: purchase
#: model:ir.actions.act_window,name:purchase.action_view_purchase_line_invoice
@ -1055,7 +1056,7 @@ msgstr "Fatura oluştur"
#. module: purchase
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Şirket adı tekil olmalı !"
#. module: purchase
#: model:ir.model,name:purchase.model_purchase_order_line
@ -1072,7 +1073,7 @@ msgstr "Takvimi Göster"
#. module: purchase
#: selection:purchase.config.wizard,default_method:0
msgid "Based on Purchase Order Lines"
msgstr ""
msgstr "Satınalma emri kalemleri temelinde"
#. module: purchase
#: help:purchase.order,amount_untaxed:0
@ -1083,7 +1084,7 @@ msgstr "Vergilendirilmemiş tutar"
#: code:addons/purchase/purchase.py:885
#, python-format
msgid "PO: %s"
msgstr ""
msgstr "SA: %s"
#. module: purchase
#: model:process.transition,note:purchase.process_transition_purchaseinvoice0
@ -1151,12 +1152,12 @@ msgstr ""
#: model:ir.actions.act_window,name:purchase.action_email_templates
#: model:ir.ui.menu,name:purchase.menu_email_templates
msgid "Email Templates"
msgstr ""
msgstr "E-Posta Şablonları"
#. module: purchase
#: selection:purchase.config.wizard,default_method:0
msgid "Pre-Generate Draft Invoices on Based Purchase Orders"
msgstr ""
msgstr "Satınalma emri temelinde taslak faturaları oluştur"
#. module: purchase
#: model:ir.model,name:purchase.model_purchase_report
@ -1187,7 +1188,7 @@ msgstr "Uzatılmış Filtreler..."
#. module: purchase
#: view:purchase.config.wizard:0
msgid "Invoicing Control on Purchases"
msgstr ""
msgstr "Satınalmalardaki Faturalama Kontrolü"
#. module: purchase
#: code:addons/purchase/wizard/purchase_order_group.py:48
@ -1232,7 +1233,7 @@ msgstr ""
#. module: purchase
#: model:ir.ui.menu,name:purchase.menu_purchase_partner_cat
msgid "Address Book"
msgstr ""
msgstr "Adres Defteri"
#. module: purchase
#: model:ir.model,name:purchase.model_res_company
@ -1249,7 +1250,7 @@ msgstr "Alış Siparişini İptal Et"
#: code:addons/purchase/purchase.py:417
#, python-format
msgid "Unable to cancel this purchase order!"
msgstr ""
msgstr "Bu satınalma emri iptal edilemiyor!"
#. module: purchase
#: model:process.transition,note:purchase.process_transition_createpackinglist0
@ -1274,7 +1275,7 @@ msgstr "Performans tablosu"
#. module: purchase
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: purchase
#: view:purchase.report:0
@ -1285,7 +1286,7 @@ msgstr "Ürün Tutarı"
#. module: purchase
#: model:ir.ui.menu,name:purchase.menu_partner_categories_in_form
msgid "Partner Categories"
msgstr ""
msgstr "Cari Kategorileri"
#. module: purchase
#: help:purchase.order,amount_tax:0
@ -1337,7 +1338,7 @@ msgstr "Bu satınalma sipariş talebini oluşturan belge referansı."
#. module: purchase
#: view:purchase.order:0
msgid "Purchase orders which are not approved yet."
msgstr ""
msgstr "Henüz onaylanmamış satınalma emirleri"
#. module: purchase
#: help:purchase.order,state:0
@ -1406,7 +1407,7 @@ msgstr "Genel Bilgiler"
#. module: purchase
#: view:purchase.order:0
msgid "Not invoiced"
msgstr ""
msgstr "Faturalanmamış"
#. module: purchase
#: report:purchase.order:0
@ -1472,7 +1473,7 @@ msgstr "Alış Siparişleri"
#. module: purchase
#: sql_constraint:purchase.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: purchase
#: field:purchase.order,origin:0
@ -1514,7 +1515,7 @@ msgstr "Tél. :"
#. module: purchase
#: view:purchase.report:0
msgid "Order of Month"
msgstr ""
msgstr "Aylık Emirler"
#. module: purchase
#: report:purchase.order:0
@ -1530,7 +1531,7 @@ msgstr "Satınalma Siparişi Arama"
#. module: purchase
#: model:ir.actions.act_window,name:purchase.action_purchase_config
msgid "Set the Default Invoicing Control Method"
msgstr ""
msgstr "Öntanımlı Faturalama kontrol yöntemini belirle"
#. module: purchase
#: model:process.node,note:purchase.process_node_draftpurchaseorder0
@ -1562,7 +1563,7 @@ msgstr "Tedarikçi Onayı Bekleniyor"
#. module: purchase
#: model:ir.ui.menu,name:purchase.menu_procurement_management_pending_invoice
msgid "Based on draft invoices"
msgstr ""
msgstr "Taslak faturalar temelinde"
#. module: purchase
#: view:purchase.order:0
@ -1604,6 +1605,8 @@ msgid ""
"The selected supplier has a minimal quantity set to %s, you should not "
"purchase less."
msgstr ""
"Seçilmiş tedarikçinin minimum sipariş miktarı %s, daha az miktar "
"satınalmamalısınız."
#. module: purchase
#: view:purchase.report:0
@ -1618,7 +1621,7 @@ msgstr "Tahmini Teslimat Adresi"
#. module: purchase
#: view:stock.picking:0
msgid "Journal"
msgstr ""
msgstr "Yevmiye"
#. module: purchase
#: model:ir.actions.act_window,name:purchase.action_stock_move_report_po
@ -1650,7 +1653,7 @@ msgstr "Teslimat"
#. module: purchase
#: view:purchase.order:0
msgid "Purchase orders which are in done state."
msgstr ""
msgstr "Tamamlandı durumundaki satınalma emirleri"
#. module: purchase
#: field:purchase.order.line,product_uom:0
@ -1686,7 +1689,7 @@ msgstr "Rezervasyon"
#. module: purchase
#: view:purchase.order:0
msgid "Purchase orders that include lines not invoiced."
msgstr ""
msgstr "İçinde faturalanmamış kalemler içeren satınalma emirleri"
#. module: purchase
#: view:purchase.order:0
@ -1696,7 +1699,7 @@ msgstr "Tutar"
#. module: purchase
#: view:stock.picking:0
msgid "Picking to Invoice"
msgstr ""
msgstr "Faturalacak teslimat"
#. module: purchase
#: view:purchase.config.wizard:0
@ -1704,6 +1707,8 @@ msgid ""
"This tool will help you to select the method you want to use to control "
"supplier invoices."
msgstr ""
"Bu araç, tedarikçi faturalarını kontrol etmek için kullanmak istediğiniz "
"yöntemi seçmek için yardımcı olacaktır."
#. module: purchase
#: model:process.transition,note:purchase.process_transition_confirmingpurchaseorder1
@ -1803,7 +1808,7 @@ msgstr "Satınalma-Standart Fiyat"
#. module: purchase
#: field:purchase.config.wizard,default_method:0
msgid "Default Invoicing Control Method"
msgstr ""
msgstr "Öntanımlı fatura kontrol metodu"
#. module: purchase
#: model:product.pricelist.type,name:purchase.pricelist_type_purchase
@ -1819,7 +1824,7 @@ msgstr "Faturalama Kontrolü"
#. module: purchase
#: view:stock.picking:0
msgid "Back Orders"
msgstr ""
msgstr "Sipariş Bakiyeleri"
#. module: purchase
#: model:process.transition.action,name:purchase.process_transition_action_approvingpurchaseorder0
@ -1875,7 +1880,7 @@ msgstr "Fiyat Listesi Sürümleri"
#. module: purchase
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Hata ! kendini çağıran ilişkili üyeler oluşturamazsınız."
#. module: purchase
#: code:addons/purchase/purchase.py:358
@ -1964,7 +1969,7 @@ msgstr ""
#. module: purchase
#: view:purchase.order:0
msgid "Purchase orders which are in draft state"
msgstr ""
msgstr "Taslak durumundaki satınalma emirleri"
#. module: purchase
#: selection:purchase.report,month:0
@ -1974,17 +1979,17 @@ msgstr "Mayıs"
#. module: purchase
#: model:res.groups,name:purchase.group_purchase_manager
msgid "Manager"
msgstr ""
msgstr "Yönetici"
#. module: purchase
#: view:purchase.config.wizard:0
msgid "res_config_contents"
msgstr ""
msgstr "res_config_contents"
#. module: purchase
#: view:purchase.report:0
msgid "Order in current year"
msgstr ""
msgstr "Bu yılki Emirler"
#. module: purchase
#: model:process.process,name:purchase.process_process_purchaseprocess0
@ -2002,7 +2007,7 @@ msgstr "Yıl"
#: model:ir.ui.menu,name:purchase.menu_purchase_line_order_draft
#: selection:purchase.order,invoice_method:0
msgid "Based on Purchase Order lines"
msgstr ""
msgstr "Satınalma Emri kalemleri temelinde"
#. module: purchase
#: model:ir.actions.todo.category,name:purchase.category_purchase_config

View File

@ -697,100 +697,97 @@ class purchase_order_line(osv.osv):
default.update({'state':'draft', 'move_ids':[],'invoiced':0,'invoice_lines':[]})
return super(purchase_order_line, self).copy_data(cr, uid, id, default, context)
#TOFIX:
# - name of method should "onchange_product_id"
# - docstring
# - merge 'product_uom_change' method
# - split into small internal methods for clearity
def product_id_change(self, cr, uid, ids, pricelist, product, qty, uom,
partner_id, date_order=False, fiscal_position=False, date_planned=False,
name=False, price_unit=False, notes=False, context={}):
if not pricelist:
def onchange_product_uom(self, cr, uid, ids, pricelist_id, product_id, qty, uom_id,
partner_id, date_order=False, fiscal_position_id=False, date_planned=False,
name=False, price_unit=False, notes=False, context=None):
"""
onchange handler of product_uom.
"""
if not uom_id:
return {'value': {'price_unit': price_unit or 0.0, 'name': name or '', 'notes': notes or'', 'product_uom' : uom_id or False}}
return self.onchange_product_id(cr, uid, ids, pricelist_id, product_id, qty, uom_id,
partner_id, date_order=date_order, fiscal_position_id=fiscal_position_id, date_planned=date_planned,
name=name, price_unit=price_unit, notes=notes, context=context)
def onchange_product_id(self, cr, uid, ids, pricelist_id, product_id, qty, uom_id,
partner_id, date_order=False, fiscal_position_id=False, date_planned=False,
name=False, price_unit=False, notes=False, context=None):
"""
onchange handler of product_id.
"""
if context is None:
context = {}
res = {'value': {'price_unit': price_unit or 0.0, 'name': name or '', 'notes': notes or '', 'product_uom' : uom_id or False}}
if not product_id:
return res
product_product = self.pool.get('product.product')
product_uom = self.pool.get('product.uom')
res_partner = self.pool.get('res.partner')
product_supplierinfo = self.pool.get('product.supplierinfo')
product_pricelist = self.pool.get('product.pricelist')
account_fiscal_position = self.pool.get('account.fiscal.position')
account_tax = self.pool.get('account.tax')
# - check for the presence of partner_id and pricelist_id
if not pricelist_id:
raise osv.except_osv(_('No Pricelist !'), _('You have to select a pricelist or a supplier in the purchase form !\nPlease set one before choosing a product.'))
if not partner_id:
if not partner_id:
raise osv.except_osv(_('No Partner!'), _('You have to select a partner in the purchase form !\nPlease set one partner before choosing a product.'))
if not product:
return {'value': {'price_unit': price_unit or 0.0, 'name': name or '',
'notes': notes or'', 'product_uom' : uom or False}, 'domain':{'product_uom':[]}}
res = {}
prod= self.pool.get('product.product').browse(cr, uid, product)
product_uom_pool = self.pool.get('product.uom')
lang=False
if partner_id:
lang=self.pool.get('res.partner').read(cr, uid, partner_id, ['lang'])['lang']
# - determine name and notes based on product in partner lang.
lang = res_partner.browse(cr, uid, partner_id).lang
context_partner = {'lang': lang, 'partner_id': partner_id}
product = product_product.browse(cr, uid, product_id, context=context_partner)
res['value'].update({'name': product.name, 'notes': notes or product.description_purchase})
# - set a domain on product_uom
res['domain'] = {'product_uom': [('category_id','=',product.uom_id.category_id.id)]}
prod = self.pool.get('product.product').browse(cr, uid, product, context=context)
prod_uom_po = prod.uom_po_id.id
if not uom:
uom = prod_uom_po
# - check that uom and product uom belong to the same category
product_uom_po_id = product.uom_po_id.id
if not uom_id:
uom_id = product_uom_po_id
if product.uom_id.category_id.id != product_uom.browse(cr, uid, uom_id, context=context).category_id.id:
res['warning'] = {'title': _('Warning'), 'message': _('Selected UOM does not belong to the same category as the product UOM')}
uom_id = product_uom_po_id
res['value'].update({'product_uom': uom_id})
# - determine product_qty and date_planned based on seller info
if not date_order:
date_order = time.strftime('%Y-%m-%d')
qty = qty or 1.0
seller_delay = 0
if uom:
uom1_cat = prod.uom_id.category_id.id
uom2_cat = product_uom_pool.browse(cr, uid, uom).category_id.id
if uom1_cat != uom2_cat:
uom = False
supplierinfo_ids = product_supplierinfo.search(cr, uid, [('name','=',partner_id),('product_id','=',product.id)])
for supplierinfo in product_supplierinfo.browse(cr, uid, supplierinfo_ids, context=context):
seller_delay = supplierinfo.delay
if supplierinfo.product_uom.id != uom_id:
res['warning'] = {'title': _('Warning'), 'message': _('The selected supplier only sells this product by %s') % supplierinfo.product_uom.name }
min_qty = product_uom._compute_qty(cr, uid, supplierinfo.product_uom.id, supplierinfo.min_qty, to_uom_id=uom_id)
if qty < min_qty: # If the supplier quantity is greater than entered from user, set minimal.
res['warning'] = {'title': _('Warning'), 'message': _('The selected supplier has a minimal quantity set to %s %s, you should not purchase less.') % (supplierinfo.min_qty, supplierinfo.product_uom.name)}
qty = min_qty
prod_name = self.pool.get('product.product').name_get(cr, uid, [prod.id], context=context_partner)[0][1]
res = {}
for s in prod.seller_ids:
if s.name.id == partner_id:
seller_delay = s.delay
if s.product_uom:
temp_qty = product_uom_pool._compute_qty(cr, uid, s.product_uom.id, s.min_qty, to_uom_id=prod.uom_id.id)
uom = s.product_uom.id #prod_uom_po
temp_qty = s.min_qty # supplier _qty assigned to temp
if qty < temp_qty: # If the supplier quantity is greater than entered from user, set minimal.
qty = temp_qty
res.update({'warning': {'title': _('Warning'), 'message': _('The selected supplier has a minimal quantity set to %s, you should not purchase less.') % qty}})
qty_in_product_uom = product_uom_pool._compute_qty(cr, uid, uom, qty, to_uom_id=prod.uom_id.id)
price = self.pool.get('product.pricelist').price_get(cr,uid,[pricelist],
product, qty_in_product_uom or 1.0, partner_id, {
'uom': uom,
'date': date_order,
})[pricelist]
dt = (datetime.now() + relativedelta(days=int(seller_delay) or 0.0)).strftime('%Y-%m-%d %H:%M:%S')
dt = (datetime.strptime(date_order, '%Y-%m-%d') + relativedelta(days=int(seller_delay) or 0.0)).strftime('%Y-%m-%d %H:%M:%S')
res['value'].update({'date_planned': date_planned or dt, 'product_qty': qty})
# - determine price_unit and taxes_id
price = product_pricelist.price_get(cr, uid, [pricelist_id],
product.id, qty or 1.0, partner_id, {'uom': uom_id, 'date': date_order})[pricelist_id]
taxes = account_tax.browse(cr, uid, map(lambda x: x.id, product.supplier_taxes_id))
fpos = fiscal_position_id and account_fiscal_position.browse(cr, uid, fiscal_position_id, context=context) or False
taxes_ids = account_fiscal_position.map_tax(cr, uid, fpos, taxes)
res['value'].update({'price_unit': price, 'taxes_id': taxes_ids})
res.update({'value': {'price_unit': price, 'name': prod_name,
'taxes_id':map(lambda x: x.id, prod.supplier_taxes_id),
'date_planned': date_planned or dt,'notes': notes or prod.description_purchase,
'product_qty': qty,
'product_uom': prod.uom_id.id}})
domain = {}
taxes = self.pool.get('account.tax').browse(cr, uid,map(lambda x: x.id, prod.supplier_taxes_id))
fpos = fiscal_position and self.pool.get('account.fiscal.position').browse(cr, uid, fiscal_position) or False
res['value']['taxes_id'] = self.pool.get('account.fiscal.position').map_tax(cr, uid, fpos, taxes)
res2 = self.pool.get('product.uom').read(cr, uid, [prod.uom_id.id], ['category_id'])
res3 = prod.uom_id.category_id.id
domain = {'product_uom':[('category_id','=',res2[0]['category_id'][0])]}
if res2[0]['category_id'][0] != res3:
raise osv.except_osv(_('Wrong Product UOM !'), _('You have to select a product UOM in the same category than the purchase UOM of the product'))
res['domain'] = domain
return res
#TOFIX:
# - merge into 'product_id_change' method
def product_uom_change(self, cr, uid, ids, pricelist, product, qty, uom,
partner_id, date_order=False, fiscal_position=False, date_planned=False,
name=False, price_unit=False, notes=False, context={}):
res = self.product_id_change(cr, uid, ids, pricelist, product, qty, uom,
partner_id, date_order=date_order, fiscal_position=fiscal_position, date_planned=date_planned,
name=name, price_unit=price_unit, notes=notes, context=context)
if 'product_uom' in res['value']:
if uom and (uom != res['value']['product_uom']) and res['value']['product_uom']:
seller_uom_name = self.pool.get('product.uom').read(cr, uid, [res['value']['product_uom']], ['name'])[0]['name']
res.update({'warning': {'title': _('Warning'), 'message': _('The selected supplier only sells this product by %s') % seller_uom_name }})
del res['value']['product_uom']
if not uom:
res['value']['price_unit'] = 0.0
return res
product_id_change = onchange_product_id
product_uom_change = onchange_product_uom
def action_confirm(self, cr, uid, ids, context=None):
self.write(cr, uid, ids, {'state': 'confirmed'}, context=context)

View File

@ -74,3 +74,12 @@
- product_id: product.product_product_1
product_qty: 15
-
!record {model: product.product, id: stock.product_icecream}:
uom_id: product.product_uom_gram
-
!record {model: purchase.order, id: order_purchase_icecream}:
partner_id: base.res_partner_asus
order_line:
- product_id: stock.product_icecream

View File

@ -359,9 +359,9 @@
<form string="Purchase Order Line">
<notebook colspan="4">
<page string="Order Line">
<field name="product_id" colspan="4" context="{'partner_id':parent.partner_id, 'quantity':product_qty, 'pricelist':parent.pricelist_id, 'uom':product_uom, 'warehouse':parent.warehouse_id}" on_change="product_id_change(parent.pricelist_id,product_id,product_qty,product_uom,parent.partner_id, parent.date_order,parent.fiscal_position,date_planned,name,price_unit,notes,context)"/>
<field name="product_qty" context="{'partner_id':parent.partner_id, 'quantity':product_qty, 'pricelist':parent.pricelist_id, 'uom':product_uom, 'warehouse':parent.warehouse_id}" on_change="product_id_change(parent.pricelist_id,product_id,product_qty,product_uom,parent.partner_id,parent.date_order,parent.fiscal_position,date_planned,name,price_unit,notes,context)"/>
<field name="product_uom" on_change="product_uom_change(parent.pricelist_id,product_id,product_qty,product_uom,parent.partner_id, parent.date_order,parent.fiscal_position,date_planned,name,price_unit,notes)"/>
<field name="product_id" colspan="4" on_change="onchange_product_id(parent.pricelist_id,product_id,product_qty,product_uom,parent.partner_id, parent.date_order,parent.fiscal_position,date_planned,name,price_unit,notes,context)" required="1"/>
<field name="product_qty" on_change="onchange_product_id(parent.pricelist_id,product_id,product_qty,product_uom,parent.partner_id,parent.date_order,parent.fiscal_position,date_planned,name,price_unit,notes,context)"/>
<field name="product_uom" on_change="onchange_product_uom(parent.pricelist_id,product_id,product_qty,product_uom,parent.partner_id, parent.date_order,parent.fiscal_position,date_planned,name,price_unit,notes,context)"/>
<field colspan="4" name="name"/>
<field name="date_planned" widget="date"/>
<field name="price_unit"/>

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-06-09 18:23+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:23+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 05:47+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: purchase_analytic_plans
#: field:purchase.order.line,analytics_id:0
@ -24,7 +24,7 @@ msgstr "Analitik Dağılım"
#. module: purchase_analytic_plans
#: sql_constraint:purchase.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: purchase_analytic_plans
#: model:ir.model,name:purchase_analytic_plans.model_purchase_order_line

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-06-09 18:32+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:14+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:32+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:26+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: purchase_double_validation
#: view:purchase.double.validation.installer:0
@ -47,7 +47,7 @@ msgstr "Satınalmalar için Sınır Miktarlarını Yapılandır"
#: view:board.board:0
#: model:ir.actions.act_window,name:purchase_double_validation.purchase_waiting
msgid "Purchase Order Waiting Approval"
msgstr ""
msgstr "Onay Bekleyen Alış Siparişi"
#. module: purchase_double_validation
#: view:purchase.double.validation.installer:0

View File

@ -7,30 +7,30 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-05-16 21:14+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:17+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:02+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: sale_crm
#: field:sale.order,categ_id:0
msgid "Category"
msgstr ""
msgstr "Kategori"
#. module: sale_crm
#: sql_constraint:sale.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: sale_crm
#: code:addons/sale_crm/wizard/crm_make_sale.py:112
#, python-format
msgid "Converted to Sales Quotation(%s)."
msgstr ""
msgstr "Satış Teklifine (%s) cevirilmiş"
#. module: sale_crm
#: view:crm.make.sale:0
@ -62,7 +62,7 @@ msgstr "_Oluştur"
#. module: sale_crm
#: view:sale.order:0
msgid "My Sales Team(s)"
msgstr ""
msgstr "Satış Ekiplerim"
#. module: sale_crm
#: help:crm.make.sale,close:0
@ -74,7 +74,7 @@ msgstr ""
#. module: sale_crm
#: view:board.board:0
msgid "My Opportunities"
msgstr ""
msgstr "Fırsatlarım"
#. module: sale_crm
#: view:crm.lead:0
@ -105,7 +105,7 @@ msgstr "Fırsatı Kapat"
#. module: sale_crm
#: view:board.board:0
msgid "My Planned Revenues by Stage"
msgstr ""
msgstr "Sahneye göre Planlanan Gelirlerim"
#. module: sale_crm
#: code:addons/sale_crm/wizard/crm_make_sale.py:110

View File

@ -7,19 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2010-09-09 07:19+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-25 00:15+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 06:52+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: sale_journal
#: sql_constraint:sale.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: sale_journal
#: field:sale_journal.invoice.type,note:0
@ -41,7 +41,7 @@ msgstr ""
#. module: sale_journal
#: constraint:res.partner:0
msgid "Error ! You cannot create recursive associated members."
msgstr ""
msgstr "Hata ! kendini çağıran ilişkili üyeler oluşturamazsınız."
#. module: sale_journal
#: view:res.partner:0
@ -98,7 +98,7 @@ msgstr ""
#. module: sale_journal
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: sale_journal
#: field:sale.order,invoice_type_id:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-02-15 15:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 23:24+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:17+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: sale_layout
#: sql_constraint:sale.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: sale_layout
#: selection:sale.order.line,layout_type:0
@ -45,7 +45,7 @@ msgstr "Not"
#. module: sale_layout
#: field:sale.order.line,layout_type:0
msgid "Line Type"
msgstr ""
msgstr "Satır Tipi"
#. module: sale_layout
#: report:sale.order.layout:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-05-10 18:30+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:23+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:16+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: sale_margin
#: sql_constraint:sale.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: sale_margin
#: field:sale.order.line,purchase_price:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-02-15 15:58+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 23:24+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:17+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: sale_mrp
#: help:mrp.production,sale_ref:0
@ -40,12 +40,12 @@ msgstr "Satış İsmi"
#. module: sale_mrp
#: sql_constraint:mrp.production:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: sale_mrp
#: constraint:mrp.production:0
msgid "Order quantity cannot be negative or zero!"
msgstr ""
msgstr "Sipariş adedi negatif ya da sıfır olamaz!"
#. module: sale_mrp
#: help:mrp.production,sale_name:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:46+0000\n"
"PO-Revision-Date: 2011-02-16 11:54+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 23:22+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:24+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: sale_order_dates
#: sql_constraint:sale.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: sale_order_dates
#: help:sale.order,requested_date:0

Some files were not shown because too many files have changed in this diff Show More