Browsing Turkish translation

1 of 36 results
1.
Code should always set a variable named `result` with the result of your test, that can be a list or
a dictionary. If `result` is an empty list, it means that the test was succesful. Otherwise it will
try to translate and print what is inside `result`.

If the result of your test is a dictionary, you can set a variable named `column_order` to choose in
what order you want to print `result`'s content.

Should you need them, you can also use the following variables into your code:
* cr: cursor to the database
* uid: ID of the current user

In any ways, the code must be legal python statements with correct indentation (if needed).

Example:
sql = '''SELECT id, name, ref, date
FROM account_move_line
WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')
'''
cr.execute(sql)
result = cr.dictfetchall()
module: account_test
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
Kod her zaman, testinizin sonucunda ‘sonuç’ olarak adlandırılan bir değişken oluşturmalıdır, bu bir
liste ya da bir sözlük olabilir. Eğer ‘sonuç’ boş bir listeyse, bu testin başarılı olduğu anlamındadır. Aksi
takdirde ‘sonuç’ içinde ne varsa çevirisini yapın ve yazdırın.

Testinizin sonucu bir sözlük ise, ‘sonuç’ içeriğini hangi sırada yazdırmayı seçmeniz için ‘sütun_sırası’
adıyla bir değişken oluşturmalısınız.

Gerekirse kodunuza aşağıdaki değişkenleri de ekleyebilirsiniz:
* cr: veritabanı imleçi
* uid: geçerli kullanıcı ID

Kod her durumda doğru satırbaşı girintisi ile (gerekirse) geçerli piton komutları olmalı.

Example:
sql = '''SELECT id, name, ref, date
FROM account_move_line
WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')
'''
cr.execute(sql)
result = cr.dictfetchall()
Translated by Christophe Simonis (OpenERP)
Located in view:accounting.assert.test:0
1 of 36 results

This translation is managed by Açık Kaynak Türkçeleştirme Takımı, assigned by Odoo Translators (MOVED TO TRANSIFEX).

You are not logged in. Please log in to work on translations.