Turkesh Patel (Open ERP) 2013-09-16 12:37:08 +05:30
commit 5a2ac400d7
360 changed files with 7147 additions and 2088 deletions

View File

@ -528,27 +528,35 @@ class Home(http.Controller):
@http.route('/', type='http', auth="none")
def index(self, s_action=None, db=None, debug=False, **kw):
debug = debug != False
if db is not None:
lst = http.db_list(True)
if db in lst and db != request.session.db:
request.session.logout()
request.session.db = db
if db != request.session.db:
lst = http.db_list(True)
if db not in lst:
db = None
guessed_db = http.db_monodb(request.httprequest)
if guessed_db is None and len(lst) > 0:
guessed_db = lst[0]
def redirect(db):
query = dict(urlparse.parse_qsl(request.httprequest.query_string, keep_blank_values=True))
query.update({'db': request.session.db})
query.update({'db': db})
redirect = request.httprequest.path + '?' + urllib.urlencode(query)
return redirect_with_hash(redirect)
db = request.session.db
js = "\n ".join('<script type="text/javascript" src="%s"></script>' % i for i in manifest_list('js', db=db, debug=debug))
css = "\n ".join('<link rel="stylesheet" href="%s">' % i for i in manifest_list('css', db=db, debug=debug))
if db is None and guessed_db is not None:
return redirect(guessed_db)
if db is not None and db != guessed_db:
request.session.logout()
request.session.db = db
guessed_db = db
js = "\n ".join('<script type="text/javascript" src="%s"></script>' % i for i in manifest_list('js', db=guessed_db, debug=debug))
css = "\n ".join('<link rel="stylesheet" href="%s">' % i for i in manifest_list('css', db=guessed_db, debug=debug))
r = html_template % {
'js': js,
'css': css,
'modules': simplejson.dumps(module_boot(db=db)),
'modules': simplejson.dumps(module_boot(db=guessed_db)),
'init': 'var wc = new s.web.WebClient();wc.appendTo($(document.body));'
}
return request.make_response(r, {'Cache-Control': 'no-cache', 'Content-Type': 'text/html; charset=utf-8'})
@ -729,7 +737,7 @@ class Database(http.Controller):
def get_list(self):
# TODO change js to avoid calling this method if in monodb mode
try:
return db_list()
return http.db_list()
except openerp.exceptions.AccessDenied:
monodb = db_monodb()
if monodb:

View File

@ -3,8 +3,12 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to OpenERP Web's documentation!
=======================================
OpenERP Web Reference Documentation
===================================
See also the `OpenERP Web Training`_.
.. _OpenERP Web Training: https://doc.openerp.com/trunk/training/
Basics
------

View File

@ -617,8 +617,13 @@ class OpenERPSession(werkzeug.contrib.sessions.Session):
"""
if uid is None:
uid = openerp.netsvc.dispatch_rpc('common', 'authenticate', [db, login, password,
request.httprequest.environ])
wsgienv = request.httprequest.environ
env = dict(
base_location=request.httprequest.url_root.rstrip('/'),
HTTP_HOST=wsgienv['HTTP_HOST'],
REMOTE_ADDR=wsgienv['REMOTE_ADDR'],
)
uid = openerp.netsvc.dispatch_rpc('common', 'authenticate', [db, login, password, env])
else:
security.check(db, uid, password)
self.db = db
@ -931,7 +936,7 @@ class Root(object):
if httprequest.session.should_save:
self.session_store.save(httprequest.session)
if not explicit_session and hasattr(response, 'set_cookie'):
response.set_cookie('session_id', httprequest.session.sid)
response.set_cookie('session_id', httprequest.session.sid, max_age=90 * 24 * 60 * 60)
return response(environ, start_response)
except werkzeug.exceptions.HTTPException, e:
@ -1079,17 +1084,14 @@ def db_monodb(httprequest=None):
dbs = db_list(True, httprequest)
# 1 try the db already in the session
# try the db already in the session
db_session = httprequest.session.db
if db_session in dbs:
return db_session
# 2 if there is only one db in the db filters, take it
if len(dbs) == 1:
return dbs[0]
# 3 if there are multiple dbs, take the first one only if we can list them
if len(dbs) > 1 and config['list_db']:
# if dbfilters was specified when launching the server and there is
# only one possible db, we take that one
if openerp.tools.config['dbfilter'] != ".*" and len(dbs) == 1:
return dbs[0]
return None

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
"X-Poedit-Language: Czech\n"
#. module: web
@ -244,7 +244,7 @@ msgstr "Formulář"
#: code:addons/web/static/src/xml/base.xml:1352
#, python-format
msgid "(no string)"
msgstr "(bez řetězce)"
msgstr "(prázdný text)"
#. module: web
#. openerp-web
@ -335,7 +335,7 @@ msgstr "Vlastní filtr"
#: code:addons/web/static/src/xml/base.xml:177
#, python-format
msgid "Duplicate Database"
msgstr "Duplicitní databáze"
msgstr "Duplikovat databázi"
#. module: web
#. openerp-web
@ -386,7 +386,7 @@ msgstr "Skupina"
#: code:addons/web/static/src/xml/base.xml:949
#, python-format
msgid "Unhandled widget"
msgstr "Neobsloužené udělátko"
msgstr "Neobsloužený widget"
#. module: web
#. openerp-web
@ -484,7 +484,7 @@ msgstr "Načítání (%d)"
#: code:addons/web/static/src/js/search.js:1216
#, python-format
msgid "GroupBy"
msgstr "GroupBy"
msgstr "Seskupit"
#. module: web
#. openerp-web
@ -498,7 +498,7 @@ msgstr "Musíte vybrat alespoň jeden záznam."
#: code:addons/web/static/src/xml/base.xml:557
#, python-format
msgid "View Log (perm_read)"
msgstr "Zobrazení záznamu (perm_read)"
msgstr "Zobrazení protokolu (perm_read)"
#. module: web
#. openerp-web
@ -512,7 +512,7 @@ msgstr "Nastavit výchozí"
#: code:addons/web/static/src/xml/base.xml:1000
#, python-format
msgid "Relation:"
msgstr "Vztažené:"
msgstr "Vztah:"
#. module: web
#. openerp-web
@ -610,7 +610,7 @@ msgstr "UTF-8"
#: code:addons/web/static/src/xml/base.xml:443
#, python-format
msgid "For more information visit"
msgstr "Pro více informací navštivtě"
msgstr "Pro více informací navštivte"
#. module: web
#. openerp-web
@ -669,7 +669,7 @@ msgstr "větší než"
#: code:addons/web/static/src/xml/base.xml:568
#, python-format
msgid "View"
msgstr "Pohled"
msgstr "Zobrazení"
#. module: web
#. openerp-web
@ -691,14 +691,15 @@ msgstr "ID akce:"
#, python-format
msgid "Your user's preference timezone does not match your browser timezone:"
msgstr ""
"Vaše předvolba časové zóny se neshoduje s časovou zónou vašeho prohlížeče:"
"Časová zóna ve vašich uživatelských nastaveních se neshoduje s časovou zónou "
"vašeho prohlížeče:"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_form.js:1237
#, python-format
msgid "Field '%s' specified in view could not be found."
msgstr "Pole '%s' specifikované v pohledu nelze nalézt."
msgstr "Pole '%s' specifikované v zobrazení nelze nalézt."
#. module: web
#. openerp-web
@ -769,7 +770,7 @@ msgstr "Chyba e-mailu"
#: code:addons/web/static/src/js/coresetup.js:595
#, python-format
msgid "a day ago"
msgstr "před jedním dnem"
msgstr "včera"
#. module: web
#. openerp-web
@ -817,7 +818,7 @@ msgstr "Technický překlad"
#: code:addons/web/static/src/xml/base.xml:1818
#, python-format
msgid "Delimiter:"
msgstr "Omezovač:"
msgstr "Oddělovač:"
#. module: web
#. openerp-web
@ -855,7 +856,7 @@ msgstr "Přidat"
#: code:addons/web/static/src/xml/base.xml:558
#, python-format
msgid "Toggle Form Layout Outline"
msgstr "Přepnout náčrt rozložení formuláře"
msgstr "Přepnout osnovu rozložení formuláře"
#. module: web
#. openerp-web
@ -869,7 +870,7 @@ msgstr "OpenERP.com"
#: code:addons/web/static/src/js/view_form.js:2349
#, python-format
msgid "Can't send email to invalid e-mail address"
msgstr "Nemohu odeslat email na neplatnou emailovou adresu"
msgstr "Nelze odeslat e-mail na neplatnou e-mailovou adresu"
#. module: web
#. openerp-web
@ -890,7 +891,7 @@ msgstr "Předvolby"
#: code:addons/web/static/src/js/view_form.js:435
#, python-format
msgid "Wrong on change format: %s"
msgstr "Neplatný při změně formátu: %s"
msgstr "Neplatný formát: %s"
#. module: web
#. openerp-web
@ -905,7 +906,7 @@ msgstr "Smazat databázi"
#: code:addons/web/static/src/xml/base.xml:488
#, python-format
msgid "Click here to change your user's timezone."
msgstr "Klikěte sem pro změnu časové zóny uživatele"
msgstr "Klikěte sem pro změnu časové zóny svého uživatele"
#. module: web
#. openerp-web
@ -944,14 +945,14 @@ msgstr "Více"
#: code:addons/web/static/src/xml/base.xml:73
#, python-format
msgid "Username"
msgstr "Jméno uživatele"
msgstr "Uživatelské jméno"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/chrome.js:503
#, python-format
msgid "Duplicating database"
msgstr "Duplikuji databázi"
msgstr "Duplikace databáze"
#. module: web
#. openerp-web
@ -979,7 +980,7 @@ msgstr "Ladící zobrazení#"
#: code:addons/web/static/src/xml/base.xml:77
#, python-format
msgid "Log in"
msgstr "Přihlásit"
msgstr "Přihlásit se"
#. module: web
#. openerp-web
@ -1031,7 +1032,7 @@ msgstr "Spustit"
#: code:addons/web/static/src/js/views.js:897
#, python-format
msgid "View Log (%s)"
msgstr "Zobrazit záznam (%s)"
msgstr "Zobrazit protokol (%s)"
#. module: web
#. openerp-web
@ -1128,7 +1129,7 @@ msgstr "před %d dny"
#: code:addons/web/static/src/xml/base.xml:1500
#, python-format
msgid "(Any existing filter with the same name will be replaced)"
msgstr "(jakýkoliv existující filtr s stejným jménem bude nahrazen)"
msgstr "(jakýkoliv existující filtr s stejným názvem bude nahrazen)"
#. module: web
#. openerp-web
@ -1200,7 +1201,7 @@ msgid ""
" you should use the export tool with the \"Import Compatible\" option."
msgstr ""
"Vyberte .CSV soubor k importu. Pokud potřebuje vzorový soubor k importu,\n"
" můžete použít nástroj exportu s volbou \"Importovat slučitelné\"."
" můžete použít nástroj exportu s volbou \"Importovatelný export\"."
#. module: web
#. openerp-web
@ -1215,7 +1216,7 @@ msgstr "před %d měsíci"
#: code:addons/web/static/src/xml/base.xml:326
#, python-format
msgid "Drop"
msgstr "Odstranit"
msgstr "Smazat"
#. module: web
#. openerp-web
@ -1329,7 +1330,7 @@ msgstr "Neplatné hledání"
#: code:addons/web/static/src/js/view_list.js:990
#, python-format
msgid "Could not find id in dataset"
msgstr "Nemohu najít id v datové sestavě"
msgstr "Nemohu najít id v datasetu"
#. module: web
#. openerp-web
@ -1395,8 +1396,8 @@ msgid ""
"For use if CSV files have titles on multiple lines, skips more than a single "
"line during import"
msgstr ""
"Pro použití pokud mají CSV soubory titulky na více řádcích, přeskočí více "
"než jeden řádek během importu"
"Pro použití pokud mají CSV soubory titulky na více řádcích, přeskočí během "
"importu více než jeden řádek"
#. module: web
#. openerp-web
@ -1438,7 +1439,7 @@ msgstr "Změnit výchozí:"
#: code:addons/web/static/src/xml/base.xml:189
#, python-format
msgid "Original database name:"
msgstr "Původní název databáze:"
msgstr "Název zdrojové databáze:"
#. module: web
#. openerp-web
@ -1462,14 +1463,14 @@ msgstr "Nemohu serializovat XML"
#: code:addons/web/static/src/xml/base.xml:1637
#, python-format
msgid "Advanced Search"
msgstr "Pokročilé vyhledávání"
msgstr "Pokročilé hledání"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:308
#, python-format
msgid "Confirm new master password:"
msgstr "Potvrdit hlavní heslo:"
msgstr "Potvrdit nové hlavní heslo:"
#. module: web
#. openerp-web
@ -1594,7 +1595,7 @@ msgstr "Uzel [%s] není JSONifikovaný uzel XML"
#: code:addons/web/static/src/xml/base.xml:1454
#, python-format
msgid "Advanced Search..."
msgstr "Pokročilé vyhledávání..."
msgstr "Pokročilé hledání..."
#. module: web
#. openerp-web
@ -1609,7 +1610,7 @@ msgstr "Mažu databázi"
#: code:addons/web/static/src/xml/base.xml:467
#, python-format
msgid "Powered by"
msgstr "Založeno na"
msgstr ""
#. module: web
#. openerp-web
@ -1624,7 +1625,7 @@ msgstr "Ano"
#: code:addons/web/static/src/js/view_form.js:5002
#, python-format
msgid "There was a problem while uploading your file"
msgstr "Chyba při nahrávání vašeho souboru"
msgstr "Při nahrávání vašeho souboru nastal problém"
#. module: web
#. openerp-web
@ -1652,7 +1653,7 @@ msgstr "--- Neimportovat ---"
#: code:addons/web/static/src/xml/base.xml:1697
#, python-format
msgid "Import-Compatible Export"
msgstr "Import-kompatibilní export"
msgstr "Importovatelný export"
#. module: web
#. openerp-web
@ -1702,7 +1703,7 @@ msgstr "Pole je prázdné, není co ukládat!"
#: code:addons/web/static/src/xml/base.xml:567
#, python-format
msgid "Manage Views"
msgstr "Spravovat pohledy"
msgstr "Spravovat zobrazení"
#. module: web
#. openerp-web
@ -1795,7 +1796,7 @@ msgstr "Vytvořit: "
#: code:addons/web/static/src/xml/base.xml:562
#, python-format
msgid "View Fields"
msgstr "Zobrazení polí"
msgstr "Pole zobrazení"
#. module: web
#. openerp-web
@ -1898,7 +1899,7 @@ msgstr "O aplikaci"
#: code:addons/web/static/src/xml/base.xml:1457
#, python-format
msgid "Search Again"
msgstr "Vyhledat znovu"
msgstr "Hledat znovu"
#. module: web
#. openerp-web
@ -1931,8 +1932,8 @@ msgid ""
"Grouping on field '%s' is not possible because that field does not appear in "
"the list view."
msgstr ""
"Seskupení podle pole '%s' není možné protože toto pole není zobrazeno v "
"seznamu."
"Seskupení podle pole '%s' není možné, protože toto pole není přítomno v "
"zobrazení seznamu."
#. module: web
#. openerp-web
@ -1951,24 +1952,24 @@ msgid ""
" You can export all data or only the fields that can be "
"reimported after modification."
msgstr ""
"Tento průvodce exportuje všechna data do CSV souboru, která odpovídají "
"vyhledávacímu kritériu.\n"
" Můžete exportovat všechna data nebo pouze pole, které mohou být "
"znovuimportována po úpravách."
"Tento průvodce exportuje všechna data, která odpovídají vyhledávacímu "
"kritériu, do CSV souboru.\n"
" Můžete exportovat všechna data, nebo pouze pole, která mohou být "
"po úpravách znovu importována."
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_form.js:320
#, python-format
msgid "The record could not be found in the database."
msgstr "Záznam nebyl nalezen v databázi."
msgstr "Záznam nebyl v databázi nalezen."
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:1498
#, python-format
msgid "Filter Name:"
msgstr "Jméno filtru"
msgstr "Název filtru"
#. module: web
#. openerp-web
@ -1982,7 +1983,7 @@ msgstr "Typ:"
#: code:addons/web/static/src/js/chrome.js:560
#, python-format
msgid "Incorrect super-administrator password"
msgstr "Chybné heslo superadministrátora"
msgstr "Nesprávné hlavní heslo"
#. module: web
#. openerp-web
@ -2065,7 +2066,7 @@ msgstr "Latin 1"
#: code:addons/web/static/src/xml/base.xml:1773
#, python-format
msgid "Ok"
msgstr "Ok"
msgstr "OK"
#. module: web
#. openerp-web
@ -2196,7 +2197,7 @@ msgstr "Získat pole pohledu"
#: code:addons/web/static/src/xml/base.xml:163
#, python-format
msgid "Confirm password:"
msgstr "Potvrdit heslo:"
msgstr "Potvrďte heslo:"
#. module: web
#. openerp-web
@ -2254,7 +2255,7 @@ msgstr "O OpenERP"
#: code:addons/web/static/src/js/formats.js:301
#, python-format
msgid "'%s' is not a correct date, datetime nor time"
msgstr "'%s' není platné datum, datum/čas ani čas"
msgstr "'%s' není platné datum, datum/čas, ani čas"
#. module: web
#: code:addons/web/controllers/main.py:1307
@ -2267,7 +2268,7 @@ msgstr "Žádný obsah pole '%s' nebyl nalezen v '%s:%s'"
#: code:addons/web/static/src/xml/base.xml:322
#, python-format
msgid "Database Management"
msgstr "Správa databáze"
msgstr "Správa databází"
#. module: web
#. openerp-web
@ -2281,7 +2282,7 @@ msgstr "Obrázek"
#: code:addons/web/static/src/xml/base.xml:81
#, python-format
msgid "Manage Databases"
msgstr "Spravovat databáze"
msgstr "Správa databází"
#. module: web
#. openerp-web
@ -2321,7 +2322,7 @@ msgstr "Ne"
#: code:addons/web/static/src/js/formats.js:313
#, python-format
msgid "'%s' is not convertible to date, datetime nor time"
msgstr "'%s' nelze převést na datum, datum/čas ani čas"
msgstr "'%s' nelze převést na datum, datum/čas, ani čas"
#. module: web
#. openerp-web
@ -2367,7 +2368,7 @@ msgstr "Neplatná hodnata pro pole %(fieldname)s: [%(value)s] je %(message)s"
#: code:addons/web/static/src/js/view_form.js:3926
#, python-format
msgid "The o2m record must be saved before an action can be used"
msgstr "Záznam o2m musí být uložen před tím, než je akce použita"
msgstr "Záznam o2m musí být uložen před tím, než může být akce použita"
#. module: web
#. openerp-web
@ -2395,7 +2396,7 @@ msgstr "%s (%d)"
#: code:addons/web/static/src/js/search.js:841
#, python-format
msgid "triggered from search view"
msgstr "vyvoláno z pohledu hledání"
msgstr "vyvoláno z hledání"
#. module: web
#. openerp-web
@ -2409,7 +2410,7 @@ msgstr "Filtr"
#: code:addons/web/static/src/xml/base.xml:972
#, python-format
msgid "Widget:"
msgstr "Udělátko:"
msgstr "Widget:"
#. module: web
#. openerp-web
@ -2437,7 +2438,7 @@ msgstr "Pouze vy"
#: code:addons/web/static/src/xml/base.xml:571
#, python-format
msgid "Edit Workflow"
msgstr "Upravit pracovní tok"
msgstr "Upravit pracovní postup"
#. module: web
#. openerp-web
@ -2501,7 +2502,7 @@ msgstr "Tisk"
#: code:addons/web/static/src/xml/base.xml:1359
#, python-format
msgid "Special:"
msgstr "Zvláštní:"
msgstr "Speciální:"
#. module: web
#: code:addons/web/controllers/main.py:877

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -9,13 +9,13 @@ msgstr ""
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:06+0000\n"
"PO-Revision-Date: 2012-12-10 20:41+0000\n"
"Last-Translator: Santi (Pexego) <santiago@pexego.es>\n"
"Last-Translator: Santi Argüeso(Pexego) <santiago@pexego.es>\n"
"Language-Team: Spanish <es@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: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
"Language: es\n"
#. module: web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web
@ -29,7 +29,7 @@ msgstr "Numatytoji kalba:"
#: code:addons/web/static/src/js/coresetup.js:592
#, python-format
msgid "%d minutes ago"
msgstr "prieš %d minutes"
msgstr "Prieš %d min."
#. module: web
#. openerp-web
@ -59,7 +59,7 @@ msgstr "mažiau arba lygu"
#: code:addons/web/static/src/js/chrome.js:410
#, python-format
msgid "Please enter your previous password"
msgstr ""
msgstr "Prašome įvesti seną slaptažodį"
#. module: web
#. openerp-web
@ -82,7 +82,7 @@ msgstr "Pakeisti pagrindinį slaptažodį"
#: code:addons/web/static/src/js/chrome.js:513
#, python-format
msgid "Do you really want to delete the database: %s ?"
msgstr ""
msgstr "Ar tikrai norite ištrinti duomenų bazę: %s ?"
#. module: web
#. openerp-web
@ -96,7 +96,7 @@ msgstr "Ieškoti %(field)s ties: %(value)s"
#: code:addons/web/static/src/js/chrome.js:559
#, python-format
msgid "Access Denied"
msgstr ""
msgstr "Prieiga uždrausta"
#. module: web
#. openerp-web
@ -134,7 +134,7 @@ msgstr "%(view_type)s rodinys"
#: code:addons/web/static/src/js/dates.js:53
#, python-format
msgid "'%s' is not a valid date"
msgstr ""
msgstr "„%s“ nėra tinkama data"
#. module: web
#. openerp-web
@ -161,7 +161,7 @@ msgstr ""
#: code:addons/web/controllers/main.py:869
#, python-format
msgid "You cannot leave any password empty."
msgstr ""
msgstr "Jūs negalite palikti slaptažodio lauko tuščio."
#. module: web
#. openerp-web
@ -214,13 +214,14 @@ msgstr "Paskutinio keitimo data:"
#, python-format
msgid "M2O search fields do not currently handle multiple default values"
msgstr ""
"M2O paieškos laukai šiuo metu negali apdoroti kelių numatytųjų reikšmių"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_form.js:1241
#, python-format
msgid "Widget type '%s' is not implemented"
msgstr ""
msgstr "Valdiklis '%s' neįdiegtas"
#. module: web
#. openerp-web
@ -249,7 +250,7 @@ msgstr ""
#: code:addons/web/static/src/js/formats.js:286
#, python-format
msgid "'%s' is not a correct time"
msgstr ""
msgstr "'%s' netinkamas laiko formatas"
#. module: web
#. openerp-web
@ -270,7 +271,7 @@ msgstr "Naujas slaptažodis:"
#: code:addons/web/static/src/xml/base.xml:632
#, python-format
msgid "Attachment :"
msgstr ""
msgstr "Priedas:"
#. module: web
#. openerp-web
@ -319,21 +320,21 @@ msgstr "Mygtuko tipas:"
#: code:addons/web/static/src/xml/base.xml:441
#, python-format
msgid "OpenERP SA Company"
msgstr ""
msgstr "OpenERP SA Įmonė"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/search.js:1663
#, python-format
msgid "Custom Filter"
msgstr ""
msgstr "Pasirinktinis filtras"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:177
#, python-format
msgid "Duplicate Database"
msgstr ""
msgstr "Duomenų bazė dubliuojasi"
#. module: web
#. openerp-web
@ -355,7 +356,7 @@ msgstr "Pakeisti slaptažodį"
#: code:addons/web/static/src/js/view_form.js:3528
#, python-format
msgid "View type '%s' is not supported in One2Many."
msgstr ""
msgstr "Užklausos tipas '%s' nepalaikomas vienas-su-daug ryšyje."
#. module: web
#. openerp-web
@ -370,7 +371,7 @@ msgstr "Atsisiųsti"
#: code:addons/web/static/src/js/formats.js:270
#, python-format
msgid "'%s' is not a correct datetime"
msgstr ""
msgstr "'%s' nėra teisingas datos ir laiko formatas"
#. module: web
#. openerp-web
@ -384,7 +385,7 @@ msgstr "Grupė"
#: code:addons/web/static/src/xml/base.xml:949
#, python-format
msgid "Unhandled widget"
msgstr ""
msgstr "Nepalaikomas valdiklis"
#. module: web
#. openerp-web
@ -404,14 +405,14 @@ msgstr "Šių laukų reikšmės neteisingos:"
#: code:addons/web/controllers/main.py:890
#, python-format
msgid "Languages"
msgstr ""
msgstr "Kalbos"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:1298
#, python-format
msgid "...Upload in progress..."
msgstr ""
msgstr "...Įkeliama..."
#. module: web
#. openerp-web
@ -425,21 +426,21 @@ msgstr "Importuoti"
#: code:addons/web/static/src/js/chrome.js:565
#, python-format
msgid "Could not restore the database"
msgstr ""
msgstr "Nepavyko atkurti duomenų bazės"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_form.js:4982
#, python-format
msgid "File upload"
msgstr ""
msgstr "Nusiųsti failą"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_form.js:3925
#, python-format
msgid "Action Button"
msgstr ""
msgstr "Veiksmo mygtukas"
#. module: web
#. openerp-web
@ -461,7 +462,7 @@ msgstr "turi"
#: code:addons/web/static/src/js/coresetup.js:623
#, python-format
msgid "Take a minute to get a coffee,<br />because it's loading..."
msgstr ""
msgstr "Minutėlę palaukite,<br />kraunama..."
#. module: web
#. openerp-web
@ -552,7 +553,7 @@ msgstr "Atkurta"
#: code:addons/web/static/src/js/view_list.js:409
#, python-format
msgid "%d-%d of %d"
msgstr ""
msgstr "%d-%d iš %d"
#. module: web
#. openerp-web
@ -566,7 +567,7 @@ msgstr "Sukurti ir keisti..."
#: code:addons/web/static/src/js/pyeval.js:736
#, python-format
msgid "Unknown nonliteral type "
msgstr ""
msgstr "Nežinomas tipas "
#. module: web
#. openerp-web
@ -594,21 +595,21 @@ msgstr "Spausdinti darbų seką"
#: code:addons/web/static/src/js/chrome.js:413
#, python-format
msgid "Please confirm your new password"
msgstr ""
msgstr "Prašome patvirtinti savo naują slaptažodį"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:1825
#, python-format
msgid "UTF-8"
msgstr ""
msgstr "UTF-8"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:443
#, python-format
msgid "For more information visit"
msgstr ""
msgstr "Daugiau informacijos rasite"
#. module: web
#. openerp-web
@ -629,21 +630,21 @@ msgstr "Eksportavimo formatai"
#: code:addons/web/static/src/xml/base.xml:996
#, python-format
msgid "On change:"
msgstr ""
msgstr "Pakeitus:"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/views.js:939
#, python-format
msgid "Model %s fields"
msgstr ""
msgstr "Modelio %s laukeliai"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_list.js:906
#, python-format
msgid "Setting 'id' attribute on existing record %s"
msgstr ""
msgstr "Nustatomas 'id' atributas esamam įrašui %s"
#. module: web
#. openerp-web
@ -697,7 +698,7 @@ msgstr ""
#: code:addons/web/static/src/js/view_form.js:1237
#, python-format
msgid "Field '%s' specified in view could not be found."
msgstr ""
msgstr "Luakas '%s' nurodytas užklausoje nerastas."
#. module: web
#. openerp-web
@ -718,14 +719,14 @@ msgstr "Senas slaptažodis:"
#: code:addons/web/static/src/js/formats.js:113
#, python-format
msgid "Bytes,Kb,Mb,Gb,Tb,Pb,Eb,Zb,Yb"
msgstr ""
msgstr "Bitai,Kb,Mb,Gb,Tb,Pb,Eb,Zb,Yb"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/chrome.js:503
#, python-format
msgid "The database has been duplicated."
msgstr ""
msgstr "Duomenų bazė buvo dubliuota."
#. module: web
#. openerp-web
@ -754,7 +755,7 @@ msgstr "Įrašyti kaip"
#: code:addons/web/doc/module/static/src/xml/web_example.xml:3
#, python-format
msgid "00:00:00"
msgstr ""
msgstr "00:00:00"
#. module: web
#. openerp-web
@ -868,7 +869,7 @@ msgstr "OpenERP.com"
#: code:addons/web/static/src/js/view_form.js:2349
#, python-format
msgid "Can't send email to invalid e-mail address"
msgstr ""
msgstr "Nepavyksta išsiųsti laiško netinkamu elektroninio pašto adresu"
#. module: web
#. openerp-web
@ -889,7 +890,7 @@ msgstr "Nustatymai"
#: code:addons/web/static/src/js/view_form.js:435
#, python-format
msgid "Wrong on change format: %s"
msgstr ""
msgstr "Blogai pakeistas formatas: %s"
#. module: web
#. openerp-web
@ -950,28 +951,28 @@ msgstr "Naudotojo vardas"
#: code:addons/web/static/src/js/chrome.js:503
#, python-format
msgid "Duplicating database"
msgstr ""
msgstr "Duomenų bazė dubliuojasi"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/chrome.js:585
#, python-format
msgid "Password has been changed successfully"
msgstr ""
msgstr "Slaptažodis buvo sėkmingai pakeistas"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_list_editable.js:793
#, python-format
msgid "The form's data can not be discarded"
msgstr ""
msgstr "Formos duomenys negali būti sunaikinti"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:555
#, python-format
msgid "Debug View#"
msgstr ""
msgstr "Derinti užklausą#"
#. module: web
#. openerp-web
@ -1019,7 +1020,7 @@ msgstr "Įrašyti laukų sarašą"
#: code:addons/web/doc/module/static/src/xml/web_example.xml:5
#, python-format
msgid "Start"
msgstr ""
msgstr "Pradėti"
#. module: web
#. openerp-web
@ -1040,14 +1041,14 @@ msgstr "Sukūrimo data:"
#: code:addons/web/controllers/main.py:878
#, python-format
msgid "Error, password not changed !"
msgstr ""
msgstr "Klaida, slaptažodžis nepakeistas!"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/view_form.js:4981
#, python-format
msgid "The selected file exceed the maximum file size of %s."
msgstr ""
msgstr "Pasirinktas failas viršija maksimalų failo dydį %s."
#. module: web
#. openerp-web
@ -1061,7 +1062,7 @@ msgstr ""
#: code:addons/web/static/src/js/chrome.js:585
#, python-format
msgid "Changed Password"
msgstr ""
msgstr "Slaptažodis pakeistas"
#. module: web
#. openerp-web
@ -1095,14 +1096,14 @@ msgstr "Daryti atsarginę kopiją"
#: code:addons/web/static/src/js/dates.js:80
#, python-format
msgid "'%s' is not a valid time"
msgstr ""
msgstr "'%s' nėra tinkamas laiko formatas"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/formats.js:278
#, python-format
msgid "'%s' is not a correct date"
msgstr ""
msgstr "'%s' nėra teisingas datos formatas"
#. module: web
#. openerp-web
@ -1170,7 +1171,7 @@ msgstr "Nežinomas operatorius %s domene %s"
#: code:addons/web/static/src/js/view_form.js:427
#, python-format
msgid "%d / %d"
msgstr ""
msgstr "%d / %d"
#. module: web
#. openerp-web
@ -1224,7 +1225,7 @@ msgstr "Pridėti sudėtingą filtrą"
#: code:addons/web/controllers/main.py:871
#, python-format
msgid "The new password and its confirmation must be identical."
msgstr ""
msgstr "Naujas slaptažodis ir jo patvirtinimas turi sutapti."
#. module: web
#. openerp-web
@ -1246,7 +1247,7 @@ msgstr "Prisijungimas"
#: code:addons/web/static/src/xml/base.xml:442
#, python-format
msgid "Licenced under the terms of"
msgstr ""
msgstr "Licencijuota pagal"
#. module: web
#. openerp-web
@ -1282,7 +1283,7 @@ msgstr "Grupuoti pagal: %s"
#: code:addons/web/static/src/js/view_form.js:154
#, python-format
msgid "No data provided."
msgstr ""
msgstr "Neturima duomenų."
#. module: web
#. openerp-web
@ -1311,7 +1312,7 @@ msgstr "Turite pasirinkti bent vieną įrašą."
#: code:addons/web/static/src/js/coresetup.js:621
#, python-format
msgid "Don't leave yet,<br />it's still loading..."
msgstr ""
msgstr "Neišeikite kolkas <br /> puslapis vis dar kraunamas ..."
#. module: web
#. openerp-web
@ -1353,7 +1354,7 @@ msgstr ""
#: code:addons/web/static/src/js/chrome.js:414
#, python-format
msgid "The confirmation does not match the password"
msgstr ""
msgstr "Slaptažodžiai nesutampa"
#. module: web
#. openerp-web
@ -1374,7 +1375,7 @@ msgstr "Įrašyti kaip..."
#: code:addons/web/static/src/js/view_form.js:5138
#, python-format
msgid "Could not display the selected image."
msgstr ""
msgstr "Nepavyko parodyti pasirinkto vaizdo."
#. module: web
#. openerp-web
@ -1397,7 +1398,7 @@ msgstr ""
#: code:addons/web/static/src/xml/base.xml:414
#, python-format
msgid "99+"
msgstr ""
msgstr "99+"
#. module: web
#. openerp-web
@ -1411,7 +1412,7 @@ msgstr "1. Importuoti .CSV failą"
#: code:addons/web/static/src/js/chrome.js:702
#, python-format
msgid "No database selected !"
msgstr ""
msgstr "Nepasirinkta duomenų bazė!"
#. module: web
#. openerp-web
@ -1425,14 +1426,14 @@ msgstr "(%d įrašai)"
#: code:addons/web/static/src/xml/base.xml:992
#, python-format
msgid "Change default:"
msgstr ""
msgstr "Keisti numatytąsias reikšmes:"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:189
#, python-format
msgid "Original database name:"
msgstr ""
msgstr "Duomenų bazės pavadinimas:"
#. module: web
#. openerp-web
@ -1471,6 +1472,7 @@ msgstr "Pakartoti naują pagrindinį slaptažodį:"
#, python-format
msgid "Maybe you should consider reloading the application by pressing F5..."
msgstr ""
"Gal jūs turėtumėte apsvarstyti puslapio perkrovimą paspausdami F5 ..."
#. module: web
#. openerp-web
@ -1527,6 +1529,7 @@ msgstr "Uždaryta"
msgid ""
"You may not believe it,<br />but the application is actually loading..."
msgstr ""
"Jūs galite nepatikėti, <br /> tačiau programa iš tikrųjų kraunama ..."
#. module: web
#. openerp-web
@ -1553,14 +1556,14 @@ msgstr "Medis"
#: code:addons/web/controllers/main.py:793
#, python-format
msgid "Could not drop database !"
msgstr ""
msgstr "Nepavyko ištrinti duomenų bazės!"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/formats.js:231
#, python-format
msgid "'%s' is not a correct integer"
msgstr ""
msgstr "'%s' nėra sveikasis skaičius"
#. module: web
#. openerp-web
@ -1595,7 +1598,7 @@ msgstr "Išsami paieška..."
#: code:addons/web/static/src/js/chrome.js:521
#, python-format
msgid "Dropping database"
msgstr ""
msgstr "Trinama duomenų bazė"
#. module: web
#. openerp-web
@ -1625,7 +1628,7 @@ msgstr "Įkeliant failą kilo problema"
#: code:addons/web/static/src/xml/base.xml:580
#, python-format
msgid "XML ID:"
msgstr ""
msgstr "XML identifikatorius:"
#. module: web
#. openerp-web
@ -1660,7 +1663,7 @@ msgstr "prieš %d metus"
#: code:addons/web/static/src/js/view_list.js:1050
#, python-format
msgid "Unknown m2m command %s"
msgstr ""
msgstr "Nežinomas m2m komanda %s"
#. module: web
#. openerp-web
@ -1682,7 +1685,7 @@ msgstr "Naujos duomenų bazės pavadinimas:"
#: code:addons/web/static/src/js/chrome.js:411
#, python-format
msgid "Please enter your new password"
msgstr ""
msgstr "Prašome įvesti naują slaptažodį"
#. module: web
#. openerp-web
@ -1724,14 +1727,14 @@ msgstr "Sukurti \"<strong>%s</strong>\""
#: code:addons/web/static/src/js/data_export.js:362
#, python-format
msgid "Please select fields to save export list..."
msgstr ""
msgstr "Prašome pasirinkti laukus eksportuojamo sąrašo išsaugojimui..."
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:440
#, python-format
msgid "Copyright © 2004-TODAY OpenERP SA. All Rights Reserved."
msgstr ""
msgstr "Visos teisės saugomos © 2004-TODAY OpenERP SA."
#. module: web
#. openerp-web
@ -1760,7 +1763,7 @@ msgstr "Importavimas nepavyko dėl:"
#: code:addons/web/static/src/xml/base.xml:561
#, python-format
msgid "JS Tests"
msgstr ""
msgstr "JS testai"
#. module: web
#. openerp-web
@ -1789,14 +1792,14 @@ msgstr "Sukurti: "
#: code:addons/web/static/src/xml/base.xml:562
#, python-format
msgid "View Fields"
msgstr ""
msgstr "Užklausos laukai"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:348
#, python-format
msgid "Confirm New Password:"
msgstr ""
msgstr "Patvirtinkite naują slaptažodį:"
#. module: web
#. openerp-web
@ -1847,7 +1850,7 @@ msgstr "Numatyta:"
#: code:addons/web/static/src/xml/base.xml:468
#, python-format
msgid "OpenERP"
msgstr ""
msgstr "OpenERP"
#. module: web
#. openerp-web
@ -1925,13 +1928,15 @@ msgid ""
"Grouping on field '%s' is not possible because that field does not appear in "
"the list view."
msgstr ""
"Grupavimas pagal laukus '%s' nėra įmanomas, nes ši sritis nėra rodoma sąrašo "
"rodinyje."
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:559
#, python-format
msgid "Set Defaults"
msgstr ""
msgstr "Nustatyti numatytuosius"
#. module: web
#. openerp-web
@ -1974,7 +1979,7 @@ msgstr "Tipas:"
#: code:addons/web/static/src/js/chrome.js:560
#, python-format
msgid "Incorrect super-administrator password"
msgstr ""
msgstr "Neteisingas super-administratoriaus slaptažodis"
#. module: web
#. openerp-web
@ -2044,7 +2049,7 @@ msgstr "Greitas pridėjimas"
#: code:addons/web/static/src/xml/base.xml:1826
#, python-format
msgid "Latin 1"
msgstr ""
msgstr "Latin 1"
#. module: web
#. openerp-web
@ -2078,7 +2083,7 @@ msgstr ""
#: code:addons/web/static/src/xml/base.xml:637
#, python-format
msgid "Created by :"
msgstr ""
msgstr "Sukūrė:"
#. module: web
#. openerp-web
@ -2086,7 +2091,7 @@ msgstr ""
#: code:addons/web/static/src/js/dates.js:26
#, python-format
msgid "'%s' is not a valid datetime"
msgstr ""
msgstr "'%s' nėra teisingas datos ir laiko formatas"
#. module: web
#. openerp-web
@ -2131,7 +2136,7 @@ msgstr "yra teigiamas"
#: code:addons/web/static/src/js/view_form.js:4030
#, python-format
msgid "Add an item"
msgstr ""
msgstr "Pridėti objektą"
#. module: web
#. openerp-web
@ -2152,7 +2157,7 @@ msgstr "Patvirtinti"
#: code:addons/web/static/src/js/data_export.js:127
#, python-format
msgid "Please enter save field list name"
msgstr ""
msgstr "Prašome įvesti saugomo lauko sąrašo pavadinimą"
#. module: web
#. openerp-web
@ -2173,7 +2178,7 @@ msgstr "Nauja"
#: code:addons/web/static/src/js/view_list.js:1777
#, python-format
msgid "Can't convert value %s to context"
msgstr ""
msgstr "Negalima konvertuoti vertės %s kontekste"
#. module: web
#. openerp-web
@ -2211,7 +2216,7 @@ msgstr "Mygtukas"
#: code:addons/web/static/src/xml/base.xml:440
#, python-format
msgid "OpenERP is a trademark of the"
msgstr ""
msgstr "OpenERP yra prekinis ženklas"
#. module: web
#. openerp-web
@ -2246,13 +2251,13 @@ msgstr "Apie OpenERP"
#: code:addons/web/static/src/js/formats.js:301
#, python-format
msgid "'%s' is not a correct date, datetime nor time"
msgstr ""
msgstr "'%s' nėra teisinga datos, datos ir laiko arba tik laiko formatas"
#. module: web
#: code:addons/web/controllers/main.py:1307
#, python-format
msgid "No content found for field '%s' on '%s:%s'"
msgstr ""
msgstr "Nėra rasta turinio nurodytiems laukams '%s' iš '%s:%s'"
#. module: web
#. openerp-web
@ -2280,7 +2285,7 @@ msgstr "Tvarkyti duomenų bazes"
#: code:addons/web/static/src/js/pyeval.js:770
#, python-format
msgid "Evaluation Error"
msgstr ""
msgstr "Vertinimo klaida"
#. module: web
#. openerp-web
@ -2314,6 +2319,7 @@ msgstr "Ne"
#, python-format
msgid "'%s' is not convertible to date, datetime nor time"
msgstr ""
"'%s' nėra konvertuojamas į datos, datos ir laiko ar tik laiko formatą"
#. module: web
#. openerp-web
@ -2366,7 +2372,7 @@ msgstr ""
#: code:addons/web/static/src/js/chrome.js:531
#, python-format
msgid "Backed"
msgstr ""
msgstr "Palaiko"
#. module: web
#. openerp-web
@ -2380,7 +2386,7 @@ msgstr "Numatytasis"
#: code:addons/web/static/src/js/view_list.js:1358
#, python-format
msgid "%s (%d)"
msgstr ""
msgstr "%s (%d)"
#. module: web
#. openerp-web
@ -2401,7 +2407,7 @@ msgstr "Filtras"
#: code:addons/web/static/src/xml/base.xml:972
#, python-format
msgid "Widget:"
msgstr ""
msgstr "Valdiklis:"
#. module: web
#. openerp-web
@ -2415,7 +2421,7 @@ msgstr "Keisti veiksmą"
#: code:addons/web/static/src/xml/base.xml:577
#, python-format
msgid "ID:"
msgstr ""
msgstr "Identifikatorius:"
#. module: web
#. openerp-web
@ -2457,14 +2463,14 @@ msgstr "Laukas:"
#: code:addons/web/static/src/xml/base.xml:642
#, python-format
msgid "Modified by :"
msgstr ""
msgstr "Pakeistas:"
#. module: web
#. openerp-web
#: code:addons/web/static/src/js/chrome.js:521
#, python-format
msgid "The database %s has been dropped"
msgstr ""
msgstr "Duomenų bazė %s buvo panaikinta"
#. module: web
#. openerp-web
@ -2493,7 +2499,7 @@ msgstr "Spausdinti"
#: code:addons/web/static/src/xml/base.xml:1359
#, python-format
msgid "Special:"
msgstr ""
msgstr "Specialus:"
#. module: web
#: code:addons/web/controllers/main.py:877
@ -2501,6 +2507,7 @@ msgstr ""
msgid ""
"The old password you provided is incorrect, your password was not changed."
msgstr ""
"Senas slaptažodis yra neteisingas, jūsų slaptažodis nebuvo pakeistas."
#. module: web
#. openerp-web
@ -2588,7 +2595,7 @@ msgstr "Sukurti duomenų bazę"
#: code:addons/web/static/src/xml/base.xml:442
#, python-format
msgid "GNU Affero General Public License"
msgstr ""
msgstr "GNU Affero General Public licenzija"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -9,13 +9,13 @@ msgstr ""
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:06+0000\n"
"PO-Revision-Date: 2012-12-21 19:38+0000\n"
"Last-Translator: Erwin van der Ploeg (Endian Solutions) <Unknown>\n"
"Last-Translator: Erwin van der Ploeg (BAS Solutions) <Unknown>\n"
"Language-Team: Dutch <nl@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: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:39+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web
@ -52,7 +52,7 @@ msgstr "%(field)s %(operator)s \"%(value)s\""
#: code:addons/web/static/src/js/search.js:2124
#, python-format
msgid "less or equal than"
msgstr "menor ou igual a"
msgstr "menor ou igual que"
#. module: web
#. openerp-web
@ -134,14 +134,14 @@ msgstr "Vista de %(view_type)s"
#: code:addons/web/static/src/js/dates.js:53
#, python-format
msgid "'%s' is not a valid date"
msgstr "%s não é uma data válida"
msgstr "'%s' não é uma data válida"
#. module: web
#. openerp-web
#: code:addons/web/static/src/xml/base.xml:1858
#, python-format
msgid "Here is a preview of the file we could not import:"
msgstr "Aqui está uma antevisão do ficheiro que não pode ser importado:"
msgstr "Aqui está uma pré-visualização do ficheiro que não foi importado:"
#. module: web
#. openerp-web

View File

@ -15,8 +15,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web
@ -2344,7 +2344,7 @@ msgstr "Duplicar"
#: code:addons/web/static/src/xml/base.xml:1419
#, python-format
msgid "Discard"
msgstr "Cancelar"
msgstr "Desistir"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:43+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:38+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web
@ -82,7 +82,7 @@ msgstr "เปลี่ยนรหัสผ่านหลัก"
#: code:addons/web/static/src/js/chrome.js:513
#, python-format
msgid "Do you really want to delete the database: %s ?"
msgstr "ต้องการลบ ฐานข้อมูล: %s ?"
msgstr "คุณต้องการลบ ฐานข้อมูล: %s ?"
#. module: web
#. openerp-web
@ -141,7 +141,7 @@ msgstr "'%s' ไม่ถูกต้อง"
#: code:addons/web/static/src/xml/base.xml:1858
#, python-format
msgid "Here is a preview of the file we could not import:"
msgstr ""
msgstr "นี้คือตัวอย่างของแฟ้มที่เราไม่สามารถนำเข้าได้"
#. module: web
#. openerp-web
@ -291,7 +291,7 @@ msgstr "ไม่ได้กำหนด"
#: code:addons/web/static/src/js/view_form.js:5002
#, python-format
msgid "File Upload"
msgstr "อัพโหลดข้อมูล"
msgstr "อัพโหลดไฟล์"
#. module: web
#. openerp-web
@ -391,7 +391,7 @@ msgstr "วิดเจ็ต Unhandled"
#: code:addons/web/static/src/xml/base.xml:1004
#, python-format
msgid "Selection:"
msgstr "เลือก"
msgstr "การเลือก:"
#. module: web
#. openerp-web
@ -1599,7 +1599,7 @@ msgstr "กำลัง ทิ้งฐานข้อมูล"
#: code:addons/web/static/src/xml/base.xml:467
#, python-format
msgid "Powered by"
msgstr ""
msgstr "Powered by"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:40+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -9,13 +9,13 @@ msgstr ""
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:06+0000\n"
"PO-Revision-Date: 2012-12-04 01:53+0000\n"
"Last-Translator: 盈通 ccdos <ccdos@163.com>\n"
"Last-Translator: 盈通 ccdos <ccdos@intoerp.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: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web
@ -242,7 +242,7 @@ msgstr "表单"
#: code:addons/web/static/src/xml/base.xml:1352
#, python-format
msgid "(no string)"
msgstr "无字符串"
msgstr "(无字符串)"
#. module: web
#. openerp-web
@ -875,7 +875,7 @@ msgstr "不能发送email到错误的email第hi"
#: code:addons/web/static/src/xml/base.xml:658
#, python-format
msgid "Add..."
msgstr "添加..."
msgstr "添加附件..."
#. module: web
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web
#. openerp-web

View File

@ -226,27 +226,10 @@ QWeb2.Engine = (function() {
}
QWeb2.tools.extend(Engine.prototype, {
/**
* Add a template to the engine
*
* @param {String|Document} template Template as string or url or DOM Document
* @param {Function} [callback] Called when the template is loaded, force async request
*/
add_template : function(template, callback) {
var self = this;
add_template : function(template) {
this.templates_resources.push(template);
if (template.constructor === String) {
return this.load_xml(template, function (err, xDoc) {
if (err) {
if (callback) {
return callback(err);
} else {
throw err;
}
}
self.add_template(xDoc, callback);
});
template = this.load_xml(template, callback);
template = this.load_xml(template);
}
var ec = (template.documentElement && template.documentElement.childNodes) || template.childNodes || [];
for (var i = 0; i < ec.length; i++) {
@ -279,56 +262,35 @@ QWeb2.Engine = (function() {
}
}
}
if (callback) {
callback(null, template);
}
return true;
},
load_xml : function(s, callback) {
var self = this;
var async = !!callback;
load_xml : function(s) {
s = this.tools.trim(s);
if (s.charAt(0) === '<') {
var tpl = this.load_xml_string(s);
if (callback) {
callback(null, tpl);
}
return tpl;
return this.load_xml_string(s);
} else {
var req = this.get_xhr();
if (this.debug) {
s += '?debug=' + (new Date()).getTime(); // TODO fme: do it properly in case there's already url parameters
}
req.open('GET', s, async);
if (async) {
req.onreadystatechange = function() {
if (req.readyState == 4) {
if (req.status == 200) {
callback(null, self._parse_from_request(req));
} else {
callback(new Error("Can't load template, http status " + req.status));
}
if (req) {
// TODO: third parameter is async : https://developer.mozilla.org/en/XMLHttpRequest#open()
// do an on_ready in QWeb2{} that could be passed to add_template
if (this.debug) {
s += '?debug=' + (new Date()).getTime(); // TODO fme: do it properly in case there's already url parameters
}
req.open('GET', s, false);
req.send(null);
var xDoc = req.responseXML;
if (xDoc) {
if (!xDoc.documentElement) {
throw new Error("QWeb2: This xml document has no root document : " + xDoc.responseText);
}
};
if (xDoc.documentElement.nodeName == "parsererror") {
return this.tools.exception(xDoc.documentElement.childNodes[0].nodeValue);
}
return xDoc;
} else {
return this.load_xml_string(req.responseText);
}
}
req.send(null);
if (!async) {
return this._parse_from_request(req);
}
}
},
_parse_from_request: function(req) {
var xDoc = req.responseXML;
if (xDoc) {
if (!xDoc.documentElement) {
throw new Error("QWeb2: This xml document has no root document : " + xDoc.responseText);
}
if (xDoc.documentElement.nodeName == "parsererror") {
throw new Error("QWeb2: Could not parse document :" + xDoc.documentElement.childNodes[0].nodeValue);
}
return xDoc;
} else {
return this.load_xml_string(req.responseText);
}
},
load_xml_string : function(s) {
@ -336,15 +298,17 @@ QWeb2.Engine = (function() {
var dp = new DOMParser();
var r = dp.parseFromString(s, "text/xml");
if (r.body && r.body.firstChild && r.body.firstChild.nodeName == 'parsererror') {
throw new Error("QWeb2: Could not parse document :" + r.body.innerText);
return this.tools.exception(r.body.innerText);
}
return r;
}
var xDoc;
try {
// new ActiveXObject("Msxml2.DOMDocument.4.0");
xDoc = new ActiveXObject("MSXML2.DOMDocument");
} catch (e) {
throw new Error("Could not find a DOM Parser: " + e.message);
return this.tools.exception(
"Could not find a DOM Parser: " + e.message);
}
xDoc.async = false;
xDoc.preserveWhiteSpace = true;
@ -361,7 +325,7 @@ QWeb2.Engine = (function() {
try {
return new ActiveXObject('MSXML2.XMLHTTP.3.0');
} catch (e) {
throw new Error("Could not get XHR");
return null;
}
},
compile : function(node) {

View File

@ -2204,7 +2204,6 @@
}
.openerp .oe_form header {
position: relative;
z-index: 1;
border-bottom: 1px solid #cacaca;
padding-left: 2px;
background-color: #ededed;

View File

@ -1748,7 +1748,6 @@ $sheet-padding: 16px
// FormView.header {{{
.oe_form header
position: relative
z-index: 1
border-bottom: 1px solid #cacaca
padding-left: 2px
@include vertical-gradient(#fcfcfc, #dedede)

View File

@ -805,10 +805,11 @@ instance.web.redirect = function(url, wait) {
var load = function() {
var old = "" + window.location;
if (old === url) {
window.location.reload();
} else {
window.location = url;
var old_no_hash = old.split("#")[0];
var url_no_hash = url.split("#")[0];
location.assign(url);
if (old_no_hash === url_no_hash) {
location.reload(true);
}
};
@ -1307,13 +1308,8 @@ instance.web.WebClient = instance.web.Client.extend({
this.on("change:title_part", this, this._title_changed);
this._title_changed();
return $.when(this._super()).then(function() {
if (jQuery.param !== undefined && jQuery.deparam(jQuery.param.querystring()).kitten !== undefined) {
$("body").addClass("kitten-mode-activated");
$("body").css("background-image", "url(" + instance.session.origin + "/web/static/src/img/back-enable.jpg" + ")");
if ($.blockUI) {
var imgkit = Math.floor(Math.random() * 2 + 1);
$.blockUI.defaults.message = '<img src="http://www.amigrave.com/loading-kitten/' + imgkit + '.gif" class="loading-kitten">';
}
if (jQuery.deparam !== undefined && jQuery.deparam(jQuery.param.querystring()).kitten !== undefined) {
self.to_kitten();
}
if (!self.session.session_is_valid()) {
self.show_login();
@ -1322,6 +1318,15 @@ instance.web.WebClient = instance.web.Client.extend({
}
});
},
to_kitten: function() {
this.kitten = true;
$("body").addClass("kitten-mode-activated");
$("body").css("background-image", "url(" + instance.session.origin + "/web/static/src/img/back-enable.jpg" + ")");
if ($.blockUI) {
var imgkit = Math.floor(Math.random() * 2 + 1);
$.blockUI.defaults.message = '<img src="http://www.amigrave.com/loading-kitten/' + imgkit + '.gif" class="loading-kitten">';
}
},
/**
Sets the first part of the title of the window, dedicated to the current action.
*/

View File

@ -61,18 +61,19 @@ instance.web.Query = instance.web.Class.extend({
},
_execute: function () {
var self = this;
return this._model.call('search_read', {
return instance.session.rpc('/web/dataset/search_read', {
model: this._model.name,
fields: this._fields || false,
domain: instance.web.pyeval.eval('domains',
[this._model.domain(this._filter)]),
fields: this._fields || false,
offset: this._offset,
limit: this._limit,
order: instance.web.serialize_sort(this._order_by),
context: instance.web.pyeval.eval('contexts',
[this._model.context(this._context)]),
offset: this._offset,
limit: this._limit,
sort: instance.web.serialize_sort(this._order_by)
}).then(function (results) {
self._count = results.length;
return results;
return results.records;
}, null);
},
/**
@ -450,7 +451,7 @@ instance.web.DataSet = instance.web.Class.extend(instance.web.PropertiesMixin,
// TODO: reorder results to match ids list
return this._model.call('read',
[ids, fields || false],
{context: this._model.context(options.context)});
{context: this.get_context(options.context)});
},
/**
* Read a slice of the records represented by this DataSet, based on its

View File

@ -761,6 +761,8 @@ openerp.Widget = openerp.Class.extend(openerp.PropertiesMixin, {
* @returns {jQuery} selector match
*/
$: function(selector) {
if (selector === undefined)
return this.$el;
return this.$el.find(selector);
},
/**

View File

@ -241,6 +241,8 @@ my.InputView = instance.web.Widget.extend({
setTimeout(function () {
// Read text content (ignore pasted HTML)
var data = this.$el.text();
if (!data)
return;
// paste raw text back in
this.$el.empty().text(data);
this.el.normalize();

View File

@ -724,7 +724,10 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM
self.trigger("save", result);
self.to_view_mode();
}).then(function(result) {
self.ViewManager.ActionManager.__parentedParent.menu.do_reload_needaction();
var parent = self.ViewManager.ActionManager.getParent();
if(parent){
parent.menu.do_reload_needaction();
}
});
},
on_button_cancel: function(event) {
@ -2997,8 +3000,11 @@ instance.web.form.FieldRadio = instance.web.form.AbstractField.extend(instance.w
})();
/**
* A mixin containing some useful methods to handle completion inputs.
*/
A mixin containing some useful methods to handle completion inputs.
The widget containing this option can have these arguments in its widget options:
- no_quick_create: if true, it will disable the quick create
*/
instance.web.form.CompletionFieldMixin = {
init: function() {
this.limit = 7;
@ -3044,7 +3050,8 @@ instance.web.form.CompletionFieldMixin = {
}
// quick create
var raw_result = _(data.result).map(function(x) {return x[1];});
if (search_val.length > 0 && !_.include(raw_result, search_val)) {
if (search_val.length > 0 && !_.include(raw_result, search_val) &&
! (self.options && self.options.no_quick_create)) {
values.push({
label: _.str.sprintf(_t('Create "<strong>%s</strong>"'),
$('<span />').text(search_val).html()),
@ -4053,7 +4060,13 @@ instance.web.form.One2ManyListView = instance.web.ListView.extend({
else
return $.when();
}).done(function () {
self.handle_button(name, id, callback);
if (!self.o2m.options.reload_on_button) {
self.handle_button(name, id, callback);
}else {
self.handle_button(name, id, function(){
self.o2m.view.reload();
});
}
});
},

View File

@ -166,12 +166,13 @@ instance.web.TreeView = instance.web.View.extend(/** @lends instance.web.TreeVie
var is_loaded = 0,
$this = $(this),
record_id = $this.data('id'),
row_parent_id = $this.data('row-parent-id'),
record = self.records[record_id],
children_ids = record[self.children_field];
_(children_ids).each(function(childid) {
if (self.$el.find('#treerow_' + childid).length) {
if (self.$el.find('#treerow_' + childid).is(':hidden')) {
if (self.$el.find('[id=treerow_' + childid + '][data-row-parent-id='+ record_id +']').length ) {
if (self.$el.find('[id=treerow_' + childid + '][data-row-parent-id='+ record_id +']').is(':hidden')) {
is_loaded = -1;
} else {
is_loaded++;
@ -183,7 +184,7 @@ instance.web.TreeView = instance.web.View.extend(/** @lends instance.web.TreeVie
self.getdata(record_id, children_ids);
}
} else {
self.showcontent(record_id, is_loaded < 0);
self.showcontent($this, record_id, is_loaded < 0);
}
});
},
@ -195,7 +196,6 @@ instance.web.TreeView = instance.web.View.extend(/** @lends instance.web.TreeVie
_(records).each(function (record) {
self.records[record.id] = record;
});
var $curr_node = self.$el.find('#treerow_' + id);
var children_rows = QWeb.render('TreeView.rows', {
'records': records,
@ -204,9 +204,9 @@ instance.web.TreeView = instance.web.View.extend(/** @lends instance.web.TreeVie
'fields': self.fields,
'level': $curr_node.data('level') || 0,
'render': instance.web.format_value,
'color_for': self.color_for
'color_for': self.color_for,
'row_parent_id': id
});
if ($curr_node.length) {
$curr_node.addClass('oe_open');
$curr_node.after(children_rows);
@ -246,14 +246,13 @@ instance.web.TreeView = instance.web.View.extend(/** @lends instance.web.TreeVie
},
// show & hide the contents
showcontent: function (record_id, show) {
this.$el.find('#treerow_' + record_id)
.toggleClass('oe_open', show);
showcontent: function (curnode,record_id, show) {
curnode.parent('tr').toggleClass('oe_open', show);
_(this.records[record_id][this.children_field]).each(function (child_id) {
var $child_row = this.$el.find('#treerow_' + child_id);
var $child_row = this.$el.find('[id=treerow_' + child_id + '][data-row-parent-id='+ curnode.data('id') +']');
if ($child_row.hasClass('oe_open')) {
this.showcontent(child_id, false);
$child_row.toggleClass('oe_open',show);
this.showcontent($child_row, child_id, false);
}
$child_row.toggle(show);
}, this);

View File

@ -684,7 +684,8 @@
<tr t-name="TreeView.rows"
t-foreach="records" t-as="record"
t-att-id="'treerow_' + record.id"
t-att-data-id="record.id" t-att-data-level="level + 1">
t-att-data-id="record.id" t-att-data-level="level + 1"
t-att-data-row-parent-id="row_parent_id">
<t t-set="children" t-value="record[children_field]"/>
<t t-set="class" t-value="children and children.length ? 'treeview-tr' : 'treeview-td'"/>
<t t-set="rank" t-value="'oe-treeview-first'"/>

View File

@ -18,16 +18,16 @@ openerp.testing.section('data.model.group_by', {
"should have single grouping field");
return group_result;
});
mock('foo:search_read', function (args, kwargs) {
deepEqual(kwargs.domain, [['bar', '=', 3]],
mock('/web/dataset/search_read', function (args) {
deepEqual(args.params.domain, [['bar', '=', 3]],
"should have domain matching that of group_by result");
return [
return {records: [
{bar: 3, id: 1},
{bar: 3, id: 2},
{bar: 3, id: 4},
{bar: 3, id: 8},
{bar: 3, id: 16}
];
], length: 5};
});
return m.query().group_by('bar')

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,57 +14,57 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:161
#, python-format
msgid "New event"
msgstr ""
msgstr "Novi događaj"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Details"
msgstr ""
msgstr "Detalji"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:162
#, python-format
msgid "Save"
msgstr ""
msgstr "Sačuvaj"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:109
#, python-format
msgid "Calendar view has a 'date_delay' type != float"
msgstr ""
msgstr "Kalendarski pogled ima 'date_delay' tip != float"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:157
#, python-format
msgid "Today"
msgstr ""
msgstr "Danas"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:159
#, python-format
msgid "Week"
msgstr ""
msgstr "Sedmica"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Full day"
msgstr ""
msgstr "Cijeli dan"
#. module: web_calendar
#. openerp-web
@ -72,14 +72,14 @@ msgstr ""
#: code:addons/web_calendar/static/src/js/calendar.js:182
#, python-format
msgid "Description"
msgstr ""
msgstr "Opis"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:168
#, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr ""
msgstr "Događaj će trajno biti obrisan, dali ste sigurni?"
#. module: web_calendar
#. openerp-web
@ -94,7 +94,7 @@ msgstr "&nbsp;"
#: code:addons/web_calendar/static/src/js/calendar.js:181
#, python-format
msgid "Date"
msgstr ""
msgstr "Datum"
#. module: web_calendar
#. openerp-web
@ -108,42 +108,42 @@ msgstr ""
#: code:addons/web_calendar/static/src/js/calendar.js:158
#, python-format
msgid "Day"
msgstr ""
msgstr "Dan"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Edit"
msgstr ""
msgstr "Uredi"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:177
#, python-format
msgid "Enabled"
msgstr ""
msgstr "Omogućeno"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:174
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
msgstr "Dali želite urediti cijeli set ponavljajućih događaja?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:90
#, python-format
msgid "Filter"
msgstr ""
msgstr "Filter"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Repeat event"
msgstr ""
msgstr "Ponovi događaj"
#. module: web_calendar
#. openerp-web
@ -151,35 +151,35 @@ msgstr ""
#: code:addons/web_calendar/static/src/js/calendar.js:188
#, python-format
msgid "Agenda"
msgstr ""
msgstr "Dnevni red"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#, python-format
msgid "Time period"
msgstr ""
msgstr "Vremenski period"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Delete"
msgstr ""
msgstr "Obriši"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Month"
msgstr ""
msgstr "Mjesec"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:176
#, python-format
msgid "Disabled"
msgstr ""
msgstr "Onemogućeno"
#. module: web_calendar
#. openerp-web
@ -193,14 +193,14 @@ msgstr ""
#: code:addons/web_calendar/static/src/js/calendar.js:185
#, python-format
msgid "Year"
msgstr ""
msgstr "Godina"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:163
#, python-format
msgid "Cancel"
msgstr ""
msgstr "Otkaži"
#. module: web_calendar
#. openerp-web
@ -214,7 +214,7 @@ msgstr "Kalendar"
#: code:addons/web_calendar/static/src/js/calendar.js:101
#, python-format
msgid "Calendar view has not defined 'date_start' attribute."
msgstr ""
msgstr "Pogled kalendara nema definisan atribut 'date_start'."
#~ msgid "Navigator"
#~ msgstr "Navigator"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
"X-Poedit-Language: Czech\n"
#. module: web_calendar

View File

@ -8,63 +8,63 @@ msgstr ""
"Project-Id-Version: openerp-web\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:06+0000\n"
"PO-Revision-Date: 2012-07-01 09:05+0000\n"
"Last-Translator: Aputsiaq Niels Janussen <aj@isit.gl>\n"
"PO-Revision-Date: 2013-09-04 22:29+0000\n"
"Last-Translator: Morten Schou <ms@msteknik.dk>\n"
"Language-Team: Danish <da@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: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:161
#, python-format
msgid "New event"
msgstr ""
msgstr "Ny aftale"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:164
#, python-format
msgid "Details"
msgstr ""
msgstr "Detaljer"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:162
#, python-format
msgid "Save"
msgstr ""
msgstr "Gem"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:109
#, python-format
msgid "Calendar view has a 'date_delay' type != float"
msgstr ""
msgstr "Kalender visning har en 'date_delay' type != float"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:157
#, python-format
msgid "Today"
msgstr ""
msgstr "I dag"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:159
#, python-format
msgid "Week"
msgstr ""
msgstr "Uge"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:171
#, python-format
msgid "Full day"
msgstr ""
msgstr "Hel dag"
#. module: web_calendar
#. openerp-web
@ -72,14 +72,14 @@ msgstr ""
#: code:addons/web_calendar/static/src/js/calendar.js:182
#, python-format
msgid "Description"
msgstr ""
msgstr "Beskrivelse"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:168
#, python-format
msgid "Event will be deleted permanently, are you sure?"
msgstr ""
msgstr "Aftale slettes permanent, er du sikker?"
#. module: web_calendar
#. openerp-web
@ -94,56 +94,56 @@ msgstr "&nbsp;"
#: code:addons/web_calendar/static/src/js/calendar.js:181
#, python-format
msgid "Date"
msgstr ""
msgstr "Dato"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:470
#, python-format
msgid "Edit: "
msgstr ""
msgstr "Rediger "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:158
#, python-format
msgid "Day"
msgstr ""
msgstr "Dag"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:165
#, python-format
msgid "Edit"
msgstr ""
msgstr "Rediger"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:177
#, python-format
msgid "Enabled"
msgstr ""
msgstr "Aktiveret"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:174
#, python-format
msgid "Do you want to edit the whole set of repeated events?"
msgstr ""
msgstr "Vil du rette alle gentagne aftaler?"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:90
#, python-format
msgid "Filter"
msgstr ""
msgstr "Filter"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:175
#, python-format
msgid "Repeat event"
msgstr ""
msgstr "Gentaget aftale"
#. module: web_calendar
#. openerp-web
@ -151,56 +151,56 @@ msgstr ""
#: code:addons/web_calendar/static/src/js/calendar.js:188
#, python-format
msgid "Agenda"
msgstr ""
msgstr "Dagsorden"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:170
#, python-format
msgid "Time period"
msgstr ""
msgstr "Tidsperiode"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:166
#, python-format
msgid "Delete"
msgstr ""
msgstr "Slet"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:160
#, python-format
msgid "Month"
msgstr ""
msgstr "Måned"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:176
#, python-format
msgid "Disabled"
msgstr ""
msgstr "Deaktiveret"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:435
#, python-format
msgid "Create: "
msgstr ""
msgstr "Opret: "
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:185
#, python-format
msgid "Year"
msgstr ""
msgstr "År"
#. module: web_calendar
#. openerp-web
#: code:addons/web_calendar/static/src/js/calendar.js:163
#, python-format
msgid "Cancel"
msgstr ""
msgstr "Annullér"
#. module: web_calendar
#. openerp-web
@ -215,6 +215,8 @@ msgstr "Kalender"
#, python-format
msgid "Calendar view has not defined 'date_start' attribute."
msgstr ""
"Calendar view has not defined 'date_start' attribute.\r\n"
"Kalender visning har ikke en defineret 'date_start' attribut."
#~ msgid "Navigator"
#~ msgstr "Navigator"

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:45+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -9,13 +9,13 @@ msgstr ""
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-12-21 17:06+0000\n"
"PO-Revision-Date: 2012-12-17 13:10+0000\n"
"Last-Translator: Santi (Pexego) <santiago@pexego.es>\n"
"Last-Translator: Santi Argüeso(Pexego) <santiago@pexego.es>\n"
"Language-Team: Spanish <es@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: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -15,8 +15,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:45+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
"Language: es\n"
#. module: web_calendar

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:45+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:45+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-08-08 04:44+0000\n"
"X-Generator: Launchpad (build 16723)\n"
"X-Launchpad-Export-Date: 2013-09-14 05:41+0000\n"
"X-Generator: Launchpad (build 16761)\n"
#. module: web_calendar
#. openerp-web

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